google-apis-sqladmin_v1 0.78.0 → 0.79.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: 6592d8ef19a47c4597f3c9ec422300da44abc576062921f5877366acf72ff058
4
- data.tar.gz: 2f0ad45d52c01e11888c6b89d28599b99a26f8f700a92fadc5a7a4bdbb95444c
3
+ metadata.gz: '09e0235d93c1459393989f38bb8781027a5840fc583b381883af22c8f67857ea'
4
+ data.tar.gz: 9a96dee4ceb5f7e74cb76147e36164ed919c73271bfb5b67452d35b4b2b16d4e
5
5
  SHA512:
6
- metadata.gz: 1b13ce8b99a4b0c2775d5d8f8cb18860f4b952257141562962a7fd3e57decc77b1173460f85305f3f11c7e60b2e96b486edae244997a855ba597453f33df4c91
7
- data.tar.gz: d4ffab8dae71aa1e071e75510e2191965556e5449fafc64de5d3ddab75b5bd908d59ed88674de5e52921a989ae9a5d753e168b2ba7f59c188dda92a792929325
6
+ metadata.gz: 5422c54a42a1c8a7b570642cf01874db73d0023e727f3d74a400480343fa1b88d09c3c534e1d22bdb88e75af4b8b0aa4b9cd14e1c21e0de9dcfa7229216fc30e
7
+ data.tar.gz: 5cf61c8e58233f99aab29fe950b4b224ab2e23c904c2aeb495c1b21955d149dd89e44b50ae208ac3065265a3d3369b289e53d990ba9a7b11797d0395d51a8ef5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-sqladmin_v1
2
2
 
3
+ ### v0.79.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250508
6
+
3
7
  ### v0.78.0 (2025-05-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20250502
@@ -951,7 +951,7 @@ module Google
951
951
  attr_accessor :connection_pooling_enabled
952
952
  alias_method :connection_pooling_enabled?, :connection_pooling_enabled
953
953
 
954
- # Optional. List of connection pool configuration flags
954
+ # Optional. List of connection pool configuration flags.
955
955
  # Corresponds to the JSON property `flags`
956
956
  # @return [Array<Google::Apis::SqladminV1::ConnectionPoolFlags>]
957
957
  attr_accessor :flags
@@ -2803,8 +2803,8 @@ module Google
2803
2803
  attr_accessor :query_plans_per_minute
2804
2804
 
2805
2805
  # Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256-
2806
- # 4500 bytes. Query length more than this field value will be truncated to this
2807
- # value. When unset, query length will be the default value. Changing query
2806
+ # 4500 bytes. Query lengths greater than this field value will be truncated to
2807
+ # this value. When unset, query length will be the default value. Changing query
2808
2808
  # length will restart the database.
2809
2809
  # Corresponds to the JSON property `queryStringLength`
2810
2810
  # @return [Fixnum]
@@ -4224,10 +4224,10 @@ module Google
4224
4224
  class PscAutoConnectionConfig
4225
4225
  include Google::Apis::Core::Hashable
4226
4226
 
4227
- # The consumer network of this consumer endpoint. This must be a resource path
4228
- # that includes both the host project and the network name. For example, `
4229
- # projects/project1/global/networks/network1`. The consumer host project of this
4230
- # network might be different from the consumer service project.
4227
+ # Optional. The consumer network of this consumer endpoint. This must be a
4228
+ # resource path that includes both the host project and the network name. For
4229
+ # example, `projects/project1/global/networks/network1`. The consumer host
4230
+ # project of this network might be different from the consumer service project.
4231
4231
  # Corresponds to the JSON property `consumerNetwork`
4232
4232
  # @return [String]
4233
4233
  attr_accessor :consumer_network
@@ -4237,8 +4237,9 @@ module Google
4237
4237
  # @return [String]
4238
4238
  attr_accessor :consumer_network_status
4239
4239
 
4240
- # This is the project ID of consumer service project of this consumer endpoint.
4241
- # Optional. This is only applicable if consumer_network is a shared vpc network.
4240
+ # Optional. This is the project ID of consumer service project of this consumer
4241
+ # endpoint. Optional. This is only applicable if consumer_network is a shared
4242
+ # vpc network.
4242
4243
  # Corresponds to the JSON property `consumerProject`
4243
4244
  # @return [String]
4244
4245
  attr_accessor :consumer_project
@@ -4279,6 +4280,13 @@ module Google
4279
4280
  # @return [Array<String>]
4280
4281
  attr_accessor :allowed_consumer_projects
4281
4282
 
4283
+ # Optional. The network attachment of the consumer network that the Private
4284
+ # Service Connect enabled Cloud SQL instance is authorized to connect via PSC
4285
+ # interface. format: projects/PROJECT/regions/REGION/networkAttachments/ID
4286
+ # Corresponds to the JSON property `networkAttachmentUri`
4287
+ # @return [String]
4288
+ attr_accessor :network_attachment_uri
4289
+
4282
4290
  # Optional. The list of settings for requested Private Service Connect consumer
4283
4291
  # endpoints that can be used to connect to this Cloud SQL instance.
4284
4292
  # Corresponds to the JSON property `pscAutoConnections`
@@ -4298,6 +4306,7 @@ module Google
4298
4306
  # Update properties of this object
4299
4307
  def update!(**args)
4300
4308
  @allowed_consumer_projects = args[:allowed_consumer_projects] if args.key?(:allowed_consumer_projects)
4309
+ @network_attachment_uri = args[:network_attachment_uri] if args.key?(:network_attachment_uri)
4301
4310
  @psc_auto_connections = args[:psc_auto_connections] if args.key?(:psc_auto_connections)
4302
4311
  @psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
4303
4312
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SqladminV1
18
18
  # Version of the google-apis-sqladmin_v1 gem
19
- GEM_VERSION = "0.78.0"
19
+ GEM_VERSION = "0.79.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250502"
25
+ REVISION = "20250508"
26
26
  end
27
27
  end
28
28
  end
@@ -1884,6 +1884,7 @@ module Google
1884
1884
  # @private
1885
1885
  class Representation < Google::Apis::Core::JsonRepresentation
1886
1886
  collection :allowed_consumer_projects, as: 'allowedConsumerProjects'
1887
+ property :network_attachment_uri, as: 'networkAttachmentUri'
1887
1888
  collection :psc_auto_connections, as: 'pscAutoConnections', class: Google::Apis::SqladminV1::PscAutoConnectionConfig, decorator: Google::Apis::SqladminV1::PscAutoConnectionConfig::Representation
1888
1889
 
1889
1890
  property :psc_enabled, as: 'pscEnabled'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sqladmin_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.78.0
4
+ version: 0.79.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-sqladmin_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.78.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.79.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
62
62
  rdoc_options: []
63
63
  require_paths: