Skip to content

Commit 7994d35

Browse files
feat: Automated regeneration of sqladmin v1 client (#24806)
Auto-created at 2025-11-02 09:49:38 +0000 using the toys pull request generator.
1 parent 5bef81e commit 7994d35

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364799,6 +364799,7 @@
364799364799
"/sqladmin:v1/Settings/connectionPoolConfig": connection_pool_config
364800364800
"/sqladmin:v1/Settings/connectorEnforcement": connector_enforcement
364801364801
"/sqladmin:v1/Settings/crashSafeReplicationEnabled": crash_safe_replication_enabled
364802+
"/sqladmin:v1/Settings/dataApiAccess": data_api_access
364802364803
"/sqladmin:v1/Settings/dataCacheConfig": data_cache_config
364803364804
"/sqladmin:v1/Settings/dataDiskProvisionedIops": data_disk_provisioned_iops
364804364805
"/sqladmin:v1/Settings/dataDiskProvisionedThroughput": data_disk_provisioned_throughput

generated/google-apis-sqladmin_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-sqladmin_v1
22

3+
### v0.88.0 (2025-11-02)
4+
5+
* Regenerated from discovery document revision 20251019
6+
37
### v0.87.0 (2025-10-19)
48

59
* Regenerated from discovery document revision 20251006

generated/google-apis-sqladmin_v1/lib/google/apis/sqladmin_v1/classes.rb

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ class CloneContext
746746
# @return [Array<String>]
747747
attr_accessor :database_names
748748

749-
# Name of the Cloud SQL instance to be created as a clone.
749+
# Required. Name of the Cloud SQL instance to be created as a clone.
750750
# Corresponds to the JSON property `destinationInstanceName`
751751
# @return [String]
752752
attr_accessor :destination_instance_name
@@ -5024,6 +5024,12 @@ class Settings
50245024
attr_accessor :crash_safe_replication_enabled
50255025
alias_method :crash_safe_replication_enabled?, :crash_safe_replication_enabled
50265026

5027+
# This parameter controls whether to allow using Data API to connect to the
5028+
# instance. Not allowed by default.
5029+
# Corresponds to the JSON property `dataApiAccess`
5030+
# @return [String]
5031+
attr_accessor :data_api_access
5032+
50275033
# Data cache configurations.
50285034
# Corresponds to the JSON property `dataCacheConfig`
50295035
# @return [Google::Apis::SqladminV1::DataCacheConfig]
@@ -5229,6 +5235,7 @@ def update!(**args)
52295235
@connection_pool_config = args[:connection_pool_config] if args.key?(:connection_pool_config)
52305236
@connector_enforcement = args[:connector_enforcement] if args.key?(:connector_enforcement)
52315237
@crash_safe_replication_enabled = args[:crash_safe_replication_enabled] if args.key?(:crash_safe_replication_enabled)
5238+
@data_api_access = args[:data_api_access] if args.key?(:data_api_access)
52325239
@data_cache_config = args[:data_cache_config] if args.key?(:data_cache_config)
52335240
@data_disk_provisioned_iops = args[:data_disk_provisioned_iops] if args.key?(:data_disk_provisioned_iops)
52345241
@data_disk_provisioned_throughput = args[:data_disk_provisioned_throughput] if args.key?(:data_disk_provisioned_throughput)

generated/google-apis-sqladmin_v1/lib/google/apis/sqladmin_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module SqladminV1
1818
# Version of the google-apis-sqladmin_v1 gem
19-
GEM_VERSION = "0.87.0"
19+
GEM_VERSION = "0.88.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20251006"
25+
REVISION = "20251019"
2626
end
2727
end
2828
end

generated/google-apis-sqladmin_v1/lib/google/apis/sqladmin_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2172,6 +2172,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
21722172

21732173
property :connector_enforcement, as: 'connectorEnforcement'
21742174
property :crash_safe_replication_enabled, as: 'crashSafeReplicationEnabled'
2175+
property :data_api_access, as: 'dataApiAccess'
21752176
property :data_cache_config, as: 'dataCacheConfig', class: Google::Apis::SqladminV1::DataCacheConfig, decorator: Google::Apis::SqladminV1::DataCacheConfig::Representation
21762177

21772178
property :data_disk_provisioned_iops, :numeric_string => true, as: 'dataDiskProvisionedIops'

generated/google-apis-sqladmin_v1/lib/google/apis/sqladmin_v1/service.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -913,10 +913,10 @@ def add_instance_server_certificate(project, instance, fields: nil, quota_user:
913913
# Creates a Cloud SQL instance as a clone of the source instance. Using this
914914
# operation might cause your instance to restart.
915915
# @param [String] project
916-
# Project ID of the source as well as the clone Cloud SQL instance.
916+
# Required. Project ID of the source as well as the clone Cloud SQL instance.
917917
# @param [String] instance
918-
# The ID of the Cloud SQL instance to be cloned (source). This does not include
919-
# the project ID.
918+
# Required. The ID of the Cloud SQL instance to be cloned (source). This does
919+
# not include the project ID.
920920
# @param [Google::Apis::SqladminV1::InstancesCloneRequest] instances_clone_request_object
921921
# @param [String] fields
922922
# Selector specifying which fields to include in a partial response.

0 commit comments

Comments
 (0)