google-apis-alloydb_v1alpha 0.29.0 → 0.30.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: ef6dfc5bdef4e08c90132aca981d7c51566d7a06acd6e1c60e058af5c83cc002
|
4
|
+
data.tar.gz: b46f5104857d726c9fa6960a25c457b37bcd974b6659030da671611591f39406
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 185ce28b5e0e2c2f51bbd9002be0b5b2a6da0afd883a9bc2be39481d77967c737026151c699f5a3f7231a9cae91847725c0445e129ff23302f6a9249ad53f570
|
7
|
+
data.tar.gz: bfdcb23ff0faca5ad0ecb40c3284dd4357e0c7ec2421a45a2900c532a414f99cb73bd74a0db27483517b13d4f7bf6f35917ce4d2e75be12ab2f662faa73e98a7
|
data/CHANGELOG.md
CHANGED
@@ -882,6 +882,11 @@ module Google
|
|
882
882
|
# @return [String]
|
883
883
|
attr_accessor :pool_mode
|
884
884
|
|
885
|
+
# Output only. The number of running poolers per instance.
|
886
|
+
# Corresponds to the JSON property `poolerCount`
|
887
|
+
# @return [Fixnum]
|
888
|
+
attr_accessor :pooler_count
|
889
|
+
|
885
890
|
# Optional. Deprecated. Use 'flags' instead. The maximum number of seconds
|
886
891
|
# queries are allowed to spend waiting for execution. If the query is not
|
887
892
|
# assigned to a server during that time, the client is disconnected. 0 disables.
|
@@ -916,6 +921,7 @@ module Google
|
|
916
921
|
@max_prepared_statements = args[:max_prepared_statements] if args.key?(:max_prepared_statements)
|
917
922
|
@min_pool_size = args[:min_pool_size] if args.key?(:min_pool_size)
|
918
923
|
@pool_mode = args[:pool_mode] if args.key?(:pool_mode)
|
924
|
+
@pooler_count = args[:pooler_count] if args.key?(:pooler_count)
|
919
925
|
@query_wait_timeout = args[:query_wait_timeout] if args.key?(:query_wait_timeout)
|
920
926
|
@server_idle_timeout = args[:server_idle_timeout] if args.key?(:server_idle_timeout)
|
921
927
|
@stats_users = args[:stats_users] if args.key?(:stats_users)
|
@@ -2453,6 +2459,12 @@ module Google
|
|
2453
2459
|
attr_accessor :track_active_queries
|
2454
2460
|
alias_method :track_active_queries?, :track_active_queries
|
2455
2461
|
|
2462
|
+
# Track client address for an instance. If not set, default value is "off".
|
2463
|
+
# Corresponds to the JSON property `trackClientAddress`
|
2464
|
+
# @return [Boolean]
|
2465
|
+
attr_accessor :track_client_address
|
2466
|
+
alias_method :track_client_address?, :track_client_address
|
2467
|
+
|
2456
2468
|
# Output only. Track wait event types during query execution for an instance.
|
2457
2469
|
# This flag is turned "on" by default but tracking is enabled only after
|
2458
2470
|
# observability enabled flag is also turned on. This is read-only flag and only
|
@@ -2483,6 +2495,7 @@ module Google
|
|
2483
2495
|
@query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
|
2484
2496
|
@record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
|
2485
2497
|
@track_active_queries = args[:track_active_queries] if args.key?(:track_active_queries)
|
2498
|
+
@track_client_address = args[:track_client_address] if args.key?(:track_client_address)
|
2486
2499
|
@track_wait_event_types = args[:track_wait_event_types] if args.key?(:track_wait_event_types)
|
2487
2500
|
@track_wait_events = args[:track_wait_events] if args.key?(:track_wait_events)
|
2488
2501
|
end
|
@@ -3721,7 +3734,10 @@ module Google
|
|
3721
3734
|
# alloydb.googleapis.com/Instance, spanner.googleapis.com/Instance, spanner.
|
3722
3735
|
# googleapis.com/Database, firestore.googleapis.com/Database, sqladmin.
|
3723
3736
|
# googleapis.com/Instance, bigtableadmin.googleapis.com/Cluster, bigtableadmin.
|
3724
|
-
# googleapis.com/Instance
|
3737
|
+
# googleapis.com/Instance oracledatabase.googleapis.com/
|
3738
|
+
# cloudExadataInfrastructures oracledatabase.googleapis.com/cloudVmClusters
|
3739
|
+
# oracledatabase.googleapis.com/autonomousDatabases REQUIRED Please refer go/
|
3740
|
+
# condor-common-datamodel
|
3725
3741
|
# Corresponds to the JSON property `resourceType`
|
3726
3742
|
# @return [String]
|
3727
3743
|
attr_accessor :resource_type
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AlloydbV1alpha
|
18
18
|
# Version of the google-apis-alloydb_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250529"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -868,6 +868,7 @@ module Google
|
|
868
868
|
property :max_prepared_statements, as: 'maxPreparedStatements'
|
869
869
|
property :min_pool_size, as: 'minPoolSize'
|
870
870
|
property :pool_mode, as: 'poolMode'
|
871
|
+
property :pooler_count, as: 'poolerCount'
|
871
872
|
property :query_wait_timeout, as: 'queryWaitTimeout'
|
872
873
|
property :server_idle_timeout, as: 'serverIdleTimeout'
|
873
874
|
collection :stats_users, as: 'statsUsers'
|
@@ -1278,6 +1279,7 @@ module Google
|
|
1278
1279
|
property :query_plans_per_minute, as: 'queryPlansPerMinute'
|
1279
1280
|
property :record_application_tags, as: 'recordApplicationTags'
|
1280
1281
|
property :track_active_queries, as: 'trackActiveQueries'
|
1282
|
+
property :track_client_address, as: 'trackClientAddress'
|
1281
1283
|
property :track_wait_event_types, as: 'trackWaitEventTypes'
|
1282
1284
|
property :track_wait_events, as: 'trackWaitEvents'
|
1283
1285
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-alloydb_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -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_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1alpha/v0.30.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|