Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -364480,6 +364480,7 @@
"/sqladmin:v1/Settings/connectionPoolConfig": connection_pool_config
"/sqladmin:v1/Settings/connectorEnforcement": connector_enforcement
"/sqladmin:v1/Settings/crashSafeReplicationEnabled": crash_safe_replication_enabled
"/sqladmin:v1/Settings/dataApiAccess": data_api_access
"/sqladmin:v1/Settings/dataCacheConfig": data_cache_config
"/sqladmin:v1/Settings/dataDiskProvisionedIops": data_disk_provisioned_iops
"/sqladmin:v1/Settings/dataDiskProvisionedThroughput": data_disk_provisioned_throughput
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-sqladmin_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-sqladmin_v1

### v0.88.0 (2025-11-02)

* Regenerated from discovery document revision 20251019

### v0.87.0 (2025-10-19)

* Regenerated from discovery document revision 20251006
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ class CloneContext
# @return [Array<String>]
attr_accessor :database_names

# Name of the Cloud SQL instance to be created as a clone.
# Required. Name of the Cloud SQL instance to be created as a clone.
# Corresponds to the JSON property `destinationInstanceName`
# @return [String]
attr_accessor :destination_instance_name
Expand Down Expand Up @@ -5024,6 +5024,12 @@ class Settings
attr_accessor :crash_safe_replication_enabled
alias_method :crash_safe_replication_enabled?, :crash_safe_replication_enabled

# This parameter controls whether to allow using Data API to connect to the
# instance. Not allowed by default.
# Corresponds to the JSON property `dataApiAccess`
# @return [String]
attr_accessor :data_api_access

# Data cache configurations.
# Corresponds to the JSON property `dataCacheConfig`
# @return [Google::Apis::SqladminV1::DataCacheConfig]
Expand Down Expand Up @@ -5229,6 +5235,7 @@ def update!(**args)
@connection_pool_config = args[:connection_pool_config] if args.key?(:connection_pool_config)
@connector_enforcement = args[:connector_enforcement] if args.key?(:connector_enforcement)
@crash_safe_replication_enabled = args[:crash_safe_replication_enabled] if args.key?(:crash_safe_replication_enabled)
@data_api_access = args[:data_api_access] if args.key?(:data_api_access)
@data_cache_config = args[:data_cache_config] if args.key?(:data_cache_config)
@data_disk_provisioned_iops = args[:data_disk_provisioned_iops] if args.key?(:data_disk_provisioned_iops)
@data_disk_provisioned_throughput = args[:data_disk_provisioned_throughput] if args.key?(:data_disk_provisioned_throughput)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module SqladminV1
# Version of the google-apis-sqladmin_v1 gem
GEM_VERSION = "0.87.0"
GEM_VERSION = "0.88.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20251006"
REVISION = "20251019"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2172,6 +2172,7 @@ class Representation < Google::Apis::Core::JsonRepresentation

property :connector_enforcement, as: 'connectorEnforcement'
property :crash_safe_replication_enabled, as: 'crashSafeReplicationEnabled'
property :data_api_access, as: 'dataApiAccess'
property :data_cache_config, as: 'dataCacheConfig', class: Google::Apis::SqladminV1::DataCacheConfig, decorator: Google::Apis::SqladminV1::DataCacheConfig::Representation

property :data_disk_provisioned_iops, :numeric_string => true, as: 'dataDiskProvisionedIops'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -913,10 +913,10 @@ def add_instance_server_certificate(project, instance, fields: nil, quota_user:
# Creates a Cloud SQL instance as a clone of the source instance. Using this
# operation might cause your instance to restart.
# @param [String] project
# Project ID of the source as well as the clone Cloud SQL instance.
# Required. Project ID of the source as well as the clone Cloud SQL instance.
# @param [String] instance
# The ID of the Cloud SQL instance to be cloned (source). This does not include
# the project ID.
# Required. The ID of the Cloud SQL instance to be cloned (source). This does
# not include the project ID.
# @param [Google::Apis::SqladminV1::InstancesCloneRequest] instances_clone_request_object
# @param [String] fields
# Selector specifying which fields to include in a partial response.
Expand Down