google-apis-backupdr_v1 0.48.0 → 0.50.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: 719d21b3b7c95dabc1bbc1eda77eca696eff2367c11ba23aa606b2e839f3a68c
4
- data.tar.gz: a56f09e37f1b18076a2945f5b0701ac9478b4c2b6a947e8cf5a23f57ac1c11df
3
+ metadata.gz: dbd7749805dbb78015ba264d0e192b37299fc145d693681dd71a46bc7cc9e094
4
+ data.tar.gz: db4a19795f4cc67ba09ff754cb24814d355e363a7cde6bbe8bf5cee405922e5d
5
5
  SHA512:
6
- metadata.gz: d082aead247a76672e196ae0dbb463d98a22200219a2676d4d960c93bb10600de6fa77ab3b2be03a97a56d78b34eb812de06fbe4618d656fd610fa2dbb09d152
7
- data.tar.gz: b330d2e29863a14129cde07e1e4a3cc173bdb31b14aeb47234b07361959c95bfa94d6313e558bfd08c5ff40ad27e54c3caccf5dee96adad1a7e337aeec86d23f
6
+ metadata.gz: 1eca516dee5062da3c954225f16440e46df3355996fe6a8566ea1e6e0fcc9ecb90f5d63c7f6a6670118b7d876e349226f1b3620c0846627dd5948fbf7be26a2f
7
+ data.tar.gz: 78da82bd6d1cb9c9a9229679c17c9918fde82bae6c67a1d0db5ac5e23ebc1bd2a494a08e6f5545edfb3067a57a7b5c43c12563f96ec892af5975334419fb4613
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.50.0 (2026-01-25)
4
+
5
+ * Regenerated from discovery document revision 20260116
6
+
7
+ ### v0.49.0 (2026-01-11)
8
+
9
+ * Regenerated from discovery document revision 20251227
10
+
3
11
  ### v0.48.0 (2025-12-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20251130
@@ -246,16 +246,70 @@ module Google
246
246
  end
247
247
  end
248
248
 
249
+ # Properties for an AlloyDB cluster backup plan association.
250
+ class AlloyDbClusterBackupPlanAssociationProperties
251
+ include Google::Apis::Core::Hashable
252
+
253
+ # Output only. The cluster UID of the AlloyDB cluster.
254
+ # Corresponds to the JSON property `clusterUid`
255
+ # @return [String]
256
+ attr_accessor :cluster_uid
257
+
258
+ def initialize(**args)
259
+ update!(**args)
260
+ end
261
+
262
+ # Update properties of this object
263
+ def update!(**args)
264
+ @cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
265
+ end
266
+ end
267
+
249
268
  # AlloyDBClusterDataSourceProperties represents the properties of a AlloyDB
250
269
  # cluster resource that are stored in the DataSource. .
251
270
  class AlloyDbClusterDataSourceProperties
252
271
  include Google::Apis::Core::Hashable
253
272
 
273
+ # Output only. The cluster UID of the AlloyDB cluster backed up by the
274
+ # datasource.
275
+ # Corresponds to the JSON property `clusterUid`
276
+ # @return [String]
277
+ attr_accessor :cluster_uid
278
+
254
279
  # Output only. Name of the AlloyDB cluster backed up by the datasource.
255
280
  # Corresponds to the JSON property `name`
256
281
  # @return [String]
257
282
  attr_accessor :name
258
283
 
284
+ # Output only. Point in time recovery windows. The order is guaranteed to be
285
+ # ascending by start time.
286
+ # Corresponds to the JSON property `pitrWindows`
287
+ # @return [Array<Google::Apis::BackupdrV1::AlloyDbPitrWindow>]
288
+ attr_accessor :pitr_windows
289
+
290
+ def initialize(**args)
291
+ update!(**args)
292
+ end
293
+
294
+ # Update properties of this object
295
+ def update!(**args)
296
+ @cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
297
+ @name = args[:name] if args.key?(:name)
298
+ @pitr_windows = args[:pitr_windows] if args.key?(:pitr_windows)
299
+ end
300
+ end
301
+
302
+ # AlloyDBClusterDataSourceReferenceProperties represents the properties of an
303
+ # AlloyDB cluster that are stored in the DataSourceReference.
304
+ class AlloyDbClusterDataSourceReferenceProperties
305
+ include Google::Apis::Core::Hashable
306
+
307
+ # Output only. Name of the AlloyDB cluster backed up by the datasource. Format:
308
+ # projects/`project`/locations/`location`/clusters/`cluster`
309
+ # Corresponds to the JSON property `name`
310
+ # @return [String]
311
+ attr_accessor :name
312
+
259
313
  def initialize(**args)
260
314
  update!(**args)
261
315
  end
@@ -306,6 +360,38 @@ module Google
306
360
  end
307
361
  end
308
362
 
363
+ # Point in time recovery window for an AlloyDB cluster.
364
+ class AlloyDbPitrWindow
365
+ include Google::Apis::Core::Hashable
366
+
367
+ # Output only. The end time of the PITR window. It is not set if the
368
+ # corresponding Backup Plan Association is active.
369
+ # Corresponds to the JSON property `endTime`
370
+ # @return [String]
371
+ attr_accessor :end_time
372
+
373
+ # Output only. Log retention days for the PITR window.
374
+ # Corresponds to the JSON property `logRetentionDays`
375
+ # @return [Fixnum]
376
+ attr_accessor :log_retention_days
377
+
378
+ # Output only. The start time of the PITR window.
379
+ # Corresponds to the JSON property `startTime`
380
+ # @return [String]
381
+ attr_accessor :start_time
382
+
383
+ def initialize(**args)
384
+ update!(**args)
385
+ end
386
+
387
+ # Update properties of this object
388
+ def update!(**args)
389
+ @end_time = args[:end_time] if args.key?(:end_time)
390
+ @log_retention_days = args[:log_retention_days] if args.key?(:log_retention_days)
391
+ @start_time = args[:start_time] if args.key?(:start_time)
392
+ end
393
+ end
394
+
309
395
  # An instance-attached disk resource.
310
396
  class AttachedDisk
311
397
  include Google::Apis::Core::Hashable
@@ -851,14 +937,14 @@ module Google
851
937
  # @return [String]
852
938
  attr_accessor :backup_config_source_display_name
853
939
 
854
- # BackupDrPlanConfig has additional information about Backup and DR's Plan
855
- # backup configuration.
940
+ # BackupDrPlanConfig has additional information about Google Cloud Backup and DR'
941
+ # s Plan backup configuration.
856
942
  # Corresponds to the JSON property `backupDrPlanConfig`
857
943
  # @return [Google::Apis::BackupdrV1::BackupDrPlanConfig]
858
944
  attr_accessor :backup_dr_plan_config
859
945
 
860
- # BackupDrTemplateConfig has additional information about Backup and DR's
861
- # Template backup configuration.
946
+ # Provides additional information about Google Cloud Backup and DR's Template
947
+ # backup configuration.
862
948
  # Corresponds to the JSON property `backupDrTemplateConfig`
863
949
  # @return [Google::Apis::BackupdrV1::BackupDrTemplateConfig]
864
950
  attr_accessor :backup_dr_template_config
@@ -970,8 +1056,8 @@ module Google
970
1056
  end
971
1057
  end
972
1058
 
973
- # BackupDrPlanConfig has additional information about Backup and DR's Plan
974
- # backup configuration.
1059
+ # BackupDrPlanConfig has additional information about Google Cloud Backup and DR'
1060
+ # s Plan backup configuration.
975
1061
  class BackupDrPlanConfig
976
1062
  include Google::Apis::Core::Hashable
977
1063
 
@@ -1016,8 +1102,8 @@ module Google
1016
1102
  end
1017
1103
  end
1018
1104
 
1019
- # BackupDrTemplateConfig has additional information about Backup and DR's
1020
- # Template backup configuration.
1105
+ # Provides additional information about Google Cloud Backup and DR's Template
1106
+ # backup configuration.
1021
1107
  class BackupDrTemplateConfig
1022
1108
  include Google::Apis::Core::Hashable
1023
1109
 
@@ -1154,9 +1240,9 @@ module Google
1154
1240
  # @return [String]
1155
1241
  attr_accessor :backup_vault
1156
1242
 
1157
- # Output only. The Google Cloud Platform Service Account to be used by the
1158
- # BackupVault for taking backups. Specify the email address of the Backup Vault
1159
- # Service Account.
1243
+ # Output only. The Google Cloud service account to be used by the BackupVault
1244
+ # for taking backups. Specify the email address of the Backup Vault Service
1245
+ # Account.
1160
1246
  # Corresponds to the JSON property `backupVaultServiceAccount`
