google-apis-backupdr_v1 0.49.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: ad7a37fb56057a028c15a9fe24b4122553f8e3b078d87bbe01b9241eae8f257a
4
- data.tar.gz: 399a9f7520e8fbc92d69fb0fc193280b5b03b49a27cd72579aa7c6189eae93bd
3
+ metadata.gz: dbd7749805dbb78015ba264d0e192b37299fc145d693681dd71a46bc7cc9e094
4
+ data.tar.gz: db4a19795f4cc67ba09ff754cb24814d355e363a7cde6bbe8bf5cee405922e5d
5
5
  SHA512:
6
- metadata.gz: 6fd8194e8f4d9382e732528a0f63d8fc2976ed5ea649c3d857b5c75ee1a1b2205523fb81eb29dd8a9aab817eee82622f2ebbac4a3f0759a29ca8bcc7bf55a948
7
- data.tar.gz: b006c9f2dd8ab364ae60c685c7b9353d90e41956475b8f67c0f9e059654d3450434c4fcda51650f02e733f3e681a50f35e46595f39728770be4411d326821112
6
+ metadata.gz: 1eca516dee5062da3c954225f16440e46df3355996fe6a8566ea1e6e0fcc9ecb90f5d63c7f6a6670118b7d876e349226f1b3620c0846627dd5948fbf7be26a2f
7
+ data.tar.gz: 78da82bd6d1cb9c9a9229679c17c9918fde82bae6c67a1d0db5ac5e23ebc1bd2a494a08e6f5545edfb3067a57a7b5c43c12563f96ec892af5975334419fb4613
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.49.0 (2026-01-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20251227
@@ -250,12 +250,18 @@ module Google
250
250
  class AlloyDbClusterBackupPlanAssociationProperties
251
251
  include Google::Apis::Core::Hashable
252
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
+
253
258
  def initialize(**args)
254
259
  update!(**args)
255
260
  end
256
261
 
257
262
  # Update properties of this object
258
263
  def update!(**args)
264
+ @cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
259
265
  end
260
266
  end
261
267
 
@@ -264,11 +270,46 @@ module Google
264
270
  class AlloyDbClusterDataSourceProperties
265
271
  include Google::Apis::Core::Hashable
266
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
+
267
279
  # Output only. Name of the AlloyDB cluster backed up by the datasource.
268
280
  # Corresponds to the JSON property `name`
269
281
  # @return [String]
270
282
  attr_accessor :name
271
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
+
272
313
  def initialize(**args)
273
314
  update!(**args)
274
315
  end
@@ -319,6 +360,38 @@ module Google
319
360
  end
320
361
  end
321
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
+
322
395
  # An instance-attached disk resource.
323
396
  class AttachedDisk
324
397
  include Google::Apis::Core::Hashable
@@ -2617,6 +2690,12 @@ module Google
2617
2690
  class DataSourceGcpResourceInfo
2618
2691
  include Google::Apis::Core::Hashable
2619
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
+
2620
2699
  # CloudSqlInstanceDataSourceReferenceProperties represents the properties of a
2621
2700
  # Cloud SQL resource that are stored in the DataSourceReference.
2622
2701
  # Corresponds to the JSON property `cloudSqlInstanceProperties`
@@ -2647,6 +2726,7 @@ module Google
2647
2726
 
2648
2727
  # Update properties of this object
2649
2728
  def update!(**args)
2729
+ @alloy_db_cluster_properties = args[:alloy_db_cluster_properties] if args.key?(:alloy_db_cluster_properties)
2650
2730
  @cloud_sql_instance_properties = args[:cloud_sql_instance_properties] if args.key?(:cloud_sql_instance_properties)
2651
2731
  @gcp_resourcename = args[:gcp_resourcename] if args.key?(:gcp_resourcename)
2652
2732
  @location = args[:location] if args.key?(:location)
@@ -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.49.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 = "20251227"
25
+ REVISION = "20260116"
26
26
  end
27
27
  end
28
28
  end
@@ -70,12 +70,24 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class AlloyDbClusterDataSourceReferenceProperties
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class AlloyDbClusterBackupProperties
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
76
82
  include Google::Apis::Core::JsonObjectSupport
77
83
  end
78
84
 
85
+ class AlloyDbPitrWindow
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
79
91
  class AttachedDisk
80
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
93
 
@@ -843,10 +855,21 @@ module Google
843
855
  class AlloyDbClusterBackupPlanAssociationProperties
844
856
  # @private
845
857
  class Representation < Google::Apis::Core::JsonRepresentation
858
+ property :cluster_uid, as: 'clusterUid'
846
859
  end
847
860
  end
848
861
 
849
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
850
873
  # @private
851
874
  class Representation < Google::Apis::Core::JsonRepresentation
852
875
  property :name, as: 'name'
@@ -863,6 +886,15 @@ module Google
863
886
  end
864
887
  end
865
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
+
866
898
  class AttachedDisk
867
899
  # @private
868
900
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1403,6 +1435,8 @@ module Google
1403
1435
  class DataSourceGcpResourceInfo
1404
1436
  # @private
1405
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
+
1406
1440
  property :cloud_sql_instance_properties, as: 'cloudSqlInstanceProperties', class: Google::Apis::BackupdrV1::CloudSqlInstanceDataSourceReferenceProperties, decorator: Google::Apis::BackupdrV1::CloudSqlInstanceDataSourceReferenceProperties::Representation
1407
1441
 
1408
1442
  property :gcp_resourcename, as: 'gcpResourcename'
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.49.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.49.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: