google-apis-alloydb_v1 0.33.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: 17cf3d53668237ed0ed0de23ab8732a1c77e9a2e59a2ae19eb8d14ad348742c2
|
4
|
+
data.tar.gz: 8a2d7cf97313db9fd350c250ddb2328b1e48fa566c821fa6f35826711c8d141e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b91e26a2b0f825af4afd08efc2d70522238d60809c54bf7a98c4a7c773b96b3ad57e3f5bbb8214336e51dd623d139daf8ab85690f36ffda62de62b19d0d5f5c
|
7
|
+
data.tar.gz: 1af78c539620d7886dda9c1bb85982178207fdae74554a3838aee56234caed7095da23b997b2628f689b5a01c569da600559b9353a805e6668bbeee402a105f7
|
data/CHANGELOG.md
CHANGED
@@ -140,6 +140,11 @@ module Google
|
|
140
140
|
# @return [String]
|
141
141
|
attr_accessor :cluster_uid
|
142
142
|
|
143
|
+
# Output only. Timestamp when the resource finished being created.
|
144
|
+
# Corresponds to the JSON property `createCompletionTime`
|
145
|
+
# @return [String]
|
146
|
+
attr_accessor :create_completion_time
|
147
|
+
|
143
148
|
# Output only. Create time stamp
|
144
149
|
# Corresponds to the JSON property `createTime`
|
145
150
|
# @return [String]
|
@@ -275,6 +280,7 @@ module Google
|
|
275
280
|
@annotations = args[:annotations] if args.key?(:annotations)
|
276
281
|
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
277
282
|
@cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
|
283
|
+
@create_completion_time = args[:create_completion_time] if args.key?(:create_completion_time)
|
278
284
|
@create_time = args[:create_time] if args.key?(:create_time)
|
279
285
|
@database_version = args[:database_version] if args.key?(:database_version)
|
280
286
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
@@ -2453,7 +2459,16 @@ module Google
|
|
2453
2459
|
# @return [String]
|
2454
2460
|
attr_accessor :consumer_network
|
2455
2461
|
|
2456
|
-
# Output only. The status of the service connection policy.
|
2462
|
+
# Output only. The status of the service connection policy. Possible values: "
|
2463
|
+
# STATE_UNSPECIFIED" - Default state, when Connection Map is created initially. "
|
2464
|
+
# VALID" - Set when policy and map configuration is valid, and their matching
|
2465
|
+
# can lead to allowing creation of PSC Connections subject to other constraints
|
2466
|
+
# like connections limit. "CONNECTION_POLICY_MISSING" - No Service Connection
|
2467
|
+
# Policy found for this network and Service Class "POLICY_LIMIT_REACHED" -
|
2468
|
+
# Service Connection Policy limit reached for this network and Service Class "
|
2469
|
+
# CONSUMER_INSTANCE_PROJECT_NOT_ALLOWLISTED" - The consumer instance project is
|
2470
|
+
# not in AllowedGoogleProducersResourceHierarchyLevels of the matching
|
2471
|
+
# ServiceConnectionPolicy.
|
2457
2472
|
# Corresponds to the JSON property `consumerNetworkStatus`
|
2458
2473
|
# @return [String]
|
2459
2474
|
attr_accessor :consumer_network_status
|
@@ -2469,7 +2484,14 @@ module Google
|
|
2469
2484
|
# @return [String]
|
2470
2485
|
attr_accessor :ip_address
|
2471
2486
|
|
2472
|
-
# Output only. The status of the PSC service automation connection.
|
2487
|
+
# Output only. The status of the PSC service automation connection. Possible
|
2488
|
+
# values: "STATE_UNSPECIFIED" - An invalid state as the default case. "ACTIVE" -
|
2489
|
+
# The connection has been created successfully. "FAILED" - The connection is not
|
2490
|
+
# functional since some resources on the connection fail to be created. "
|
2491
|
+
# CREATING" - The connection is being created. "DELETING" - The connection is
|
2492
|
+
# being deleted. "CREATE_REPAIRING" - The connection is being repaired to
|
2493
|
+
# complete creation. "DELETE_REPAIRING" - The connection is being repaired to
|
2494
|
+
# complete deletion.
|
2473
2495
|
# Corresponds to the JSON property `status`
|
2474
2496
|
# @return [String]
|
2475
2497
|
attr_accessor :status
|
@@ -2768,7 +2790,7 @@ module Google
|
|
2768
2790
|
end
|
2769
2791
|
|
2770
2792
|
# Message for restoring a Cluster from a backup or another cluster at a given
|
2771
|
-
# point in time.
|
2793
|
+
# point in time. NEXT_ID: 11
|
2772
2794
|
class RestoreClusterRequest
|
2773
2795
|
include Google::Apis::Core::Hashable
|
2774
2796
|
|
@@ -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.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250410"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -683,6 +683,7 @@ module Google
|
|
683
683
|
hash :annotations, as: 'annotations'
|
684
684
|
property :cluster_name, as: 'clusterName'
|
685
685
|
property :cluster_uid, as: 'clusterUid'
|
686
|
+
property :create_completion_time, as: 'createCompletionTime'
|
686
687
|
property :create_time, as: 'createTime'
|
687
688
|
property :database_version, as: 'databaseVersion'
|
688
689
|
property :delete_time, as: 'deleteTime'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-20 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.34.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:
|