google-apis-alloydb_v1beta 0.22.0 → 0.23.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: 440cc5a3c1838f6dbe0ae52424558fa7b65025c1da37ca95c4f9299a89fc5f48
|
4
|
+
data.tar.gz: df84293cac84edf3b20d12bf488759f42edae81103880068afc1d074c148bf20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53ed4cd3cd4339fb961bf0fe1dd687e63c11b56a4350fe2f3cf5eda7e85ac5dbd9bb5297230f727f7f5582e966c058dde319f251871f3b6ca8352d31b8359115
|
7
|
+
data.tar.gz: 9b41e7df0c66a7017acf20fc544e9a9602aa08049af9e68cc200b32f4da736bd6a30e8f1fbe230d293e792d5bdb0d85d79a7a5f3e9ff4135ef117792703194cc
|
data/CHANGELOG.md
CHANGED
@@ -1115,6 +1115,26 @@ module Google
|
|
1115
1115
|
end
|
1116
1116
|
end
|
1117
1117
|
|
1118
|
+
# Instance level configuration parameters related to the Gemini Cloud Assist
|
1119
|
+
# product.
|
1120
|
+
class GcaInstanceConfig
|
1121
|
+
include Google::Apis::Core::Hashable
|
1122
|
+
|
1123
|
+
# Output only. Represents the GCA entitlement state of the instance.
|
1124
|
+
# Corresponds to the JSON property `gcaEntitlement`
|
1125
|
+
# @return [String]
|
1126
|
+
attr_accessor :gca_entitlement
|
1127
|
+
|
1128
|
+
def initialize(**args)
|
1129
|
+
update!(**args)
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
# Update properties of this object
|
1133
|
+
def update!(**args)
|
1134
|
+
@gca_entitlement = args[:gca_entitlement] if args.key?(:gca_entitlement)
|
1135
|
+
end
|
1136
|
+
end
|
1137
|
+
|
1118
1138
|
# Destination for Export. Export will be done to cloud storage.
|
1119
1139
|
class GcsDestination
|
1120
1140
|
include Google::Apis::Core::Hashable
|
@@ -1452,6 +1472,12 @@ module Google
|
|
1452
1472
|
# @return [String]
|
1453
1473
|
attr_accessor :etag
|
1454
1474
|
|
1475
|
+
# Instance level configuration parameters related to the Gemini Cloud Assist
|
1476
|
+
# product.
|
1477
|
+
# Corresponds to the JSON property `gcaConfig`
|
1478
|
+
# @return [Google::Apis::AlloydbV1beta::GcaInstanceConfig]
|
1479
|
+
attr_accessor :gca_config
|
1480
|
+
|
1455
1481
|
# The Compute Engine zone that the instance should serve from, per https://cloud.
|
1456
1482
|
# google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL
|
1457
1483
|
# instances. If present for a REGIONAL instance, an error will be thrown. If
|
@@ -1601,6 +1627,7 @@ module Google
|
|
1601
1627
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1602
1628
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1603
1629
|
@etag = args[:etag] if args.key?(:etag)
|
1630
|
+
@gca_config = args[:gca_config] if args.key?(:gca_config)
|
1604
1631
|
@gce_zone = args[:gce_zone] if args.key?(:gce_zone)
|
1605
1632
|
@gemini_config = args[:gemini_config] if args.key?(:gemini_config)
|
1606
1633
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
@@ -2130,16 +2157,10 @@ module Google
|
|
2130
2157
|
attr_accessor :track_active_queries
|
2131
2158
|
alias_method :track_active_queries?, :track_active_queries
|
2132
2159
|
|
2133
|
-
# Track client address for an instance. If not set, default value is "off".
|
2134
|
-
# Corresponds to the JSON property `trackClientAddress`
|
2135
|
-
# @return [Boolean]
|
2136
|
-
attr_accessor :track_client_address
|
2137
|
-
alias_method :track_client_address?, :track_client_address
|
2138
|
-
|
2139
2160
|
# Output only. Track wait event types during query execution for an instance.
|
2140
2161
|
# This flag is turned "on" by default but tracking is enabled only after
|
2141
2162
|
# observability enabled flag is also turned on. This is read-only flag and only
|
2142
|
-
# modifiable by
|
2163
|
+
# modifiable by internal API.
|
2143
2164
|
# Corresponds to the JSON property `trackWaitEventTypes`
|
2144
2165
|
# @return [Boolean]
|
2145
2166
|
attr_accessor :track_wait_event_types
|
@@ -2165,7 +2186,6 @@ module Google
|
|
2165
2186
|
@query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
|
2166
2187
|
@record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
|
2167
2188
|
@track_active_queries = args[:track_active_queries] if args.key?(:track_active_queries)
|
2168
|
-
@track_client_address = args[:track_client_address] if args.key?(:track_client_address)
|
2169
2189
|
@track_wait_event_types = args[:track_wait_event_types] if args.key?(:track_wait_event_types)
|
2170
2190
|
@track_wait_events = args[:track_wait_events] if args.key?(:track_wait_events)
|
2171
2191
|
end
|
@@ -3759,14 +3779,14 @@ module Google
|
|
3759
3779
|
class StorageDatabasecenterPartnerapiV1mainMachineConfiguration
|
3760
3780
|
include Google::Apis::Core::Hashable
|
3761
3781
|
|
3762
|
-
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482
|
3763
|
-
#
|
3782
|
+
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
|
3783
|
+
# proto validations again after bug fix.
|
3764
3784
|
# Corresponds to the JSON property `cpuCount`
|
3765
3785
|
# @return [Fixnum]
|
3766
3786
|
attr_accessor :cpu_count
|
3767
3787
|
|
3768
|
-
# Memory size in bytes. TODO(b/342344482
|
3769
|
-
#
|
3788
|
+
# Memory size in bytes. TODO(b/342344482) add proto validations again after bug
|
3789
|
+
# fix.
|
3770
3790
|
# Corresponds to the JSON property `memorySizeInBytes`
|
3771
3791
|
# @return [Fixnum]
|
3772
3792
|
attr_accessor :memory_size_in_bytes
|
@@ -3776,8 +3796,8 @@ module Google
|
|
3776
3796
|
# @return [Fixnum]
|
3777
3797
|
attr_accessor :shard_count
|
3778
3798
|
|
3779
|
-
# Optional. The number of vCPUs. TODO(b/342344482
|
3780
|
-
#
|
3799
|
+
# Optional. The number of vCPUs. TODO(b/342344482) add proto validations again
|
3800
|
+
# after bug fix.
|
3781
3801
|
# Corresponds to the JSON property `vcpuCount`
|
3782
3802
|
# @return [Float]
|
3783
3803
|
attr_accessor :vcpu_count
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AlloydbV1beta
|
18
18
|
# Version of the google-apis-alloydb_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.23.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 = "20250227"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -142,6 +142,12 @@ module Google
|
|
142
142
|
include Google::Apis::Core::JsonObjectSupport
|
143
143
|
end
|
144
144
|
|
145
|
+
class GcaInstanceConfig
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
145
151
|
class GcsDestination
|
146
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
153
|
|
@@ -908,6 +914,13 @@ module Google
|
|
908
914
|
end
|
909
915
|
end
|
910
916
|
|
917
|
+
class GcaInstanceConfig
|
918
|
+
# @private
|
919
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
920
|
+
property :gca_entitlement, as: 'gcaEntitlement'
|
921
|
+
end
|
922
|
+
end
|
923
|
+
|
911
924
|
class GcsDestination
|
912
925
|
# @private
|
913
926
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -993,6 +1006,8 @@ module Google
|
|
993
1006
|
property :delete_time, as: 'deleteTime'
|
994
1007
|
property :display_name, as: 'displayName'
|
995
1008
|
property :etag, as: 'etag'
|
1009
|
+
property :gca_config, as: 'gcaConfig', class: Google::Apis::AlloydbV1beta::GcaInstanceConfig, decorator: Google::Apis::AlloydbV1beta::GcaInstanceConfig::Representation
|
1010
|
+
|
996
1011
|
property :gce_zone, as: 'gceZone'
|
997
1012
|
property :gemini_config, as: 'geminiConfig', class: Google::Apis::AlloydbV1beta::GeminiInstanceConfig, decorator: Google::Apis::AlloydbV1beta::GeminiInstanceConfig::Representation
|
998
1013
|
|
@@ -1180,7 +1195,6 @@ module Google
|
|
1180
1195
|
property :query_plans_per_minute, as: 'queryPlansPerMinute'
|
1181
1196
|
property :record_application_tags, as: 'recordApplicationTags'
|
1182
1197
|
property :track_active_queries, as: 'trackActiveQueries'
|
1183
|
-
property :track_client_address, as: 'trackClientAddress'
|
1184
1198
|
property :track_wait_event_types, as: 'trackWaitEventTypes'
|
1185
1199
|
property :track_wait_events, as: 'trackWaitEvents'
|
1186
1200
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-alloydb_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-09 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_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1beta/v0.23.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|