google-apis-backupdr_v1 0.53.0 → 0.54.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e1f229bfffe9b69400a2d2398ae2fb9f060accaeb61ab4a87855e3e052cddb5
|
|
4
|
+
data.tar.gz: 56bc68bd26829b3add5c258a3133138bfec4dff2765bbc6bcb01e0350f6b8763
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 473e4f3ea7cdc0b8208ac2b42a2137b9b8d27cb0152dfd9c723c3e79468f3ceb381c0a57c1e0f65f89abed53e8178af8cf2f14305d81b84cff68274e12477aa9
|
|
7
|
+
data.tar.gz: 5c6d4737d292eca595eb1f60fb1f1f3cb0eb29bf5268207f6018c5429cac7c4464cae8bb4daa04886bd0df2a19799731a021b5da5e93846ffd2187645c7ddfd4
|
data/CHANGELOG.md
CHANGED
|
@@ -666,6 +666,12 @@ module Google
|
|
|
666
666
|
# @return [String]
|
|
667
667
|
attr_accessor :expire_time
|
|
668
668
|
|
|
669
|
+
# FilestoreInstanceBackupProperties represents the properties of a Filestore
|
|
670
|
+
# instance that are backed up by the datasource. .
|
|
671
|
+
# Corresponds to the JSON property `filestoreInstanceBackupProperties`
|
|
672
|
+
# @return [Google::Apis::BackupdrV1::FilestoreInstanceBackupProperties]
|
|
673
|
+
attr_accessor :filestore_instance_backup_properties
|
|
674
|
+
|
|
669
675
|
# GCPBackupPlanInfo captures the plan configuration details of Google Cloud
|
|
670
676
|
# resources at the time of backup.
|
|
671
677
|
# Corresponds to the JSON property `gcpBackupPlanInfo`
|
|
@@ -749,6 +755,7 @@ module Google
|
|
|
749
755
|
@enforced_retention_end_time = args[:enforced_retention_end_time] if args.key?(:enforced_retention_end_time)
|
|
750
756
|
@etag = args[:etag] if args.key?(:etag)
|
|
751
757
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
758
|
+
@filestore_instance_backup_properties = args[:filestore_instance_backup_properties] if args.key?(:filestore_instance_backup_properties)
|
|
752
759
|
@gcp_backup_plan_info = args[:gcp_backup_plan_info] if args.key?(:gcp_backup_plan_info)
|
|
753
760
|
@gcp_resource = args[:gcp_resource] if args.key?(:gcp_resource)
|
|
754
761
|
@kms_key_versions = args[:kms_key_versions] if args.key?(:kms_key_versions)
|
|
@@ -1247,6 +1254,11 @@ module Google
|
|
|
1247
1254
|
# @return [String]
|
|
1248
1255
|
attr_accessor :backup_vault_service_account
|
|
1249
1256
|
|
|
1257
|
+
# --- ComputeInstanceBackupPlanProperties Message ---
|
|
1258
|
+
# Corresponds to the JSON property `computeInstanceBackupPlanProperties`
|
|
1259
|
+
# @return [Google::Apis::BackupdrV1::ComputeInstanceBackupPlanProperties]
|
|
1260
|
+
attr_accessor :compute_instance_backup_plan_properties
|
|
1261
|
+
|
|
1250
1262
|
# Output only. When the `BackupPlan` was created.
|
|
1251
1263
|
# Corresponds to the JSON property `createTime`
|
|
1252
1264
|
# @return [String]
|
|
@@ -1343,6 +1355,7 @@ module Google
|
|
|
1343
1355
|
@backup_rules = args[:backup_rules] if args.key?(:backup_rules)
|
|
1344
1356
|
@backup_vault = args[:backup_vault] if args.key?(:backup_vault)
|
|
1345
1357
|
@backup_vault_service_account = args[:backup_vault_service_account] if args.key?(:backup_vault_service_account)
|
|
1358
|
+
@compute_instance_backup_plan_properties = args[:compute_instance_backup_plan_properties] if args.key?(:compute_instance_backup_plan_properties)
|
|
1346
1359
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1347
1360
|
@description = args[:description] if args.key?(:description)
|
|
1348
1361
|
@disk_backup_plan_properties = args[:disk_backup_plan_properties] if args.key?(:disk_backup_plan_properties)
|
|
@@ -2016,6 +2029,28 @@ module Google
|
|
|
2016
2029
|
end
|
|
2017
2030
|
end
|
|
2018
2031
|
|
|
2032
|
+
# --- ComputeInstanceBackupPlanProperties Message ---
|
|
2033
|
+
class ComputeInstanceBackupPlanProperties
|
|
2034
|
+
include Google::Apis::Core::Hashable
|
|
2035
|
+
|
|
2036
|
+
# Optional. Indicates whether to perform a guest flush operation before taking a
|
|
2037
|
+
# compute backup. When set to false, the system will create crash-consistent
|
|
2038
|
+
# backups. Default value is false.
|
|
2039
|
+
# Corresponds to the JSON property `guestFlush`
|
|
2040
|
+
# @return [Boolean]
|
|
2041
|
+
attr_accessor :guest_flush
|
|
2042
|
+
alias_method :guest_flush?, :guest_flush
|
|
2043
|
+
|
|
2044
|
+
def initialize(**args)
|
|
2045
|
+
update!(**args)
|
|
2046
|
+
end
|
|
2047
|
+
|
|
2048
|
+
# Update properties of this object
|
|
2049
|
+
def update!(**args)
|
|
2050
|
+
@guest_flush = args[:guest_flush] if args.key?(:guest_flush)
|
|
2051
|
+
end
|
|
2052
|
+
end
|
|
2053
|
+
|
|
2019
2054
|
# ComputeInstanceBackupProperties represents Compute Engine instance backup
|
|
2020
2055
|
# properties.
|
|
2021
2056
|
class ComputeInstanceBackupProperties
|
|
@@ -2050,6 +2085,14 @@ module Google
|
|
|
2050
2085
|
# @return [Array<Google::Apis::BackupdrV1::AcceleratorConfig>]
|
|
2051
2086
|
attr_accessor :guest_accelerator
|
|
2052
2087
|
|
|
2088
|
+
# Optional. Indicates whether to perform a guest flush operation before taking a
|
|
2089
|
+
# compute backup. When set to false, the system will create crash-consistent
|
|
2090
|
+
# backups. Default value is false.
|
|
2091
|
+
# Corresponds to the JSON property `guestFlush`
|
|
2092
|
+
# @return [Boolean]
|
|
2093
|
+
attr_accessor :guest_flush
|
|
2094
|
+
alias_method :guest_flush?, :guest_flush
|
|
2095
|
+
|
|
2053
2096
|
# KeyRevocationActionType of the instance. Supported options are "STOP" and "
|
|
2054
2097
|
# NONE". The default value is "NONE" if it is not specified.
|
|
2055
2098
|
# Corresponds to the JSON property `keyRevocationActionType`
|
|
@@ -2121,6 +2164,7 @@ module Google
|
|
|
2121
2164
|
@description = args[:description] if args.key?(:description)
|
|
2122
2165
|
@disk = args[:disk] if args.key?(:disk)
|
|
2123
2166
|
@guest_accelerator = args[:guest_accelerator] if args.key?(:guest_accelerator)
|
|
2167
|
+
@guest_flush = args[:guest_flush] if args.key?(:guest_flush)
|
|
2124
2168
|
@key_revocation_action_type = args[:key_revocation_action_type] if args.key?(:key_revocation_action_type)
|
|
2125
2169
|
@labels = args[:labels] if args.key?(:labels)
|
|
2126
2170
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
@@ -2660,6 +2704,12 @@ module Google
|
|
|
2660
2704
|
# @return [Google::Apis::BackupdrV1::DiskDataSourceProperties]
|
|
2661
2705
|
attr_accessor :disk_datasource_properties
|
|
2662
2706
|
|
|
2707
|
+
# FilestoreInstanceDataSourceProperties represents the properties of a Filestore
|
|
2708
|
+
# resource that are stored in the DataSource. .
|
|
2709
|
+
# Corresponds to the JSON property `filestoreInstanceDatasourceProperties`
|
|
2710
|
+
# @return [Google::Apis::BackupdrV1::FilestoreInstanceDataSourceProperties]
|
|
2711
|
+
attr_accessor :filestore_instance_datasource_properties
|
|
2712
|
+
|
|
2663
2713
|
# Output only. Full resource pathname URL of the source Google Cloud resource.
|
|
2664
2714
|
# Corresponds to the JSON property `gcpResourcename`
|
|
2665
2715
|
# @return [String]
|
|
@@ -2686,6 +2736,7 @@ module Google
|
|
|
2686
2736
|
@cloud_sql_instance_datasource_properties = args[:cloud_sql_instance_datasource_properties] if args.key?(:cloud_sql_instance_datasource_properties)
|
|
2687
2737
|
@compute_instance_datasource_properties = args[:compute_instance_datasource_properties] if args.key?(:compute_instance_datasource_properties)
|
|
2688
2738
|
@disk_datasource_properties = args[:disk_datasource_properties] if args.key?(:disk_datasource_properties)
|
|
2739
|
+
@filestore_instance_datasource_properties = args[:filestore_instance_datasource_properties] if args.key?(:filestore_instance_datasource_properties)
|
|
2689
2740
|
@gcp_resourcename = args[:gcp_resourcename] if args.key?(:gcp_resourcename)
|
|
2690
2741
|
@location = args[:location] if args.key?(:location)
|
|
2691
2742
|
@type = args[:type] if args.key?(:type)
|
|
@@ -2708,6 +2759,12 @@ module Google
|
|
|
2708
2759
|
# @return [Google::Apis::BackupdrV1::CloudSqlInstanceDataSourceReferenceProperties]
|
|
2709
2760
|
attr_accessor :cloud_sql_instance_properties
|
|
2710
2761
|
|
|
2762
|
+
# FilestoreInstanceDataSourceReferenceProperties represents the properties of a
|
|
2763
|
+
# Filestore resource that are stored in the DataSourceReference. .
|
|
2764
|
+
# Corresponds to the JSON property `filestoreInstanceProperties`
|
|
2765
|
+
# @return [Google::Apis::BackupdrV1::FilestoreInstanceDataSourceReferenceProperties]
|
|
2766
|
+
attr_accessor :filestore_instance_properties
|
|
2767
|
+
|
|
2711
2768
|
# Output only. The resource name of the Google Cloud resource. Ex: projects/`
|
|
2712
2769
|
# project`/zones/`zone`/instances/`instance`
|
|
2713
2770
|
# Corresponds to the JSON property `gcpResourcename`
|
|
@@ -2734,6 +2791,7 @@ module Google
|
|
|
2734
2791
|
def update!(**args)
|
|
2735
2792
|
@alloy_db_cluster_properties = args[:alloy_db_cluster_properties] if args.key?(:alloy_db_cluster_properties)
|
|
2736
2793
|
@cloud_sql_instance_properties = args[:cloud_sql_instance_properties] if args.key?(:cloud_sql_instance_properties)
|
|
2794
|
+
@filestore_instance_properties = args[:filestore_instance_properties] if args.key?(:filestore_instance_properties)
|
|
2737
2795
|
@gcp_resourcename = args[:gcp_resourcename] if args.key?(:gcp_resourcename)
|
|
2738
2796
|
@location = args[:location] if args.key?(:location)
|
|
2739
2797
|
@type = args[:type] if args.key?(:type)
|
|
@@ -3531,6 +3589,79 @@ module Google
|
|
|
3531
3589
|
end
|
|
3532
3590
|
end
|
|
3533
3591
|
|
|
3592
|
+
# FilestoreInstanceBackupProperties represents the properties of a Filestore
|
|
3593
|
+
# instance that are backed up by the datasource. .
|
|
3594
|
+
class FilestoreInstanceBackupProperties
|
|
3595
|
+
include Google::Apis::Core::Hashable
|
|
3596
|
+
|
|
3597
|
+
# Output only. The source instance of the backup.
|
|
3598
|
+
# Corresponds to the JSON property `sourceInstance`
|
|
3599
|
+
# @return [String]
|
|
3600
|
+
attr_accessor :source_instance
|
|
3601
|
+
|
|
3602
|
+
def initialize(**args)
|
|
3603
|
+
update!(**args)
|
|
3604
|
+
end
|
|
3605
|
+
|
|
3606
|
+
# Update properties of this object
|
|
3607
|
+
def update!(**args)
|
|
3608
|
+
@source_instance = args[:source_instance] if args.key?(:source_instance)
|
|
3609
|
+
end
|
|
3610
|
+
end
|
|
3611
|
+
|
|
3612
|
+
# FilestoreInstanceDataSourceProperties represents the properties of a Filestore
|
|
3613
|
+
# resource that are stored in the DataSource. .
|
|
3614
|
+
class FilestoreInstanceDataSourceProperties
|
|
3615
|
+
include Google::Apis::Core::Hashable
|
|
3616
|
+
|
|
3617
|
+
# Output only. The instance creation timestamp.
|
|
3618
|
+
# Corresponds to the JSON property `instanceCreateTime`
|
|
3619
|
+
# @return [String]
|
|
3620
|
+
attr_accessor :instance_create_time
|
|
3621
|
+
|
|
3622
|
+
# Output only. Name of the Filestore instance backed up by the datasource.
|
|
3623
|
+
# Corresponds to the JSON property `name`
|
|
3624
|
+
# @return [String]
|
|
3625
|
+
attr_accessor :name
|
|
3626
|
+
|
|
3627
|
+
def initialize(**args)
|
|
3628
|
+
update!(**args)
|
|
3629
|
+
end
|
|
3630
|
+
|
|
3631
|
+
# Update properties of this object
|
|
3632
|
+
def update!(**args)
|
|
3633
|
+
@instance_create_time = args[:instance_create_time] if args.key?(:instance_create_time)
|
|
3634
|
+
@name = args[:name] if args.key?(:name)
|
|
3635
|
+
end
|
|
3636
|
+
end
|
|
3637
|
+
|
|
3638
|
+
# FilestoreInstanceDataSourceReferenceProperties represents the properties of a
|
|
3639
|
+
# Filestore resource that are stored in the DataSourceReference. .
|
|
3640
|
+
class FilestoreInstanceDataSourceReferenceProperties
|
|
3641
|
+
include Google::Apis::Core::Hashable
|
|
3642
|
+
|
|
3643
|
+
# Output only. The instance creation timestamp.
|
|
3644
|
+
# Corresponds to the JSON property `instanceCreateTime`
|
|
3645
|
+
# @return [String]
|
|
3646
|
+
attr_accessor :instance_create_time
|
|
3647
|
+
|
|
3648
|
+
# Output only. Name of the Filestore instance backed up by the datasource.
|
|
3649
|
+
# Format: projects/`project`/instances/`instance`
|
|
3650
|
+
# Corresponds to the JSON property `name`
|
|
3651
|
+
# @return [String]
|
|
3652
|
+
attr_accessor :name
|
|
3653
|
+
|
|
3654
|
+
def initialize(**args)
|
|
3655
|
+
update!(**args)
|
|
3656
|
+
end
|
|
3657
|
+
|
|
3658
|
+
# Update properties of this object
|
|
3659
|
+
def update!(**args)
|
|
3660
|
+
@instance_create_time = args[:instance_create_time] if args.key?(:instance_create_time)
|
|
3661
|
+
@name = args[:name] if args.key?(:name)
|
|
3662
|
+
end
|
|
3663
|
+
end
|
|
3664
|
+
|
|
3534
3665
|
# Message for finalizing a Backup.
|
|
3535
3666
|
class FinalizeBackupRequest
|
|
3536
3667
|
include Google::Apis::Core::Hashable
|
|
@@ -3881,6 +4012,13 @@ module Google
|
|
|
3881
4012
|
# @return [String]
|
|
3882
4013
|
attr_accessor :resource_type
|
|
3883
4014
|
|
|
4015
|
+
# Optional. If set, validates the request and returns the result, but does not
|
|
4016
|
+
# actually run it.
|
|
4017
|
+
# Corresponds to the JSON property `validateOnly`
|
|
4018
|
+
# @return [Boolean]
|
|
4019
|
+
attr_accessor :validate_only
|
|
4020
|
+
alias_method :validate_only?, :validate_only
|
|
4021
|
+
|
|
3884
4022
|
def initialize(**args)
|
|
3885
4023
|
update!(**args)
|
|
3886
4024
|
end
|
|
@@ -3891,6 +4029,7 @@ module Google
|
|
|
3891
4029
|
@cloud_sql_instance_initialization_config = args[:cloud_sql_instance_initialization_config] if args.key?(:cloud_sql_instance_initialization_config)
|
|
3892
4030
|
@request_id = args[:request_id] if args.key?(:request_id)
|
|
3893
4031
|
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
|
4032
|
+
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
|
3894
4033
|
end
|
|
3895
4034
|
end
|
|
3896
4035
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BackupdrV1
|
|
18
18
|
# Version of the google-apis-backupdr_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.54.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260408"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -256,6 +256,12 @@ module Google
|
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
|
257
257
|
end
|
|
258
258
|
|
|
259
|
+
class ComputeInstanceBackupPlanProperties
|
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
|
+
|
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
263
|
+
end
|
|
264
|
+
|
|
259
265
|
class ComputeInstanceBackupProperties
|
|
260
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
267
|
|
|
@@ -448,6 +454,24 @@ module Google
|
|
|
448
454
|
include Google::Apis::Core::JsonObjectSupport
|
|
449
455
|
end
|
|
450
456
|
|
|
457
|
+
class FilestoreInstanceBackupProperties
|
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
459
|
+
|
|
460
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
461
|
+
end
|
|
462
|
+
|
|
463
|
+
class FilestoreInstanceDataSourceProperties
|
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
465
|
+
|
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
467
|
+
end
|
|
468
|
+
|
|
469
|
+
class FilestoreInstanceDataSourceReferenceProperties
|
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
471
|
+
|
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
473
|
+
end
|
|
474
|
+
|
|
451
475
|
class FinalizeBackupRequest
|
|
452
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
453
477
|
|
|
@@ -967,6 +991,8 @@ module Google
|
|
|
967
991
|
property :enforced_retention_end_time, as: 'enforcedRetentionEndTime'
|
|
968
992
|
property :etag, as: 'etag'
|
|
969
993
|
property :expire_time, as: 'expireTime'
|
|
994
|
+
property :filestore_instance_backup_properties, as: 'filestoreInstanceBackupProperties', class: Google::Apis::BackupdrV1::FilestoreInstanceBackupProperties, decorator: Google::Apis::BackupdrV1::FilestoreInstanceBackupProperties::Representation
|
|
995
|
+
|
|
970
996
|
property :gcp_backup_plan_info, as: 'gcpBackupPlanInfo', class: Google::Apis::BackupdrV1::GcpBackupPlanInfo, decorator: Google::Apis::BackupdrV1::GcpBackupPlanInfo::Representation
|
|
971
997
|
|
|
972
998
|
property :gcp_resource, as: 'gcpResource', class: Google::Apis::BackupdrV1::BackupGcpResource, decorator: Google::Apis::BackupdrV1::BackupGcpResource::Representation
|
|
@@ -1113,6 +1139,8 @@ module Google
|
|
|
1113
1139
|
|
|
1114
1140
|
property :backup_vault, as: 'backupVault'
|
|
1115
1141
|
property :backup_vault_service_account, as: 'backupVaultServiceAccount'
|
|
1142
|
+
property :compute_instance_backup_plan_properties, as: 'computeInstanceBackupPlanProperties', class: Google::Apis::BackupdrV1::ComputeInstanceBackupPlanProperties, decorator: Google::Apis::BackupdrV1::ComputeInstanceBackupPlanProperties::Representation
|
|
1143
|
+
|
|
1116
1144
|
property :create_time, as: 'createTime'
|
|
1117
1145
|
property :description, as: 'description'
|
|
1118
1146
|
property :disk_backup_plan_properties, as: 'diskBackupPlanProperties', class: Google::Apis::BackupdrV1::DiskBackupPlanProperties, decorator: Google::Apis::BackupdrV1::DiskBackupPlanProperties::Representation
|
|
@@ -1272,6 +1300,13 @@ module Google
|
|
|
1272
1300
|
end
|
|
1273
1301
|
end
|
|
1274
1302
|
|
|
1303
|
+
class ComputeInstanceBackupPlanProperties
|
|
1304
|
+
# @private
|
|
1305
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1306
|
+
property :guest_flush, as: 'guestFlush'
|
|
1307
|
+
end
|
|
1308
|
+
end
|
|
1309
|
+
|
|
1275
1310
|
class ComputeInstanceBackupProperties
|
|
1276
1311
|
# @private
|
|
1277
1312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1281,6 +1316,7 @@ module Google
|
|
|
1281
1316
|
|
|
1282
1317
|
collection :guest_accelerator, as: 'guestAccelerator', class: Google::Apis::BackupdrV1::AcceleratorConfig, decorator: Google::Apis::BackupdrV1::AcceleratorConfig::Representation
|
|
1283
1318
|
|
|
1319
|
+
property :guest_flush, as: 'guestFlush'
|
|
1284
1320
|
property :key_revocation_action_type, as: 'keyRevocationActionType'
|
|
1285
1321
|
hash :labels, as: 'labels'
|
|
1286
1322
|
property :machine_type, as: 'machineType'
|
|
@@ -1434,6 +1470,8 @@ module Google
|
|
|
1434
1470
|
|
|
1435
1471
|
property :disk_datasource_properties, as: 'diskDatasourceProperties', class: Google::Apis::BackupdrV1::DiskDataSourceProperties, decorator: Google::Apis::BackupdrV1::DiskDataSourceProperties::Representation
|
|
1436
1472
|
|
|
1473
|
+
property :filestore_instance_datasource_properties, as: 'filestoreInstanceDatasourceProperties', class: Google::Apis::BackupdrV1::FilestoreInstanceDataSourceProperties, decorator: Google::Apis::BackupdrV1::FilestoreInstanceDataSourceProperties::Representation
|
|
1474
|
+
|
|
1437
1475
|
property :gcp_resourcename, as: 'gcpResourcename'
|
|
1438
1476
|
property :location, as: 'location'
|
|
1439
1477
|
property :type, as: 'type'
|
|
@@ -1447,6 +1485,8 @@ module Google
|
|
|
1447
1485
|
|
|
1448
1486
|
property :cloud_sql_instance_properties, as: 'cloudSqlInstanceProperties', class: Google::Apis::BackupdrV1::CloudSqlInstanceDataSourceReferenceProperties, decorator: Google::Apis::BackupdrV1::CloudSqlInstanceDataSourceReferenceProperties::Representation
|
|
1449
1487
|
|
|
1488
|
+
property :filestore_instance_properties, as: 'filestoreInstanceProperties', class: Google::Apis::BackupdrV1::FilestoreInstanceDataSourceReferenceProperties, decorator: Google::Apis::BackupdrV1::FilestoreInstanceDataSourceReferenceProperties::Representation
|
|
1489
|
+
|
|
1450
1490
|
property :gcp_resourcename, as: 'gcpResourcename'
|
|
1451
1491
|
property :location, as: 'location'
|
|
1452
1492
|
property :type, as: 'type'
|
|
@@ -1664,6 +1704,29 @@ module Google
|
|
|
1664
1704
|
end
|
|
1665
1705
|
end
|
|
1666
1706
|
|
|
1707
|
+
class FilestoreInstanceBackupProperties
|
|
1708
|
+
# @private
|
|
1709
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1710
|
+
property :source_instance, as: 'sourceInstance'
|
|
1711
|
+
end
|
|
1712
|
+
end
|
|
1713
|
+
|
|
1714
|
+
class FilestoreInstanceDataSourceProperties
|
|
1715
|
+
# @private
|
|
1716
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1717
|
+
property :instance_create_time, as: 'instanceCreateTime'
|
|
1718
|
+
property :name, as: 'name'
|
|
1719
|
+
end
|
|
1720
|
+
end
|
|
1721
|
+
|
|
1722
|
+
class FilestoreInstanceDataSourceReferenceProperties
|
|
1723
|
+
# @private
|
|
1724
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1725
|
+
property :instance_create_time, as: 'instanceCreateTime'
|
|
1726
|
+
property :name, as: 'name'
|
|
1727
|
+
end
|
|
1728
|
+
end
|
|
1729
|
+
|
|
1667
1730
|
class FinalizeBackupRequest
|
|
1668
1731
|
# @private
|
|
1669
1732
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1745,6 +1808,7 @@ module Google
|
|
|
1745
1808
|
|
|
1746
1809
|
property :request_id, as: 'requestId'
|
|
1747
1810
|
property :resource_type, as: 'resourceType'
|
|
1811
|
+
property :validate_only, as: 'validateOnly'
|
|
1748
1812
|
end
|
|
1749
1813
|
end
|
|
1750
1814
|
|
|
@@ -114,10 +114,15 @@ module Google
|
|
|
114
114
|
end
|
|
115
115
|
|
|
116
116
|
# Lists information about the supported locations for this service. This method
|
|
117
|
-
#
|
|
118
|
-
#
|
|
119
|
-
#
|
|
120
|
-
#
|
|
117
|
+
# lists locations based on the resource scope provided in the [
|
|
118
|
+
# ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
|
|
119
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
120
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
121
|
+
# method lists locations visible to that specific project. This includes public,
|
|
122
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
123
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
124
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
125
|
+
# request path based on the specific service implementation and version.
|
|
121
126
|
# @param [String] name
|
|
122
127
|
# The resource that owns the locations collection, if applicable.
|
|
123
128
|
# @param [Array<String>, String] extra_location_types
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-backupdr_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.54.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.54.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|