google-apis-alloydb_v1alpha 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d230b6a6d4bfb04f5f1a164706b5cef6bc9f42b5cf7d1b3fba26adf33746ee84
|
4
|
+
data.tar.gz: 03e3e511c856aa577adabe7fbd7368f05c0026b045ec08f26aaccdd380abe12e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5995f69457f2f13fbac9d14662843a0bed839b8ff5448a20749412f1d7fe49e53c25eb1f188eefea66ef6fc37ac84dfdf55efc3675ebfe0d8d0e54d24dc33d4
|
7
|
+
data.tar.gz: 66199b6f1937f6e118e5be4fc19ab0523eb008202116bb6fd304039f1434911a770803224058999395d5fe1dbf99299ed92136c627e3d7646383003267a6a751
|
data/CHANGELOG.md
CHANGED
@@ -581,6 +581,16 @@ module Google
|
|
581
581
|
# @return [String]
|
582
582
|
attr_accessor :state
|
583
583
|
|
584
|
+
# Optional. Subscription type of the cluster.
|
585
|
+
# Corresponds to the JSON property `subscriptionType`
|
586
|
+
# @return [String]
|
587
|
+
attr_accessor :subscription_type
|
588
|
+
|
589
|
+
# Contains information and all metadata related to TRIAL clusters.
|
590
|
+
# Corresponds to the JSON property `trialMetadata`
|
591
|
+
# @return [Google::Apis::AlloydbV1alpha::TrialMetadata]
|
592
|
+
attr_accessor :trial_metadata
|
593
|
+
|
584
594
|
# Output only. The system-generated UID of the resource. The UID is assigned
|
585
595
|
# when the resource is created, and it is retained until it is deleted.
|
586
596
|
# Corresponds to the JSON property `uid`
|
@@ -628,6 +638,8 @@ module Google
|
|
628
638
|
@secondary_config = args[:secondary_config] if args.key?(:secondary_config)
|
629
639
|
@ssl_config = args[:ssl_config] if args.key?(:ssl_config)
|
630
640
|
@state = args[:state] if args.key?(:state)
|
641
|
+
@subscription_type = args[:subscription_type] if args.key?(:subscription_type)
|
642
|
+
@trial_metadata = args[:trial_metadata] if args.key?(:trial_metadata)
|
631
643
|
@uid = args[:uid] if args.key?(:uid)
|
632
644
|
@update_time = args[:update_time] if args.key?(:update_time)
|
633
645
|
end
|
@@ -3369,6 +3381,37 @@ module Google
|
|
3369
3381
|
end
|
3370
3382
|
end
|
3371
3383
|
|
3384
|
+
# Contains information and all metadata related to TRIAL clusters.
|
3385
|
+
class TrialMetadata
|
3386
|
+
include Google::Apis::Core::Hashable
|
3387
|
+
|
3388
|
+
# End time of the trial cluster.
|
3389
|
+
# Corresponds to the JSON property `endTime`
|
3390
|
+
# @return [String]
|
3391
|
+
attr_accessor :end_time
|
3392
|
+
|
3393
|
+
# start time of the trial cluster.
|
3394
|
+
# Corresponds to the JSON property `startTime`
|
3395
|
+
# @return [String]
|
3396
|
+
attr_accessor :start_time
|
3397
|
+
|
3398
|
+
# Upgrade time of trial cluster to Standard cluster.
|
3399
|
+
# Corresponds to the JSON property `upgradeTime`
|
3400
|
+
# @return [String]
|
3401
|
+
attr_accessor :upgrade_time
|
3402
|
+
|
3403
|
+
def initialize(**args)
|
3404
|
+
update!(**args)
|
3405
|
+
end
|
3406
|
+
|
3407
|
+
# Update properties of this object
|
3408
|
+
def update!(**args)
|
3409
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
3410
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
3411
|
+
@upgrade_time = args[:upgrade_time] if args.key?(:upgrade_time)
|
3412
|
+
end
|
3413
|
+
end
|
3414
|
+
|
3372
3415
|
# Policy to be used while updating the instance.
|
3373
3416
|
class UpdatePolicy
|
3374
3417
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240605"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -478,6 +478,12 @@ module Google
|
|
478
478
|
include Google::Apis::Core::JsonObjectSupport
|
479
479
|
end
|
480
480
|
|
481
|
+
class TrialMetadata
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
481
487
|
class UpdatePolicy
|
482
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
489
|
|
@@ -639,6 +645,9 @@ module Google
|
|
639
645
|
property :ssl_config, as: 'sslConfig', class: Google::Apis::AlloydbV1alpha::SslConfig, decorator: Google::Apis::AlloydbV1alpha::SslConfig::Representation
|
640
646
|
|
641
647
|
property :state, as: 'state'
|
648
|
+
property :subscription_type, as: 'subscriptionType'
|
649
|
+
property :trial_metadata, as: 'trialMetadata', class: Google::Apis::AlloydbV1alpha::TrialMetadata, decorator: Google::Apis::AlloydbV1alpha::TrialMetadata::Representation
|
650
|
+
|
642
651
|
property :uid, as: 'uid'
|
643
652
|
property :update_time, as: 'updateTime'
|
644
653
|
end
|
@@ -1359,6 +1368,15 @@ module Google
|
|
1359
1368
|
end
|
1360
1369
|
end
|
1361
1370
|
|
1371
|
+
class TrialMetadata
|
1372
|
+
# @private
|
1373
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1374
|
+
property :end_time, as: 'endTime'
|
1375
|
+
property :start_time, as: 'startTime'
|
1376
|
+
property :upgrade_time, as: 'upgradeTime'
|
1377
|
+
end
|
1378
|
+
end
|
1379
|
+
|
1362
1380
|
class UpdatePolicy
|
1363
1381
|
# @private
|
1364
1382
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-alloydb_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|