google-apis-alloydb_v1beta 0.15.0 → 0.16.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: 4cdc1763bbfd020118876431bb0b99e07695384863c9aaa783a430cc79c5463d
|
4
|
+
data.tar.gz: 8cd312412b3ff7dd8e04e4ce7d7c9698f03d8192a7239db32706370e77c70a86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f4784c7ce55517a0e23d5e1d3b3b8975d6296c6adc4b486ab4b0aa5b948e919a1069277be90ddf347152bcffecc89ac7793167a543430b1d199ec657f76a8c7
|
7
|
+
data.tar.gz: c062bc3197bff1e8086ce54d5fc3d490d0e0abed9b04bda0e081f28770c677a3b98ac717c19c1bf1b4acccaa41f589f3aaf4e196be8c1da5894b1650e9dc9570
|
data/CHANGELOG.md
CHANGED
@@ -555,6 +555,16 @@ module Google
|
|
555
555
|
# @return [String]
|
556
556
|
attr_accessor :state
|
557
557
|
|
558
|
+
# Optional. Subscription type of the cluster.
|
559
|
+
# Corresponds to the JSON property `subscriptionType`
|
560
|
+
# @return [String]
|
561
|
+
attr_accessor :subscription_type
|
562
|
+
|
563
|
+
# Contains information and all metadata related to TRIAL clusters.
|
564
|
+
# Corresponds to the JSON property `trialMetadata`
|
565
|
+
# @return [Google::Apis::AlloydbV1beta::TrialMetadata]
|
566
|
+
attr_accessor :trial_metadata
|
567
|
+
|
558
568
|
# Output only. The system-generated UID of the resource. The UID is assigned
|
559
569
|
# when the resource is created, and it is retained until it is deleted.
|
560
570
|
# Corresponds to the JSON property `uid`
|
@@ -601,6 +611,8 @@ module Google
|
|
601
611
|
@secondary_config = args[:secondary_config] if args.key?(:secondary_config)
|
602
612
|
@ssl_config = args[:ssl_config] if args.key?(:ssl_config)
|
603
613
|
@state = args[:state] if args.key?(:state)
|
614
|
+
@subscription_type = args[:subscription_type] if args.key?(:subscription_type)
|
615
|
+
@trial_metadata = args[:trial_metadata] if args.key?(:trial_metadata)
|
604
616
|
@uid = args[:uid] if args.key?(:uid)
|
605
617
|
@update_time = args[:update_time] if args.key?(:update_time)
|
606
618
|
end
|
@@ -3335,6 +3347,37 @@ module Google
|
|
3335
3347
|
end
|
3336
3348
|
end
|
3337
3349
|
|
3350
|
+
# Contains information and all metadata related to TRIAL clusters.
|
3351
|
+
class TrialMetadata
|
3352
|
+
include Google::Apis::Core::Hashable
|
3353
|
+
|
3354
|
+
# End time of the trial cluster.
|
3355
|
+
# Corresponds to the JSON property `endTime`
|
3356
|
+
# @return [String]
|
3357
|
+
attr_accessor :end_time
|
3358
|
+
|
3359
|
+
# start time of the trial cluster.
|
3360
|
+
# Corresponds to the JSON property `startTime`
|
3361
|
+
# @return [String]
|
3362
|
+
attr_accessor :start_time
|
3363
|
+
|
3364
|
+
# Upgrade time of trial cluster to Standard cluster.
|
3365
|
+
# Corresponds to the JSON property `upgradeTime`
|
3366
|
+
# @return [String]
|
3367
|
+
attr_accessor :upgrade_time
|
3368
|
+
|
3369
|
+
def initialize(**args)
|
3370
|
+
update!(**args)
|
3371
|
+
end
|
3372
|
+
|
3373
|
+
# Update properties of this object
|
3374
|
+
def update!(**args)
|
3375
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
3376
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
3377
|
+
@upgrade_time = args[:upgrade_time] if args.key?(:upgrade_time)
|
3378
|
+
end
|
3379
|
+
end
|
3380
|
+
|
3338
3381
|
# Policy to be used while updating the instance.
|
3339
3382
|
class UpdatePolicy
|
3340
3383
|
include Google::Apis::Core::Hashable
|
@@ -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.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
|
@@ -472,6 +472,12 @@ module Google
|
|
472
472
|
include Google::Apis::Core::JsonObjectSupport
|
473
473
|
end
|
474
474
|
|
475
|
+
class TrialMetadata
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
|
+
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
479
|
+
end
|
480
|
+
|
475
481
|
class UpdatePolicy
|
476
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
483
|
|
@@ -625,6 +631,9 @@ module Google
|
|
625
631
|
property :ssl_config, as: 'sslConfig', class: Google::Apis::AlloydbV1beta::SslConfig, decorator: Google::Apis::AlloydbV1beta::SslConfig::Representation
|
626
632
|
|
627
633
|
property :state, as: 'state'
|
634
|
+
property :subscription_type, as: 'subscriptionType'
|
635
|
+
property :trial_metadata, as: 'trialMetadata', class: Google::Apis::AlloydbV1beta::TrialMetadata, decorator: Google::Apis::AlloydbV1beta::TrialMetadata::Representation
|
636
|
+
|
628
637
|
property :uid, as: 'uid'
|
629
638
|
property :update_time, as: 'updateTime'
|
630
639
|
end
|
@@ -1344,6 +1353,15 @@ module Google
|
|
1344
1353
|
end
|
1345
1354
|
end
|
1346
1355
|
|
1356
|
+
class TrialMetadata
|
1357
|
+
# @private
|
1358
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1359
|
+
property :end_time, as: 'endTime'
|
1360
|
+
property :start_time, as: 'startTime'
|
1361
|
+
property :upgrade_time, as: 'upgradeTime'
|
1362
|
+
end
|
1363
|
+
end
|
1364
|
+
|
1347
1365
|
class UpdatePolicy
|
1348
1366
|
# @private
|
1349
1367
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|