1161
1247
  # @return [String]
1162
1248
  attr_accessor :backup_vault_service_account
@@ -1188,9 +1274,9 @@ module Google
1188
1274
  # @return [Hash<String,String>]
1189
1275
  attr_accessor :labels
1190
1276
 
1191
- # Optional. Applicable only for CloudSQL resource_type. Configures how long logs
1192
- # will be stored. It is defined in “days”. This value should be greater than or
1193
- # equal to minimum enforced log retention duration of the backup vault.
1277
+ # Optional. Applicable only for Cloud SQL resource_type. Configures how long
1278
+ # logs will be stored. It is defined in “days”. This value should be greater
1279
+ # than or equal to minimum enforced log retention duration of the backup vault.
1194
1280
  # Corresponds to the JSON property `logRetentionDays`
1195
1281
  # @return [Fixnum]
1196
1282
  attr_accessor :log_retention_days
@@ -1273,6 +1359,11 @@ module Google
1273
1359
  class BackupPlanAssociation
1274
1360
  include Google::Apis::Core::Hashable
1275
1361
 
1362
+ # Properties for an AlloyDB cluster backup plan association.
1363
+ # Corresponds to the JSON property `alloydbClusterBackupPlanAssociationProperties`
1364
+ # @return [Google::Apis::BackupdrV1::AlloyDbClusterBackupPlanAssociationProperties]
1365
+ attr_accessor :alloydb_cluster_backup_plan_association_properties
1366
+
1276
1367
  # Required. Resource name of backup plan which needs to be applied on workload.
1277
1368
  # Format: projects/`project`/locations/`location`/backupPlans/`backupPlanId`
1278
1369
  # Corresponds to the JSON property `backupPlan`
@@ -1309,6 +1400,11 @@ module Google
1309
1400
  # @return [String]
1310
1401
  attr_accessor :data_source
1311
1402
 
1403
+ # Filestore instance's BPA properties.
1404
+ # Corresponds to the JSON property `filestoreInstanceBackupPlanAssociationProperties`
1405
+ # @return [Google::Apis::BackupdrV1::FilestoreInstanceBackupPlanAssociationProperties]
1406
+ attr_accessor :filestore_instance_backup_plan_association_properties
1407
+
1312
1408
  # Output only. Identifier. The resource name of BackupPlanAssociation in below
1313
1409
  # format Format : projects/`project`/locations/`location`/backupPlanAssociations/
1314
1410
  # `backupPlanAssociationId`
@@ -1351,12 +1447,14 @@ module Google
1351
1447
 
1352
1448
  # Update properties of this object
1353
1449
  def update!(**args)
1450
+ @alloydb_cluster_backup_plan_association_properties = args[:alloydb_cluster_backup_plan_association_properties] if args.key?(:alloydb_cluster_backup_plan_association_properties)
1354
1451
  @backup_plan = args[:backup_plan] if args.key?(:backup_plan)
1355
1452
  @backup_plan_revision_id = args[:backup_plan_revision_id] if args.key?(:backup_plan_revision_id)
1356
1453
  @backup_plan_revision_name = args[:backup_plan_revision_name] if args.key?(:backup_plan_revision_name)
1357
1454
  @cloud_sql_instance_backup_plan_association_properties = args[:cloud_sql_instance_backup_plan_association_properties] if args.key?(:cloud_sql_instance_backup_plan_association_properties)
1358
1455
  @create_time = args[:create_time] if args.key?(:create_time)
1359
1456
  @data_source = args[:data_source] if args.key?(:data_source)
1457
+ @filestore_instance_backup_plan_association_properties = args[:filestore_instance_backup_plan_association_properties] if args.key?(:filestore_instance_backup_plan_association_properties)
1360
1458
  @name = args[:name] if args.key?(:name)
1361
1459
  @resource = args[:resource] if args.key?(:resource)
1362
1460
  @resource_type = args[:resource_type] if args.key?(:resource_type)
@@ -1599,17 +1697,17 @@ module Google
1599
1697
  class BackupWindow
1600
1698
  include Google::Apis::Core::Hashable
1601
1699
 
1602
- # Required. The hour of day (1-24) when the window end for e.g. if value of end
1603
- # hour of day is 10 that mean backup window end time is 10:00. End hour of day
1604
- # should be greater than start hour of day. 0 <= start_hour_of_day <
1700
+ # Required. The hour of day (1-24) when the window end for example if value of
1701
+ # end hour of day is 10 that mean backup window end time is 10:00. End hour of
1702
+ # day should be greater than start hour of day. 0 <= start_hour_of_day <
1605
1703
  # end_hour_of_day <= 24 End hour of day is not include in backup window that
1606
1704
  # mean if end_hour_of_day= 10 jobs should start before 10:00.
1607
1705
  # Corresponds to the JSON property `endHourOfDay`
1608
1706
  # @return [Fixnum]
1609
1707
  attr_accessor :end_hour_of_day
1610
1708
 
1611
- # Required. The hour of day (0-23) when the window starts for e.g. if value of
1612
- # start hour of day is 6 that mean backup window start at 6:00.
1709
+ # Required. The hour of day (0-23) when the window starts for example if value
1710
+ # of start hour of day is 6 that mean backup window start at 6:00.
1613
1711
  # Corresponds to the JSON property `startHourOfDay`
1614
1712
  # @return [Fixnum]
1615
1713
  attr_accessor :start_hour_of_day
@@ -2588,28 +2686,36 @@ module Google
2588
2686
  end
2589
2687
  end
2590
2688
 
2591
- # The GCP resource that the DataSource is associated with.
2689
+ # The Google Cloud resource that the DataSource is associated with.
2592
2690
  class DataSourceGcpResourceInfo
2593
2691
  include Google::Apis::Core::Hashable
2594
2692
 
2693
+ # AlloyDBClusterDataSourceReferenceProperties represents the properties of an
2694
+ # AlloyDB cluster that are stored in the DataSourceReference.
2695
+ # Corresponds to the JSON property `alloyDbClusterProperties`
2696
+ # @return [Google::Apis::BackupdrV1::AlloyDbClusterDataSourceReferenceProperties]
2697
+ attr_accessor :alloy_db_cluster_properties
2698
+
2595
2699
  # CloudSqlInstanceDataSourceReferenceProperties represents the properties of a
2596
2700
  # Cloud SQL resource that are stored in the DataSourceReference.
2597
2701
  # Corresponds to the JSON property `cloudSqlInstanceProperties`
2598
2702
  # @return [Google::Apis::BackupdrV1::CloudSqlInstanceDataSourceReferenceProperties]
2599
2703
  attr_accessor :cloud_sql_instance_properties
2600
2704
 
2601
- # Output only. The resource name of the GCP resource. Ex: projects/`project`/
2602
- # zones/`zone`/instances/`instance`
2705
+ # Output only. The resource name of the Google Cloud resource. Ex: projects/`
2706
+ # project`/zones/`zone`/instances/`instance`
2603
2707
  # Corresponds to the JSON property `gcpResourcename`
2604
2708
  # @return [String]
2605
2709
  attr_accessor :gcp_resourcename
2606
2710
 
2607
- # Output only. The location of the GCP resource. Ex: //"global"/"unspecified"
2711
+ # Output only. The location of the Google Cloud resource. Ex: //"global"/"
2712
+ # unspecified"
2608
2713
  # Corresponds to the JSON property `location`
2609
2714
  # @return [String]
2610
2715
  attr_accessor :location
2611
2716
 
2612
- # Output only. The type of the GCP resource. Ex: compute.googleapis.com/Instance
2717
+ # Output only. The type of the Google Cloud resource. Ex: compute.googleapis.com/
2718
+ # Instance
2613
2719
  # Corresponds to the JSON property `type`
2614
2720
  # @return [String]
2615
2721
  attr_accessor :type
@@ -2620,6 +2726,7 @@ module Google
2620
2726
 
2621
2727
  # Update properties of this object
2622
2728
  def update!(**args)
2729
+ @alloy_db_cluster_properties = args[:alloy_db_cluster_properties] if args.key?(:alloy_db_cluster_properties)
2623
2730
  @cloud_sql_instance_properties = args[:cloud_sql_instance_properties] if args.key?(:cloud_sql_instance_properties)
2624
2731
  @gcp_resourcename = args[:gcp_resourcename] if args.key?(:gcp_resourcename)
2625
2732
  @location = args[:location] if args.key?(:location)
@@ -2657,7 +2764,7 @@ module Google
2657
2764
  # @return [Fixnum]
2658
2765
  attr_accessor :data_source_backup_count
2659
2766
 
2660
- # The GCP resource that the DataSource is associated with.
2767
+ # The Google Cloud resource that the DataSource is associated with.
2661
2768
  # Corresponds to the JSON property `dataSourceGcpResourceInfo`
2662
2769
  # @return [Google::Apis::BackupdrV1::DataSourceGcpResourceInfo]
2663
2770
  attr_accessor :data_source_gcp_resource_info
@@ -3317,8 +3424,8 @@ module Google
3317
3424
  class FetchMsComplianceMetadataResponse
3318
3425
  include Google::Apis::Core::Hashable
3319
3426
 
3320
- # The ms compliance metadata of the target project, if the project is an assured
3321
- # workloads project, values will be true, otherwise false.
3427
+ # The ms compliance metadata of the target project, if the project is an Assured
3428
+ # Workloads project, values will be true, otherwise false.
3322
3429
  # Corresponds to the JSON property `isAssuredWorkload`
3323
3430
  # @return [Boolean]
3324
3431
  attr_accessor :is_assured_workload
@@ -3369,6 +3476,25 @@ module Google
3369
3476
  end
3370
3477
  end
3371
3478
 
3479
+ # Filestore instance's BPA properties.
3480
+ class FilestoreInstanceBackupPlanAssociationProperties
3481
+ include Google::Apis::Core::Hashable
3482
+
3483
+ # Output only. The time when the instance was created.
3484
+ # Corresponds to the JSON property `instanceCreateTime`
3485
+ # @return [String]
3486
+ attr_accessor :instance_create_time
3487
+
3488
+ def initialize(**args)
3489
+ update!(**args)
3490
+ end
3491
+
3492
+ # Update properties of this object
3493
+ def update!(**args)
3494
+ @instance_create_time = args[:instance_create_time] if args.key?(:instance_create_time)
3495
+ end
3496
+ end
3497
+
3372
3498
  # Message for finalizing a Backup.
3373
3499
  class FinalizeBackupRequest
3374
3500
  include Google::Apis::Core::Hashable
@@ -3626,7 +3752,7 @@ module Google
3626
3752
  # request ID so that if you must retry your request, the server will know to
3627
3753
  # ignore the request if it has already been completed. The server will guarantee
3628
3754
  # that for at least 60 minutes since the first request. For example, consider a
3629
- # situation where you make an initial request and t he request times out. If you
3755
+ # situation where you make an initial request and the request times out. If you
3630
3756
  # make the request again with the same request ID, the server can check if
3631
3757
  # original operation with the same request ID was received, and if so, will
3632
3758
  # ignore the second request. This prevents clients from accidentally creating
@@ -4224,9 +4350,9 @@ module Google
4224
4350
  attr_accessor :networks
4225
4351
 
4226
4352
  # Output only. The OAuth 2.0 client id is required to make API calls to the
4227
- # BackupDR instance API of this ManagementServer. This is the value that should
4228
- # be provided in the 'aud' field of the OIDC ID Token (see openid specification
4229
- # https://openid.net/specs/openid-connect-core-1_0.html#IDToken).
4353
+ # Backup and DR instance API of this ManagementServer. This is the value that
4354
+ # should be provided in the 'aud' field of the OIDC ID Token (see openid
4355
+ # specification https://openid.net/specs/openid-connect-core-1_0.html#IDToken).
4230
4356
  # Corresponds to the JSON property `oauth2ClientId`
4231
4357
  # @return [String]
4232
4358
  attr_accessor :oauth2_client_id
@@ -5351,7 +5477,7 @@ module Google
5351
5477
  # Required. The time zone to be used when interpreting the schedule. The value
5352
5478
  # of this field must be a time zone name from the IANA tz database. See https://
5353
5479
  # en.wikipedia.org/wiki/List_of_tz_database_time_zones for the list of valid
5354
- # timezone names. For e.g., Europe/Paris.
5480
+ # timezone names. For example, Europe/Paris.
5355
5481
  # Corresponds to the JSON property `timeZone`
5356
5482
  # @return [String]
5357
5483
  attr_accessor :time_zone
@@ -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.48.0"
19
+ GEM_VERSION = "0.50.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 = "20251130"
25
+ REVISION = "20260116"
26
26
  end
27
27
  end
28
28
  end
@@ -58,18 +58,36 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class AlloyDbClusterBackupPlanAssociationProperties
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class AlloyDbClusterDataSourceProperties
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
64
70
  include Google::Apis::Core::JsonObjectSupport
65
71
  end
66
72
 
73
+ class AlloyDbClusterDataSourceReferenceProperties
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
67
79
  class AlloyDbClusterBackupProperties
68
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
81
 
70
82
  include Google::Apis::Core::JsonObjectSupport
71
83
  end
72
84
 
85
+ class AlloyDbPitrWindow
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
73
91
  class AttachedDisk
74
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
93
 
@@ -418,6 +436,12 @@ module Google
418
436
  include Google::Apis::Core::JsonObjectSupport
419
437
  end
420
438
 
439
+ class FilestoreInstanceBackupPlanAssociationProperties
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
421
445
  class FinalizeBackupRequest
422
446
  class Representation < Google::Apis::Core::JsonRepresentation; end
423
447
 
@@ -828,7 +852,24 @@ module Google
828
852
  end
829
853
  end
830
854
 
855
+ class AlloyDbClusterBackupPlanAssociationProperties
856
+ # @private
857
+ class Representation < Google::Apis::Core::JsonRepresentation
858
+ property :cluster_uid, as: 'clusterUid'
859
+ end
860
+ end
861
+
831
862
  class AlloyDbClusterDataSourceProperties
863
+ # @private
864
+ class Representation < Google::Apis::Core::JsonRepresentation
865
+ property :cluster_uid, as: 'clusterUid'
866
+ property :name, as: 'name'
867
+ collection :pitr_windows, as: 'pitrWindows', class: Google::Apis::BackupdrV1::AlloyDbPitrWindow, decorator: Google::Apis::BackupdrV1::AlloyDbPitrWindow::Representation
868
+
869
+ end
870
+ end
871
+
872
+ class AlloyDbClusterDataSourceReferenceProperties
832
873
  # @private
833
874
  class Representation < Google::Apis::Core::JsonRepresentation
834
875
  property :name, as: 'name'
@@ -845,6 +886,15 @@ module Google
845
886
  end
846
887
  end
847
888
 
889
+ class AlloyDbPitrWindow
890
+ # @private
891
+ class Representation < Google::Apis::Core::JsonRepresentation
892
+ property :end_time, as: 'endTime'
893
+ property :log_retention_days, :numeric_string => true, as: 'logRetentionDays'
894
+ property :start_time, as: 'startTime'
895
+ end
896
+ end
897
+
848
898
  class AttachedDisk
849
899
  # @private
850
900
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1076,6 +1126,8 @@ module Google
1076
1126
  class BackupPlanAssociation
1077
1127
  # @private
1078
1128
  class Representation < Google::Apis::Core::JsonRepresentation
1129
+ property :alloydb_cluster_backup_plan_association_properties, as: 'alloydbClusterBackupPlanAssociationProperties', class: Google::Apis::BackupdrV1::AlloyDbClusterBackupPlanAssociationProperties, decorator: Google::Apis::BackupdrV1::AlloyDbClusterBackupPlanAssociationProperties::Representation
1130
+
1079
1131
  property :backup_plan, as: 'backupPlan'
1080
1132
  property :backup_plan_revision_id, as: 'backupPlanRevisionId'
1081
1133
  property :backup_plan_revision_name, as: 'backupPlanRevisionName'
@@ -1083,6 +1135,8 @@ module Google
1083
1135
 
1084
1136
  property :create_time, as: 'createTime'
1085
1137
  property :data_source, as: 'dataSource'
1138
+ property :filestore_instance_backup_plan_association_properties, as: 'filestoreInstanceBackupPlanAssociationProperties', class: Google::Apis::BackupdrV1::FilestoreInstanceBackupPlanAssociationProperties, decorator: Google::Apis::BackupdrV1::FilestoreInstanceBackupPlanAssociationProperties::Representation
1139
+
1086
1140
  property :name, as: 'name'
1087
1141
  property :resource, as: 'resource'
1088
1142
  property :resource_type, as: 'resourceType'
@@ -1381,6 +1435,8 @@ module Google
1381
1435
  class DataSourceGcpResourceInfo
1382
1436
  # @private
1383
1437
  class Representation < Google::Apis::Core::JsonRepresentation
