google-apis-alloydb_v1 0.45.0 → 0.46.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: 45e9d24a9a0d84b01e3ca26e2150e5170f5908293416fb6cf84ea807db12f460
4
- data.tar.gz: 1495508ab9bf2749f3c2aceb8716d97003044b1349b507ff46265f802ac42789
3
+ metadata.gz: 90104fa18aabb04a7b09cd30f169c933765610e590e091cd827f6469e446ab2c
4
+ data.tar.gz: 8ed2da03736df8a74a220c9d105cd2952c4fb916f502e94db7a224e65b83b82a
5
5
  SHA512:
6
- metadata.gz: a1ff763e1f95052f994599cf7ebee5d10846d3e636989cb107a155dc587320b0c0e667cf41e1ca3c9ea40ab9279a1a41491ce6ba5833aaa58a40777cd18e107c
7
- data.tar.gz: cfbcd31e908f4a51812db2855e54e3740391ce6404862ac42d170b58bbd95f08fdd334033f00000bb1282608c2be9d19c20b1d6a43cf5ef9a4974287420368be
6
+ metadata.gz: b17044bd8e4831d4f5509a876c508f822794f6a5fe8864fcb5f17bf17d91cdac130b90d3a6b3439bb669711dff9ca868c753da26f819c3fdb96e271c9e705543
7
+ data.tar.gz: 1d25acca06c377c1e5b0d5398e6eaf8ab1409501ad80d9c43703dc82f2d5a00b199396393ceb2519c85f0565fcf32897814c88f25514d197ca24114f24f176bb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alloydb_v1
2
2
 
3
+ ### v0.46.0 (2025-09-28)
4
+
5
+ * Regenerated from discovery document revision 20250910
6
+
3
7
  ### v0.45.0 (2025-09-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20250904
@@ -780,6 +780,38 @@ module Google
780
780
  end
781
781
  end
782
782
 
783
+ # Configuration for Managed Connection Pool (MCP).
784
+ class ConnectionPoolConfig
785
+ include Google::Apis::Core::Hashable
786
+
787
+ # Optional. Whether to enable Managed Connection Pool (MCP).
788
+ # Corresponds to the JSON property `enabled`
789
+ # @return [Boolean]
790
+ attr_accessor :enabled
791
+ alias_method :enabled?, :enabled
792
+
793
+ # Optional. Connection Pool flags, as a list of "key": "value" pairs.
794
+ # Corresponds to the JSON property `flags`
795
+ # @return [Hash<String,String>]
796
+ attr_accessor :flags
797
+
798
+ # Output only. The number of running poolers per instance.
799
+ # Corresponds to the JSON property `poolerCount`
800
+ # @return [Fixnum]
801
+ attr_accessor :pooler_count
802
+
803
+ def initialize(**args)
804
+ update!(**args)
805
+ end
806
+
807
+ # Update properties of this object
808
+ def update!(**args)
809
+ @enabled = args[:enabled] if args.key?(:enabled)
810
+ @flags = args[:flags] if args.key?(:flags)
811
+ @pooler_count = args[:pooler_count] if args.key?(:pooler_count)
812
+ end
813
+ end
814
+
783
815
  # ContinuousBackupConfig describes the continuous backups recovery
784
816
  # configurations of a cluster.
785
817
  class ContinuousBackupConfig
@@ -1515,6 +1547,11 @@ module Google
1515
1547
  # @return [Google::Apis::AlloydbV1::ClientConnectionConfig]
1516
1548
  attr_accessor :client_connection_config
1517
1549
 
1550
+ # Configuration for Managed Connection Pool (MCP).
1551
+ # Corresponds to the JSON property `connectionPoolConfig`
1552
+ # @return [Google::Apis::AlloydbV1::ConnectionPoolConfig]
1553
+ attr_accessor :connection_pool_config
1554
+
1518
1555
  # Output only. Create time stamp
1519
1556
  # Corresponds to the JSON property `createTime`
1520
1557
  # @return [String]
@@ -1684,6 +1721,7 @@ module Google
1684
1721
  @annotations = args[:annotations] if args.key?(:annotations)
1685
1722
  @availability_type = args[:availability_type] if args.key?(:availability_type)
1686
1723
  @client_connection_config = args[:client_connection_config] if args.key?(:client_connection_config)
1724
+ @connection_pool_config = args[:connection_pool_config] if args.key?(:connection_pool_config)
1687
1725
  @create_time = args[:create_time] if args.key?(:create_time)
1688
1726
  @database_flags = args[:database_flags] if args.key?(:database_flags)
1689
1727
  @delete_time = args[:delete_time] if args.key?(:delete_time)
@@ -3492,7 +3530,7 @@ module Google
3492
3530
  end
3493
3531
 
3494
3532
  # DatabaseResourceFeed is the top level proto to be used to ingest different
3495
- # database resource level events into Condor platform. Next ID: 12
3533
+ # database resource level events into Condor platform. Next ID: 13
3496
3534
  class StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed
3497
3535
  include Google::Apis::Core::Hashable
3498
3536
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlloydbV1
18
18
  # Version of the google-apis-alloydb_v1 gem
19
- GEM_VERSION = "0.45.0"
19
+ GEM_VERSION = "0.46.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 = "20250904"
25
+ REVISION = "20250910"
26
26
  end
27
27
  end
28
28
  end
@@ -88,6 +88,12 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
+ class ConnectionPoolConfig
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
91
97
  class ContinuousBackupConfig
92
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
99
 
@@ -861,6 +867,15 @@ module Google
861
867
  end
862
868
  end
863
869
 
870
+ class ConnectionPoolConfig
871
+ # @private
872
+ class Representation < Google::Apis::Core::JsonRepresentation
873
+ property :enabled, as: 'enabled'
874
+ hash :flags, as: 'flags'
875
+ property :pooler_count, as: 'poolerCount'
876
+ end
877
+ end
878
+
864
879
  class ContinuousBackupConfig
865
880
  # @private
866
881
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1056,6 +1071,8 @@ module Google
1056
1071
  property :availability_type, as: 'availabilityType'
1057
1072
  property :client_connection_config, as: 'clientConnectionConfig', class: Google::Apis::AlloydbV1::ClientConnectionConfig, decorator: Google::Apis::AlloydbV1::ClientConnectionConfig::Representation
1058
1073
 
1074
+ property :connection_pool_config, as: 'connectionPoolConfig', class: Google::Apis::AlloydbV1::ConnectionPoolConfig, decorator: Google::Apis::AlloydbV1::ConnectionPoolConfig::Representation
1075
+
1059
1076
  property :create_time, as: 'createTime'
1060
1077
  hash :database_flags, as: 'databaseFlags'
1061
1078
  property :delete_time, as: 'deleteTime'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alloydb_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.45.0
4
+ version: 0.46.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.45.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alloydb_v1/v0.46.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alloydb_v1
62
62
  rdoc_options: []
63
63
  require_paths: