google-apis-alloydb_v1alpha 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: b26488dc7fef7e79c60286fd4f5b53ceb423a457dfba108178e4d82a3a6c3994
|
4
|
+
data.tar.gz: 85392f8668376c849cf1d6468b04a9ba06b9c563f6249b8647fe9cadb0aab879
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa58d9b351d5289083b1c2ce602eea44375ffd297d580efacec3dcb4f38fe263b60e037dd21937c0343917a8e1556763586e136242406862bdf02c0cb358608d
|
7
|
+
data.tar.gz: 766efba3987d83246c819c807b5804e3e675c74f3721be74004829a017fdcb5608d9795aef4048f4634a4cd0350e619d6fc83787149d1ed620e189b091fd7240
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-alloydb_v1alpha
|
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
|
@@ -623,10 +623,9 @@ module Google
|
|
623
623
|
# @return [Google::Apis::AlloydbV1alpha::SecondaryConfig]
|
624
624
|
attr_accessor :secondary_config
|
625
625
|
|
626
|
-
# Output only. AlloyDB per-cluster service
|
627
|
-
# created per-cluster per-project, and is different from
|
628
|
-
#
|
629
|
-
# is subject to change.
|
626
|
+
# Output only. AlloyDB per-cluster service account. This service account is
|
627
|
+
# created per-cluster per-project, and is different from the per-project service
|
628
|
+
# account. The per-cluster service account naming format is subject to change.
|
630
629
|
# Corresponds to the JSON property `serviceAccountEmail`
|
631
630
|
# @return [String]
|
632
631
|
attr_accessor :service_account_email
|
@@ -882,6 +881,11 @@ module Google
|
|
882
881
|
# @return [String]
|
883
882
|
attr_accessor :pool_mode
|
884
883
|
|
884
|
+
# Output only. The number of running poolers per instance.
|
885
|
+
# Corresponds to the JSON property `poolerCount`
|
886
|
+
# @return [Fixnum]
|
887
|
+
attr_accessor :pooler_count
|
888
|
+
|
885
889
|
# Optional. Deprecated. Use 'flags' instead. The maximum number of seconds
|
886
890
|
# queries are allowed to spend waiting for execution. If the query is not
|
887
891
|
# assigned to a server during that time, the client is disconnected. 0 disables.
|
@@ -916,6 +920,7 @@ module Google
|
|
916
920
|
@max_prepared_statements = args[:max_prepared_statements] if args.key?(:max_prepared_statements)
|
917
921
|
@min_pool_size = args[:min_pool_size] if args.key?(:min_pool_size)
|
918
922
|
@pool_mode = args[:pool_mode] if args.key?(:pool_mode)
|
923
|
+
@pooler_count = args[:pooler_count] if args.key?(:pooler_count)
|
919
924
|
@query_wait_timeout = args[:query_wait_timeout] if args.key?(:query_wait_timeout)
|
920
925
|
@server_idle_timeout = args[:server_idle_timeout] if args.key?(:server_idle_timeout)
|
921
926
|
@stats_users = args[:stats_users] if args.key?(:stats_users)
|
@@ -1917,9 +1922,9 @@ module Google
|
|
1917
1922
|
# Optional. Name of the allocated IP range for the private IP AlloyDB instance,
|
1918
1923
|
# for example: "google-managed-services-default". If set, the instance IPs will
|
1919
1924
|
# be created from this allocated range and will override the IP range used by
|
1920
|
-
# the parent cluster. The range name must comply with [RFC 1035](http://
|
1921
|
-
#
|
1922
|
-
# regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
|
1925
|
+
# the parent cluster. The range name must comply with [RFC 1035](http://
|
1926
|
+
# datatracker.ietf.org/doc/html/rfc1035). Specifically, the name must be 1-63
|
1927
|
+
# characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?.
|
1923
1928
|
# Corresponds to the JSON property `allocatedIpRangeOverride`
|
1924
1929
|
# @return [String]
|
1925
1930
|
attr_accessor :allocated_ip_range_override
|
@@ -2453,6 +2458,12 @@ module Google
|
|
2453
2458
|
attr_accessor :track_active_queries
|
2454
2459
|
alias_method :track_active_queries?, :track_active_queries
|
2455
2460
|
|
2461
|
+
# Track client address for an instance. If not set, default value is "off".
|
2462
|
+
# Corresponds to the JSON property `trackClientAddress`
|
2463
|
+
# @return [Boolean]
|
2464
|
+
attr_accessor :track_client_address
|
2465
|
+
alias_method :track_client_address?, :track_client_address
|
2466
|
+
|
2456
2467
|
# Output only. Track wait event types during query execution for an instance.
|
2457
2468
|
# This flag is turned "on" by default but tracking is enabled only after
|
2458
2469
|
# observability enabled flag is also turned on. This is read-only flag and only
|
@@ -2483,6 +2494,7 @@ module Google
|
|
2483
2494
|
@query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
|
2484
2495
|
@record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
|
2485
2496
|
@track_active_queries = args[:track_active_queries] if args.key?(:track_active_queries)
|
2497
|
+
@track_client_address = args[:track_client_address] if args.key?(:track_client_address)
|
2486
2498
|
@track_wait_event_types = args[:track_wait_event_types] if args.key?(:track_wait_event_types)
|
2487
2499
|
@track_wait_events = args[:track_wait_events] if args.key?(:track_wait_events)
|
2488
2500
|
end
|
@@ -3536,7 +3548,7 @@ module Google
|
|
3536
3548
|
end
|
3537
3549
|
|
3538
3550
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
3539
|
-
# database resource level events into Condor platform.
|
3551
|
+
# database resource level events into Condor platform. Next ID: 8
|
3540
3552
|
class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
|
3541
3553
|
include Google::Apis::Core::Hashable
|
3542
3554
|
|
@@ -3716,12 +3728,15 @@ module Google
|
|
3716
3728
|
# @return [String]
|
3717
3729
|
attr_accessor :provider_description
|
3718
3730
|
|
3719
|
-
# Required. The type of resource this ID is identifying. Ex
|
3720
|
-
#
|
3721
|
-
#
|
3722
|
-
# googleapis.com/
|
3723
|
-
#
|
3724
|
-
# googleapis.com/
|
3731
|
+
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
3732
|
+
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
|
3733
|
+
# googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
|
3734
|
+
# googleapis.com/Instance firestore.googleapis.com/Database, redis.googleapis.
|
3735
|
+
# com/Instance, redis.googleapis.com/Cluster, oracledatabase.googleapis.com/
|
3736
|
+
# cloudExadataInfrastructures oracledatabase.googleapis.com/cloudVmClusters
|
3737
|
+
# oracledatabase.googleapis.com/autonomousDatabases spanner.googleapis.com/
|
3738
|
+
# Instance, spanner.googleapis.com/Database, sqladmin.googleapis.com/Instance,
|
3739
|
+
# go/keep-sorted end REQUIRED Please refer go/condor-common-datamodel
|
3725
3740
|
# Corresponds to the JSON property `resourceType`
|
3726
3741
|
# @return [String]
|
3727
3742
|
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.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
|
@@ -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.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_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.31.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:
|