google-apis-alloydb_v1 0.42.0 → 0.43.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: 86bab82dc0242c3f9308151de65d87989ef30b2dd1832c22b41db533aab09036
4
- data.tar.gz: d4504a9c2ddc80b5be24780a29b8d65f56ea96aa19390c4ba5af5b53587353a0
3
+ metadata.gz: 830e22d9f4a2e74967725f48426c35d3c7c4131940f09351cb2a21bd2b29f7b1
4
+ data.tar.gz: b09df6a9e1e5e43ef3ea3e6573cf5bec096635c8e395b7dbcbae527f51ce8ee1
5
5
  SHA512:
6
- metadata.gz: 948940b49769c7166ca66afe047372ba62632c818016d9ba1562c2874d0f43a8196ddb82a9403aed411c5804770f8748a7b44453b97e8b5273bcc1b8d7effb58
7
- data.tar.gz: ceb54dd539a2b1828fe86ff50636af2973ed1b6b710c5d18e2e7b569002bea094414d94c0b19e256a060df05b3ce95ab410df2283bbca100915238a39dd57bad
6
+ metadata.gz: 36b7b1d7139d4751e81159f37826cecc44b997b2666b0d4cc94caa8f22d828da65437708113c4026f0f2e8185e33fb94dbb7eca3f8b61a3cbdd74b497c2c0833
7
+ data.tar.gz: c7d63745148afa712f76637771c060ab1a6e49d9e43317e0ccfde7cad74cdbfe1f3d4506ed2a895ca41c0b54d44add1c951f6d0989479d710ad1dd326cbb9323
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alloydb_v1
2
2
 
3
+ ### v0.43.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250807
6
+
3
7
  ### v0.42.0 (2025-07-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20250723
@@ -3309,6 +3309,57 @@ module Google
3309
3309
  end
3310
3310
  end
3311
3311
 
3312
+ # BackupDRMetadata contains information about the backup and disaster recovery
3313
+ # metadata of a database resource.
3314
+ class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
3315
+ include Google::Apis::Core::Hashable
3316
+
3317
+ # Configuration for automatic backups
3318
+ # Corresponds to the JSON property `backupConfiguration`
3319
+ # @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupConfiguration]
3320
+ attr_accessor :backup_configuration
3321
+
3322
+ # A backup run.
3323
+ # Corresponds to the JSON property `backupRun`
3324
+ # @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupRun]
3325
+ attr_accessor :backup_run
3326
+
3327
+ # BackupDRConfiguration to capture the backup and disaster recovery details of
3328
+ # database resource.
3329
+ # Corresponds to the JSON property `backupdrConfiguration`
3330
+ # @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration]
3331
+ attr_accessor :backupdr_configuration
3332
+
3333
+ # Required. Full resource name of this instance.
3334
+ # Corresponds to the JSON property `fullResourceName`
3335
+ # @return [String]
3336
+ attr_accessor :full_resource_name
3337
+
3338
+ # Required. Last time backup configuration was refreshed.
3339
+ # Corresponds to the JSON property `lastRefreshTime`
3340
+ # @return [String]
3341
+ attr_accessor :last_refresh_time
3342
+
3343
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
3344
+ # Corresponds to the JSON property `resourceId`
3345
+ # @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
3346
+ attr_accessor :resource_id
3347
+
3348
+ def initialize(**args)
3349
+ update!(**args)
3350
+ end
3351
+
3352
+ # Update properties of this object
3353
+ def update!(**args)
3354
+ @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
3355
+ @backup_run = args[:backup_run] if args.key?(:backup_run)
3356
+ @backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
3357
+ @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
3358
+ @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
3359
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
3360
+ end
3361
+ end
3362
+
3312
3363
  # A backup run.
3313
3364
  class StorageDatabasecenterPartnerapiV1mainBackupRun
3314
3365
  include Google::Apis::Core::Hashable
@@ -3441,10 +3492,16 @@ module Google
3441
3492
  end
3442
3493
 
3443
3494
  # DatabaseResourceFeed is the top level proto to be used to ingest different
3444
- # database resource level events into Condor platform. Next ID: 9
3495
+ # database resource level events into Condor platform. Next ID: 11
3445
3496
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
3446
3497
  include Google::Apis::Core::Hashable
3447
3498
 
3499
+ # BackupDRMetadata contains information about the backup and disaster recovery
3500
+ # metadata of a database resource.
3501
+ # Corresponds to the JSON property `backupdrMetadata`
3502
+ # @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
3503
+ attr_accessor :backupdr_metadata
3504
+
3448
3505
  # Config based signal data. This is used to send signals to Condor which are
3449
3506
  # based on the DB level configurations. These will be used to send signals for
3450
3507
  # self managed databases.
@@ -3487,12 +3544,23 @@ module Google
3487
3544
  # @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
3488
3545
  attr_accessor :resource_metadata
3489
3546
 
3547
+ # Optional. If true, the feed won't be ingested by DB Center. This indicates
3548
+ # that the feed is intentionally skipped. For example, BackupDR feeds are only
3549
+ # needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB).
3550
+ # Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can
3551
+ # be skipped.
3552
+ # Corresponds to the JSON property `skipIngestion`
3553
+ # @return [Boolean]
3554
+ attr_accessor :skip_ingestion
3555
+ alias_method :skip_ingestion?, :skip_ingestion
3556
+
3490
3557
  def initialize(**args)
3491
3558
  update!(**args)
3492
3559
  end
3493
3560
 
3494
3561
  # Update properties of this object
3495
3562
  def update!(**args)
3563
+ @backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
3496
3564
  @config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
3497
3565
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
3498
3566
  @feed_type = args[:feed_type] if args.key?(:feed_type)
@@ -3501,6 +3569,7 @@ module Google
3501
3569
  @resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
3502
3570
  @resource_id = args[:resource_id] if args.key?(:resource_id)
3503
3571
  @resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
3572
+ @skip_ingestion = args[:skip_ingestion] if args.key?(:skip_ingestion)
3504
3573
  end
3505
3574
  end
3506
3575
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1
18
18
  # Version of the google-apis-alloydb_v1 gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.43.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 = "20250723"
25
+ REVISION = "20250807"
26
26
  end
27
27
  end
28
28
  end
@@ -484,6 +484,12 @@ module Google
484
484
  include Google::Apis::Core::JsonObjectSupport
485
485
  end
486
486
 
487
+ class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
487
493
  class StorageDatabasecenterPartnerapiV1mainBackupRun
488
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
495
 
@@ -1508,6 +1514,22 @@ module Google
1508
1514
  end
1509
1515
  end
1510
1516
 
1517
+ class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
1518
+ # @private
1519
+ class Representation < Google::Apis::Core::JsonRepresentation
1520
+ property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupConfiguration, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupConfiguration::Representation
1521
+
1522
+ property :backup_run, as: 'backupRun', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupRun, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupRun::Representation
1523
+
1524
+ property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration::Representation
1525
+
1526
+ property :full_resource_name, as: 'fullResourceName'
1527
+ property :last_refresh_time, as: 'lastRefreshTime'
1528
+ property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
1529
+
1530
+ end
1531
+ end
1532
+
1511
1533
  class StorageDatabasecenterPartnerapiV1mainBackupRun
1512
1534
  # @private
1513
1535
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1550,6 +1572,8 @@ module Google
1550
1572
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
1551
1573
  # @private
1552
1574
  class Representation < Google::Apis::Core::JsonRepresentation
1575
+ property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
1576
+
1553
1577
  property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
1554
1578
 
1555
1579
  property :feed_timestamp, as: 'feedTimestamp'
@@ -1564,6 +1588,7 @@ module Google
1564
1588
 
1565
1589
  property :resource_metadata, as: 'resourceMetadata', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata::Representation
1566
1590
 
1591
+ property :skip_ingestion, as: 'skipIngestion'
1567
1592
  end
1568
1593
  end
1569
1594
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.43.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-alloydb_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.42.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.43.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
62
62
  rdoc_options: []
63
63
  require_paths: