google-apis-alloydb_v1beta 0.32.0 → 0.33.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: f8aa0e1a7055f79472f833d634d890f2ee37c93119b1546b2b5e943de2e16ea6
4
- data.tar.gz: 7eb0b614429102cb8aa37f95f3d5d2650e52c61e342c2d08f2dbcd630460c6f0
3
+ metadata.gz: 23c27eeb832c95e5caf31643f79fdaf9bf7e4642efdbb3a48b670b80d65b057e
4
+ data.tar.gz: f2c3b9d011d508f95a70155b65b19c40a1698b960c5c6a2e6ecd687b186578a0
5
5
  SHA512:
6
- metadata.gz: 0dfd6d579b1392724613f1317d93de4fe0099670c5c53ac333c40e338ab256fe2d2e402d3fd408552fcf70ea75ef894a8a69dd5eddf94e6adc7f4a8d50a949f3
7
- data.tar.gz: a48da48666a52261d0fc8024e91d74c88eaabc191f98d4ddda89c3bfb8bf5cc2ecb11a0a2f6e704a2729c24a0b40a7659e20b418d45488c50709e4180faaa3d2
6
+ metadata.gz: cd8f250793a1d9f98eef3adb7347e041d79f0c2b3921dc3ac18345fcfaf7ae1f405dd8f06db63d33f4ea7deb76430982f41a2ec9ce6dc4555966188f8dfc5335
7
+ data.tar.gz: '08259f6b68425b2eb21ba9a5c2f618ec6b3cde1763501360c0e574c340df0acc379e6a6bfd95fa2b9315763bf738596c6f01294f4d786af41c7749c3b93119f9'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alloydb_v1beta
2
2
 
3
+ ### v0.33.0 (2025-08-03)
4
+
5
+ * Regenerated from discovery document revision 20250723
6
+
3
7
  ### v0.32.0 (2025-06-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20250612
@@ -3244,6 +3244,43 @@ module Google
3244
3244
  end
3245
3245
  end
3246
3246
 
3247
+ # Timing information for the stage execution.
3248
+ class StageSchedule
3249
+ include Google::Apis::Core::Hashable
3250
+
3251
+ # Actual end time of the stage. Set only if the stage has completed.
3252
+ # Corresponds to the JSON property `actualEndTime`
3253
+ # @return [String]
3254
+ attr_accessor :actual_end_time
3255
+
3256
+ # Actual start time of the stage. Set only if the stage has started.
3257
+ # Corresponds to the JSON property `actualStartTime`
3258
+ # @return [String]
3259
+ attr_accessor :actual_start_time
3260
+
3261
+ # When the stage is expected to end. Set only if the stage has not completed yet.
3262
+ # Corresponds to the JSON property `estimatedEndTime`
3263
+ # @return [String]
3264
+ attr_accessor :estimated_end_time
3265
+
3266
+ # When the stage is expected to start. Set only if the stage has not started yet.
3267
+ # Corresponds to the JSON property `estimatedStartTime`
3268
+ # @return [String]
3269
+ attr_accessor :estimated_start_time
3270
+
3271
+ def initialize(**args)
3272
+ update!(**args)
3273
+ end
3274
+
3275
+ # Update properties of this object
3276
+ def update!(**args)
3277
+ @actual_end_time = args[:actual_end_time] if args.key?(:actual_end_time)
3278
+ @actual_start_time = args[:actual_start_time] if args.key?(:actual_start_time)
3279
+ @estimated_end_time = args[:estimated_end_time] if args.key?(:estimated_end_time)
3280
+ @estimated_start_time = args[:estimated_start_time] if args.key?(:estimated_start_time)
3281
+ end
3282
+ end
3283
+
3247
3284
  # Status of an upgrade stage.
3248
3285
  class StageStatus
3249
3286
  include Google::Apis::Core::Hashable
@@ -3253,6 +3290,11 @@ module Google
3253
3290
  # @return [Google::Apis::AlloydbV1beta::ReadPoolInstancesUpgradeStageStatus]
3254
3291
  attr_accessor :read_pool_instances_upgrade
3255
3292
 
3293
+ # Timing information for the stage execution.
3294
+ # Corresponds to the JSON property `schedule`
3295
+ # @return [Google::Apis::AlloydbV1beta::StageSchedule]
3296
+ attr_accessor :schedule
3297
+
3256
3298
  # Upgrade stage.
3257
3299
  # Corresponds to the JSON property `stage`
3258
3300
  # @return [String]
@@ -3270,6 +3312,7 @@ module Google
3270
3312
  # Update properties of this object
3271
3313
  def update!(**args)
3272
3314
  @read_pool_instances_upgrade = args[:read_pool_instances_upgrade] if args.key?(:read_pool_instances_upgrade)
3315
+ @schedule = args[:schedule] if args.key?(:schedule)
3273
3316
  @stage = args[:stage] if args.key?(:stage)
3274
3317
  @state = args[:state] if args.key?(:state)
3275
3318
  end
@@ -3439,6 +3482,27 @@ module Google
3439
3482
  end
3440
3483
  end
3441
3484
 
3485
+ # BackupDRConfiguration to capture the backup and disaster recovery details of
3486
+ # database resource.
3487
+ class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
3488
+ include Google::Apis::Core::Hashable
3489
+
3490
+ # Indicates if the resource is managed by BackupDR.
3491
+ # Corresponds to the JSON property `backupdrManaged`
3492
+ # @return [Boolean]
3493
+ attr_accessor :backupdr_managed
3494
+ alias_method :backupdr_managed?, :backupdr_managed
3495
+
3496
+ def initialize(**args)
3497
+ update!(**args)
3498
+ end
3499
+
3500
+ # Update properties of this object
3501
+ def update!(**args)
3502
+ @backupdr_managed = args[:backupdr_managed] if args.key?(:backupdr_managed)
3503
+ end
3504
+ end
3505
+
3442
3506
  # A backup run.
3443
3507
  class StorageDatabasecenterPartnerapiV1mainBackupRun
3444
3508
  include Google::Apis::Core::Hashable
@@ -3502,6 +3566,52 @@ module Google
3502
3566
  end
3503
3567
  end
3504
3568
 
3569
+ # Config based signal data. This is used to send signals to Condor which are
3570
+ # based on the DB level configurations. These will be used to send signals for
3571
+ # self managed databases.
3572
+ class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
3573
+ include Google::Apis::Core::Hashable
3574
+
3575
+ # Required. Full Resource name of the source resource.
3576
+ # Corresponds to the JSON property `fullResourceName`
3577
+ # @return [String]
3578
+ attr_accessor :full_resource_name
3579
+
3580
+ # Required. Last time signal was refreshed
3581
+ # Corresponds to the JSON property `lastRefreshTime`
3582
+ # @return [String]
3583
+ attr_accessor :last_refresh_time
3584
+
3585
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
3586
+ # Corresponds to the JSON property `resourceId`
3587
+ # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
3588
+ attr_accessor :resource_id
3589
+
3590
+ # Signal data for boolean signals.
3591
+ # Corresponds to the JSON property `signalBoolValue`
3592
+ # @return [Boolean]
3593
+ attr_accessor :signal_bool_value
3594
+ alias_method :signal_bool_value?, :signal_bool_value
3595
+
3596
+ # Required. Signal type of the signal
3597
+ # Corresponds to the JSON property `signalType`
3598
+ # @return [String]
3599
+ attr_accessor :signal_type
3600
+
3601
+ def initialize(**args)
3602
+ update!(**args)
3603
+ end
3604
+
3605
+ # Update properties of this object
3606
+ def update!(**args)
3607
+ @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
3608
+ @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
3609
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
3610
+ @signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
3611
+ @signal_type = args[:signal_type] if args.key?(:signal_type)
3612
+ end
3613
+ end
3614
+
3505
3615
  # Any custom metadata associated with the resource. e.g. A spanner instance can
3506
3616
  # have multiple databases with its own unique metadata. Information for these
3507
3617
  # individual databases can be captured in custom metadata data
@@ -3525,10 +3635,17 @@ module Google
3525
3635
  end
3526
3636
 
3527
3637
  # DatabaseResourceFeed is the top level proto to be used to ingest different
3528
- # database resource level events into Condor platform. Next ID: 8
3638
+ # database resource level events into Condor platform. Next ID: 9
3529
3639
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
3530
3640
  include Google::Apis::Core::Hashable
3531
3641
 
3642
+ # Config based signal data. This is used to send signals to Condor which are
3643
+ # based on the DB level configurations. These will be used to send signals for
3644
+ # self managed databases.
3645
+ # Corresponds to the JSON property `configBasedSignalData`
3646
+ # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData]
3647
+ attr_accessor :config_based_signal_data
3648
+
3532
3649
  # Required. Timestamp when feed is generated.
3533
3650
  # Corresponds to the JSON property `feedTimestamp`
3534
3651
  # @return [String]
@@ -3559,7 +3676,7 @@ module Google
3559
3676
  # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
3560
3677
  attr_accessor :resource_id
3561
3678
 
3562
- # Common model for database resource instance metadata. Next ID: 25
3679
+ # Common model for database resource instance metadata. Next ID: 26
3563
3680
  # Corresponds to the JSON property `resourceMetadata`
3564
3681
  # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
3565
3682
  attr_accessor :resource_metadata
@@ -3570,6 +3687,7 @@ module Google
3570
3687
 
3571
3688
  # Update properties of this object
3572
3689
  def update!(**args)
3690
+ @config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
3573
3691
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
3574
3692
  @feed_type = args[:feed_type] if args.key?(:feed_type)
3575
3693
  @observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
@@ -3743,7 +3861,7 @@ module Google
3743
3861
  end
3744
3862
  end
3745
3863
 
3746
- # Common model for database resource instance metadata. Next ID: 25
3864
+ # Common model for database resource instance metadata. Next ID: 26
3747
3865
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
3748
3866
  include Google::Apis::Core::Hashable
3749
3867
 
@@ -3762,6 +3880,12 @@ module Google
3762
3880
  # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun]
3763
3881
  attr_accessor :backup_run
3764
3882
 
3883
+ # BackupDRConfiguration to capture the backup and disaster recovery details of
3884
+ # database resource.
3885
+ # Corresponds to the JSON property `backupdrConfiguration`
3886
+ # @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration]
3887
+ attr_accessor :backupdr_configuration
3888
+
3765
3889
  # The creation time of the resource, i.e. the time when resource is created and
3766
3890
  # recorded in partner service.
3767
3891
  # Corresponds to the JSON property `creationTime`
@@ -3890,6 +4014,7 @@ module Google
3890
4014
  @availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
3891
4015
  @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
3892
4016
  @backup_run = args[:backup_run] if args.key?(:backup_run)
4017
+ @backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
3893
4018
  @creation_time = args[:creation_time] if args.key?(:creation_time)
3894
4019
  @current_state = args[:current_state] if args.key?(:current_state)
3895
4020
  @custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
@@ -4296,6 +4421,13 @@ module Google
4296
4421
  # @return [String]
4297
4422
  attr_accessor :engine
4298
4423
 
4424
+ # Minor version of the underlying database engine. Example values: For MySQL, it
4425
+ # could be "8.0.32", "5.7.32" etc.. For Postgres, it could be "14.3", "15.3" etc.
4426
+ # .
4427
+ # Corresponds to the JSON property `minorVersion`
4428
+ # @return [String]
4429
+ attr_accessor :minor_version
4430
+
4299
4431
  # Type of specific database product. It could be CloudSQL, AlloyDB etc..
4300
4432
  # Corresponds to the JSON property `type`
4301
4433
  # @return [String]
@@ -4314,6 +4446,7 @@ module Google
4314
4446
  # Update properties of this object
4315
4447
  def update!(**args)
4316
4448
  @engine = args[:engine] if args.key?(:engine)
4449
+ @minor_version = args[:minor_version] if args.key?(:minor_version)
4317
4450
  @type = args[:type] if args.key?(:type)
4318
4451
  @version = args[:version] if args.key?(:version)
4319
4452
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1beta
18
18
  # Version of the google-apis-alloydb_v1beta gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.33.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 = "20250612"
25
+ REVISION = "20250723"
26
26
  end
27
27
  end
28
28
  end
@@ -448,6 +448,12 @@ module Google
448
448
  include Google::Apis::Core::JsonObjectSupport
449
449
  end
450
450
 
451
+ class StageSchedule
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
451
457
  class StageStatus
452
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
453
459
 
@@ -478,6 +484,12 @@ module Google
478
484
  include Google::Apis::Core::JsonObjectSupport
479
485
  end
480
486
 
487
+ class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
481
493
  class StorageDatabasecenterPartnerapiV1mainBackupRun
482
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
495
 
@@ -490,6 +502,12 @@ module Google
490
502
  include Google::Apis::Core::JsonObjectSupport
491
503
  end
492
504
 
505
+ class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
493
511
  class StorageDatabasecenterPartnerapiV1mainCustomMetadataData
494
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
513
 
@@ -1467,11 +1485,23 @@ module Google
1467
1485
  end
1468
1486
  end
1469
1487
 
1488
+ class StageSchedule
1489
+ # @private
1490
+ class Representation < Google::Apis::Core::JsonRepresentation
1491
+ property :actual_end_time, as: 'actualEndTime'
1492
+ property :actual_start_time, as: 'actualStartTime'
1493
+ property :estimated_end_time, as: 'estimatedEndTime'
1494
+ property :estimated_start_time, as: 'estimatedStartTime'
1495
+ end
1496
+ end
1497
+
1470
1498
  class StageStatus
1471
1499
  # @private
1472
1500
  class Representation < Google::Apis::Core::JsonRepresentation
1473
1501
  property :read_pool_instances_upgrade, as: 'readPoolInstancesUpgrade', class: Google::Apis::AlloydbV1beta::ReadPoolInstancesUpgradeStageStatus, decorator: Google::Apis::AlloydbV1beta::ReadPoolInstancesUpgradeStageStatus::Representation
1474
1502
 
1503
+ property :schedule, as: 'schedule', class: Google::Apis::AlloydbV1beta::StageSchedule, decorator: Google::Apis::AlloydbV1beta::StageSchedule::Representation
1504
+
1475
1505
  property :stage, as: 'stage'
1476
1506
  property :state, as: 'state'
1477
1507
  end
@@ -1517,6 +1547,13 @@ module Google
1517
1547
  end
1518
1548
  end
1519
1549
 
1550
+ class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
1551
+ # @private
1552
+ class Representation < Google::Apis::Core::JsonRepresentation
1553
+ property :backupdr_managed, as: 'backupdrManaged'
1554
+ end
1555
+ end
1556
+
1520
1557
  class StorageDatabasecenterPartnerapiV1mainBackupRun
1521
1558
  # @private
1522
1559
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1536,6 +1573,18 @@ module Google
1536
1573
  end
1537
1574
  end
1538
1575
 
1576
+ class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
1577
+ # @private
1578
+ class Representation < Google::Apis::Core::JsonRepresentation
1579
+ property :full_resource_name, as: 'fullResourceName'
1580
+ property :last_refresh_time, as: 'lastRefreshTime'
1581
+ property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
1582
+
1583
+ property :signal_bool_value, as: 'signalBoolValue'
1584
+ property :signal_type, as: 'signalType'
1585
+ end
1586
+ end
1587
+
1539
1588
  class StorageDatabasecenterPartnerapiV1mainCustomMetadataData
1540
1589
  # @private
1541
1590
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1547,6 +1596,8 @@ module Google
1547
1596
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
1548
1597
  # @private
1549
1598
  class Representation < Google::Apis::Core::JsonRepresentation
1599
+ property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
1600
+
1550
1601
  property :feed_timestamp, as: 'feedTimestamp'
1551
1602
  property :feed_type, as: 'feedType'
1552
1603
  property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData::Representation
@@ -1603,6 +1654,8 @@ module Google
1603
1654
 
1604
1655
  property :backup_run, as: 'backupRun', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun::Representation
1605
1656
 
1657
+ property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration::Representation
1658
+
1606
1659
  property :creation_time, as: 'creationTime'
1607
1660
  property :current_state, as: 'currentState'
1608
1661
  property :custom_metadata, as: 'customMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData::Representation
@@ -1740,6 +1793,7 @@ module Google
1740
1793
  # @private
1741
1794
  class Representation < Google::Apis::Core::JsonRepresentation
1742
1795
  property :engine, as: 'engine'
1796
+ property :minor_version, as: 'minorVersion'
1743
1797
  property :type, as: 'type'
1744
1798
  property :version, as: 'version'
1745
1799
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.33.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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.32.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.33.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: