google-apis-alloydb_v1 0.41.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 830e22d9f4a2e74967725f48426c35d3c7c4131940f09351cb2a21bd2b29f7b1
|
4
|
+
data.tar.gz: b09df6a9e1e5e43ef3ea3e6573cf5bec096635c8e395b7dbcbae527f51ce8ee1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36b7b1d7139d4751e81159f37826cecc44b997b2666b0d4cc94caa8f22d828da65437708113c4026f0f2e8185e33fb94dbb7eca3f8b61a3cbdd74b497c2c0833
|
7
|
+
data.tar.gz: c7d63745148afa712f76637771c060ab1a6e49d9e43317e0ccfde7cad74cdbfe1f3d4506ed2a895ca41c0b54d44add1c951f6d0989479d710ad1dd326cbb9323
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.42.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250723
|
10
|
+
|
3
11
|
### v0.41.0 (2025-06-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250612
|
@@ -3050,6 +3050,43 @@ module Google
|
|
3050
3050
|
end
|
3051
3051
|
end
|
3052
3052
|
|
3053
|
+
# Timing information for the stage execution.
|
3054
|
+
class StageSchedule
|
3055
|
+
include Google::Apis::Core::Hashable
|
3056
|
+
|
3057
|
+
# Actual end time of the stage. Set only if the stage has completed.
|
3058
|
+
# Corresponds to the JSON property `actualEndTime`
|
3059
|
+
# @return [String]
|
3060
|
+
attr_accessor :actual_end_time
|
3061
|
+
|
3062
|
+
# Actual start time of the stage. Set only if the stage has started.
|
3063
|
+
# Corresponds to the JSON property `actualStartTime`
|
3064
|
+
# @return [String]
|
3065
|
+
attr_accessor :actual_start_time
|
3066
|
+
|
3067
|
+
# When the stage is expected to end. Set only if the stage has not completed yet.
|
3068
|
+
# Corresponds to the JSON property `estimatedEndTime`
|
3069
|
+
# @return [String]
|
3070
|
+
attr_accessor :estimated_end_time
|
3071
|
+
|
3072
|
+
# When the stage is expected to start. Set only if the stage has not started yet.
|
3073
|
+
# Corresponds to the JSON property `estimatedStartTime`
|
3074
|
+
# @return [String]
|
3075
|
+
attr_accessor :estimated_start_time
|
3076
|
+
|
3077
|
+
def initialize(**args)
|
3078
|
+
update!(**args)
|
3079
|
+
end
|
3080
|
+
|
3081
|
+
# Update properties of this object
|
3082
|
+
def update!(**args)
|
3083
|
+
@actual_end_time = args[:actual_end_time] if args.key?(:actual_end_time)
|
3084
|
+
@actual_start_time = args[:actual_start_time] if args.key?(:actual_start_time)
|
3085
|
+
@estimated_end_time = args[:estimated_end_time] if args.key?(:estimated_end_time)
|
3086
|
+
@estimated_start_time = args[:estimated_start_time] if args.key?(:estimated_start_time)
|
3087
|
+
end
|
3088
|
+
end
|
3089
|
+
|
3053
3090
|
# Status of an upgrade stage.
|
3054
3091
|
class StageStatus
|
3055
3092
|
include Google::Apis::Core::Hashable
|
@@ -3059,6 +3096,11 @@ module Google
|
|
3059
3096
|
# @return [Google::Apis::AlloydbV1::ReadPoolInstancesUpgradeStageStatus]
|
3060
3097
|
attr_accessor :read_pool_instances_upgrade
|
3061
3098
|
|
3099
|
+
# Timing information for the stage execution.
|
3100
|
+
# Corresponds to the JSON property `schedule`
|
3101
|
+
# @return [Google::Apis::AlloydbV1::StageSchedule]
|
3102
|
+
attr_accessor :schedule
|
3103
|
+
|
3062
3104
|
# Upgrade stage.
|
3063
3105
|
# Corresponds to the JSON property `stage`
|
3064
3106
|
# @return [String]
|
@@ -3076,6 +3118,7 @@ module Google
|
|
3076
3118
|
# Update properties of this object
|
3077
3119
|
def update!(**args)
|
3078
3120
|
@read_pool_instances_upgrade = args[:read_pool_instances_upgrade] if args.key?(:read_pool_instances_upgrade)
|
3121
|
+
@schedule = args[:schedule] if args.key?(:schedule)
|
3079
3122
|
@stage = args[:stage] if args.key?(:stage)
|
3080
3123
|
@state = args[:state] if args.key?(:state)
|
3081
3124
|
end
|
@@ -3245,6 +3288,78 @@ module Google
|
|
3245
3288
|
end
|
3246
3289
|
end
|
3247
3290
|
|
3291
|
+
# BackupDRConfiguration to capture the backup and disaster recovery details of
|
3292
|
+
# database resource.
|
3293
|
+
class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
|
3294
|
+
include Google::Apis::Core::Hashable
|
3295
|
+
|
3296
|
+
# Indicates if the resource is managed by BackupDR.
|
3297
|
+
# Corresponds to the JSON property `backupdrManaged`
|
3298
|
+
# @return [Boolean]
|
3299
|
+
attr_accessor :backupdr_managed
|
3300
|
+
alias_method :backupdr_managed?, :backupdr_managed
|
3301
|
+
|
3302
|
+
def initialize(**args)
|
3303
|
+
update!(**args)
|
3304
|
+
end
|
3305
|
+
|
3306
|
+
# Update properties of this object
|
3307
|
+
def update!(**args)
|
3308
|
+
@backupdr_managed = args[:backupdr_managed] if args.key?(:backupdr_managed)
|
3309
|
+
end
|
3310
|
+
end
|
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
|
+
|
3248
3363
|
# A backup run.
|
3249
3364
|
class StorageDatabasecenterPartnerapiV1mainBackupRun
|
3250
3365
|
include Google::Apis::Core::Hashable
|
@@ -3308,6 +3423,52 @@ module Google
|
|
3308
3423
|
end
|
3309
3424
|
end
|
3310
3425
|
|
3426
|
+
# Config based signal data. This is used to send signals to Condor which are
|
3427
|
+
# based on the DB level configurations. These will be used to send signals for
|
3428
|
+
# self managed databases.
|
3429
|
+
class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
|
3430
|
+
include Google::Apis::Core::Hashable
|
3431
|
+
|
3432
|
+
# Required. Full Resource name of the source resource.
|
3433
|
+
# Corresponds to the JSON property `fullResourceName`
|
3434
|
+
# @return [String]
|
3435
|
+
attr_accessor :full_resource_name
|
3436
|
+
|
3437
|
+
# Required. Last time signal was refreshed
|
3438
|
+
# Corresponds to the JSON property `lastRefreshTime`
|
3439
|
+
# @return [String]
|
3440
|
+
attr_accessor :last_refresh_time
|
3441
|
+
|
3442
|
+
# DatabaseResourceId will serve as primary key for any resource ingestion event.
|
3443
|
+
# Corresponds to the JSON property `resourceId`
|
3444
|
+
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
3445
|
+
attr_accessor :resource_id
|
3446
|
+
|
3447
|
+
# Signal data for boolean signals.
|
3448
|
+
# Corresponds to the JSON property `signalBoolValue`
|
3449
|
+
# @return [Boolean]
|
3450
|
+
attr_accessor :signal_bool_value
|
3451
|
+
alias_method :signal_bool_value?, :signal_bool_value
|
3452
|
+
|
3453
|
+
# Required. Signal type of the signal
|
3454
|
+
# Corresponds to the JSON property `signalType`
|
3455
|
+
# @return [String]
|
3456
|
+
attr_accessor :signal_type
|
3457
|
+
|
3458
|
+
def initialize(**args)
|
3459
|
+
update!(**args)
|
3460
|
+
end
|
3461
|
+
|
3462
|
+
# Update properties of this object
|
3463
|
+
def update!(**args)
|
3464
|
+
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
3465
|
+
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
3466
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
3467
|
+
@signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
|
3468
|
+
@signal_type = args[:signal_type] if args.key?(:signal_type)
|
3469
|
+
end
|
3470
|
+
end
|
3471
|
+
|
3311
3472
|
# Any custom metadata associated with the resource. e.g. A spanner instance can
|
3312
3473
|
# have multiple databases with its own unique metadata. Information for these
|
3313
3474
|
# individual databases can be captured in custom metadata data
|
@@ -3331,10 +3492,23 @@ module Google
|
|
3331
3492
|
end
|
3332
3493
|
|
3333
3494
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
3334
|
-
# database resource level events into Condor platform. Next ID:
|
3495
|
+
# database resource level events into Condor platform. Next ID: 11
|
3335
3496
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
|
3336
3497
|
include Google::Apis::Core::Hashable
|
3337
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
|
+
|
3505
|
+
# Config based signal data. This is used to send signals to Condor which are
|
3506
|
+
# based on the DB level configurations. These will be used to send signals for
|
3507
|
+
# self managed databases.
|
3508
|
+
# Corresponds to the JSON property `configBasedSignalData`
|
3509
|
+
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData]
|
3510
|
+
attr_accessor :config_based_signal_data
|
3511
|
+
|
3338
3512
|
# Required. Timestamp when feed is generated.
|
3339
3513
|
# Corresponds to the JSON property `feedTimestamp`
|
3340
3514
|
# @return [String]
|
@@ -3365,17 +3539,29 @@ module Google
|
|
3365
3539
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId]
|
3366
3540
|
attr_accessor :resource_id
|
3367
3541
|
|
3368
|
-
# Common model for database resource instance metadata. Next ID:
|
3542
|
+
# Common model for database resource instance metadata. Next ID: 26
|
3369
3543
|
# Corresponds to the JSON property `resourceMetadata`
|
3370
3544
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata]
|
3371
3545
|
attr_accessor :resource_metadata
|
3372
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
|
+
|
3373
3557
|
def initialize(**args)
|
3374
3558
|
update!(**args)
|
3375
3559
|
end
|
3376
3560
|
|
3377
3561
|
# Update properties of this object
|
3378
3562
|
def update!(**args)
|
3563
|
+
@backupdr_metadata = args[:backupdr_metadata] if args.key?(:backupdr_metadata)
|
3564
|
+
@config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
|
3379
3565
|
@feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
|
3380
3566
|
@feed_type = args[:feed_type] if args.key?(:feed_type)
|
3381
3567
|
@observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
|
@@ -3383,6 +3569,7 @@ module Google
|
|
3383
3569
|
@resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
|
3384
3570
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
3385
3571
|
@resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
|
3572
|
+
@skip_ingestion = args[:skip_ingestion] if args.key?(:skip_ingestion)
|
3386
3573
|
end
|
3387
3574
|
end
|
3388
3575
|
|
@@ -3549,7 +3736,7 @@ module Google
|
|
3549
3736
|
end
|
3550
3737
|
end
|
3551
3738
|
|
3552
|
-
# Common model for database resource instance metadata. Next ID:
|
3739
|
+
# Common model for database resource instance metadata. Next ID: 26
|
3553
3740
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata
|
3554
3741
|
include Google::Apis::Core::Hashable
|
3555
3742
|
|
@@ -3568,6 +3755,12 @@ module Google
|
|
3568
3755
|
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupRun]
|
3569
3756
|
attr_accessor :backup_run
|
3570
3757
|
|
3758
|
+
# BackupDRConfiguration to capture the backup and disaster recovery details of
|
3759
|
+
# database resource.
|
3760
|
+
# Corresponds to the JSON property `backupdrConfiguration`
|
3761
|
+
# @return [Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration]
|
3762
|
+
attr_accessor :backupdr_configuration
|
3763
|
+
|
3571
3764
|
# The creation time of the resource, i.e. the time when resource is created and
|
3572
3765
|
# recorded in partner service.
|
3573
3766
|
# Corresponds to the JSON property `creationTime`
|
@@ -3696,6 +3889,7 @@ module Google
|
|
3696
3889
|
@availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
|
3697
3890
|
@backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
|
3698
3891
|
@backup_run = args[:backup_run] if args.key?(:backup_run)
|
3892
|
+
@backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
|
3699
3893
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
3700
3894
|
@current_state = args[:current_state] if args.key?(:current_state)
|
3701
3895
|
@custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
|
@@ -4102,6 +4296,13 @@ module Google
|
|
4102
4296
|
# @return [String]
|
4103
4297
|
attr_accessor :engine
|
4104
4298
|
|
4299
|
+
# Minor version of the underlying database engine. Example values: For MySQL, it
|
4300
|
+
# could be "8.0.32", "5.7.32" etc.. For Postgres, it could be "14.3", "15.3" etc.
|
4301
|
+
# .
|
4302
|
+
# Corresponds to the JSON property `minorVersion`
|
4303
|
+
# @return [String]
|
4304
|
+
attr_accessor :minor_version
|
4305
|
+
|
4105
4306
|
# Type of specific database product. It could be CloudSQL, AlloyDB etc..
|
4106
4307
|
# Corresponds to the JSON property `type`
|
4107
4308
|
# @return [String]
|
@@ -4120,6 +4321,7 @@ module Google
|
|
4120
4321
|
# Update properties of this object
|
4121
4322
|
def update!(**args)
|
4122
4323
|
@engine = args[:engine] if args.key?(:engine)
|
4324
|
+
@minor_version = args[:minor_version] if args.key?(:minor_version)
|
4123
4325
|
@type = args[:type] if args.key?(:type)
|
4124
4326
|
@version = args[:version] if args.key?(:version)
|
4125
4327
|
end
|
@@ -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.
|
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 = "
|
25
|
+
REVISION = "20250807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -442,6 +442,12 @@ module Google
|
|
442
442
|
include Google::Apis::Core::JsonObjectSupport
|
443
443
|
end
|
444
444
|
|
445
|
+
class StageSchedule
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
445
451
|
class StageStatus
|
446
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
453
|
|
@@ -472,6 +478,18 @@ module Google
|
|
472
478
|
include Google::Apis::Core::JsonObjectSupport
|
473
479
|
end
|
474
480
|
|
481
|
+
class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
487
|
+
class StorageDatabasecenterPartnerapiV1mainBackupDrMetadata
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
|
+
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
491
|
+
end
|
492
|
+
|
475
493
|
class StorageDatabasecenterPartnerapiV1mainBackupRun
|
476
494
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
495
|
|
@@ -484,6 +502,12 @@ module Google
|
|
484
502
|
include Google::Apis::Core::JsonObjectSupport
|
485
503
|
end
|
486
504
|
|
505
|
+
class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
|
+
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
509
|
+
end
|
510
|
+
|
487
511
|
class StorageDatabasecenterPartnerapiV1mainCustomMetadataData
|
488
512
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
513
|
|
@@ -1421,11 +1445,23 @@ module Google
|
|
1421
1445
|
end
|
1422
1446
|
end
|
1423
1447
|
|
1448
|
+
class StageSchedule
|
1449
|
+
# @private
|
1450
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1451
|
+
property :actual_end_time, as: 'actualEndTime'
|
1452
|
+
property :actual_start_time, as: 'actualStartTime'
|
1453
|
+
property :estimated_end_time, as: 'estimatedEndTime'
|
1454
|
+
property :estimated_start_time, as: 'estimatedStartTime'
|
1455
|
+
end
|
1456
|
+
end
|
1457
|
+
|
1424
1458
|
class StageStatus
|
1425
1459
|
# @private
|
1426
1460
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1427
1461
|
property :read_pool_instances_upgrade, as: 'readPoolInstancesUpgrade', class: Google::Apis::AlloydbV1::ReadPoolInstancesUpgradeStageStatus, decorator: Google::Apis::AlloydbV1::ReadPoolInstancesUpgradeStageStatus::Representation
|
1428
1462
|
|
1463
|
+
property :schedule, as: 'schedule', class: Google::Apis::AlloydbV1::StageSchedule, decorator: Google::Apis::AlloydbV1::StageSchedule::Representation
|
1464
|
+
|
1429
1465
|
property :stage, as: 'stage'
|
1430
1466
|
property :state, as: 'state'
|
1431
1467
|
end
|
@@ -1471,6 +1507,29 @@ module Google
|
|
1471
1507
|
end
|
1472
1508
|
end
|
1473
1509
|
|
1510
|
+
class StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration
|
1511
|
+
# @private
|
1512
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1513
|
+
property :backupdr_managed, as: 'backupdrManaged'
|
1514
|
+
end
|
1515
|
+
end
|
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
|
+
|
1474
1533
|
class StorageDatabasecenterPartnerapiV1mainBackupRun
|
1475
1534
|
# @private
|
1476
1535
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1490,6 +1549,18 @@ module Google
|
|
1490
1549
|
end
|
1491
1550
|
end
|
1492
1551
|
|
1552
|
+
class StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData
|
1553
|
+
# @private
|
1554
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1555
|
+
property :full_resource_name, as: 'fullResourceName'
|
1556
|
+
property :last_refresh_time, as: 'lastRefreshTime'
|
1557
|
+
property :resource_id, as: 'resourceId', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceId::Representation
|
1558
|
+
|
1559
|
+
property :signal_bool_value, as: 'signalBoolValue'
|
1560
|
+
property :signal_type, as: 'signalType'
|
1561
|
+
end
|
1562
|
+
end
|
1563
|
+
|
1493
1564
|
class StorageDatabasecenterPartnerapiV1mainCustomMetadataData
|
1494
1565
|
# @private
|
1495
1566
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1501,6 +1572,10 @@ module Google
|
|
1501
1572
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
|
1502
1573
|
# @private
|
1503
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
|
+
|
1577
|
+
property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData::Representation
|
1578
|
+
|
1504
1579
|
property :feed_timestamp, as: 'feedTimestamp'
|
1505
1580
|
property :feed_type, as: 'feedType'
|
1506
1581
|
property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainObservabilityMetricData::Representation
|
@@ -1513,6 +1588,7 @@ module Google
|
|
1513
1588
|
|
1514
1589
|
property :resource_metadata, as: 'resourceMetadata', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata::Representation
|
1515
1590
|
|
1591
|
+
property :skip_ingestion, as: 'skipIngestion'
|
1516
1592
|
end
|
1517
1593
|
end
|
1518
1594
|
|
@@ -1557,6 +1633,8 @@ module Google
|
|
1557
1633
|
|
1558
1634
|
property :backup_run, as: 'backupRun', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupRun, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupRun::Representation
|
1559
1635
|
|
1636
|
+
property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainBackupDrConfiguration::Representation
|
1637
|
+
|
1560
1638
|
property :creation_time, as: 'creationTime'
|
1561
1639
|
property :current_state, as: 'currentState'
|
1562
1640
|
property :custom_metadata, as: 'customMetadata', class: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainCustomMetadataData, decorator: Google::Apis::AlloydbV1::StorageDatabasecenterPartnerapiV1mainCustomMetadataData::Representation
|
@@ -1694,6 +1772,7 @@ module Google
|
|
1694
1772
|
# @private
|
1695
1773
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1696
1774
|
property :engine, as: 'engine'
|
1775
|
+
property :minor_version, as: 'minorVersion'
|
1697
1776
|
property :type, as: 'type'
|
1698
1777
|
property :version, as: 'version'
|
1699
1778
|
end
|
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.
|
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.
|
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:
|