1438
+ property :alloy_db_cluster_properties, as: 'alloyDbClusterProperties', class: Google::Apis::BackupdrV1::AlloyDbClusterDataSourceReferenceProperties, decorator: Google::Apis::BackupdrV1::AlloyDbClusterDataSourceReferenceProperties::Representation
1439
+
1384
1440
  property :cloud_sql_instance_properties, as: 'cloudSqlInstanceProperties', class: Google::Apis::BackupdrV1::CloudSqlInstanceDataSourceReferenceProperties, decorator: Google::Apis::BackupdrV1::CloudSqlInstanceDataSourceReferenceProperties::Representation
1385
1441
 
1386
1442
  property :gcp_resourcename, as: 'gcpResourcename'
@@ -1585,6 +1641,13 @@ module Google
1585
1641
  end
1586
1642
  end
1587
1643
 
1644
+ class FilestoreInstanceBackupPlanAssociationProperties
1645
+ # @private
1646
+ class Representation < Google::Apis::Core::JsonRepresentation
1647
+ property :instance_create_time, as: 'instanceCreateTime'
1648
+ end
1649
+ end
1650
+
1588
1651
  class FinalizeBackupRequest
1589
1652
  # @private
1590
1653
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -163,8 +163,8 @@ module Google
163
163
  # Create a BackupPlanAssociation
164
164
  # @param [String] parent
165
165
  # Required. The backup plan association project and location in the format `
166
- # projects/`project_id`/locations/`location``. In Cloud BackupDR locations map
167
- # to GCP regions, for example **us-central1**.
166
+ # projects/`project_id`/locations/`location``. In Backup and DR locations map to
167
+ # Google Cloud regions, for example **us-central1**.
168
168
  # @param [Google::Apis::BackupdrV1::BackupPlanAssociation] backup_plan_association_object
169
169
  # @param [String] backup_plan_association_id
170
170
  # Required. The name of the backup plan association to create. The name must be
@@ -280,7 +280,8 @@ module Google
280
280
  # FetchBackupPlanAssociationsForResourceType` must match the call that provided
281
281
  # the page token.
282
282
  # @param [String] resource_type
283
- # Required. The type of the GCP resource. Ex: sql.googleapis.com/Instance
283
+ # Required. The type of the Google Cloud resource. Ex: sql.googleapis.com/
284
+ # Instance
284
285
  # @param [String] fields
285
286
  # Selector specifying which fields to include in a partial response.
286
287
  # @param [String] quota_user
@@ -349,9 +350,9 @@ module Google
349
350
  # @param [String] parent
350
351
  # Required. The project and location for which to retrieve backup Plan
351
352
  # Associations information, in the format `projects/`project_id`/locations/`
352
- # location``. In Cloud BackupDR, locations map to GCP regions, for example **us-
353
- # central1**. To retrieve backup plan associations for all locations, use "-"
354
- # for the ``location`` value.
353
+ # location``. In Backup and DR, locations map to Google Cloud regions, for
354
+ # example **us-central1**. To retrieve backup plan associations for all
355
+ # locations, use "-" for the ``location`` value.
355
356
  # @param [String] filter
356
357
  # Optional. Filtering results
357
358
  # @param [Fixnum] page_size
@@ -482,8 +483,8 @@ module Google
482
483
  # Create a BackupPlan
483
484
  # @param [String] parent
484
485
  # Required. The `BackupPlan` project and location in the format `projects/`
485
- # project`/locations/`location``. In Cloud BackupDR locations map to GCP regions,
486
- # for example **us-central1**.
486
+ # project`/locations/`location``. In Google Cloud Backup and DR locations map to
487
+ # Google Cloud regions, for example **us-central1**.
487
488
  # @param [Google::Apis::BackupdrV1::BackupPlan] backup_plan_object
488
489
  # @param [String] backup_plan_id
489
490
  # Required. The name of the `BackupPlan` to create. The name must be unique for
@@ -609,9 +610,10 @@ module Google
609
610
  # Lists BackupPlans in a given project and location.
610
611
  # @param [String] parent
611
612
  # Required. The project and location for which to retrieve `BackupPlans`
612
- # information. Format: `projects/`project`/locations/`location``. In Cloud
613
- # BackupDR, locations map to GCP regions, for e.g. **us-central1**. To retrieve
614
- # backup plans for all locations, use "-" for the ``location`` value.
613
+ # information. Format: `projects/`project`/locations/`location``. In Google
614
+ # Cloud Backup and DR, locations map to Google Cloud regions, for example **us-
615
+ # central1**. To retrieve backup plans for all locations, use "-" for the ``
616
+ # location`` value.
615
617
  # @param [String] filter
616
618
  # Optional. Field match expression used to filter the results.
617
619
  # @param [String] order_by
@@ -749,8 +751,8 @@ module Google
749
751
  # @param [String] parent
750
752
  # Required. The project and location for which to retrieve `BackupPlanRevisions`
751
753
  # information. Format: `projects/`project`/locations/`location`/backupPlans/`
752
- # backup_plan``. In Cloud BackupDR, locations map to GCP regions, for e.g. **us-
753
- # central1**.
754
+ # backup_plan``. In Google Cloud Backup and DR, locations map to Google Cloud
755
+ # regions, for example **us-central1**.
754
756
  # @param [Fixnum] page_size
755
757
  # Optional. The maximum number of `BackupPlans` to return in a single response.
756
758
  # If not specified, a default value will be chosen by the service. Note that the
@@ -1556,7 +1558,8 @@ module Google
1556
1558
  # When paginating, all other parameters provided to `FetchBackupsForResourceType`
1557
1559
  # must match the call that provided the page token.
1558
1560
  # @param [String] resource_type
1559
- # Required. The type of the GCP resource. Ex: sqladmin.googleapis.com/Instance
1561
+ # Required. The type of the Google Cloud resource. Ex: sqladmin.googleapis.com/
1562
+ # Instance
1560
1563
  # @param [String] view
1561
1564
  # Optional. This parameter is used to specify the view of the backup. If not
1562
1565
  # specified, the default view is BASIC.
@@ -1797,7 +1800,8 @@ module Google
1797
1800
  # FetchDataSourceReferencesForResourceType` must match the call that provided
1798
1801
  # the page token.
1799
1802
  # @param [String] resource_type
1800
- # Required. The type of the GCP resource. Ex: sql.googleapis.com/Instance
1803
+ # Required. The type of the Google Cloud resource. Ex: sql.googleapis.com/
1804
+ # Instance
1801
1805
  # @param [String] fields
1802
1806
  # Selector specifying which fields to include in a partial response.
1803
1807
  # @param [String] quota_user
@@ -2089,9 +2093,9 @@ module Google
2089
2093
  # @param [String] parent
2090
2094
  # Required. The project and location for which to retrieve management servers
2091
2095
  # information, in the format 'projects/`project_id`/locations/`location`'. In
2092
- # Cloud BackupDR, locations map to Google Cloud regions, for example **us-
2093
- # central1**. To retrieve management servers for all locations, use "-" for the '
2094
- # `location`' value.
2096
+ # Google Cloud Backup and DR, locations map to Google Cloud regions, for example
2097
+ # **us-central1**. To retrieve management servers for all locations, use "-" for
2098
+ # the '`location`' value.
2095
2099
  # @param [String] filter
2096
2100
  # Optional. Filtering results.
2097
2101
  # @param [String] order_by
@@ -2136,8 +2140,8 @@ module Google
2136
2140
  # @param [String] parent
2137
2141
  # Required. The project and location to be used to check CSS metadata for target
2138
2142
  # project information, in the format 'projects/`project_id`/locations/`location`'
2139
- # . In Cloud BackupDR, locations map to Google Cloud regions, for example **us-
2140
- # central1**.
2143
+ # . In Google Cloud Backup and DR, locations map to Google Cloud regions, for
2144
+ # example **us-central1**.
2141
2145
  # @param [Google::Apis::BackupdrV1::FetchMsComplianceMetadataRequest] fetch_ms_compliance_metadata_request_object
2142
2146
  # @param [String] fields
2143
2147
  # Selector specifying which fields to include in a partial response.
@@ -2400,8 +2404,9 @@ module Google
2400
2404
  # Lists ResourceBackupConfigs.
2401
2405
  # @param [String] parent
2402
2406
  # Required. The project and location for which to retrieve resource backup
2403
- # configs. Format: 'projects/`project_id`/locations/`location`'. In Cloud Backup
2404
- # and DR, locations map to Google Cloud regions, for example **us-central1**.
2407
+ # configs. Format: 'projects/`project_id`/locations/`location`'. In Google Cloud
2408
+ # Backup and DR, locations map to Google Cloud regions, for example **us-
2409
+ # central1**.
2405
2410
  # @param [String] filter
2406
2411
  # Optional. Filtering results.
2407
2412
  # @param [String] order_by
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.48.0
4
+ version: 0.50.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.48.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.50.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: