google-cloud-alloy_db-v1alpha 0.7.2 → 0.9.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/README.md +31 -21
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/client.rb +560 -184
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/operations.rb +12 -15
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/client.rb +4276 -0
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/operations.rb +907 -0
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/service_stub.rb +2236 -0
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest.rb +54 -0
- data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin.rb +6 -0
- data/lib/google/cloud/alloy_db/v1alpha/bindings_override.rb +102 -0
- data/lib/google/cloud/alloy_db/v1alpha/rest.rb +38 -0
- data/lib/google/cloud/alloy_db/v1alpha/version.rb +1 -1
- data/lib/google/cloud/alloy_db/v1alpha.rb +5 -0
- data/lib/google/cloud/alloydb/v1alpha/csql_resources_pb.rb +44 -0
- data/lib/google/cloud/alloydb/v1alpha/data_model_pb.rb +45 -0
- data/lib/google/cloud/alloydb/v1alpha/gemini_pb.rb +45 -0
- data/lib/google/cloud/alloydb/v1alpha/resources_pb.rb +11 -1
- data/lib/google/cloud/alloydb/v1alpha/service_pb.rb +22 -1
- data/lib/google/cloud/alloydb/v1alpha/service_services_pb.rb +9 -0
- data/proto_docs/google/api/client.rb +39 -0
- data/proto_docs/google/cloud/alloydb/v1alpha/csql_resources.rb +42 -0
- data/proto_docs/google/cloud/alloydb/v1alpha/data_model.rb +75 -0
- data/proto_docs/google/cloud/alloydb/v1alpha/gemini.rb +52 -0
- data/proto_docs/google/cloud/alloydb/v1alpha/resources.rb +214 -39
- data/proto_docs/google/cloud/alloydb/v1alpha/service.rb +540 -146
- data/proto_docs/google/longrunning/operations.rb +19 -14
- metadata +18 -6
@@ -42,7 +42,7 @@ module Google
|
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
43
|
# @!attribute [rw] response
|
44
44
|
# @return [::Google::Protobuf::Any]
|
45
|
-
# The normal response of the operation
|
45
|
+
# The normal, successful response of the operation. If the original
|
46
46
|
# method returns no data on success, such as `Delete`, the response is
|
47
47
|
# `google.protobuf.Empty`. If the original method is standard
|
48
48
|
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
@@ -55,7 +55,8 @@ module Google
|
|
55
55
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
56
|
end
|
57
57
|
|
58
|
-
# The request message for
|
58
|
+
# The request message for
|
59
|
+
# Operations.GetOperation.
|
59
60
|
# @!attribute [rw] name
|
60
61
|
# @return [::String]
|
61
62
|
# The name of the operation resource.
|
@@ -64,7 +65,8 @@ module Google
|
|
64
65
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
66
|
end
|
66
67
|
|
67
|
-
# The request message for
|
68
|
+
# The request message for
|
69
|
+
# Operations.ListOperations.
|
68
70
|
# @!attribute [rw] name
|
69
71
|
# @return [::String]
|
70
72
|
# The name of the operation's parent resource.
|
@@ -82,7 +84,8 @@ module Google
|
|
82
84
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
83
85
|
end
|
84
86
|
|
85
|
-
# The response message for
|
87
|
+
# The response message for
|
88
|
+
# Operations.ListOperations.
|
86
89
|
# @!attribute [rw] operations
|
87
90
|
# @return [::Array<::Google::Longrunning::Operation>]
|
88
91
|
# A list of operations that matches the specified filter in the request.
|
@@ -94,7 +97,8 @@ module Google
|
|
94
97
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
98
|
end
|
96
99
|
|
97
|
-
# The request message for
|
100
|
+
# The request message for
|
101
|
+
# Operations.CancelOperation.
|
98
102
|
# @!attribute [rw] name
|
99
103
|
# @return [::String]
|
100
104
|
# The name of the operation resource to be cancelled.
|
@@ -103,7 +107,8 @@ module Google
|
|
103
107
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
104
108
|
end
|
105
109
|
|
106
|
-
# The request message for
|
110
|
+
# The request message for
|
111
|
+
# Operations.DeleteOperation.
|
107
112
|
# @!attribute [rw] name
|
108
113
|
# @return [::String]
|
109
114
|
# The name of the operation resource to be deleted.
|
@@ -112,7 +117,8 @@ module Google
|
|
112
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
118
|
end
|
114
119
|
|
115
|
-
# The request message for
|
120
|
+
# The request message for
|
121
|
+
# Operations.WaitOperation.
|
116
122
|
# @!attribute [rw] name
|
117
123
|
# @return [::String]
|
118
124
|
# The name of the operation resource to wait on.
|
@@ -130,13 +136,12 @@ module Google
|
|
130
136
|
#
|
131
137
|
# Example:
|
132
138
|
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# }
|
139
|
-
# }
|
139
|
+
# rpc Export(ExportRequest) returns (google.longrunning.Operation) {
|
140
|
+
# option (google.longrunning.operation_info) = {
|
141
|
+
# response_type: "ExportResponse"
|
142
|
+
# metadata_type: "ExportMetadata"
|
143
|
+
# };
|
144
|
+
# }
|
140
145
|
# @!attribute [rw] response_type
|
141
146
|
# @return [::String]
|
142
147
|
# Required. The message name of the primary return type for this
|
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.9.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-12-10 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.24.0
|
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.24.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -112,7 +112,16 @@ files:
|
|
112
112
|
- lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/credentials.rb
|
113
113
|
- lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/operations.rb
|
114
114
|
- lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/paths.rb
|
115
|
+
- lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest.rb
|
116
|
+
- lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/client.rb
|
117
|
+
- lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/operations.rb
|
118
|
+
- lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/service_stub.rb
|
119
|
+
- lib/google/cloud/alloy_db/v1alpha/bindings_override.rb
|
120
|
+
- lib/google/cloud/alloy_db/v1alpha/rest.rb
|
115
121
|
- lib/google/cloud/alloy_db/v1alpha/version.rb
|
122
|
+
- lib/google/cloud/alloydb/v1alpha/csql_resources_pb.rb
|
123
|
+
- lib/google/cloud/alloydb/v1alpha/data_model_pb.rb
|
124
|
+
- lib/google/cloud/alloydb/v1alpha/gemini_pb.rb
|
116
125
|
- lib/google/cloud/alloydb/v1alpha/resources_pb.rb
|
117
126
|
- lib/google/cloud/alloydb/v1alpha/service_pb.rb
|
118
127
|
- lib/google/cloud/alloydb/v1alpha/service_services_pb.rb
|
@@ -122,6 +131,9 @@ files:
|
|
122
131
|
- proto_docs/google/api/field_info.rb
|
123
132
|
- proto_docs/google/api/launch_stage.rb
|
124
133
|
- proto_docs/google/api/resource.rb
|
134
|
+
- proto_docs/google/cloud/alloydb/v1alpha/csql_resources.rb
|
135
|
+
- proto_docs/google/cloud/alloydb/v1alpha/data_model.rb
|
136
|
+
- proto_docs/google/cloud/alloydb/v1alpha/gemini.rb
|
125
137
|
- proto_docs/google/cloud/alloydb/v1alpha/resources.rb
|
126
138
|
- proto_docs/google/cloud/alloydb/v1alpha/service.rb
|
127
139
|
- proto_docs/google/longrunning/operations.rb
|
@@ -154,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
166
|
- !ruby/object:Gem::Version
|
155
167
|
version: '0'
|
156
168
|
requirements: []
|
157
|
-
rubygems_version: 3.5.
|
169
|
+
rubygems_version: 3.5.23
|
158
170
|
signing_key:
|
159
171
|
specification_version: 4
|
160
172
|
summary: AlloyDB for PostgreSQL is an open source-compatible database service that
|
@@ -162,7 +174,7 @@ summary: AlloyDB for PostgreSQL is an open source-compatible database service th
|
|
162
174
|
applications. It offers full compatibility with standard PostgreSQL, and is more
|
163
175
|
than 4x faster for transactional workloads and up to 100x faster for analytical
|
164
176
|
queries than standard PostgreSQL in our performance tests. AlloyDB for PostgreSQL
|
165
|
-
offers a 99.99 percent availability SLA inclusive of maintenance.
|
177
|
+
offers a 99.99 percent availability SLA inclusive of maintenance. AlloyDB is optimized
|
166
178
|
for the most demanding use cases, allowing you to build new applications that require
|
167
179
|
high transaction throughput, large database sizes, or multiple read resources; scale
|
168
180
|
existing PostgreSQL workloads with no application changes; and modernize legacy
|