google-apis-alloydb_v1beta 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b7772406c3d81c1a64dfd7e0ede1f9ffe61e6cc9b5eb877edabc139245829c4
|
4
|
+
data.tar.gz: 4e7d6c6401bd5f08af9a9a8179f1dea206ad302a3ed1afa1d5ff1cc04fac75e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba577c7dc76f05f3b77f9a3139259449cc16174bb6ef45920e35075dd875cee1c6841cac20de5a1920960dca2d1571ee5f079bc0c86d7df23008d377179c1a7b
|
7
|
+
data.tar.gz: ff9da41c2e79e8436227b79ea756c91ef925d5f2c5cb5a03d4e240f51ca0bcd895e929387782e590d9966ba39725a37959925bf607dd7f1e526878a1403b6465
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
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
|
@@ -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,78 @@ 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
|
+
|
3506
|
+
# BackupDRMetadata contains information about the backup and disaster recovery
|
3507
|
+
# metadata of a database resource.
|
3508
|
+
class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
|
3509
|
+
include Google::Apis::Core::Hashable
|
3510
|
+
|
3511
|
+
# Configuration for automatic backups
|
3512
|
+
# Corresponds to the JSON property `backupConfiguration`
|
3513
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupConfiguration]
|
3514
|
+
attr_accessor :backup_configuration
|
3515
|
+
|
3516
|
+
# A backup run.
|
3517
|
+
# Corresponds to the JSON property `backupRun`
|
3518
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun]
|
3519
|
+
attr_accessor :backup_run
|
3520
|
+
|
3521
|
+
# BackupDRConfiguration to capture the backup and disaster recovery details of
|
3522
|
+
# database resource.
|
3523
|
+
# Corresponds to the JSON property `backupdrConfiguration`
|
3524
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration]
|
3525
|
+
attr_accessor :backupdr_configuration
|
3526
|
+
|
3527
|
+
# Required. Full resource name of this instance.
|
3528
|
+
# Corresponds to the JSON property `fullResourceName`
|
3529
|
+
# @return [String]
|
3530
|
+
attr_accessor :full_resource_name
|
3531
|
+
|
3532
|
+
# Required. Last time backup configuration was refreshed.
|
3533
|
+
# Corresponds to the JSON property `lastRefreshTime`
|
3534
|
+
# @return [String]
|
3535
|
+
attr_accessor :last_refresh_time
|
3536
|
+
|
3537
|
+
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
3538
|
+
# Corresponds to the JSON property `resourceId`
|
3539
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
3540
|
+
attr_accessor :resource_id
|
3541
|
+
|
3542
|
+
def initialize(**args)
|
3543
|
+
update!(**args)
|
3544
|
+
end
|
3545
|
+
|
3546
|
+
# Update properties of this object
|
3547
|
+
def update!(**args)
|
3548
|
+
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
3549
|
+
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
3550
|
+
@backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
|
3551
|
+
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
3552
|
+
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
3553
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
3554
|
+
end
|
3555
|
+
end
|
3556
|
+
|
3442
3557
|
# A backup run.
|
3443
3558
|
class StorageDatabasecenterPartnerapiV1mainBackupRun
|
3444
3559
|
include Google::Apis::Core::Hashable
|
@@ -3502,6 +3617,52 @@ module Google
|
|
3502
3617
|
end
|
3503
3618
|
end
|
3504
3619
|
|
3620
|
+
# Config based signal data. This is used to send signals to Condor which are
|
3621
|
+
# based on the DB level configurations. These will be used to send signals for
|
3622
|
+
# self managed databases.
|
3623
|
+
class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
|
3624
|
+
include Google::Apis::Core::Hashable
|
3625
|
+
|
3626
|
+
# Required. Full Resource name of the source resource.
|
3627
|
+
# Corresponds to the JSON property `fullResourceName`
|
3628
|
+
# @return [String]
|
3629
|
+
attr_accessor :full_resource_name
|
3630
|
+
|
3631
|
+
# Required. Last time signal was refreshed
|
3632
|
+
# Corresponds to the JSON property `lastRefreshTime`
|
3633
|
+
# @return [String]
|
3634
|
+
attr_accessor :last_refresh_time
|
3635
|
+
|
3636
|
+
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
3637
|
+
# Corresponds to the JSON property `resourceId`
|
3638
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
3639
|
+
attr_accessor :resource_id
|
3640
|
+
|
3641
|
+
# Signal data for boolean signals.
|
3642
|
+
# Corresponds to the JSON property `signalBoolValue`
|
3643
|
+
# @return [Boolean]
|
3644
|
+
attr_accessor :signal_bool_value
|
3645
|
+
alias_method :signal_bool_value?, :signal_bool_value
|
3646
|
+
|
3647
|
+
# Required. Signal type of the signal
|
3648
|
+
# Corresponds to the JSON property `signalType`
|
3649
|
+
# @return [String]
|
3650
|
+
attr_accessor :signal_type
|
3651
|
+
|
3652
|
+
def initialize(**args)
|
3653
|
+
update!(**args)
|
3654
|
+
end
|
3655
|
+
|
3656
|
+
# Update properties of this object
|
3657
|
+
def update!(**args)
|
3658
|
+
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
3659
|
+
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
3660
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
3661
|
+
@signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
|
3662
|
+
@signal_type = args[:signal_type] if args.key?(:signal_type)
|
3663
|
+
end
|
3664
|
+
end
|
3665
|
+
|
3505
3666
|
# Any custom metadata associated with the resource. e.g. A spanner instance can
|
3506
3667
|
# have multiple databases with its own unique metadata. Information for these
|
3507
3668
|
# individual databases can be captured in custom metadata data
|
@@ -3525,10 +3686,23 @@ module Google
|
|
3525
3686
|
end
|
3526
3687
|
|
3527
3688
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
3528
|
-
# database resource level events into Condor platform. Next ID:
|
3689
|
+
# database resource level events into Condor platform. Next ID: 11
|
3529
3690
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
|
3530
3691
|
include Google::Apis::Core::Hashable
|
3531
3692
|
|
3693
|
+
# BackupDRMetadata contains information about the backup and disaster recovery
|
3694
|
+
# metadata of a database resource.
|
3695
|
+
# Corresponds to the JSON property `backupdrMetadata`
|
3696
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata]
|
3697
|
+
attr_accessor :backupdr_metadata
|
3698
|
+
|
3699
|
+
# Config based signal data. This is used to send signals to Condor which are
|
3700
|
+
# based on the DB level configurations. These will be used to send signals for
|
3701
|
+
# self managed databases.
|
3702
|
+
# Corresponds to the JSON property `configBasedSignalData`
|
3703
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData]
|
3704
|
+
attr_accessor :config_based_signal_data
|
3705
|
+
|
3532
3706
|
# Required. Timestamp when feed is generated.
|
3533
3707
|
# Corresponds to the JSON property `feedTimestamp`
|
3534
3708
|
# @return [String]
|
@@ -3559,17 +3733,29 @@ module Google
|
|
3559
3733
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
3560
3734
|
attr_accessor :resource_id
|
3561
3735
|
|
3562
|
-
# Common model for database resource instance metadata. Next ID:
|
3736
|
+
# Common model for database resource instance metadata. Next ID: 26
|
3563
3737
|
# Corresponds to the JSON property `resourceMetadata`
|
3564
3738
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
|
3565
3739
|
attr_accessor :resource_metadata
|
3566
3740
|
|
3741
|
+
# Optional. If true, the feed won't be ingested by DB Center. This indicates
|
3742
|
+
# that the feed is intentionally skipped. For example, BackupDR feeds are only
|
3743
|
+
# needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB).
|
3744
|
+
# Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can
|
3745
|
+
# be skipped.
|
3746
|
+
# Corresponds to the JSON property `skipIngestion`
|
3747
|
+
# @return [Boolean]
|
3748
|
+
attr_accessor :skip_ingestion
|
3749
|
+
alias_method :skip_ingestion?, :skip_ingestion
|
3750
|
+
|
3567
3751
|
def initialize(**args)
|
3568
3752
|
update!(**args)
|
3569
3753
|
end
|
3570
3754
|
|
3571
3755
|
# Update properties of this object
|
3572
3756
|
def update!(**args)
|
3757
|
+
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
3758
|
+
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
3573
3759
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
3574
3760
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
3575
3761
|
@observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
|
@@ -3577,6 +3763,7 @@ module Google
|
|
3577
3763
|
@resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
|
3578
3764
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
3579
3765
|
@resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
|
3766
|
+
@skip_ingestion = args[:skip_ingestion] if args.key?(:skip_ingestion)
|
3580
3767
|
end
|
3581
3768
|
end
|
3582
3769
|
|
@@ -3743,7 +3930,7 @@ module Google
|
|
3743
3930
|
end
|
3744
3931
|
end
|
3745
3932
|
|
3746
|
-
# Common model for database resource instance metadata. Next ID:
|
3933
|
+
# Common model for database resource instance metadata. Next ID: 26
|
3747
3934
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
3748
3935
|
include Google::Apis::Core::Hashable
|
3749
3936
|
|
@@ -3762,6 +3949,12 @@ module Google
|
|
3762
3949
|
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun]
|
3763
3950
|
attr_accessor :backup_run
|
3764
3951
|
|
3952
|
+
# BackupDRConfiguration to capture the backup and disaster recovery details of
|
3953
|
+
# database resource.
|
3954
|
+
# Corresponds to the JSON property `backupdrConfiguration`
|
3955
|
+
# @return [Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration]
|
3956
|
+
attr_accessor :backupdr_configuration
|
3957
|
+
|
3765
3958
|
# The creation time of the resource, i.e. the time when resource is created and
|
3766
3959
|
# recorded in partner service.
|
3767
3960
|
# Corresponds to the JSON property `creationTime`
|
@@ -3890,6 +4083,7 @@ module Google
|
|
3890
4083
|
@availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
|
3891
4084
|
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
3892
4085
|
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
4086
|
+
@backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
|
3893
4087
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
3894
4088
|
@current_state = args[:current_state] if args.key?(:current_state)
|
3895
4089
|
@custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
|
@@ -4296,6 +4490,13 @@ module Google
|
|
4296
4490
|
# @return [String]
|
4297
4491
|
attr_accessor :engine
|
4298
4492
|
|
4493
|
+
# Minor version of the underlying database engine. Example values: For MySQL, it
|
4494
|
+
# could be "8.0.32", "5.7.32" etc.. For Postgres, it could be "14.3", "15.3" etc.
|
4495
|
+
# .
|
4496
|
+
# Corresponds to the JSON property `minorVersion`
|
4497
|
+
# @return [String]
|
4498
|
+
attr_accessor :minor_version
|
4499
|
+
|
4299
4500
|
# Type of specific database product. It could be CloudSQL, AlloyDB etc..
|
4300
4501
|
# Corresponds to the JSON property `type`
|
4301
4502
|
# @return [String]
|
@@ -4314,6 +4515,7 @@ module Google
|
|
4314
4515
|
# Update properties of this object
|
4315
4516
|
def update!(**args)
|
4316
4517
|
@engine = args[:engine] if args.key?(:engine)
|
4518
|
+
@minor_version = args[:minor_version] if args.key?(:minor_version)
|
4317
4519
|
@type = args[:type] if args.key?(:type)
|
4318
4520
|
@version = args[:version] if args.key?(:version)
|
4319
4521
|
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.
|
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 = "
|
25
|
+
REVISION = "20250807"
|
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,18 @@ 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
|
+
|
493
|
+
class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
|
+
|
496
|
+
include Google::Apis::Core::JsonObjectSupport
|
497
|
+
end
|
498
|
+
|
481
499
|
class StorageDatabasecenterPartnerapiV1mainBackupRun
|
482
500
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
501
|
|
@@ -490,6 +508,12 @@ module Google
|
|
490
508
|
include Google::Apis::Core::JsonObjectSupport
|
491
509
|
end
|
492
510
|
|
511
|
+
class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
|
+
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
515
|
+
end
|
516
|
+
|
493
517
|
class StorageDatabasecenterPartnerapiV1mainCustomMetadataData
|
494
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
519
|
|
@@ -1467,11 +1491,23 @@ module Google
|
|
1467
1491
|
end
|
1468
1492
|
end
|
1469
1493
|
|
1494
|
+
class StageSchedule
|
1495
|
+
# @private
|
1496
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1497
|
+
property :actual_end_time, as: 'actualEndTime'
|
1498
|
+
property :actual_start_time, as: 'actualStartTime'
|
1499
|
+
property :estimated_end_time, as: 'estimatedEndTime'
|
1500
|
+
property :estimated_start_time, as: 'estimatedStartTime'
|
1501
|
+
end
|
1502
|
+
end
|
1503
|
+
|
1470
1504
|
class StageStatus
|
1471
1505
|
# @private
|
1472
1506
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1473
1507
|
property :read_pool_instances_upgrade, as: 'readPoolInstancesUpgrade', class: Google::Apis::AlloydbV1beta::ReadPoolInstancesUpgradeStageStatus, decorator: Google::Apis::AlloydbV1beta::ReadPoolInstancesUpgradeStageStatus::Representation
|
1474
1508
|
|
1509
|
+
property :schedule, as: 'schedule', class: Google::Apis::AlloydbV1beta::StageSchedule, decorator: Google::Apis::AlloydbV1beta::StageSchedule::Representation
|
1510
|
+
|
1475
1511
|
property :stage, as: 'stage'
|
1476
1512
|
property :state, as: 'state'
|
1477
1513
|
end
|
@@ -1517,6 +1553,29 @@ module Google
|
|
1517
1553
|
end
|
1518
1554
|
end
|
1519
1555
|
|
1556
|
+
class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
|
1557
|
+
# @private
|
1558
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1559
|
+
property :backupdr_managed, as: 'backupdrManaged'
|
1560
|
+
end
|
1561
|
+
end
|
1562
|
+
|
1563
|
+
class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
|
1564
|
+
# @private
|
1565
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1566
|
+
property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupConfiguration::Representation
|
1567
|
+
|
1568
|
+
property :backup_run, as: 'backupRun', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun::Representation
|
1569
|
+
|
1570
|
+
property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration::Representation
|
1571
|
+
|
1572
|
+
property :full_resource_name, as: 'fullResourceName'
|
1573
|
+
property :last_refresh_time, as: 'lastRefreshTime'
|
1574
|
+
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
1575
|
+
|
1576
|
+
end
|
1577
|
+
end
|
1578
|
+
|
1520
1579
|
class StorageDatabasecenterPartnerapiV1mainBackupRun
|
1521
1580
|
# @private
|
1522
1581
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1536,6 +1595,18 @@ module Google
|
|
1536
1595
|
end
|
1537
1596
|
end
|
1538
1597
|
|
1598
|
+
class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
|
1599
|
+
# @private
|
1600
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1601
|
+
property :full_resource_name, as: 'fullResourceName'
|
1602
|
+
property :last_refresh_time, as: 'lastRefreshTime'
|
1603
|
+
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
1604
|
+
|
1605
|
+
property :signal_bool_value, as: 'signalBoolValue'
|
1606
|
+
property :signal_type, as: 'signalType'
|
1607
|
+
end
|
1608
|
+
end
|
1609
|
+
|
1539
1610
|
class StorageDatabasecenterPartnerapiV1mainCustomMetadataData
|
1540
1611
|
# @private
|
1541
1612
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1547,6 +1618,10 @@ module Google
|
|
1547
1618
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
|
1548
1619
|
# @private
|
1549
1620
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1621
|
+
property :backupdr_metadata, as: 'backupdrMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrMetadata::Representation
|
1622
|
+
|
1623
|
+
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
|
1624
|
+
|
1550
1625
|
property :feed_timestamp, as: 'feedTimestamp'
|
1551
1626
|
property :feed_type, as: 'feedType'
|
1552
1627
|
property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData::Representation
|
@@ -1559,6 +1634,7 @@ module Google
|
|
1559
1634
|
|
1560
1635
|
property :resource_metadata, as: 'resourceMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata::Representation
|
1561
1636
|
|
1637
|
+
property :skip_ingestion, as: 'skipIngestion'
|
1562
1638
|
end
|
1563
1639
|
end
|
1564
1640
|
|
@@ -1603,6 +1679,8 @@ module Google
|
|
1603
1679
|
|
1604
1680
|
property :backup_run, as: 'backupRun', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupRun::Representation
|
1605
1681
|
|
1682
|
+
property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration::Representation
|
1683
|
+
|
1606
1684
|
property :creation_time, as: 'creationTime'
|
1607
1685
|
property :current_state, as: 'currentState'
|
1608
1686
|
property :custom_metadata, as: 'customMetadata', class: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData, decorator: Google::Apis::AlloydbV1beta::StorageDatabasecenterPartnerapiV1mainCustomMetadataData::Representation
|
@@ -1740,6 +1818,7 @@ module Google
|
|
1740
1818
|
# @private
|
1741
1819
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1742
1820
|
property :engine, as: 'engine'
|
1821
|
+
property :minor_version, as: 'minorVersion'
|
1743
1822
|
property :type, as: 'type'
|
1744
1823
|
property :version, as: 'version'
|
1745
1824
|
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.
|
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_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.34.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:
|