google-apis-alloydb_v1alpha 0.32.0 → 0.34.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: ff8b321010592c5828f9594442006052f4d0c76a7b4deecba7ceae91003fcd94
4
- data.tar.gz: 78a276a5de6698ce910b24ddce5cbe7802b4d65c2c429104e03a1a54e9e08020
3
+ metadata.gz: fd8163190ad26844d6a998fc7bdfe6329fab81e1fe007f95b04af357a2ae6857
4
+ data.tar.gz: 1323136ed82e81f9c0a21c77e80140602a6973f3cfdac441a7450ea15832cf90
5
5
  SHA512:
6
- metadata.gz: 02f395a6228711b03d71e92a61e37e9dc5382d61268171d51765c8c24b3669f238294d0b2c56d028a5e32266399d7f63828ad553a77218564eb04ba248cba731
7
- data.tar.gz: 947dea678a4a0ab0f181e69b10b0d10a1394d5883fde5217a3971267e969ce477cd1eefa5f21dd582a60d0991574e37404ea97f50f08ac846f0a281893acf45a
6
+ metadata.gz: 1bd660b96070add5a393cf38f23b968e12603cce0601b52b2bc6a860ce839f304d5cff36e8f0f9a790c0ca3b06e66a6543139f1cc1801dfb3a2ebdda0793f147
7
+ data.tar.gz: 15cdf80feba775a0563f6c787806408c522efdafa15354a63712adfc98096576083a5de752d62fb1dc887417323ec771d1cfc31c3795b84b6703d51791100f5a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-alloydb_v1alpha
2
2
 
3
+ ### v0.34.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250807
6
+
7
+ ### v0.33.0 (2025-08-03)
8
+
9
+ * Regenerated from discovery document revision 20250723
10
+
3
11
  ### v0.32.0 (2025-06-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20250612
@@ -3278,6 +3278,43 @@ module Google
3278
3278
  end
3279
3279
  end
3280
3280
 
3281
+ # Timing information for the stage execution.
3282
+ class StageSchedule
3283
+ include Google::Apis::Core::Hashable
3284
+
3285
+ # Actual end time of the stage. Set only if the stage has completed.
3286
+ # Corresponds to the JSON property `actualEndTime`
3287
+ # @return [String]
3288
+ attr_accessor :actual_end_time
3289
+
3290
+ # Actual start time of the stage. Set only if the stage has started.
3291
+ # Corresponds to the JSON property `actualStartTime`
3292
+ # @return [String]
3293
+ attr_accessor :actual_start_time
3294
+
3295
+ # When the stage is expected to end. Set only if the stage has not completed yet.
3296
+ # Corresponds to the JSON property `estimatedEndTime`
3297
+ # @return [String]
3298
+ attr_accessor :estimated_end_time
3299
+
3300
+ # When the stage is expected to start. Set only if the stage has not started yet.
3301
+ # Corresponds to the JSON property `estimatedStartTime`
3302
+ # @return [String]
3303
+ attr_accessor :estimated_start_time
3304
+
3305
+ def initialize(**args)
3306
+ update!(**args)
3307
+ end
3308
+
3309
+ # Update properties of this object
3310
+ def update!(**args)
3311
+ @actual_end_time = args[:actual_end_time] if args.key?(:actual_end_time)
3312
+ @actual_start_time = args[:actual_start_time] if args.key?(:actual_start_time)
3313
+ @estimated_end_time = args[:estimated_end_time] if args.key?(:estimated_end_time)
3314
+ @estimated_start_time = args[:estimated_start_time] if args.key?(:estimated_start_time)
3315
+ end
3316
+ end
3317
+
3281
3318
  # Status of an upgrade stage.
3282
3319
  class StageStatus
3283
3320
  include Google::Apis::Core::Hashable
@@ -3287,6 +3324,11 @@ module Google
3287
3324
  # @return [Google::Apis::AlloydbV1alpha::ReadPoolInstancesUpgradeStageStatus]
3288
3325
  attr_accessor :read_pool_instances_upgrade
3289
3326
 
3327
+ # Timing information for the stage execution.
3328
+ # Corresponds to the JSON property `schedule`
3329
+ # @return [Google::Apis::AlloydbV1alpha::StageSchedule]
3330
+ attr_accessor :schedule
3331
+
3290
3332
  # Upgrade stage.
3291
3333
  # Corresponds to the JSON property `stage`
3292
3334
  # @return [String]
@@ -3304,6 +3346,7 @@ module Google
3304
3346
  # Update properties of this object
3305
3347
  def update!(**args)
3306
3348
  @read_pool_instances_upgrade = args[:read_pool_instances_upgrade] if args.key?(:read_pool_instances_upgrade)
3349
+ @schedule = args[:schedule] if args.key?(:schedule)
3307
3350
  @stage = args[:stage] if args.key?(:stage)
3308
3351
  @state = args[:state] if args.key?(:state)
3309
3352
  end
@@ -3473,6 +3516,78 @@ module Google
3473
3516
  end
3474
3517
  end
3475
3518
 
3519
+ # BackupDRConfiguration to capture the backup and disaster recovery details of
3520
+ # database resource.
3521
+ class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
3522
+ include Google::Apis::Core::Hashable
3523
+
3524
+ # Indicates if the resource is managed by BackupDR.
3525
+ # Corresponds to the JSON property `backupdrManaged`
3526
+ # @return [Boolean]
3527
+ attr_accessor :backupdr_managed
3528
+ alias_method :backupdr_managed?, :backupdr_managed
3529
+
3530
+ def initialize(**args)
3531
+ update!(**args)
3532
+ end
3533
+
3534
+ # Update properties of this object
3535
+ def update!(**args)
3536
+ @backupdr_managed = args[:backupdr_managed] if args.key?(:backupdr_managed)
3537
+ end
3538
+ end
3539
+
3540
+ # BackupDRMetadata contains information about the backup and disaster recovery
3541
+ # metadata of a database resource.
3542
+ class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
3543
+ include Google::Apis::Core::Hashable
3544
+
3545
+ # Configuration for automatic backups
3546
+ # Corresponds to the JSON property `backupConfiguration`
3547
+ # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupConfiguration]
3548
+ attr_accessor :backup_configuration
3549
+
3550
+ # A backup run.
3551
+ # Corresponds to the JSON property `backupRun`
3552
+ # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupRun]
3553
+ attr_accessor :backup_run
3554
+
3555
+ # BackupDRConfiguration to capture the backup and disaster recovery details of
3556
+ # database resource.
3557
+ # Corresponds to the JSON property `backupdrConfiguration`
3558
+ # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration]
3559
+ attr_accessor :backupdr_configuration
3560
+
3561
+ # Required. Full resource name of this instance.
3562
+ # Corresponds to the JSON property `fullResourceName`
3563
+ # @return [String]
3564
+ attr_accessor :full_resource_name
3565
+
3566
+ # Required. Last time backup configuration was refreshed.
3567
+ # Corresponds to the JSON property `lastRefreshTime`
3568
+ # @return [String]
3569
+ attr_accessor :last_refresh_time
3570
+
3571
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
3572
+ # Corresponds to the JSON property `resourceId`
3573
+ # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
3574
+ attr_accessor :resource_id
3575
+
3576
+ def initialize(**args)
3577
+ update!(**args)
3578
+ end
3579
+
3580
+ # Update properties of this object
3581
+ def update!(**args)
3582
+ @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
3583
+ @backup_run = args[:backup_run] if args.key?(:backup_run)
3584
+ @backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
3585
+ @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
3586
+ @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
3587
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
3588
+ end
3589
+ end
3590
+
3476
3591
  # A backup run.
3477
3592
  class StorageDatabasecenterPartnerapiV1mainBackupRun
3478
3593
  include Google::Apis::Core::Hashable
@@ -3536,6 +3651,52 @@ module Google
3536
3651
  end
3537
3652
  end
3538
3653
 
3654
+ # Config based signal data. This is used to send signals to Condor which are
3655
+ # based on the DB level configurations. These will be used to send signals for
3656
+ # self managed databases.
3657
+ class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
3658
+ include Google::Apis::Core::Hashable
3659
+
3660
+ # Required. Full Resource name of the source resource.
3661
+ # Corresponds to the JSON property `fullResourceName`
3662
+ # @return [String]
3663
+ attr_accessor :full_resource_name
3664
+
3665
+ # Required. Last time signal was refreshed
3666
+ # Corresponds to the JSON property `lastRefreshTime`
3667
+ # @return [String]
3668
+ attr_accessor :last_refresh_time
3669
+
3670
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
3671
+ # Corresponds to the JSON property `resourceId`
3672
+ # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
3673
+ attr_accessor :resource_id
3674
+
3675
+ # Signal data for boolean signals.
3676
+ # Corresponds to the JSON property `signalBoolValue`
3677
+ # @return [Boolean]
3678
+ attr_accessor :signal_bool_value
3679
+ alias_method :signal_bool_value?, :signal_bool_value
3680
+
3681
+ # Required. Signal type of the signal
3682
+ # Corresponds to the JSON property `signalType`
3683
+ # @return [String]
3684
+ attr_accessor :signal_type
3685
+
3686
+ def initialize(**args)
3687
+ update!(**args)
3688
+ end
3689
+
3690
+ # Update properties of this object
3691
+ def update!(**args)
3692
+ @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
3693
+ @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
3694
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
3695
+ @signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
3696
+ @signal_type = args[:signal_type] if args.key?(:signal_type)
3697
+ end
3698
+ end
3699
+
3539
3700
  # Any custom metadata associated with the resource. e.g. A spanner instance can
3540
3701
  # have multiple databases with its own unique metadata. Information for these
3541
3702
  # individual databases can be captured in custom metadata data
@@ -3559,10 +3720,23 @@ module Google
3559
3720
  end
3560
3721
 
3561
3722
  # DatabaseResourceFeed is the top level proto to be used to ingest different
3562
- # database resource level events into Condor platform. Next ID: 8
3723
+ # database resource level events into Condor platform. Next ID: 11
3563
3724
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
3564
3725
  include Google::Apis::Core::Hashable
3565
3726
 
3727
+ # BackupDRMetadata contains information about the backup and disaster recovery
3728
+ # metadata of a database resource.
3729
+ # Corresponds to the JSON property `backupdrMetadata`
3730
+ # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
3731
+ attr_accessor :backupdr_metadata
3732
+
3733
+ # Config based signal data. This is used to send signals to Condor which are
3734
+ # based on the DB level configurations. These will be used to send signals for
3735
+ # self managed databases.
3736
+ # Corresponds to the JSON property `configBasedSignalData`
3737
+ # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData]
3738
+ attr_accessor :config_based_signal_data
3739
+
3566
3740
  # Required. Timestamp when feed is generated.
3567
3741
  # Corresponds to the JSON property `feedTimestamp`
3568
3742
  # @return [String]
@@ -3593,17 +3767,29 @@ module Google
3593
3767
  # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
3594
3768
  attr_accessor :resource_id
3595
3769
 
3596
- # Common model for database resource instance metadata. Next ID: 25
3770
+ # Common model for database resource instance metadata. Next ID: 26
3597
3771
  # Corresponds to the JSON property `resourceMetadata`
3598
3772
  # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
3599
3773
  attr_accessor :resource_metadata
3600
3774
 
3775
+ # Optional. If true, the feed won't be ingested by DB Center. This indicates
3776
+ # that the feed is intentionally skipped. For example, BackupDR feeds are only
3777
+ # needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB).
3778
+ # Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can
3779
+ # be skipped.
3780
+ # Corresponds to the JSON property `skipIngestion`
3781
+ # @return [Boolean]
3782
+ attr_accessor :skip_ingestion
3783
+ alias_method :skip_ingestion?, :skip_ingestion
3784
+
3601
3785
  def initialize(**args)
3602
3786
  update!(**args)
3603
3787
  end
3604
3788
 
3605
3789
  # Update properties of this object
3606
3790
  def update!(**args)
3791
+ @backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
3792
+ @config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
3607
3793
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
3608
3794
  @feed_type = args[:feed_type] if args.key?(:feed_type)
3609
3795
  @observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
@@ -3611,6 +3797,7 @@ module Google
3611
3797
  @resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
3612
3798
  @resource_id = args[:resource_id] if args.key?(:resource_id)
3613
3799
  @resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
3800
+ @skip_ingestion = args[:skip_ingestion] if args.key?(:skip_ingestion)
3614
3801
  end
3615
3802
  end
3616
3803
 
@@ -3777,7 +3964,7 @@ module Google
3777
3964
  end
3778
3965
  end
3779
3966
 
3780
- # Common model for database resource instance metadata. Next ID: 25
3967
+ # Common model for database resource instance metadata. Next ID: 26
3781
3968
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
3782
3969
  include Google::Apis::Core::Hashable
3783
3970
 
@@ -3796,6 +3983,12 @@ module Google
3796
3983
  # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupRun]
3797
3984
  attr_accessor :backup_run
3798
3985
 
3986
+ # BackupDRConfiguration to capture the backup and disaster recovery details of
3987
+ # database resource.
3988
+ # Corresponds to the JSON property `backupdrConfiguration`
3989
+ # @return [Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration]
3990
+ attr_accessor :backupdr_configuration
3991
+
3799
3992
  # The creation time of the resource, i.e. the time when resource is created and
3800
3993
  # recorded in partner service.
3801
3994
  # Corresponds to the JSON property `creationTime`
@@ -3924,6 +4117,7 @@ module Google
3924
4117
  @availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
3925
4118
  @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
3926
4119
  @backup_run = args[:backup_run] if args.key?(:backup_run)
4120
+ @backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
3927
4121
  @creation_time = args[:creation_time] if args.key?(:creation_time)
3928
4122
  @current_state = args[:current_state] if args.key?(:current_state)
3929
4123
  @custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
@@ -4330,6 +4524,13 @@ module Google
4330
4524
  # @return [String]
4331
4525
  attr_accessor :engine
4332
4526
 
4527
+ # Minor version of the underlying database engine. Example values: For MySQL, it
4528
+ # could be "8.0.32", "5.7.32" etc.. For Postgres, it could be "14.3", "15.3" etc.
4529
+ # .
4530
+ # Corresponds to the JSON property `minorVersion`
4531
+ # @return [String]
4532
+ attr_accessor :minor_version
4533
+
4333
4534
  # Type of specific database product. It could be CloudSQL, AlloyDB etc..
4334
4535
  # Corresponds to the JSON property `type`
4335
4536
  # @return [String]
@@ -4348,6 +4549,7 @@ module Google
4348
4549
  # Update properties of this object
4349
4550
  def update!(**args)
4350
4551
  @engine = args[:engine] if args.key?(:engine)
4552
+ @minor_version = args[:minor_version] if args.key?(:minor_version)
4351
4553
  @type = args[:type] if args.key?(:type)
4352
4554
  @version = args[:version] if args.key?(:version)
4353
4555
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1alpha
18
18
  # Version of the google-apis-alloydb_v1alpha gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.34.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 = "20250807"
26
26
  end
27
27
  end
28
28
  end
@@ -454,6 +454,12 @@ module Google
454
454
  include Google::Apis::Core::JsonObjectSupport
455
455
  end
456
456
 
457
+ class StageSchedule
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
457
463
  class StageStatus
458
464
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
465
 
@@ -484,6 +490,18 @@ module Google
484
490
  include Google::Apis::Core::JsonObjectSupport
485
491
  end
486
492
 
493
+ class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
499
+ class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
487
505
  class StorageDatabasecenterPartnerapiV1mainBackupRun
488
506
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
507
 
@@ -496,6 +514,12 @@ module Google
496
514
  include Google::Apis::Core::JsonObjectSupport
497
515
  end
498
516
 
517
+ class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
499
523
  class StorageDatabasecenterPartnerapiV1mainCustomMetadataData
500
524
  class Representation < Google::Apis::Core::JsonRepresentation; end
501
525
 
@@ -1482,11 +1506,23 @@ module Google
1482
1506
  end
1483
1507
  end
1484
1508
 
1509
+ class StageSchedule
1510
+ # @private
1511
+ class Representation < Google::Apis::Core::JsonRepresentation
1512
+ property :actual_end_time, as: 'actualEndTime'
1513
+ property :actual_start_time, as: 'actualStartTime'
1514
+ property :estimated_end_time, as: 'estimatedEndTime'
1515
+ property :estimated_start_time, as: 'estimatedStartTime'
1516
+ end
1517
+ end
1518
+
1485
1519
  class StageStatus
1486
1520
  # @private
1487
1521
  class Representation < Google::Apis::Core::JsonRepresentation
1488
1522
  property :read_pool_instances_upgrade, as: 'readPoolInstancesUpgrade', class: Google::Apis::AlloydbV1alpha::ReadPoolInstancesUpgradeStageStatus, decorator: Google::Apis::AlloydbV1alpha::ReadPoolInstancesUpgradeStageStatus::Representation
1489
1523
 
1524
+ property :schedule, as: 'schedule', class: Google::Apis::AlloydbV1alpha::StageSchedule, decorator: Google::Apis::AlloydbV1alpha::StageSchedule::Representation
1525
+
1490
1526
  property :stage, as: 'stage'
1491
1527
  property :state, as: 'state'
1492
1528
  end
@@ -1532,6 +1568,29 @@ module Google
1532
1568
  end
1533
1569
  end
1534
1570
 
1571
+ class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
1572
+ # @private
1573
+ class Representation < Google::Apis::Core::JsonRepresentation
1574
+ property :backupdr_managed, as: 'backupdrManaged'
1575
+ end
1576
+ end
1577
+
1578
+ class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
1579
+ # @private
1580
+ class Representation < Google::Apis::Core::JsonRepresentation
1581
+ property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupConfiguration, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupConfiguration::Representation
1582
+
1583
+ property :backup_run, as: 'backupRun', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupRun, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupRun::Representation
1584
+
1585
+ property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration::Representation
1586
+
1587
+ property :full_resource_name, as: 'fullResourceName'
1588
+ property :last_refresh_time, as: 'lastRefreshTime'
1589
+ property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
1590
+
1591
+ end
1592
+ end
1593
+
1535
1594
  class StorageDatabasecenterPartnerapiV1mainBackupRun
1536
1595
  # @private
1537
1596
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1551,6 +1610,18 @@ module Google
1551
1610
  end
1552
1611
  end
1553
1612
 
1613
+ class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
1614
+ # @private
1615
+ class Representation < Google::Apis::Core::JsonRepresentation
1616
+ property :full_resource_name, as: 'fullResourceName'
1617
+ property :last_refresh_time, as: 'lastRefreshTime'
1618
+ property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
1619
+
1620
+ property :signal_bool_value, as: 'signalBoolValue'
1621
+ property :signal_type, as: 'signalType'
1622
+ end
1623
+ end
1624
+
1554
1625
  class StorageDatabasecenterPartnerapiV1mainCustomMetadataData
1555
1626
  # @private
1556
1627
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1562,6 +1633,10 @@ module Google
1562
1633
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
1563
1634
  # @private
1564
1635
  class Representation < Google::Apis::Core::JsonRepresentation
1636
+ property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
1637
+
1638
+ property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
1639
+
1565
1640
  property :feed_timestamp, as: 'feedTimestamp'
1566
1641
  property :feed_type, as: 'feedType'
1567
1642
  property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData::Representation
@@ -1574,6 +1649,7 @@ module Google
1574
1649
 
1575
1650
  property :resource_metadata, as: 'resourceMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata::Representation
1576
1651
 
1652
+ property :skip_ingestion, as: 'skipIngestion'
1577
1653
  end
1578
1654
  end
1579
1655
 
@@ -1618,6 +1694,8 @@ module Google
1618
1694
 
1619
1695
  property :backup_run, as: 'backupRun', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupRun, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupRun::Representation
1620
1696
 
1697
+ property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration::Representation
1698
+
1621
1699
  property :creation_time, as: 'creationTime'
1622
1700
  property :current_state, as: 'currentState'
1623
1701
  property :custom_metadata, as: 'customMetadata', class: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainCustomMetadataData, decorator: Google::Apis::AlloydbV1alpha::StorageDatabasecenterPartnerapiV1mainCustomMetadataData::Representation
@@ -1755,6 +1833,7 @@ module Google
1755
1833
  # @private
1756
1834
  class Representation < Google::Apis::Core::JsonRepresentation
1757
1835
  property :engine, as: 'engine'
1836
+ property :minor_version, as: 'minorVersion'
1758
1837
  property :type, as: 'type'
1759
1838
  property :version, as: 'version'
1760
1839
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.34.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_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.32.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.34.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: