google-apis-alloydb_v1alpha 0.28.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: 5a5f4f5df5e68d65909c466336a405179345b922aef204966d47f08220dece4c
4
- data.tar.gz: 7f20dc599d3c75873a7939bcbde0099fe15cc55e8bc71d58e4018c89b7821ed3
3
+ metadata.gz: ef6dfc5bdef4e08c90132aca981d7c51566d7a06acd6e1c60e058af5c83cc002
4
+ data.tar.gz: b46f5104857d726c9fa6960a25c457b37bcd974b6659030da671611591f39406
5
5
  SHA512:
6
- metadata.gz: a8ecb5b5868d8209c6daf9f70b42eb371ff58442eae07d1c8124bfd46ff25f6c6548ad3f0243abc726a16db5dcf79d68dbf2c4e9f7119890157365c17ac6d627
7
- data.tar.gz: 473cdcac27f5e5b0db0943a627d7c1fb922a097e911b9b142dddfd53764d7b823f5b1b59f0f419aeb1c090e46ee656616707db901900ab5ccd0d9b050651a6e9
6
+ metadata.gz: 185ce28b5e0e2c2f51bbd9002be0b5b2a6da0afd883a9bc2be39481d77967c737026151c699f5a3f7231a9cae91847725c0445e129ff23302f6a9249ad53f570
7
+ data.tar.gz: bfdcb23ff0faca5ad0ecb40c3284dd4357e0c7ec2421a45a2900c532a414f99cb73bd74a0db27483517b13d4f7bf6f35917ce4d2e75be12ab2f662faa73e98a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-alloydb_v1alpha
2
2
 
3
+ ### v0.30.0 (2025-06-08)
4
+
5
+ * Regenerated from discovery document revision 20250529
6
+
7
+ ### v0.29.0 (2025-06-01)
8
+
9
+ * Regenerated from discovery document revision 20250522
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.28.0 (2025-05-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20250508
@@ -623,6 +623,14 @@ module Google
623
623
  # @return [Google::Apis::AlloydbV1alpha::SecondaryConfig]
624
624
  attr_accessor :secondary_config
625
625
 
626
+ # Output only. AlloyDB per-cluster service agent email. This service account is
627
+ # created per-cluster per-project, and is different from that of the primary
628
+ # service agent which is created per-project. The service account naming format
629
+ # is subject to change.
630
+ # Corresponds to the JSON property `serviceAccountEmail`
631
+ # @return [String]
632
+ attr_accessor :service_account_email
633
+
626
634
  # SSL configuration.
627
635
  # Corresponds to the JSON property `sslConfig`
628
636
  # @return [Google::Apis::AlloydbV1alpha::SslConfig]
@@ -696,6 +704,7 @@ module Google
696
704
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
697
705
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
698
706
  @secondary_config = args[:secondary_config] if args.key?(:secondary_config)
707
+ @service_account_email = args[:service_account_email] if args.key?(:service_account_email)
699
708
  @ssl_config = args[:ssl_config] if args.key?(:ssl_config)
700
709
  @state = args[:state] if args.key?(:state)
701
710
  @subscription_type = args[:subscription_type] if args.key?(:subscription_type)
@@ -873,6 +882,11 @@ module Google
873
882
  # @return [String]
874
883
  attr_accessor :pool_mode
875
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
+
876
890
  # Optional. Deprecated. Use 'flags' instead. The maximum number of seconds
877
891
  # queries are allowed to spend waiting for execution. If the query is not
878
892
  # assigned to a server during that time, the client is disconnected. 0 disables.
@@ -907,6 +921,7 @@ module Google
907
921
  @max_prepared_statements = args[:max_prepared_statements] if args.key?(:max_prepared_statements)
908
922
  @min_pool_size = args[:min_pool_size] if args.key?(:min_pool_size)
909
923
  @pool_mode = args[:pool_mode] if args.key?(:pool_mode)
924
+ @pooler_count = args[:pooler_count] if args.key?(:pooler_count)
910
925
  @query_wait_timeout = args[:query_wait_timeout] if args.key?(:query_wait_timeout)
911
926
  @server_idle_timeout = args[:server_idle_timeout] if args.key?(:server_idle_timeout)
912
927
  @stats_users = args[:stats_users] if args.key?(:stats_users)
@@ -1955,7 +1970,7 @@ module Google
1955
1970
  end
1956
1971
  end
1957
1972
 
1958
- # Details regarding the upgrade of instaces associated with a cluster.
1973
+ # Details regarding the upgrade of instances associated with a cluster.
1959
1974
  class InstanceUpgradeDetails
1960
1975
  include Google::Apis::Core::Hashable
1961
1976
 
@@ -2444,6 +2459,12 @@ module Google
2444
2459
  attr_accessor :track_active_queries
2445
2460
  alias_method :track_active_queries?, :track_active_queries
2446
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
+
2447
2468
  # Output only. Track wait event types during query execution for an instance.
2448
2469
  # This flag is turned "on" by default but tracking is enabled only after
2449
2470
  # observability enabled flag is also turned on. This is read-only flag and only
@@ -2474,6 +2495,7 @@ module Google
2474
2495
  @query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
2475
2496
  @record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
2476
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)
2477
2499
  @track_wait_event_types = args[:track_wait_event_types] if args.key?(:track_wait_event_types)
