google-cloud-alloy_db-v1alpha 0.3.0 → 0.5.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 +4 -4
- data/AUTHENTICATION.md +72 -99
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/client.rb +150 -9
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/operations.rb +28 -6
- data/lib/google/cloud/alloy_db/v1alpha/version.rb +1 -1
- data/lib/google/cloud/alloydb/v1alpha/resources_pb.rb +10 -3
- data/lib/google/cloud/alloydb/v1alpha/service_pb.rb +3 -1
- data/lib/google/cloud/alloydb/v1alpha/service_services_pb.rb +2 -0
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/api/field_info.rb +65 -0
- data/proto_docs/google/cloud/alloydb/v1alpha/resources.rb +148 -10
- data/proto_docs/google/cloud/alloydb/v1alpha/service.rb +41 -1
- metadata +10 -9
@@ -956,8 +956,10 @@ module Google
|
|
956
956
|
# The request ID must be a valid UUID with the exception that zero UUID is
|
957
957
|
# not supported (00000000-0000-0000-0000-000000000000).
|
958
958
|
# @!attribute [rw] pem_csr
|
959
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
959
960
|
# @return [::String]
|
960
|
-
# Optional. A pem-encoded X.509 certificate signing request (CSR).
|
961
|
+
# Optional. A pem-encoded X.509 certificate signing request (CSR). It is
|
962
|
+
# recommended to use public_key instead.
|
961
963
|
# @!attribute [rw] cert_duration
|
962
964
|
# @return [::Google::Protobuf::Duration]
|
963
965
|
# Optional. An optional hint to the endpoint to generate the client
|
@@ -980,6 +982,7 @@ module Google
|
|
980
982
|
|
981
983
|
# Message returned by a GenerateClientCertificate operation.
|
982
984
|
# @!attribute [r] pem_certificate
|
985
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
983
986
|
# @return [::String]
|
984
987
|
# Output only. The pem-encoded, signed X.509 certificate.
|
985
988
|
# @!attribute [r] pem_certificate_chain
|
@@ -1200,6 +1203,43 @@ module Google
|
|
1200
1203
|
include ::Google::Protobuf::MessageExts
|
1201
1204
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1202
1205
|
end
|
1206
|
+
|
1207
|
+
# Message for requesting list of Databases.
|
1208
|
+
# @!attribute [rw] parent
|
1209
|
+
# @return [::String]
|
1210
|
+
# Required. Parent value for ListDatabasesRequest.
|
1211
|
+
# @!attribute [rw] page_size
|
1212
|
+
# @return [::Integer]
|
1213
|
+
# Optional. The maximum number of databases to return. The service may return
|
1214
|
+
# fewer than this value. If unspecified, an appropriate number of databases
|
1215
|
+
# will be returned. The max value will be 2000, values above max will be
|
1216
|
+
# coerced to max.
|
1217
|
+
# @!attribute [rw] page_token
|
1218
|
+
# @return [::String]
|
1219
|
+
# Optional. A page token, received from a previous `ListDatabases` call.
|
1220
|
+
# This should be provided to retrieve the subsequent page.
|
1221
|
+
# This field is currently not supported, its value will be ignored if passed.
|
1222
|
+
# @!attribute [rw] filter
|
1223
|
+
# @return [::String]
|
1224
|
+
# Optional. Filtering results.
|
1225
|
+
# This field is currently not supported, its value will be ignored if passed.
|
1226
|
+
class ListDatabasesRequest
|
1227
|
+
include ::Google::Protobuf::MessageExts
|
1228
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
# Message for response to listing Databases.
|
1232
|
+
# @!attribute [rw] databases
|
1233
|
+
# @return [::Array<::Google::Cloud::AlloyDB::V1alpha::Database>]
|
1234
|
+
# The list of databases
|
1235
|
+
# @!attribute [rw] next_page_token
|
1236
|
+
# @return [::String]
|
1237
|
+
# A token identifying the next page of results the server should return.
|
1238
|
+
# If this field is omitted, there are no subsequent pages.
|
1239
|
+
class ListDatabasesResponse
|
1240
|
+
include ::Google::Protobuf::MessageExts
|
1241
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1242
|
+
end
|
1203
1243
|
end
|
1204
1244
|
end
|
1205
1245
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-alloy_db-v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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:
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.21.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.21.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '0.
|
53
|
+
version: '0.7'
|
54
54
|
- - "<"
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 2.a
|
@@ -60,7 +60,7 @@ dependencies:
|
|
60
60
|
requirements:
|
61
61
|
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: '0.
|
63
|
+
version: '0.7'
|
64
64
|
- - "<"
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: 2.a
|
@@ -70,7 +70,7 @@ dependencies:
|
|
70
70
|
requirements:
|
71
71
|
- - ">="
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version: '0.
|
73
|
+
version: '0.7'
|
74
74
|
- - "<"
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: 2.a
|
@@ -80,7 +80,7 @@ dependencies:
|
|
80
80
|
requirements:
|
81
81
|
- - ">="
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: '0.
|
83
|
+
version: '0.7'
|
84
84
|
- - "<"
|
85
85
|
- !ruby/object:Gem::Version
|
86
86
|
version: 2.a
|
@@ -231,6 +231,7 @@ files:
|
|
231
231
|
- proto_docs/README.md
|
232
232
|
- proto_docs/google/api/client.rb
|
233
233
|
- proto_docs/google/api/field_behavior.rb
|
234
|
+
- proto_docs/google/api/field_info.rb
|
234
235
|
- proto_docs/google/api/launch_stage.rb
|
235
236
|
- proto_docs/google/api/resource.rb
|
236
237
|
- proto_docs/google/cloud/alloydb/v1alpha/resources.rb
|
@@ -265,7 +266,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
265
266
|
- !ruby/object:Gem::Version
|
266
267
|
version: '0'
|
267
268
|
requirements: []
|
268
|
-
rubygems_version: 3.
|
269
|
+
rubygems_version: 3.5.3
|
269
270
|
signing_key:
|
270
271
|
specification_version: 4
|
271
272
|
summary: AlloyDB for PostgreSQL is an open source-compatible database service that
|