google-apis-gkebackup_v1 0.19.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/gkebackup_v1/classes.rb +136 -135
- data/lib/google/apis/gkebackup_v1/gem_version.rb +2 -2
- data/lib/google/apis/gkebackup_v1/service.rb +113 -102
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa1eabb250276123ca4c07cda2d31a30bde0f96835c523ddebf7df390163f20f
|
4
|
+
data.tar.gz: 41ad1998c89059a6bbc86ac85472eee7994d7bf7eedcb4021a9015b2abe8dd68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da0fab18bca722802ab250c56d2eb779cedb8a874bb122f270d0fb3448d480607462aba3587145badbbef24e2419a7579642abd4d7d17f76678d8ef382197d90
|
7
|
+
data.tar.gz: 5413d24f92603679d76967d331a604ff1f8b87266ee8b23ab0512f15a226375679559bdefcd933da28c60d85fe5868b1c1ee95a18f9990f4edeea2bb770b2768
|
data/CHANGELOG.md
CHANGED
@@ -140,8 +140,8 @@ module Google
|
|
140
140
|
# @return [String]
|
141
141
|
attr_accessor :create_time
|
142
142
|
|
143
|
-
# Minimum age for this Backup (in days). If this field is set to a non-
|
144
|
-
# value, the Backup will be "locked" against deletion (either manual or
|
143
|
+
# Optional. Minimum age for this Backup (in days). If this field is set to a non-
|
144
|
+
# zero value, the Backup will be "locked" against deletion (either manual or
|
145
145
|
# automatic deletion) for the number of days provided (measured from the
|
146
146
|
# creation time of the Backup). MUST be an integer value between 0-90 (inclusive)
|
147
147
|
# . Defaults to parent BackupPlan's backup_delete_lock_days setting and may only
|
@@ -156,7 +156,7 @@ module Google
|
|
156
156
|
# @return [String]
|
157
157
|
attr_accessor :delete_lock_expire_time
|
158
158
|
|
159
|
-
# User specified descriptive string for this Backup.
|
159
|
+
# Optional. User specified descriptive string for this Backup.
|
160
160
|
# Corresponds to the JSON property `description`
|
161
161
|
# @return [String]
|
162
162
|
attr_accessor :description
|
@@ -178,7 +178,7 @@ module Google
|
|
178
178
|
# @return [String]
|
179
179
|
attr_accessor :etag
|
180
180
|
|
181
|
-
# A set of custom labels supplied by user.
|
181
|
+
# Optional. A set of custom labels supplied by user.
|
182
182
|
# Corresponds to the JSON property `labels`
|
183
183
|
# @return [Hash<String,String>]
|
184
184
|
attr_accessor :labels
|
@@ -207,11 +207,11 @@ module Google
|
|
207
207
|
# @return [Fixnum]
|
208
208
|
attr_accessor :resource_count
|
209
209
|
|
210
|
-
# The age (in days) after which this Backup will be automatically
|
211
|
-
# be an integer value >= 0: - If 0, no automatic deletion will
|
212
|
-
# Backup. - If not 0, this must be >= delete_lock_days and <= 365.
|
213
|
-
# is created, this value may only be increased. Defaults to the
|
214
|
-
# BackupPlan's backup_retain_days value.
|
210
|
+
# Optional. The age (in days) after which this Backup will be automatically
|
211
|
+
# deleted. Must be an integer value >= 0: - If 0, no automatic deletion will
|
212
|
+
# occur for this Backup. - If not 0, this must be >= delete_lock_days and <= 365.
|
213
|
+
# Once a Backup is created, this value may only be increased. Defaults to the
|
214
|
+
# parent BackupPlan's backup_retain_days value.
|
215
215
|
# Corresponds to the JSON property `retainDays`
|
216
216
|
# @return [Fixnum]
|
217
217
|
attr_accessor :retain_days
|
@@ -317,15 +317,15 @@ module Google
|
|
317
317
|
# @return [Google::Apis::GkebackupV1::EncryptionKey]
|
318
318
|
attr_accessor :encryption_key
|
319
319
|
|
320
|
-
# This flag specifies whether Kubernetes Secret resources should be
|
321
|
-
# when they fall into the scope of Backups. Default: False
|
320
|
+
# Optional. This flag specifies whether Kubernetes Secret resources should be
|
321
|
+
# included when they fall into the scope of Backups. Default: False
|
322
322
|
# Corresponds to the JSON property `includeSecrets`
|
323
323
|
# @return [Boolean]
|
324
324
|
attr_accessor :include_secrets
|
325
325
|
alias_method :include_secrets?, :include_secrets
|
326
326
|
|
327
|
-
# This flag specifies whether volume data should be backed up when
|
328
|
-
# included in the scope of a Backup. Default: False
|
327
|
+
# Optional. This flag specifies whether volume data should be backed up when
|
328
|
+
# PVCs are included in the scope of a Backup. Default: False
|
329
329
|
# Corresponds to the JSON property `includeVolumeData`
|
330
330
|
# @return [Boolean]
|
331
331
|
attr_accessor :include_volume_data
|
@@ -383,17 +383,17 @@ module Google
|
|
383
383
|
# @return [String]
|
384
384
|
attr_accessor :create_time
|
385
385
|
|
386
|
-
# This flag indicates whether this BackupPlan has been deactivated.
|
387
|
-
# field to True locks the BackupPlan such that no further updates
|
388
|
-
# allowed (except deletes), including the deactivated field itself. It
|
389
|
-
# prevents any new Backups from being created via this BackupPlan (
|
390
|
-
# scheduled Backups). Default: False
|
386
|
+
# Optional. This flag indicates whether this BackupPlan has been deactivated.
|
387
|
+
# Setting this field to True locks the BackupPlan such that no further updates
|
388
|
+
# will be allowed (except deletes), including the deactivated field itself. It
|
389
|
+
# also prevents any new Backups from being created via this BackupPlan (
|
390
|
+
# including scheduled Backups). Default: False
|
391
391
|
# Corresponds to the JSON property `deactivated`
|
392
392
|
# @return [Boolean]
|
393
393
|
attr_accessor :deactivated
|
394
394
|
alias_method :deactivated?, :deactivated
|
395
395
|
|
396
|
-
# User specified descriptive string for this BackupPlan.
|
396
|
+
# Optional. User specified descriptive string for this BackupPlan.
|
397
397
|
# Corresponds to the JSON property `description`
|
398
398
|
# @return [String]
|
399
399
|
attr_accessor :description
|
@@ -410,7 +410,7 @@ module Google
|
|
410
410
|
# @return [String]
|
411
411
|
attr_accessor :etag
|
412
412
|
|
413
|
-
# A set of custom labels supplied by user.
|
413
|
+
# Optional. A set of custom labels supplied by user.
|
414
414
|
# Corresponds to the JSON property `labels`
|
415
415
|
# @return [Hash<String,String>]
|
416
416
|
attr_accessor :labels
|
@@ -560,29 +560,29 @@ module Google
|
|
560
560
|
class ClusterMetadata
|
561
561
|
include Google::Apis::Core::Hashable
|
562
562
|
|
563
|
-
# Anthos version
|
563
|
+
# Output only. Anthos version
|
564
564
|
# Corresponds to the JSON property `anthosVersion`
|
565
565
|
# @return [String]
|
566
566
|
attr_accessor :anthos_version
|
567
567
|
|
568
|
-
# A list of the Backup for GKE CRD versions found in the cluster.
|
568
|
+
# Output only. A list of the Backup for GKE CRD versions found in the cluster.
|
569
569
|
# Corresponds to the JSON property `backupCrdVersions`
|
570
570
|
# @return [Hash<String,String>]
|
571
571
|
attr_accessor :backup_crd_versions
|
572
572
|
|
573
|
-
# The source cluster from which this Backup was created. Valid
|
574
|
-
# projects/*/locations/*/clusters/*` - `projects/*/zones/*/clusters
|
575
|
-
# inherited from the parent BackupPlan's cluster field.
|
573
|
+
# Output only. The source cluster from which this Backup was created. Valid
|
574
|
+
# formats: - `projects/*/locations/*/clusters/*` - `projects/*/zones/*/clusters/*
|
575
|
+
# ` This is inherited from the parent BackupPlan's cluster field.
|
576
576
|
# Corresponds to the JSON property `cluster`
|
577
577
|
# @return [String]
|
578
578
|
attr_accessor :cluster
|
579
579
|
|
580
|
-
# GKE version
|
580
|
+
# Output only. GKE version
|
581
581
|
# Corresponds to the JSON property `gkeVersion`
|
582
582
|
# @return [String]
|
583
583
|
attr_accessor :gke_version
|
584
584
|
|
585
|
-
# The Kubernetes server version of the source cluster.
|
585
|
+
# Output only. The Kubernetes server version of the source cluster.
|
586
586
|
# Corresponds to the JSON property `k8sVersion`
|
587
587
|
# @return [String]
|
588
588
|
attr_accessor :k8s_version
|
@@ -613,32 +613,32 @@ module Google
|
|
613
613
|
class ClusterResourceRestoreScope
|
614
614
|
include Google::Apis::Core::Hashable
|
615
615
|
|
616
|
-
# If True, all valid cluster-scoped resources will be restored.
|
617
|
-
# exclusive to any other field in the message.
|
616
|
+
# Optional. If True, all valid cluster-scoped resources will be restored.
|
617
|
+
# Mutually exclusive to any other field in the message.
|
618
618
|
# Corresponds to the JSON property `allGroupKinds`
|
619
619
|
# @return [Boolean]
|
620
620
|
attr_accessor :all_group_kinds
|
621
621
|
alias_method :all_group_kinds?, :all_group_kinds
|
622
622
|
|
623
|
-
# A list of cluster-scoped resource group kinds to NOT restore from
|
624
|
-
# If specified, all valid cluster-scoped resources will be restored
|
625
|
-
# those specified in the list. Mutually exclusive to any other field
|
626
|
-
# message.
|
623
|
+
# Optional. A list of cluster-scoped resource group kinds to NOT restore from
|
624
|
+
# the backup. If specified, all valid cluster-scoped resources will be restored
|
625
|
+
# except for those specified in the list. Mutually exclusive to any other field
|
626
|
+
# in the message.
|
627
627
|
# Corresponds to the JSON property `excludedGroupKinds`
|
628
628
|
# @return [Array<Google::Apis::GkebackupV1::GroupKind>]
|
629
629
|
attr_accessor :excluded_group_kinds
|
630
630
|
|
631
|
-
# If True, no cluster-scoped resources will be restored. This has the
|
632
|
-
# restore scope as if the message is not defined. Mutually exclusive to any
|
631
|
+
# Optional. If True, no cluster-scoped resources will be restored. This has the
|
632
|
+
# same restore scope as if the message is not defined. Mutually exclusive to any
|
633
633
|
# other field in the message.
|
634
634
|
# Corresponds to the JSON property `noGroupKinds`
|
635
635
|
# @return [Boolean]
|
636
636
|
attr_accessor :no_group_kinds
|
637
637
|
alias_method :no_group_kinds?, :no_group_kinds
|
638
638
|
|
639
|
-
# A list of cluster-scoped resource group kinds to restore from the
|
640
|
-
# specified, only the selected resources will be restored. Mutually
|
641
|
-
# any other field in the message.
|
639
|
+
# Optional. A list of cluster-scoped resource group kinds to restore from the
|
640
|
+
# backup. If specified, only the selected resources will be restored. Mutually
|
641
|
+
# exclusive to any other field in the message.
|
642
642
|
# Corresponds to the JSON property `selectedGroupKinds`
|
643
643
|
# @return [Array<Google::Apis::GkebackupV1::GroupKind>]
|
644
644
|
attr_accessor :selected_group_kinds
|
@@ -677,8 +677,8 @@ module Google
|
|
677
677
|
class EncryptionKey
|
678
678
|
include Google::Apis::Core::Hashable
|
679
679
|
|
680
|
-
# Google Cloud KMS encryption key. Format: `projects/*/locations/*/
|
681
|
-
# cryptoKeys/*`
|
680
|
+
# Optional. Google Cloud KMS encryption key. Format: `projects/*/locations/*/
|
681
|
+
# keyRings/*/cryptoKeys/*`
|
682
682
|
# Corresponds to the JSON property `gcpKmsEncryptionKey`
|
683
683
|
# @return [String]
|
684
684
|
attr_accessor :gcp_kms_encryption_key
|
@@ -892,14 +892,14 @@ module Google
|
|
892
892
|
class GroupKind
|
893
893
|
include Google::Apis::Core::Hashable
|
894
894
|
|
895
|
-
# API group string of a Kubernetes resource, e.g. "apiextensions.k8s.
|
896
|
-
# storage.k8s.io", etc. Note: use empty string for core API group
|
895
|
+
# Optional. API group string of a Kubernetes resource, e.g. "apiextensions.k8s.
|
896
|
+
# io", "storage.k8s.io", etc. Note: use empty string for core API group
|
897
897
|
# Corresponds to the JSON property `resourceGroup`
|
898
898
|
# @return [String]
|
899
899
|
attr_accessor :resource_group
|
900
900
|
|
901
|
-
# Kind of a Kubernetes resource, e.g. "CustomResourceDefinition", "
|
902
|
-
# etc.
|
901
|
+
# Optional. Kind of a Kubernetes resource, e.g. "CustomResourceDefinition", "
|
902
|
+
# StorageClass", etc.
|
903
903
|
# Corresponds to the JSON property `resourceKind`
|
904
904
|
# @return [String]
|
905
905
|
attr_accessor :resource_kind
|
@@ -1171,12 +1171,12 @@ module Google
|
|
1171
1171
|
class NamespacedName
|
1172
1172
|
include Google::Apis::Core::Hashable
|
1173
1173
|
|
1174
|
-
# The name of the Kubernetes resource.
|
1174
|
+
# Optional. The name of the Kubernetes resource.
|
1175
1175
|
# Corresponds to the JSON property `name`
|
1176
1176
|
# @return [String]
|
1177
1177
|
attr_accessor :name
|
1178
1178
|
|
1179
|
-
# The Namespace of the Kubernetes resource.
|
1179
|
+
# Optional. The Namespace of the Kubernetes resource.
|
1180
1180
|
# Corresponds to the JSON property `namespace`
|
1181
1181
|
# @return [String]
|
1182
1182
|
attr_accessor :namespace
|
@@ -1196,7 +1196,7 @@ module Google
|
|
1196
1196
|
class NamespacedNames
|
1197
1197
|
include Google::Apis::Core::Hashable
|
1198
1198
|
|
1199
|
-
# A list of namespaced Kubernetes resources.
|
1199
|
+
# Optional. A list of namespaced Kubernetes resources.
|
1200
1200
|
# Corresponds to the JSON property `namespacedNames`
|
1201
1201
|
# @return [Array<Google::Apis::GkebackupV1::NamespacedName>]
|
1202
1202
|
attr_accessor :namespaced_names
|
@@ -1215,7 +1215,7 @@ module Google
|
|
1215
1215
|
class Namespaces
|
1216
1216
|
include Google::Apis::Core::Hashable
|
1217
1217
|
|
1218
|
-
# A list of Kubernetes Namespaces
|
1218
|
+
# Optional. A list of Kubernetes Namespaces
|
1219
1219
|
# Corresponds to the JSON property `namespaces`
|
1220
1220
|
# @return [Array<String>]
|
1221
1221
|
attr_accessor :namespaces
|
@@ -1390,28 +1390,28 @@ module Google
|
|
1390
1390
|
class ResourceFilter
|
1391
1391
|
include Google::Apis::Core::Hashable
|
1392
1392
|
|
1393
|
-
# (Filtering parameter) Any resource subject to transformation must
|
1394
|
-
# one of the listed "types". If this field is not provided, no type
|
1395
|
-
# will be performed (all resources of all types matching previous
|
1396
|
-
# parameters will be candidates for transformation).
|
1393
|
+
# Optional. (Filtering parameter) Any resource subject to transformation must
|
1394
|
+
# belong to one of the listed "types". If this field is not provided, no type
|
1395
|
+
# filtering will be performed (all resources of all types matching previous
|
1396
|
+
# filtering parameters will be candidates for transformation).
|
1397
1397
|
# Corresponds to the JSON property `groupKinds`
|
1398
1398
|
# @return [Array<Google::Apis::GkebackupV1::GroupKind>]
|
1399
1399
|
attr_accessor :group_kinds
|
1400
1400
|
|
1401
|
-
# This is a [JSONPath] (https://github.com/json-path/JsonPath/blob/
|
1402
|
-
# md) expression that matches specific fields of candidate
|
1403
|
-
# operates as a filtering parameter (resources that are not
|
1404
|
-
# expression will not be candidates for transformation).
|
1401
|
+
# Optional. This is a [JSONPath] (https://github.com/json-path/JsonPath/blob/
|
1402
|
+
# master/README.md) expression that matches specific fields of candidate
|
1403
|
+
# resources and it operates as a filtering parameter (resources that are not
|
1404
|
+
# matched with this expression will not be candidates for transformation).
|
1405
1405
|
# Corresponds to the JSON property `jsonPath`
|
1406
1406
|
# @return [String]
|
1407
1407
|
attr_accessor :json_path
|
1408
1408
|
|
1409
|
-
# (Filtering parameter) Any resource subject to transformation must be
|
1410
|
-
# within one of the listed Kubernetes Namespace in the Backup. If this
|
1411
|
-
# not provided, no namespace filtering will be performed (all resources
|
1412
|
-
# Namespaces, including all cluster-scoped resources, will be candidates
|
1413
|
-
# transformation). To mix cluster-scoped and namespaced resources in the
|
1414
|
-
# rule, use an empty string ("") as one of the target namespaces.
|
1409
|
+
# Optional. (Filtering parameter) Any resource subject to transformation must be
|
1410
|
+
# contained within one of the listed Kubernetes Namespace in the Backup. If this
|
1411
|
+
# field is not provided, no namespace filtering will be performed (all resources
|
1412
|
+
# in all Namespaces, including all cluster-scoped resources, will be candidates
|
1413
|
+
# for transformation). To mix cluster-scoped and namespaced resources in the
|
1414
|
+
# same rule, use an empty string ("") as one of the target namespaces.
|
1415
1415
|
# Corresponds to the JSON property `namespaces`
|
1416
1416
|
# @return [Array<String>]
|
1417
1417
|
attr_accessor :namespaces
|
@@ -1570,9 +1570,9 @@ module Google
|
|
1570
1570
|
attr_accessor :all_namespaces
|
1571
1571
|
alias_method :all_namespaces?, :all_namespaces
|
1572
1572
|
|
1573
|
-
# Defines the behavior for handling the situation where cluster-scoped
|
1574
|
-
# being restored already exist in the target cluster. This MUST be set
|
1575
|
-
# value other than CLUSTER_RESOURCE_CONFLICT_POLICY_UNSPECIFIED if
|
1573
|
+
# Optional. Defines the behavior for handling the situation where cluster-scoped
|
1574
|
+
# resources being restored already exist in the target cluster. This MUST be set
|
1575
|
+
# to a value other than CLUSTER_RESOURCE_CONFLICT_POLICY_UNSPECIFIED if
|
1576
1576
|
# cluster_resource_restore_scope is not empty.
|
1577
1577
|
# Corresponds to the JSON property `clusterResourceConflictPolicy`
|
1578
1578
|
# @return [String]
|
@@ -1596,9 +1596,9 @@ module Google
|
|
1596
1596
|
# @return [Google::Apis::GkebackupV1::Namespaces]
|
1597
1597
|
attr_accessor :excluded_namespaces
|
1598
1598
|
|
1599
|
-
# Defines the behavior for handling the situation where sets of
|
1600
|
-
# resources being restored already exist in the target cluster. This
|
1601
|
-
# to a value other than NAMESPACED_RESOURCE_RESTORE_MODE_UNSPECIFIED.
|
1599
|
+
# Optional. Defines the behavior for handling the situation where sets of
|
1600
|
+
# namespaced resources being restored already exist in the target cluster. This
|
1601
|
+
# MUST be set to a value other than NAMESPACED_RESOURCE_RESTORE_MODE_UNSPECIFIED.
|
1602
1602
|
# Corresponds to the JSON property `namespacedResourceRestoreMode`
|
1603
1603
|
# @return [String]
|
1604
1604
|
attr_accessor :namespaced_resource_restore_mode
|
@@ -1620,25 +1620,25 @@ module Google
|
|
1620
1620
|
# @return [Google::Apis::GkebackupV1::Namespaces]
|
1621
1621
|
attr_accessor :selected_namespaces
|
1622
1622
|
|
1623
|
-
# A list of transformation rules to be applied against Kubernetes
|
1624
|
-
# they are selected for restoration from a Backup. Rules are
|
1625
|
-
# defined - this order matters, as changes made by a rule may
|
1626
|
-
# filtering logic of subsequent rules. An empty list means no
|
1627
|
-
# occur.
|
1623
|
+
# Optional. A list of transformation rules to be applied against Kubernetes
|
1624
|
+
# resources as they are selected for restoration from a Backup. Rules are
|
1625
|
+
# executed in order defined - this order matters, as changes made by a rule may
|
1626
|
+
# impact the filtering logic of subsequent rules. An empty list means no
|
1627
|
+
# substitution will occur.
|
1628
1628
|
# Corresponds to the JSON property `substitutionRules`
|
1629
1629
|
# @return [Array<Google::Apis::GkebackupV1::SubstitutionRule>]
|
1630
1630
|
attr_accessor :substitution_rules
|
1631
1631
|
|
1632
|
-
# A list of transformation rules to be applied against Kubernetes
|
1633
|
-
# they are selected for restoration from a Backup. Rules are
|
1634
|
-
# defined - this order matters, as changes made by a rule may
|
1635
|
-
# filtering logic of subsequent rules. An empty list means no
|
1636
|
-
# will occur.
|
1632
|
+
# Optional. A list of transformation rules to be applied against Kubernetes
|
1633
|
+
# resources as they are selected for restoration from a Backup. Rules are
|
1634
|
+
# executed in order defined - this order matters, as changes made by a rule may
|
1635
|
+
# impact the filtering logic of subsequent rules. An empty list means no
|
1636
|
+
# transformation will occur.
|
1637
1637
|
# Corresponds to the JSON property `transformationRules`
|
1638
1638
|
# @return [Array<Google::Apis::GkebackupV1::TransformationRule>]
|
1639
1639
|
attr_accessor :transformation_rules
|
1640
1640
|
|
1641
|
-
# Specifies the mechanism to be used to restore volume data. Default:
|
1641
|
+
# Optional. Specifies the mechanism to be used to restore volume data. Default:
|
1642
1642
|
# VOLUME_DATA_RESTORE_POLICY_UNSPECIFIED (will be treated as
|
1643
1643
|
# NO_VOLUME_DATA_RESTORATION).
|
1644
1644
|
# Corresponds to the JSON property `volumeDataRestorePolicy`
|
@@ -1690,7 +1690,7 @@ module Google
|
|
1690
1690
|
# @return [String]
|
1691
1691
|
attr_accessor :create_time
|
1692
1692
|
|
1693
|
-
# User specified descriptive string for this RestorePlan.
|
1693
|
+
# Optional. User specified descriptive string for this RestorePlan.
|
1694
1694
|
# Corresponds to the JSON property `description`
|
1695
1695
|
# @return [String]
|
1696
1696
|
attr_accessor :description
|
@@ -1707,7 +1707,7 @@ module Google
|
|
1707
1707
|
# @return [String]
|
1708
1708
|
attr_accessor :etag
|
1709
1709
|
|
1710
|
-
# A set of custom labels supplied by user.
|
1710
|
+
# Optional. A set of custom labels supplied by user.
|
1711
1711
|
# Corresponds to the JSON property `labels`
|
1712
1712
|
# @return [Hash<String,String>]
|
1713
1713
|
attr_accessor :labels
|
@@ -1771,32 +1771,33 @@ module Google
|
|
1771
1771
|
class RetentionPolicy
|
1772
1772
|
include Google::Apis::Core::Hashable
|
1773
1773
|
|
1774
|
-
# Minimum age for Backups created via this BackupPlan (in days). This
|
1775
|
-
# be an integer value between 0-90 (inclusive). A Backup created
|
1776
|
-
# BackupPlan will NOT be deletable until it reaches Backup's (
|
1777
|
-
# backup_delete_lock_days). Updating this field of a BackupPlan
|
1778
|
-
# existing Backups under it. Backups created AFTER a successful
|
1779
|
-
# inherit the new value. Default: 0 (no delete blocking)
|
1774
|
+
# Optional. Minimum age for Backups created via this BackupPlan (in days). This
|
1775
|
+
# field MUST be an integer value between 0-90 (inclusive). A Backup created
|
1776
|
+
# under this BackupPlan will NOT be deletable until it reaches Backup's (
|
1777
|
+
# create_time + backup_delete_lock_days). Updating this field of a BackupPlan
|
1778
|
+
# does NOT affect existing Backups under it. Backups created AFTER a successful
|
1779
|
+
# update will inherit the new value. Default: 0 (no delete blocking)
|
1780
1780
|
# Corresponds to the JSON property `backupDeleteLockDays`
|
1781
1781
|
# @return [Fixnum]
|
1782
1782
|
attr_accessor :backup_delete_lock_days
|
1783
1783
|
|
1784
|
-
# The default maximum age of a Backup created via this BackupPlan.
|
1785
|
-
# MUST be an integer value >= 0 and <= 365. If specified, a Backup
|
1786
|
-
# this BackupPlan will be automatically deleted after its age
|
1787
|
-
# create_time + backup_retain_days). If not specified, Backups created
|
1788
|
-
# this BackupPlan will NOT be subject to automatic deletion. Updating this
|
1789
|
-
# does NOT affect existing Backups under it. Backups created AFTER a
|
1790
|
-
# update will automatically pick up the new value. NOTE:
|
1791
|
-
# be >= backup_delete_lock_days. If cron_schedule is
|
1792
|
-
#
|
1784
|
+
# Optional. The default maximum age of a Backup created via this BackupPlan.
|
1785
|
+
# This field MUST be an integer value >= 0 and <= 365. If specified, a Backup
|
1786
|
+
# created under this BackupPlan will be automatically deleted after its age
|
1787
|
+
# reaches (create_time + backup_retain_days). If not specified, Backups created
|
1788
|
+
# under this BackupPlan will NOT be subject to automatic deletion. Updating this
|
1789
|
+
# field does NOT affect existing Backups under it. Backups created AFTER a
|
1790
|
+
# successful update will automatically pick up the new value. NOTE:
|
1791
|
+
# backup_retain_days must be >= backup_delete_lock_days. If cron_schedule is
|
1792
|
+
# defined, then this must be <= 360 * the creation interval. Default: 0 (no
|
1793
|
+
# automatic deletion)
|
1793
1794
|
# Corresponds to the JSON property `backupRetainDays`
|
1794
1795
|
# @return [Fixnum]
|
1795
1796
|
attr_accessor :backup_retain_days
|
1796
1797
|
|
1797
|
-
# This flag denotes whether the retention policy of this BackupPlan is
|
1798
|
-
# If set to True, no further update is allowed on this policy, including
|
1799
|
-
# locked` field itself. Default: False
|
1798
|
+
# Optional. This flag denotes whether the retention policy of this BackupPlan is
|
1799
|
+
# locked. If set to True, no further update is allowed on this policy, including
|
1800
|
+
# the `locked` field itself. Default: False
|
1800
1801
|
# Corresponds to the JSON property `locked`
|
1801
1802
|
# @return [Boolean]
|
1802
1803
|
attr_accessor :locked
|
@@ -1819,17 +1820,17 @@ module Google
|
|
1819
1820
|
class Schedule
|
1820
1821
|
include Google::Apis::Core::Hashable
|
1821
1822
|
|
1822
|
-
# A standard [cron](https://wikipedia.com/wiki/cron) string that
|
1823
|
-
# repeating schedule for creating Backups via this BackupPlan. This is
|
1824
|
-
# exclusive with the rpo_config field since at most one schedule can be
|
1825
|
-
# for a BackupPlan. If this is defined, then backup_retain_days must
|
1826
|
-
# defined. Default (empty): no automatic backup creation will occur.
|
1823
|
+
# Optional. A standard [cron](https://wikipedia.com/wiki/cron) string that
|
1824
|
+
# defines a repeating schedule for creating Backups via this BackupPlan. This is
|
1825
|
+
# mutually exclusive with the rpo_config field since at most one schedule can be
|
1826
|
+
# defined for a BackupPlan. If this is defined, then backup_retain_days must
|
1827
|
+
# also be defined. Default (empty): no automatic backup creation will occur.
|
1827
1828
|
# Corresponds to the JSON property `cronSchedule`
|
1828
1829
|
# @return [String]
|
1829
1830
|
attr_accessor :cron_schedule
|
1830
1831
|
|
1831
|
-
# This flag denotes whether automatic Backup creation is paused for
|
1832
|
-
# BackupPlan. Default: False
|
1832
|
+
# Optional. This flag denotes whether automatic Backup creation is paused for
|
1833
|
+
# this BackupPlan. Default: False
|
1833
1834
|
# Corresponds to the JSON property `paused`
|
1834
1835
|
# @return [Boolean]
|
1835
1836
|
attr_accessor :paused
|
@@ -1905,29 +1906,29 @@ module Google
|
|
1905
1906
|
class SubstitutionRule
|
1906
1907
|
include Google::Apis::Core::Hashable
|
1907
1908
|
|
1908
|
-
# This is the new value to set for any fields that pass the filtering
|
1909
|
-
# selection criteria. To remove a value from a Kubernetes resource, either
|
1910
|
-
# this field unspecified, or set it to the empty string ("").
|
1909
|
+
# Optional. This is the new value to set for any fields that pass the filtering
|
1910
|
+
# and selection criteria. To remove a value from a Kubernetes resource, either
|
1911
|
+
# leave this field unspecified, or set it to the empty string ("").
|
1911
1912
|
# Corresponds to the JSON property `newValue`
|
1912
1913
|
# @return [String]
|
1913
1914
|
attr_accessor :new_value
|
1914
1915
|
|
1915
|
-
# (Filtering parameter) This is a [regular expression] (https://en.
|
1916
|
-
# wiki/Regular_expression) that is compared against the fields
|
1917
|
-
# target_json_path expression (and must also have passed the
|
1918
|
-
# Substitution will not be performed against fields whose
|
1919
|
-
# this expression. If this field is NOT specified, then ALL
|
1920
|
-
# the target_json_path expression will undergo substitution.
|
1921
|
-
# e.g., "", rather than unspecified) value for this field
|
1922
|
-
# fields.
|
1916
|
+
# Optional. (Filtering parameter) This is a [regular expression] (https://en.
|
1917
|
+
# wikipedia.org/wiki/Regular_expression) that is compared against the fields
|
1918
|
+
# matched by the target_json_path expression (and must also have passed the
|
1919
|
+
# previous filters). Substitution will not be performed against fields whose
|
1920
|
+
# value does not match this expression. If this field is NOT specified, then ALL
|
1921
|
+
# fields matched by the target_json_path expression will undergo substitution.
|
1922
|
+
# Note that an empty (e.g., "", rather than unspecified) value for this field
|
1923
|
+
# will only match empty fields.
|
1923
1924
|
# Corresponds to the JSON property `originalValuePattern`
|
1924
1925
|
# @return [String]
|
1925
1926
|
attr_accessor :original_value_pattern
|
1926
1927
|
|
1927
|
-
# (Filtering parameter) Any resource subject to substitution must
|
1928
|
-
# of the listed "types". If this field is not provided, no type
|
1929
|
-
# be performed (all resources of all types matching previous
|
1930
|
-
# parameters will be candidates for substitution).
|
1928
|
+
# Optional. (Filtering parameter) Any resource subject to substitution must
|
1929
|
+
# belong to one of the listed "types". If this field is not provided, no type
|
1930
|
+
# filtering will be performed (all resources of all types matching previous
|
1931
|
+
# filtering parameters will be candidates for substitution).
|
1931
1932
|
# Corresponds to the JSON property `targetGroupKinds`
|
1932
1933
|
# @return [Array<Google::Apis::GkebackupV1::GroupKind>]
|
1933
1934
|
attr_accessor :target_group_kinds
|
@@ -1942,12 +1943,12 @@ module Google
|
|
1942
1943
|
# @return [String]
|
1943
1944
|
attr_accessor :target_json_path
|
1944
1945
|
|
1945
|
-
# (Filtering parameter) Any resource subject to substitution must be
|
1946
|
-
# within one of the listed Kubernetes Namespace in the Backup. If this
|
1947
|
-
# not provided, no namespace filtering will be performed (all resources
|
1948
|
-
# Namespaces, including all cluster-scoped resources, will be candidates
|
1949
|
-
# substitution). To mix cluster-scoped and namespaced resources in the same
|
1950
|
-
# use an empty string ("") as one of the target namespaces.
|
1946
|
+
# Optional. (Filtering parameter) Any resource subject to substitution must be
|
1947
|
+
# contained within one of the listed Kubernetes Namespace in the Backup. If this
|
1948
|
+
# field is not provided, no namespace filtering will be performed (all resources
|
1949
|
+
# in all Namespaces, including all cluster-scoped resources, will be candidates
|
1950
|
+
# for substitution). To mix cluster-scoped and namespaced resources in the same
|
1951
|
+
# rule, use an empty string ("") as one of the target namespaces.
|
1951
1952
|
# Corresponds to the JSON property `targetNamespaces`
|
1952
1953
|
# @return [Array<String>]
|
1953
1954
|
attr_accessor :target_namespaces
|
@@ -2012,8 +2013,8 @@ module Google
|
|
2012
2013
|
class TransformationRule
|
2013
2014
|
include Google::Apis::Core::Hashable
|
2014
2015
|
|
2015
|
-
# The description is a user specified string description of the
|
2016
|
-
# rule.
|
2016
|
+
# Optional. The description is a user specified string description of the
|
2017
|
+
# transformation rule.
|
2017
2018
|
# Corresponds to the JSON property `description`
|
2018
2019
|
# @return [String]
|
2019
2020
|
attr_accessor :description
|
@@ -2050,8 +2051,8 @@ module Google
|
|
2050
2051
|
class TransformationRuleAction
|
2051
2052
|
include Google::Apis::Core::Hashable
|
2052
2053
|
|
2053
|
-
# A string containing a JSON Pointer value that references the
|
2054
|
-
# target document to move the value from.
|
2054
|
+
# Optional. A string containing a JSON Pointer value that references the
|
2055
|
+
# location in the target document to move the value from.
|
2055
2056
|
# Corresponds to the JSON property `fromPath`
|
2056
2057
|
# @return [String]
|
2057
2058
|
attr_accessor :from_path
|
@@ -2061,14 +2062,14 @@ module Google
|
|
2061
2062
|
# @return [String]
|
2062
2063
|
attr_accessor :op
|
2063
2064
|
|
2064
|
-
# A string containing a JSON-Pointer value that references a location
|
2065
|
-
# target document where the operation is performed.
|
2065
|
+
# Optional. A string containing a JSON-Pointer value that references a location
|
2066
|
+
# within the target document where the operation is performed.
|
2066
2067
|
# Corresponds to the JSON property `path`
|
2067
2068
|
# @return [String]
|
2068
2069
|
attr_accessor :path
|
2069
2070
|
|
2070
|
-
# A string that specifies the desired value in string format to use
|
2071
|
-
# transformation.
|
2071
|
+
# Optional. A string that specifies the desired value in string format to use
|
2072
|
+
# for transformation.
|
2072
2073
|
# Corresponds to the JSON property `value`
|
2073
2074
|
# @return [String]
|
2074
2075
|
attr_accessor :value
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkebackupV1
|
18
18
|
# Version of the google-apis-gkebackup_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230719"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -202,8 +202,8 @@ module Google
|
|
202
202
|
# Required. Fully qualified BackupPlan name. Format: `projects/*/locations/*/
|
203
203
|
# backupPlans/*`
|
204
204
|
# @param [String] etag
|
205
|
-
# If provided, this value must match the current value of the target
|
206
|
-
# s etag field or the request is rejected.
|
205
|
+
# Optional. If provided, this value must match the current value of the target
|
206
|
+
# BackupPlan's etag field or the request is rejected.
|
207
207
|
# @param [String] fields
|
208
208
|
# Selector specifying which fields to include in a partial response.
|
209
209
|
# @param [String] quota_user
|
@@ -313,19 +313,20 @@ module Google
|
|
313
313
|
# Required. The location that contains the BackupPlans to list. Format: `
|
314
314
|
# projects/*/locations/*`
|
315
315
|
# @param [String] filter
|
316
|
-
# Field match expression used to filter the results.
|
316
|
+
# Optional. Field match expression used to filter the results.
|
317
317
|
# @param [String] order_by
|
318
|
-
# Field by which to sort the results.
|
318
|
+
# Optional. Field by which to sort the results.
|
319
319
|
# @param [Fixnum] page_size
|
320
|
-
# The target number of results to return in a single response. If not
|
321
|
-
# a default value will be chosen by the service. Note that the
|
322
|
-
#
|
323
|
-
# next_page_token to determine if there are more instances left to be
|
320
|
+
# Optional. The target number of results to return in a single response. If not
|
321
|
+
# specified, a default value will be chosen by the service. Note that the
|
322
|
+
# response may include a partial list and a caller should only rely on the
|
323
|
+
# response's next_page_token to determine if there are more instances left to be
|
324
|
+
# queried.
|
324
325
|
# @param [String] page_token
|
325
|
-
# The value of next_page_token received from a previous `
|
326
|
-
# Provide this to retrieve the subsequent page in a multi-
|
327
|
-
# When paginating, all other parameters provided to `
|
328
|
-
# the call that provided the page token.
|
326
|
+
# Optional. The value of next_page_token received from a previous `
|
327
|
+
# ListBackupPlans` call. Provide this to retrieve the subsequent page in a multi-
|
328
|
+
# page list of results. When paginating, all other parameters provided to `
|
329
|
+
# ListBackupPlans` must match the call that provided the page token.
|
329
330
|
# @param [String] fields
|
330
331
|
# Selector specifying which fields to include in a partial response.
|
331
332
|
# @param [String] quota_user
|
@@ -363,10 +364,10 @@ module Google
|
|
363
364
|
# locations/*/backupPlans/*`
|
364
365
|
# @param [Google::Apis::GkebackupV1::BackupPlan] backup_plan_object
|
365
366
|
# @param [String] update_mask
|
366
|
-
# This is used to specify the fields to be overwritten in the
|
367
|
-
# targeted for update. The values for each of these updated fields
|
368
|
-
# from the `backup_plan` provided with this request. Field names
|
369
|
-
# the root of the resource (e.g., `description`, `backup_config.
|
367
|
+
# Optional. This is used to specify the fields to be overwritten in the
|
368
|
+
# BackupPlan targeted for update. The values for each of these updated fields
|
369
|
+
# will be taken from the `backup_plan` provided with this request. Field names
|
370
|
+
# are relative to the root of the resource (e.g., `description`, `backup_config.
|
370
371
|
# include_volume_data`, etc.) If no `update_mask` is provided, all fields in `
|
371
372
|
# backup_plan` will be written to the target BackupPlan resource. Note that
|
372
373
|
# OUTPUT_ONLY and IMMUTABLE fields in `backup_plan` are ignored and are not used
|
@@ -483,11 +484,11 @@ module Google
|
|
483
484
|
# /locations/*/backupPlans/*`
|
484
485
|
# @param [Google::Apis::GkebackupV1::Backup] backup_object
|
485
486
|
# @param [String] backup_id
|
486
|
-
# The client-provided short name for the Backup resource. This name
|
487
|
-
# between 1 and 63 characters long (inclusive) - consist of only
|
488
|
-
# ASCII letters, numbers, and dashes - start with a lower-case letter
|
489
|
-
# a lower-case letter or number - be unique within the set of Backups
|
490
|
-
# BackupPlan
|
487
|
+
# Optional. The client-provided short name for the Backup resource. This name
|
488
|
+
# must: - be between 1 and 63 characters long (inclusive) - consist of only
|
489
|
+
# lower-case ASCII letters, numbers, and dashes - start with a lower-case letter
|
490
|
+
# - end with a lower-case letter or number - be unique within the set of Backups
|
491
|
+
# in this BackupPlan
|
491
492
|
# @param [String] fields
|
492
493
|
# Selector specifying which fields to include in a partial response.
|
493
494
|
# @param [String] quota_user
|
@@ -523,11 +524,12 @@ module Google
|
|
523
524
|
# Required. Name of the Backup resource. Format: `projects/*/locations/*/
|
524
525
|
# backupPlans/*/backups/*`
|
525
526
|
# @param [String] etag
|
526
|
-
# If provided, this value must match the current value of the target
|
527
|
-
# etag field or the request is rejected.
|
527
|
+
# Optional. If provided, this value must match the current value of the target
|
528
|
+
# Backup's etag field or the request is rejected.
|
528
529
|
# @param [Boolean] force
|
529
|
-
# If set to true, any VolumeBackups below this Backup will also be
|
530
|
-
# Otherwise, the request will only succeed if the Backup has no
|
530
|
+
# Optional. If set to true, any VolumeBackups below this Backup will also be
|
531
|
+
# deleted. Otherwise, the request will only succeed if the Backup has no
|
532
|
+
# VolumeBackups.
|
531
533
|
# @param [String] fields
|
532
534
|
# Selector specifying which fields to include in a partial response.
|
533
535
|
# @param [String] quota_user
|
@@ -638,19 +640,20 @@ module Google
|
|
638
640
|
# Required. The BackupPlan that contains the Backups to list. Format: `projects/*
|
639
641
|
# /locations/*/backupPlans/*`
|
640
642
|
# @param [String] filter
|
641
|
-
# Field match expression used to filter the results.
|
643
|
+
# Optional. Field match expression used to filter the results.
|
642
644
|
# @param [String] order_by
|
643
|
-
# Field by which to sort the results.
|
645
|
+
# Optional. Field by which to sort the results.
|
644
646
|
# @param [Fixnum] page_size
|
645
|
-
# The target number of results to return in a single response. If not
|
646
|
-
# a default value will be chosen by the service. Note that the
|
647
|
-
#
|
648
|
-
# next_page_token to determine if there are more instances left to be
|
647
|
+
# Optional. The target number of results to return in a single response. If not
|
648
|
+
# specified, a default value will be chosen by the service. Note that the
|
649
|
+
# response may include a partial list and a caller should only rely on the
|
650
|
+
# response's next_page_token to determine if there are more instances left to be
|
651
|
+
# queried.
|
649
652
|
# @param [String] page_token
|
650
|
-
# The value of next_page_token received from a previous `ListBackups`
|
651
|
-
# Provide this to retrieve the subsequent page in a multi-page list of
|
652
|
-
# When paginating, all other parameters provided to `ListBackups` must
|
653
|
-
# call that provided the page token.
|
653
|
+
# Optional. The value of next_page_token received from a previous `ListBackups`
|
654
|
+
# call. Provide this to retrieve the subsequent page in a multi-page list of
|
655
|
+
# results. When paginating, all other parameters provided to `ListBackups` must
|
656
|
+
# match the call that provided the page token.
|
654
657
|
# @param [String] fields
|
655
658
|
# Selector specifying which fields to include in a partial response.
|
656
659
|
# @param [String] quota_user
|
@@ -688,12 +691,13 @@ module Google
|
|
688
691
|
# backupPlans/*/backups/*`
|
689
692
|
# @param [Google::Apis::GkebackupV1::Backup] backup_object
|
690
693
|
# @param [String] update_mask
|
691
|
-
# This is used to specify the fields to be overwritten in the Backup
|
692
|
-
# for update. The values for each of these updated fields will be taken
|
693
|
-
# `backup_plan` provided with this request. Field names are relative to
|
694
|
-
# of the resource. If no `update_mask` is provided, all fields in `
|
695
|
-
# be written to the target Backup resource. Note that OUTPUT_ONLY
|
696
|
-
# fields in `backup` are ignored and are not used to update the
|
694
|
+
# Optional. This is used to specify the fields to be overwritten in the Backup
|
695
|
+
# targeted for update. The values for each of these updated fields will be taken
|
696
|
+
# from the `backup_plan` provided with this request. Field names are relative to
|
697
|
+
# the root of the resource. If no `update_mask` is provided, all fields in `
|
698
|
+
# backup` will be written to the target Backup resource. Note that OUTPUT_ONLY
|
699
|
+
# and IMMUTABLE fields in `backup` are ignored and are not used to update the
|
700
|
+
# target Backup.
|
697
701
|
# @param [String] fields
|
698
702
|
# Selector specifying which fields to include in a partial response.
|
699
703
|
# @param [String] quota_user
|
@@ -881,19 +885,20 @@ module Google
|
|
881
885
|
# Required. The Backup that contains the VolumeBackups to list. Format: `
|
882
886
|
# projects/*/locations/*/backupPlans/*/backups/*`
|
883
887
|
# @param [String] filter
|
884
|
-
# Field match expression used to filter the results.
|
888
|
+
# Optional. Field match expression used to filter the results.
|
885
889
|
# @param [String] order_by
|
886
|
-
# Field by which to sort the results.
|
890
|
+
# Optional. Field by which to sort the results.
|
887
891
|
# @param [Fixnum] page_size
|
888
|
-
# The target number of results to return in a single response. If not
|
889
|
-
# a default value will be chosen by the service. Note that the
|
890
|
-
#
|
891
|
-
# next_page_token to determine if there are more instances left to be
|
892
|
+
# Optional. The target number of results to return in a single response. If not
|
893
|
+
# specified, a default value will be chosen by the service. Note that the
|
894
|
+
# response may include a partial list and a caller should only rely on the
|
895
|
+
# response's next_page_token to determine if there are more instances left to be
|
896
|
+
# queried.
|
892
897
|
# @param [String] page_token
|
893
|
-
# The value of next_page_token received from a previous `
|
894
|
-
# Provide this to retrieve the subsequent page in a
|
895
|
-
# When paginating, all other parameters provided to `
|
896
|
-
# match the call that provided the page token.
|
898
|
+
# Optional. The value of next_page_token received from a previous `
|
899
|
+
# ListVolumeBackups` call. Provide this to retrieve the subsequent page in a
|
900
|
+
# multi-page list of results. When paginating, all other parameters provided to `
|
901
|
+
# ListVolumeBackups` must match the call that provided the page token.
|
897
902
|
# @param [String] fields
|
898
903
|
# Selector specifying which fields to include in a partial response.
|
899
904
|
# @param [String] quota_user
|
@@ -1158,11 +1163,12 @@ module Google
|
|
1158
1163
|
# Required. Fully qualified RestorePlan name. Format: `projects/*/locations/*/
|
1159
1164
|
# restorePlans/*`
|
1160
1165
|
# @param [String] etag
|
1161
|
-
# If provided, this value must match the current value of the target
|
1162
|
-
# s etag field or the request is rejected.
|
1166
|
+
# Optional. If provided, this value must match the current value of the target
|
1167
|
+
# RestorePlan's etag field or the request is rejected.
|
1163
1168
|
# @param [Boolean] force
|
1164
|
-
# If set to true, any Restores below this RestorePlan will also be
|
1165
|
-
# Otherwise, the request will only succeed if the RestorePlan has no
|
1169
|
+
# Optional. If set to true, any Restores below this RestorePlan will also be
|
1170
|
+
# deleted. Otherwise, the request will only succeed if the RestorePlan has no
|
1171
|
+
# Restores.
|
1166
1172
|
# @param [String] fields
|
1167
1173
|
# Selector specifying which fields to include in a partial response.
|
1168
1174
|
# @param [String] quota_user
|
@@ -1273,19 +1279,20 @@ module Google
|
|
1273
1279
|
# Required. The location that contains the RestorePlans to list. Format: `
|
1274
1280
|
# projects/*/locations/*`
|
1275
1281
|
# @param [String] filter
|
1276
|
-
# Field match expression used to filter the results.
|
1282
|
+
# Optional. Field match expression used to filter the results.
|
1277
1283
|
# @param [String] order_by
|
1278
|
-
# Field by which to sort the results.
|
1284
|
+
# Optional. Field by which to sort the results.
|
1279
1285
|
# @param [Fixnum] page_size
|
1280
|
-
# The target number of results to return in a single response. If not
|
1281
|
-
# a default value will be chosen by the service. Note that the
|
1282
|
-
#
|
1283
|
-
# next_page_token to determine if there are more instances left to be
|
1286
|
+
# Optional. The target number of results to return in a single response. If not
|
1287
|
+
# specified, a default value will be chosen by the service. Note that the
|
1288
|
+
# response may include a partial list and a caller should only rely on the
|
1289
|
+
# response's next_page_token to determine if there are more instances left to be
|
1290
|
+
# queried.
|
1284
1291
|
# @param [String] page_token
|
1285
|
-
# The value of next_page_token received from a previous `
|
1286
|
-
# Provide this to retrieve the subsequent page in a
|
1287
|
-
# When paginating, all other parameters provided to `
|
1288
|
-
# match the call that provided the page token.
|
1292
|
+
# Optional. The value of next_page_token received from a previous `
|
1293
|
+
# ListRestorePlans` call. Provide this to retrieve the subsequent page in a
|
1294
|
+
# multi-page list of results. When paginating, all other parameters provided to `
|
1295
|
+
# ListRestorePlans` must match the call that provided the page token.
|
1289
1296
|
# @param [String] fields
|
1290
1297
|
# Selector specifying which fields to include in a partial response.
|
1291
1298
|
# @param [String] quota_user
|
@@ -1323,13 +1330,13 @@ module Google
|
|
1323
1330
|
# locations/*/restorePlans/*`.
|
1324
1331
|
# @param [Google::Apis::GkebackupV1::RestorePlan] restore_plan_object
|
1325
1332
|
# @param [String] update_mask
|
1326
|
-
# This is used to specify the fields to be overwritten in the
|
1327
|
-
# targeted for update. The values for each of these updated fields
|
1328
|
-
# from the `restore_plan` provided with this request. Field names
|
1329
|
-
# to the root of the resource. If no `update_mask` is provided, all
|
1330
|
-
# restore_plan` will be written to the target RestorePlan resource.
|
1331
|
-
# OUTPUT_ONLY and IMMUTABLE fields in `restore_plan` are ignored and
|
1332
|
-
# used to update the target RestorePlan.
|
1333
|
+
# Optional. This is used to specify the fields to be overwritten in the
|
1334
|
+
# RestorePlan targeted for update. The values for each of these updated fields
|
1335
|
+
# will be taken from the `restore_plan` provided with this request. Field names
|
1336
|
+
# are relative to the root of the resource. If no `update_mask` is provided, all
|
1337
|
+
# fields in `restore_plan` will be written to the target RestorePlan resource.
|
1338
|
+
# Note that OUTPUT_ONLY and IMMUTABLE fields in `restore_plan` are ignored and
|
1339
|
+
# are not used to update the target RestorePlan.
|
1333
1340
|
# @param [String] fields
|
1334
1341
|
# Selector specifying which fields to include in a partial response.
|
1335
1342
|
# @param [String] quota_user
|
@@ -1482,11 +1489,12 @@ module Google
|
|
1482
1489
|
# Required. Full name of the Restore Format: `projects/*/locations/*/
|
1483
1490
|
# restorePlans/*/restores/*`
|
1484
1491
|
# @param [String] etag
|
1485
|
-
# If provided, this value must match the current value of the target
|
1486
|
-
# etag field or the request is rejected.
|
1492
|
+
# Optional. If provided, this value must match the current value of the target
|
1493
|
+
# Restore's etag field or the request is rejected.
|
1487
1494
|
# @param [Boolean] force
|
1488
|
-
# If set to true, any VolumeRestores below this restore will also be
|
1489
|
-
# Otherwise, the request will only succeed if the restore has no
|
1495
|
+
# Optional. If set to true, any VolumeRestores below this restore will also be
|
1496
|
+
# deleted. Otherwise, the request will only succeed if the restore has no
|
1497
|
+
# VolumeRestores.
|
1490
1498
|
# @param [String] fields
|
1491
1499
|
# Selector specifying which fields to include in a partial response.
|
1492
1500
|
# @param [String] quota_user
|
@@ -1597,19 +1605,20 @@ module Google
|
|
1597
1605
|
# Required. The RestorePlan that contains the Restores to list. Format: `
|
1598
1606
|
# projects/*/locations/*/restorePlans/*`
|
1599
1607
|
# @param [String] filter
|
1600
|
-
# Field match expression used to filter the results.
|
1608
|
+
# Optional. Field match expression used to filter the results.
|
1601
1609
|
# @param [String] order_by
|
1602
|
-
# Field by which to sort the results.
|
1610
|
+
# Optional. Field by which to sort the results.
|
1603
1611
|
# @param [Fixnum] page_size
|
1604
|
-
# The target number of results to return in a single response. If not
|
1605
|
-
# a default value will be chosen by the service. Note that the
|
1606
|
-
#
|
1607
|
-
# next_page_token to determine if there are more instances left to be
|
1612
|
+
# Optional. The target number of results to return in a single response. If not
|
1613
|
+
# specified, a default value will be chosen by the service. Note that the
|
1614
|
+
# response may include a partial list and a caller should only rely on the
|
1615
|
+
# response's next_page_token to determine if there are more instances left to be
|
1616
|
+
# queried.
|
1608
1617
|
# @param [String] page_token
|
1609
|
-
# The value of next_page_token received from a previous `ListRestores`
|
1610
|
-
# Provide this to retrieve the subsequent page in a multi-page list of
|
1611
|
-
# When paginating, all other parameters provided to `ListRestores` must
|
1612
|
-
# the call that provided the page token.
|
1618
|
+
# Optional. The value of next_page_token received from a previous `ListRestores`
|
1619
|
+
# call. Provide this to retrieve the subsequent page in a multi-page list of
|
1620
|
+
# results. When paginating, all other parameters provided to `ListRestores` must
|
1621
|
+
# match the call that provided the page token.
|
1613
1622
|
# @param [String] fields
|
1614
1623
|
# Selector specifying which fields to include in a partial response.
|
1615
1624
|
# @param [String] quota_user
|
@@ -1647,12 +1656,13 @@ module Google
|
|
1647
1656
|
# locations/*/restorePlans/*/restores/*`
|
1648
1657
|
# @param [Google::Apis::GkebackupV1::Restore] restore_object
|
1649
1658
|
# @param [String] update_mask
|
1650
|
-
# This is used to specify the fields to be overwritten in the Restore
|
1651
|
-
# for update. The values for each of these updated fields will be taken
|
1652
|
-
# `restore` provided with this request. Field names are relative to the
|
1653
|
-
# the resource. If no `update_mask` is provided, all fields in `restore`
|
1654
|
-
# written to the target Restore resource. Note that OUTPUT_ONLY and
|
1655
|
-
# fields in `restore` are ignored and are not used to update the
|
1659
|
+
# Optional. This is used to specify the fields to be overwritten in the Restore
|
1660
|
+
# targeted for update. The values for each of these updated fields will be taken
|
1661
|
+
# from the `restore` provided with this request. Field names are relative to the
|
1662
|
+
# root of the resource. If no `update_mask` is provided, all fields in `restore`
|
1663
|
+
# will be written to the target Restore resource. Note that OUTPUT_ONLY and
|
1664
|
+
# IMMUTABLE fields in `restore` are ignored and are not used to update the
|
1665
|
+
# target Restore.
|
1656
1666
|
# @param [String] fields
|
1657
1667
|
# Selector specifying which fields to include in a partial response.
|
1658
1668
|
# @param [String] quota_user
|
@@ -1840,19 +1850,20 @@ module Google
|
|
1840
1850
|
# Required. The Restore that contains the VolumeRestores to list. Format: `
|
1841
1851
|
# projects/*/locations/*/restorePlans/*/restores/*`
|
1842
1852
|
# @param [String] filter
|
1843
|
-
# Field match expression used to filter the results.
|
1853
|
+
# Optional. Field match expression used to filter the results.
|
1844
1854
|
# @param [String] order_by
|
1845
|
-
# Field by which to sort the results.
|
1855
|
+
# Optional. Field by which to sort the results.
|
1846
1856
|
# @param [Fixnum] page_size
|
1847
|
-
# The target number of results to return in a single response. If not
|
1848
|
-
# a default value will be chosen by the service. Note that the
|
1849
|
-
#
|
1850
|
-
# next_page_token to determine if there are more instances left to be
|
1857
|
+
# Optional. The target number of results to return in a single response. If not
|
1858
|
+
# specified, a default value will be chosen by the service. Note that the
|
1859
|
+
# response may include a partial list and a caller should only rely on the
|
1860
|
+
# response's next_page_token to determine if there are more instances left to be
|
1861
|
+
# queried.
|
1851
1862
|
# @param [String] page_token
|
1852
|
-
# The value of next_page_token received from a previous `
|
1853
|
-
# call. Provide this to retrieve the subsequent page in a
|
1854
|
-
# results. When paginating, all other parameters provided to `
|
1855
|
-
# must match the call that provided the page token.
|
1863
|
+
# Optional. The value of next_page_token received from a previous `
|
1864
|
+
# ListVolumeRestores` call. Provide this to retrieve the subsequent page in a
|
1865
|
+
# multi-page list of results. When paginating, all other parameters provided to `
|
1866
|
+
# ListVolumeRestores` must match the call that provided the page token.
|
1856
1867
|
# @param [String] fields
|
1857
1868
|
# Selector specifying which fields to include in a partial response.
|
1858
1869
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkebackup_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkebackup_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkebackup_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkebackup_v1/v0.20.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkebackup_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|