Reference documentation and code samples for the Cloud SQL Admin V1 API class Google::Cloud::Sql::V1::SqlOperationsService::Rest::Client.
REST client for the SqlOperationsService service.
Service to fetch operations for database instances.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::ConfigurationConfigure the SqlOperationsService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all SqlOperationsService clients ::Google::Cloud::Sql::V1::SqlOperationsService::Rest::Client.configure do |config| config.timeout = 10.0 end
#cancel
def cancel(request, options = nil) -> ::Google::Protobuf::Empty
def cancel(operation: nil, project: nil) -> ::Google::Protobuf::EmptyCancels an instance operation that has been performed on an instance.
def cancel(request, options = nil) -> ::Google::Protobuf::Emptycancel via a request object, either of type
Google::Cloud::Sql::V1::SqlOperationsCancelRequest or an equivalent Hash.
- request (::Google::Cloud::Sql::V1::SqlOperationsCancelRequest, ::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 cancel(operation: nil, project: nil) -> ::Google::Protobuf::Emptycancel 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).
- operation (::String) — Instance operation ID.
- project (::String) — Project ID of the project that contains the instance.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Protobuf::Empty)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call 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::SqlOperationsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Sql::V1::SqlOperationsCancelRequest.new # Call the cancel method. result = client.cancel request # The returned object is of type Google::Protobuf::Empty. p result
#configure
def configure() { |config| ... } -> Client::ConfigurationConfigure the SqlOperationsService 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)
#get
def get(request, options = nil) -> ::Google::Cloud::Sql::V1::Operation
def get(operation: nil, project: nil) -> ::Google::Cloud::Sql::V1::OperationRetrieves an instance operation that has been performed on an instance.
def get(request, options = nil) -> ::Google::Cloud::Sql::V1::Operationget via a request object, either of type
Google::Cloud::Sql::V1::SqlOperationsGetRequest or an equivalent Hash.
- request (::Google::Cloud::Sql::V1::SqlOperationsGetRequest, ::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 get(operation: nil, project: nil) -> ::Google::Cloud::Sql::V1::Operationget 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).
- operation (::String) — Required. Instance operation ID.
- project (::String) — Required. Project ID of the project that contains the instance.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Sql::V1::Operation)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call 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::SqlOperationsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Sql::V1::SqlOperationsGetRequest.new # Call the get method. result = client.get request # The returned object is of type Google::Cloud::Sql::V1::Operation. p result
#initialize
def initialize() { |config| ... } -> ClientCreate a new SqlOperationsService REST client object.
- (config) — Configure the SqlOperationsService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Sql::V1::SqlOperationsService::Rest::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Sql::V1::SqlOperationsService::Rest::Client.new do |config| config.timeout = 10.0 end
#list
def list(request, options = nil) -> ::Google::Cloud::Sql::V1::OperationsListResponse
def list(instance: nil, max_results: nil, page_token: nil, project: nil) -> ::Google::Cloud::Sql::V1::OperationsListResponseLists all instance operations that have been performed on the given Cloud SQL instance in the reverse chronological order of the start time.
def list(request, options = nil) -> ::Google::Cloud::Sql::V1::OperationsListResponselist via a request object, either of type
Google::Cloud::Sql::V1::SqlOperationsListRequest or an equivalent Hash.
- request (::Google::Cloud::Sql::V1::SqlOperationsListRequest, ::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(instance: nil, max_results: nil, page_token: nil, project: nil) -> ::Google::Cloud::Sql::V1::OperationsListResponselist 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).
- instance (::String) — Cloud SQL instance ID. This does not include the project ID.
- max_results (::Integer) — Maximum number of operations per response.
- page_token (::String) — A previously-returned page token representing part of the larger set of results to view.
- project (::String) — Project ID of the project that contains the instance.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Cloud::Sql::V1::OperationsListResponse)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call 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::SqlOperationsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Sql::V1::SqlOperationsListRequest.new # Call the list method. result = client.list request # The returned object is of type Google::Cloud::Sql::V1::OperationsListResponse. p result
#location_client
def location_client() -> Google::Cloud::Location::Locations::Rest::ClientGet the associated client for mix-in of the Locations.
- (Google::Cloud::Location::Locations::Rest::Client)
#logger
def logger() -> LoggerThe logger used for request/response debug logging.
- (Logger)
#universe_domain
def universe_domain() -> StringThe effective universe domain
- (String)