google-apis-alloydb_v1 0.17.0 → 0.18.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: df03b7c6913e7c6299c214e96e8ee803039a82458668dbc6ec5a842b1ce382a7
|
4
|
+
data.tar.gz: 0da1b7890c69755778f0d637190028a1c5b892a0dd8ce3dfd03a016e8b74b57b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9855acfc0ae35b7067af69cbf65e79d117464d2f07a46a3aed96a5286f97e63d36a24e35827b5813ab57b92b43ed6772829cdff254e03dc3175e040f00376be1
|
7
|
+
data.tar.gz: 2d01117a9c43750388bb2420b0c79c6f942217c7496fcfcf84b540928c9c7937bb94c83ff22288bc77a0f5d4e4749ce307e8942efaae4b59b32f16144fd3caa4
|
data/CHANGELOG.md
CHANGED
@@ -562,6 +562,16 @@ module Google
|
|
562
562
|
# @return [String]
|
563
563
|
attr_accessor :state
|
564
564
|
|
565
|
+
# Optional. Subscription type of the cluster.
|
566
|
+
# Corresponds to the JSON property `subscriptionType`
|
567
|
+
# @return [String]
|
568
|
+
attr_accessor :subscription_type
|
569
|
+
|
570
|
+
# Contains information and all metadata related to TRIAL clusters.
|
571
|
+
# Corresponds to the JSON property `trialMetadata`
|
572
|
+
# @return [Google::Apis::AlloydbV1::TrialMetadata]
|
573
|
+
attr_accessor :trial_metadata
|
574
|
+
|
565
575
|
# Output only. The system-generated UID of the resource. The UID is assigned
|
566
576
|
# when the resource is created, and it is retained until it is deleted.
|
567
577
|
# Corresponds to the JSON property `uid`
|
@@ -607,6 +617,8 @@ module Google
|
|
607
617
|
@secondary_config = args[:secondary_config] if args.key?(:secondary_config)
|
608
618
|
@ssl_config = args[:ssl_config] if args.key?(:ssl_config)
|
609
619
|
@state = args[:state] if args.key?(:state)
|
620
|
+
@subscription_type = args[:subscription_type] if args.key?(:subscription_type)
|
621
|
+
@trial_metadata = args[:trial_metadata] if args.key?(:trial_metadata)
|
610
622
|
@uid = args[:uid] if args.key?(:uid)
|
611
623
|
@update_time = args[:update_time] if args.key?(:update_time)
|
612
624
|
end
|
@@ -3206,6 +3218,37 @@ module Google
|
|
3206
3218
|
end
|
3207
3219
|
end
|
3208
3220
|
|
3221
|
+
# Contains information and all metadata related to TRIAL clusters.
|
3222
|
+
class TrialMetadata
|
3223
|
+
include Google::Apis::Core::Hashable
|
3224
|
+
|
3225
|
+
# End time of the trial cluster.
|
3226
|
+
# Corresponds to the JSON property `endTime`
|
3227
|
+
# @return [String]
|
3228
|
+
attr_accessor :end_time
|
3229
|
+
|
3230
|
+
# start time of the trial cluster.
|
3231
|
+
# Corresponds to the JSON property `startTime`
|
3232
|
+
# @return [String]
|
3233
|
+
attr_accessor :start_time
|
3234
|
+
|
3235
|
+
# Upgrade time of trial cluster to Standard cluster.
|
3236
|
+
# Corresponds to the JSON property `upgradeTime`
|
3237
|
+
# @return [String]
|
3238
|
+
attr_accessor :upgrade_time
|
3239
|
+
|
3240
|
+
def initialize(**args)
|
3241
|
+
update!(**args)
|
3242
|
+
end
|
3243
|
+
|
3244
|
+
# Update properties of this object
|
3245
|
+
def update!(**args)
|
3246
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
3247
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
3248
|
+
@upgrade_time = args[:upgrade_time] if args.key?(:upgrade_time)
|
3249
|
+
end
|
3250
|
+
end
|
3251
|
+
|
3209
3252
|
# Message describing User object.
|
3210
3253
|
class User
|
3211
3254
|
include Google::Apis::Core::Hashable
|
@@ -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.18.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 = "20240627"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -466,6 +466,12 @@ module Google
|
|
466
466
|
include Google::Apis::Core::JsonObjectSupport
|
467
467
|
end
|
468
468
|
|
469
|
+
class TrialMetadata
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
469
475
|
class User
|
470
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
477
|
|
@@ -617,6 +623,9 @@ module Google
|
|
617
623
|
property :ssl_config, as: 'sslConfig', class: Google::Apis::AlloydbV1::SslConfig, decorator: Google::Apis::AlloydbV1::SslConfig::Representation
|
618
624
|
|
619
625
|
property :state, as: 'state'
|
626
|
+
property :subscription_type, as: 'subscriptionType'
|
627
|
+
property :trial_metadata, as: 'trialMetadata', class: Google::Apis::AlloydbV1::TrialMetadata, decorator: Google::Apis::AlloydbV1::TrialMetadata::Representation
|
628
|
+
|
620
629
|
property :uid, as: 'uid'
|
621
630
|
property :update_time, as: 'updateTime'
|
622
631
|
end
|
@@ -1306,6 +1315,15 @@ module Google
|
|
1306
1315
|
end
|
1307
1316
|
end
|
1308
1317
|
|
1318
|
+
class TrialMetadata
|
1319
|
+
# @private
|
1320
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1321
|
+
property :end_time, as: 'endTime'
|
1322
|
+
property :start_time, as: 'startTime'
|
1323
|
+
property :upgrade_time, as: 'upgradeTime'
|
1324
|
+
end
|
1325
|
+
end
|
1326
|
+
|
1309
1327
|
class User
|
1310
1328
|
# @private
|
1311
1329
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.18.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-
|
11
|
+
date: 2024-07-25 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|