google-cloud-alloy_db-v1alpha 0.12.0 → 0.14.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.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/client.rb +249 -4
  4. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/client.rb +235 -4
  5. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/service_stub.rb +124 -0
  6. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/client.rb +519 -0
  7. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/credentials.rb +47 -0
  8. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/operations.rb +813 -0
  9. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/paths.rb +128 -0
  10. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/rest/client.rb +494 -0
  11. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/rest/operations.rb +914 -0
  12. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/rest/service_stub.rb +143 -0
  13. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/rest.rb +54 -0
  14. data/lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin.rb +56 -0
  15. data/lib/google/cloud/alloy_db/v1alpha/rest.rb +1 -0
  16. data/lib/google/cloud/alloy_db/v1alpha/version.rb +1 -1
  17. data/lib/google/cloud/alloy_db/v1alpha.rb +1 -0
  18. data/lib/google/cloud/alloydb/v1alpha/csql_service_pb.rb +53 -0
  19. data/lib/google/cloud/alloydb/v1alpha/csql_service_services_pb.rb +45 -0
  20. data/lib/google/cloud/alloydb/v1alpha/gemini_pb.rb +3 -1
  21. data/lib/google/cloud/alloydb/v1alpha/resources_pb.rb +9 -1
  22. data/lib/google/cloud/alloydb/v1alpha/service_pb.rb +10 -1
  23. data/lib/google/cloud/alloydb/v1alpha/service_services_pb.rb +6 -0
  24. data/proto_docs/google/cloud/alloydb/v1alpha/csql_service.rb +45 -0
  25. data/proto_docs/google/cloud/alloydb/v1alpha/gemini.rb +27 -12
  26. data/proto_docs/google/cloud/alloydb/v1alpha/resources.rb +229 -28
  27. data/proto_docs/google/cloud/alloydb/v1alpha/service.rb +186 -7
  28. data/proto_docs/google/type/date.rb +53 -0
  29. data/proto_docs/google/type/timeofday.rb +1 -1
  30. metadata +16 -3
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2025 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Type
22
+ # Represents a whole or partial calendar date, such as a birthday. The time of
23
+ # day and time zone are either specified elsewhere or are insignificant. The
24
+ # date is relative to the Gregorian Calendar. This can represent one of the
25
+ # following:
26
+ #
27
+ # * A full date, with non-zero year, month, and day values
28
+ # * A month and day value, with a zero year, such as an anniversary
29
+ # * A year on its own, with zero month and day values
30
+ # * A year and month value, with a zero day, such as a credit card expiration
31
+ # date
32
+ #
33
+ # Related types are {::Google::Type::TimeOfDay google.type.TimeOfDay} and
34
+ # `google.protobuf.Timestamp`.
35
+ # @!attribute [rw] year
36
+ # @return [::Integer]
37
+ # Year of the date. Must be from 1 to 9999, or 0 to specify a date without
38
+ # a year.
39
+ # @!attribute [rw] month
40
+ # @return [::Integer]
41
+ # Month of a year. Must be from 1 to 12, or 0 to specify a year without a
42
+ # month and day.
43
+ # @!attribute [rw] day
44
+ # @return [::Integer]
45
+ # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
46
+ # to specify a year by itself or a year and month where the day isn't
47
+ # significant.
48
+ class Date
49
+ include ::Google::Protobuf::MessageExts
50
+ extend ::Google::Protobuf::MessageExts::ClassMethods
51
+ end
52
+ end
53
+ end
@@ -21,7 +21,7 @@ module Google
21
21
  module Type
22
22
  # Represents a time of day. The date and time zone are either not significant
23
23
  # or are specified elsewhere. An API may choose to allow leap seconds. Related
24
- # types are [google.type.Date][google.type.Date] and
24
+ # types are {::Google::Type::Date google.type.Date} and
25
25
  # `google.protobuf.Timestamp`.
26
26
  # @!attribute [rw] hours
27
27
  # @return [::Integer]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-alloy_db-v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -97,10 +97,21 @@ files:
97
97
  - lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/client.rb
98
98
  - lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/operations.rb
99
99
  - lib/google/cloud/alloy_db/v1alpha/alloy_db_admin/rest/service_stub.rb
100
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin.rb
101
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/client.rb
102
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/credentials.rb
103
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/operations.rb
104
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/paths.rb
105
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/rest.rb
106
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/rest/client.rb
107
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/rest/operations.rb
108
+ - lib/google/cloud/alloy_db/v1alpha/alloy_db_cloud_sql_admin/rest/service_stub.rb
100
109
  - lib/google/cloud/alloy_db/v1alpha/bindings_override.rb
101
110
  - lib/google/cloud/alloy_db/v1alpha/rest.rb
102
111
  - lib/google/cloud/alloy_db/v1alpha/version.rb
103
112
  - lib/google/cloud/alloydb/v1alpha/csql_resources_pb.rb
113
+ - lib/google/cloud/alloydb/v1alpha/csql_service_pb.rb
114
+ - lib/google/cloud/alloydb/v1alpha/csql_service_services_pb.rb
104
115
  - lib/google/cloud/alloydb/v1alpha/data_model_pb.rb
105
116
  - lib/google/cloud/alloydb/v1alpha/gemini_pb.rb
106
117
  - lib/google/cloud/alloydb/v1alpha/resources_pb.rb
@@ -113,6 +124,7 @@ files:
113
124
  - proto_docs/google/api/launch_stage.rb
114
125
  - proto_docs/google/api/resource.rb
115
126
  - proto_docs/google/cloud/alloydb/v1alpha/csql_resources.rb
127
+ - proto_docs/google/cloud/alloydb/v1alpha/csql_service.rb
116
128
  - proto_docs/google/cloud/alloydb/v1alpha/data_model.rb
117
129
  - proto_docs/google/cloud/alloydb/v1alpha/gemini.rb
118
130
  - proto_docs/google/cloud/alloydb/v1alpha/resources.rb
@@ -125,6 +137,7 @@ files:
125
137
  - proto_docs/google/protobuf/timestamp.rb
126
138
  - proto_docs/google/protobuf/wrappers.rb
127
139
  - proto_docs/google/rpc/status.rb
140
+ - proto_docs/google/type/date.rb
128
141
  - proto_docs/google/type/dayofweek.rb
129
142
  - proto_docs/google/type/expr.rb
130
143
  - proto_docs/google/type/timeofday.rb
@@ -146,14 +159,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
159
  - !ruby/object:Gem::Version
147
160
  version: '0'
148
161
  requirements: []
149
- rubygems_version: 3.6.8
162
+ rubygems_version: 3.6.9
150
163
  specification_version: 4
151
164
  summary: AlloyDB for PostgreSQL is an open source-compatible database service that
152
165
  provides a powerful option for migrating, modernizing, or building commercial-grade
153
166
  applications. It offers full compatibility with standard PostgreSQL, and is more
154
167
  than 4x faster for transactional workloads and up to 100x faster for analytical
155
168
  queries than standard PostgreSQL in our performance tests. AlloyDB for PostgreSQL
156
- offers a 99.99 percent availability SLA inclusive of maintenance. AlloyDB is optimized
169
+ offers a 99.99 percent availability SLA inclusive of maintenance. AlloyDB is optimized
157
170
  for the most demanding use cases, allowing you to build new applications that require
158
171
  high transaction throughput, large database sizes, or multiple read resources; scale
159
172
  existing PostgreSQL workloads with no application changes; and modernize legacy