lib/google/cloud/parallelstore/v1/parallelstore/rest/client.rb in google-cloud-parallelstore-v1-0.1.0 vs lib/google/cloud/parallelstore/v1/parallelstore/rest/client.rb in google-cloud-parallelstore-v1-0.2.0
- old
+ new
@@ -170,19 +170,31 @@
@parallelstore_stub = ::Google::Cloud::Parallelstore::V1::Parallelstore::Rest::ServiceStub.new(
endpoint: @config.endpoint,
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
universe_domain: @config.universe_domain,
- credentials: credentials
+ credentials: credentials,
+ logger: @config.logger
)
+ @parallelstore_stub.logger(stub: true)&.info do |entry|
+ entry.set_system_name
+ entry.set_service
+ entry.message = "Created client for #{entry.service}"
+ entry.set_credentials_fields credentials
+ entry.set "customEndpoint", @config.endpoint if @config.endpoint
+ entry.set "defaultTimeout", @config.timeout if @config.timeout
+ entry.set "quotaProject", @quota_project_id if @quota_project_id
+ end
+
@location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
config.credentials = credentials
config.quota_project = @quota_project_id
config.endpoint = @parallelstore_stub.endpoint
config.universe_domain = @parallelstore_stub.universe_domain
config.bindings_override = @config.bindings_override
+ config.logger = @parallelstore_stub.logger if config.respond_to? :logger=
end
end
##
# Get the associated client for long-running operations.
@@ -196,10 +208,19 @@
#
# @return [Google::Cloud::Location::Locations::Rest::Client]
#
attr_reader :location_client
+ ##
+ # The logger used for request/response debug logging.
+ #
+ # @return [Logger]
+ #
+ def logger
+ @parallelstore_stub.logger
+ end
+
# Service calls
##
# Lists all instances in a given project and location.
#
@@ -288,11 +309,10 @@
metadata: @config.metadata,
retry_policy: @config.retry_policy
@parallelstore_stub.list_instances request, options do |result, operation|
yield result, operation if block_given?
- return result
end
rescue ::Gapic::Rest::Error => e
raise ::Google::Cloud::Error.from_error(e)
end
@@ -368,11 +388,10 @@
metadata: @config.metadata,
retry_policy: @config.retry_policy
@parallelstore_stub.get_instance request, options do |result, operation|
yield result, operation if block_given?
- return result
end
rescue ::Gapic::Rest::Error => e
raise ::Google::Cloud::Error.from_error(e)
end
@@ -481,11 +500,11 @@
retry_policy: @config.retry_policy
@parallelstore_stub.create_instance request, options do |result, operation|
result = ::Gapic::Operation.new result, @operations_client, options: options
yield result, operation if block_given?
- return result
+ throw :response, result
end
rescue ::Gapic::Rest::Error => e
raise ::Google::Cloud::Error.from_error(e)
end
@@ -587,11 +606,11 @@
retry_policy: @config.retry_policy
@parallelstore_stub.update_instance request, options do |result, operation|
result = ::Gapic::Operation.new result, @operations_client, options: options
yield result, operation if block_given?
- return result
+ throw :response, result
end
rescue ::Gapic::Rest::Error => e
raise ::Google::Cloud::Error.from_error(e)
end
@@ -688,11 +707,11 @@
retry_policy: @config.retry_policy
@parallelstore_stub.delete_instance request, options do |result, operation|
result = ::Gapic::Operation.new result, @operations_client, options: options
yield result, operation if block_given?
- return result
+ throw :response, result
end
rescue ::Gapic::Rest::Error => e
raise ::Google::Cloud::Error.from_error(e)
end
@@ -805,11 +824,11 @@
retry_policy: @config.retry_policy
@parallelstore_stub.import_data request, options do |result, operation|
result = ::Gapic::Operation.new result, @operations_client, options: options
yield result, operation if block_given?
- return result
+ throw :response, result
end
rescue ::Gapic::Rest::Error => e
raise ::Google::Cloud::Error.from_error(e)
end
@@ -921,11 +940,11 @@
retry_policy: @config.retry_policy
@parallelstore_stub.export_data request, options do |result, operation|
result = ::Gapic::Operation.new result, @operations_client, options: options
yield result, operation if block_given?
- return result
+ throw :response, result
end
rescue ::Gapic::Rest::Error => e
raise ::Google::Cloud::Error.from_error(e)
end
@@ -1001,10 +1020,15 @@
# @!attribute [rw] universe_domain
# The universe domain within which to make requests. This determines the
# default endpoint URL. The default value of nil uses the environment
# universe (usually the default "googleapis.com" universe).
# @return [::String,nil]
+ # @!attribute [rw] logger
+ # A custom logger to use for request/response debug logging, or the value
+ # `:default` (the default) to construct a default logger, or `nil` to
+ # explicitly disable logging.
+ # @return [::Logger,:default,nil]
#
class Configuration
extend ::Gapic::Config
# @private
@@ -1029,9 +1053,10 @@
# Overrides for http bindings for the RPCs of this service
# are only used when this service is used as mixin, and only
# by the host service.
# @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
config_attr :bindings_override, {}, ::Hash, nil
+ config_attr :logger, :default, ::Logger, nil, :default
# @private
def initialize parent_config = nil
@parent_config = parent_config unless parent_config.nil?