2478
2500
  @track_wait_events = args[:track_wait_events] if args.key?(:track_wait_events)
2479
2501
  end
@@ -3712,7 +3734,10 @@ module Google
3712
3734
  # alloydb.googleapis.com/Instance, spanner.googleapis.com/Instance, spanner.
3713
3735
  # googleapis.com/Database, firestore.googleapis.com/Database, sqladmin.
3714
3736
  # googleapis.com/Instance, bigtableadmin.googleapis.com/Cluster, bigtableadmin.
3715
- # googleapis.com/Instance REQUIRED Please refer go/condor-common-datamodel
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
3716
3741
  # Corresponds to the JSON property `resourceType`
3717
3742
  # @return [String]
3718
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.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250508"
25
+ REVISION = "20250529"
26
26
  end
27
27
  end
28
28
  end
@@ -817,6 +817,7 @@ module Google
817
817
  property :satisfies_pzs, as: 'satisfiesPzs'
818
818
  property :secondary_config, as: 'secondaryConfig', class: Google::Apis::AlloydbV1alpha::SecondaryConfig, decorator: Google::Apis::AlloydbV1alpha::SecondaryConfig::Representation
819
819
 
820
+ property :service_account_email, as: 'serviceAccountEmail'
820
821
  property :ssl_config, as: 'sslConfig', class: Google::Apis::AlloydbV1alpha::SslConfig, decorator: Google::Apis::AlloydbV1alpha::SslConfig::Representation
821
822
 
822
823
  property :state, as: 'state'
@@ -867,6 +868,7 @@ module Google
867
868
  property :max_prepared_statements, as: 'maxPreparedStatements'
868
869
  property :min_pool_size, as: 'minPoolSize'
869
870
  property :pool_mode, as: 'poolMode'
871
+ property :pooler_count, as: 'poolerCount'
870
872
  property :query_wait_timeout, as: 'queryWaitTimeout'
871
873
  property :server_idle_timeout, as: 'serverIdleTimeout'
872
874
  collection :stats_users, as: 'statsUsers'
@@ -1277,6 +1279,7 @@ module Google
1277
1279
  property :query_plans_per_minute, as: 'queryPlansPerMinute'
1278
1280
  property :record_application_tags, as: 'recordApplicationTags'
1279
1281
  property :track_active_queries, as: 'trackActiveQueries'
1282
+ property :track_client_address, as: 'trackClientAddress'
1280
1283
  property :track_wait_event_types, as: 'trackWaitEventTypes'
1281
1284
  property :track_wait_events, as: 'trackWaitEvents'
1282
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.28.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.28.0
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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for AlloyDB API V1alpha
79
79
  test_files: []