Reference documentation and code samples for the Cloud SQL Admin V1 API class Google::Cloud::Sql::V1::SqlFlagsService::Client.
Client for the SqlFlagsService service.
Service to manage database flags for Cloud SQL instances.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::ConfigurationConfigure the SqlFlagsService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all SqlFlagsService clients ::Google::Cloud::Sql::V1::SqlFlagsService::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::ConfigurationConfigure the SqlFlagsService Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#initialize
def initialize() { |config| ... } -> ClientCreate a new SqlFlagsService client object.
- (config) — Configure the SqlFlagsService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Sql::V1::SqlFlagsService::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Sql::V1::SqlFlagsService::Client.new do |config| config.timeout = 10.0 end
#list
def list(request, options = nil) -> ::Google::Cloud::Sql::V1::FlagsListResponse
def list(database_version: nil, flag_scope: nil) -> ::Google::Cloud::Sql::V1::FlagsListResponseLists all available database flags for Cloud SQL instances.
def list(request, options = nil) -> ::Google::Cloud::Sql::V1::FlagsListResponselist via a request object, either of type
Google::Cloud::Sql::V1::SqlFlagsListRequest or an equivalent Hash.
- request (::Google::Cloud::Sql::V1::SqlFlagsListRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list(database_version: nil, flag_scope: nil) -> ::Google::Cloud::Sql::V1::FlagsListResponselist via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- database_version (::String) — Database type and version you want to retrieve flags for. By default, this method returns flags for all database types and versions.
- flag_scope (::Google::Cloud::Sql::V1::SqlFlagScope) — Optional. Specify the scope of flags to be returned by SqlFlagsListService. Return list of database flags if unspecified.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Sql::V1::FlagsListResponse)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/sql/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Sql::V1::SqlFlagsService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Sql::V1::SqlFlagsListRequest.new # Call the list method. result = client.list request # The returned object is of type Google::Cloud::Sql::V1::FlagsListResponse. p result
#location_client
def location_client() -> Google::Cloud::Location::Locations::ClientGet the associated client for mix-in of the Locations.
- (Google::Cloud::Location::Locations::Client)
#logger
def logger() -> LoggerThe logger used for request/response debug logging.
- (Logger)
#universe_domain
def universe_domain() -> StringThe effective universe domain
- (String)