google-apis-alloydb_v1beta 0.29.0 → 0.31.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: 4f9f2649d73a9b1dd2306ca25173cadda23fff761af5dccc7a9765d1f9ac243c
|
4
|
+
data.tar.gz: 68f35a1c14a183a1b3b2497da3dde4ab9f675ac13015240f0ad6b07f3daa5527
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ead1bae4e2803d5feaf41b6de6891da89a64babe2cacf9001f47e9649f15f202280f2a2f21e25b915ea4af050427f8a86198760dcd3a3b976b7d16f7ac8b87f
|
7
|
+
data.tar.gz: 16df8a33b4f43eb663dd11b7554bd3f76c557ae744929ddac8478a2966e84b4f2270f42689005da24666a780ff9eeb0fef7b6720c2362677cafe8d4924c8f422
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1beta
|
2
2
|
|
3
|
+
### v0.31.0 (2025-06-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250605
|
6
|
+
|
7
|
+
### v0.30.0 (2025-06-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250529
|
10
|
+
|
3
11
|
### v0.29.0 (2025-06-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250522
|
@@ -597,10 +597,9 @@ module Google
|
|
597
597
|
# @return [Google::Apis::AlloydbV1beta::SecondaryConfig]
|
598
598
|
attr_accessor :secondary_config
|
599
599
|
|
600
|
-
# Output only. AlloyDB per-cluster service
|
601
|
-
# created per-cluster per-project, and is different from
|
602
|
-
#
|
603
|
-
# is subject to change.
|
600
|
+
# Output only. AlloyDB per-cluster service account. This service account is
|
601
|
+
# created per-cluster per-project, and is different from the per-project service
|
602
|
+
# account. The per-cluster service account naming format is subject to change.
|
604
603
|
# Corresponds to the JSON property `serviceAccountEmail`
|
605
604
|
# @return [String]
|
606
605
|
attr_accessor :service_account_email
|
@@ -855,6 +854,11 @@ module Google
|
|
855
854
|
# @return [String]
|
856
855
|
attr_accessor :pool_mode
|
857
856
|
|
857
|
+
# Output only. The number of running poolers per instance.
|
858
|
+
# Corresponds to the JSON property `poolerCount`
|
859
|
+
# @return [Fixnum]
|
860
|
+
attr_accessor :pooler_count
|
861
|
+
|
858
862
|
# Optional. Deprecated. Use 'flags' instead. The maximum number of seconds
|
859
863
|
# queries are allowed to spend waiting for execution. If the query is not
|
860
864
|
# assigned to a server during that time, the client is disconnected. 0 disables.
|
@@ -889,6 +893,7 @@ module Google
|
|
889
893
|
@max_prepared_statements = args[:max_prepared_statements] if args.key?(:max_prepared_statements)
|
890
894
|
@min_pool_size = args[:min_pool_size] if args.key?(:min_pool_size)
|
891
895
|
@pool_mode = args[:pool_mode] if args.key?(:pool_mode)
|
896
|
+
@pooler_count = args[:pooler_count] if args.key?(:pooler_count)
|
892
897
|
@query_wait_timeout = args[:query_wait_timeout] if args.key?(:query_wait_timeout)
|
893
898
|
@server_idle_timeout = args[:server_idle_timeout] if args.key?(:server_idle_timeout)
|
894
899
|
@stats_users = args[:stats_users] if args.key?(:stats_users)
|
@@ -1883,9 +1888,9 @@ module Google
|
|
1883
1888
|
# Optional. Name of the allocated IP range for the private IP AlloyDB instance,
|
1884
1889
|
# for example: "google-managed-services-default". If set, the instance IPs will
|
1885
1890
|
# be created from this allocated range and will override the IP range used by
|
1886
|
-
# the parent cluster. The range name must comply with [RFC 1035](http://
|
1887
|
-
#
|
1888
|
-
# regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
|
1891
|
+
# the parent cluster. The range name must comply with [RFC 1035](http://
|
1892
|
+
# datatracker.ietf.org/doc/html/rfc1035). Specifically, the name must be 1-63
|
1893
|
+
# characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
|
1889
1894
|
# Corresponds to the JSON property `allocatedIpRangeOverride`
|
1890
1895
|
# @return [String]
|
1891
1896
|
attr_accessor :allocated_ip_range_override
|
@@ -2419,6 +2424,12 @@ module Google
|
|
2419
2424
|
attr_accessor :track_active_queries
|
2420
2425
|
alias_method :track_active_queries?, :track_active_queries
|
2421
2426
|
|
2427
|
+
# Track client address for an instance. If not set, default value is "off".
|
2428
|
+
# Corresponds to the JSON property `trackClientAddress`
|
2429
|
+
# @return [Boolean]
|
2430
|
+
attr_accessor :track_client_address
|
2431
|
+
alias_method :track_client_address?, :track_client_address
|
2432
|
+
|
2422
2433
|
# Output only. Track wait event types during query execution for an instance.
|
2423
2434
|
# This flag is turned "on" by default but tracking is enabled only after
|
2424
2435
|
# observability enabled flag is also turned on. This is read-only flag and only
|
@@ -2449,6 +2460,7 @@ module Google
|
|
2449
2460
|
@query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
|
2450
2461
|
@record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
|
2451
2462
|
@track_active_queries = args[:track_active_queries] if args.key?(:track_active_queries)
|
2463
|
+
@track_client_address = args[:track_client_address] if args.key?(:track_client_address)
|
2452
2464
|
@track_wait_event_types = args[:track_wait_event_types] if args.key?(:track_wait_event_types)
|
2453
2465
|
@track_wait_events = args[:track_wait_events] if args.key?(:track_wait_events)
|
2454
2466
|
end
|
@@ -3502,7 +3514,7 @@ module Google
|
|
3502
3514
|
end
|
3503
3515
|
|
3504
3516
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
3505
|
-
# database resource level events into Condor platform.
|
3517
|
+
# database resource level events into Condor platform. Next ID: 8
|
3506
3518
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
|
3507
3519
|
include Google::Apis::Core::Hashable
|
3508
3520
|
|
@@ -3682,12 +3694,15 @@ module Google
|
|
3682
3694
|
# @return [String]
|
3683
3695
|
attr_accessor :provider_description
|
3684
3696
|
|
3685
|
-
# Required. The type of resource this ID is identifying. Ex
|
3686
|
-
#
|
3687
|
-
#
|
3688
|
-
# googleapis.com/
|
3689
|
-
#
|
3690
|
-
# googleapis.com/
|
3697
|
+
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
3698
|
+
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
|
3699
|
+
# googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
|
3700
|
+
# googleapis.com/Instance firestore.googleapis.com/Database, redis.googleapis.
|
3701
|
+
# com/Instance, redis.googleapis.com/Cluster, oracledatabase.googleapis.com/
|
3702
|
+
# cloudExadataInfrastructures oracledatabase.googleapis.com/cloudVmClusters
|
3703
|
+
# oracledatabase.googleapis.com/autonomousDatabases spanner.googleapis.com/
|
3704
|
+
# Instance, spanner.googleapis.com/Database, sqladmin.googleapis.com/Instance,
|
3705
|
+
# go/keep-sorted end REQUIRED Please refer go/condor-common-datamodel
|
3691
3706
|
# Corresponds to the JSON property `resourceType`
|
3692
3707
|
# @return [String]
|
3693
3708
|
attr_accessor :resource_type
|
@@ -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.31.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 = "20250605"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -854,6 +854,7 @@ module Google
|
|
854
854
|
property :max_prepared_statements, as: 'maxPreparedStatements'
|
855
855
|
property :min_pool_size, as: 'minPoolSize'
|
856
856
|
property :pool_mode, as: 'poolMode'
|
857
|
+
property :pooler_count, as: 'poolerCount'
|
857
858
|
property :query_wait_timeout, as: 'queryWaitTimeout'
|
858
859
|
property :server_idle_timeout, as: 'serverIdleTimeout'
|
859
860
|
collection :stats_users, as: 'statsUsers'
|
@@ -1263,6 +1264,7 @@ module Google
|
|
1263
1264
|
property :query_plans_per_minute, as: 'queryPlansPerMinute'
|
1264
1265
|
property :record_application_tags, as: 'recordApplicationTags'
|
1265
1266
|
property :track_active_queries, as: 'trackActiveQueries'
|
1267
|
+
property :track_client_address, as: 'trackClientAddress'
|
1266
1268
|
property :track_wait_event_types, as: 'trackWaitEventTypes'
|
1267
1269
|
property :track_wait_events, as: 'trackWaitEvents'
|
1268
1270
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.31.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_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.31.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:
|