Class ResourceFilter
ResourceFilter specifies matching criteria to limit the scope of a change to a specific set of kubernetes resources that are selected for restoration from a backup.
Implements
Inherited Members
Namespace: Google.Apis.BackupforGKE.v1.Data
Assembly: Google.Apis.BackupforGKE.v1.dll
Syntax
public class ResourceFilter : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
GroupKinds
Optional. (Filtering parameter) Any resource subject to transformation must belong to one of the listed "types". If this field is not provided, no type filtering will be performed (all resources of all types matching previous filtering parameters will be candidates for transformation).
Declaration
[JsonProperty("groupKinds")]
public virtual IList<GroupKind> GroupKinds { get; set; }
Property Value
Type | Description |
---|---|
IList<GroupKind> |
JsonPath
Optional. This is a [JSONPath] (https://github.com/json-path/JsonPath/blob/master/README.md) expression that matches specific fields of candidate resources and it operates as a filtering parameter (resources that are not matched with this expression will not be candidates for transformation).
Declaration
[JsonProperty("jsonPath")]
public virtual string JsonPath { get; set; }
Property Value
Type | Description |
---|---|
string |
Namespaces
Optional. (Filtering parameter) Any resource subject to transformation must be contained within one of the listed Kubernetes Namespace in the Backup. If this field is not provided, no namespace filtering will be performed (all resources in all Namespaces, including all cluster-scoped resources, will be candidates for transformation).
Declaration
[JsonProperty("namespaces")]
public virtual IList<string> Namespaces { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |