View Source GoogleApi.GKEBackup.V1.Model.ResourceSelector (google_api_gke_backup v0.6.0)

Defines a selector to identify a single or a group of resources. Conditions in the selector are optional, but at least one field should be set to a non-empty value. If a condition is not specified, no restrictions will be applied on that dimension. If more than one condition is specified, a resource will be selected if and only if all conditions are met.

Attributes

  • groupKind (type: GoogleApi.GKEBackup.V1.Model.GroupKind.t, default: nil) - Optional. Selects resources using their Kubernetes GroupKinds. If specified, only resources of provided GroupKind will be selected.
  • labels (type: map(), default: nil) - Optional. Selects resources using Kubernetes labels. If specified, a resource will be selected if and only if the resource has all of the provided labels and all the label values match.
  • name (type: String.t, default: nil) - Optional. Selects resources using their resource names. If specified, only resources with the provided name will be selected.
  • namespace (type: String.t, default: nil) - Optional. Selects resources using their namespaces. This only applies to namespace scoped resources and cannot be used for selecting cluster scoped resources. If specified, only resources in the provided namespace will be selected. If not specified, the filter will apply to both cluster scoped and namespace scoped resources (e.g. name or label). The Namespace resource itself will be restored if and only if any resources within the namespace are restored.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.GKEBackup.V1.Model.ResourceSelector{
  groupKind: GoogleApi.GKEBackup.V1.Model.GroupKind.t() | nil,
  labels: map() | nil,
  name: String.t() | nil,
  namespace: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.