lib/google/cloud/memorystore/v1/memorystore/rest/client.rb in google-cloud-memorystore-v1-0.1.0 vs lib/google/cloud/memorystore/v1/memorystore/rest/client.rb in google-cloud-memorystore-v1-0.2.0
- old
+ new
@@ -177,19 +177,31 @@
@memorystore_stub = ::Google::Cloud::Memorystore::V1::Memorystore::Rest::ServiceStub.new(
endpoint: @config.endpoint,
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
universe_domain: @config.universe_domain,
- credentials: credentials
+ credentials: credentials,
+ logger: @config.logger
)
+ @memorystore_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 = @memorystore_stub.endpoint
config.universe_domain = @memorystore_stub.universe_domain
config.bindings_override = @config.bindings_override
+ config.logger = @memorystore_stub.logger if config.respond_to? :logger=
end
end
##
# Get the associated client for long-running operations.
@@ -203,10 +215,19 @@
#
# @return [Google::Cloud::Location::Locations::Rest::Client]
#
attr_reader :location_client
+ ##
+ # The logger used for request/response debug logging.
+ #
+ # @return [Logger]
+ #
+ def logger
+ @memorystore_stub.logger
+ end
+
# Service calls
##
# Lists Instances in a given project and location.
#
@@ -293,11 +314,10 @@
metadata: @config.metadata,
retry_policy: @config.retry_policy
@memorystore_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
@@ -373,11 +393,10 @@
metadata: @config.metadata,
retry_policy: @config.retry_policy
@memorystore_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
@@ -488,11 +507,11 @@
retry_policy: @config.retry_policy
@memorystore_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
@@ -592,11 +611,11 @@
retry_policy: @config.retry_policy
@memorystore_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
@@ -694,11 +713,11 @@
retry_policy: @config.retry_policy
@memorystore_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
@@ -775,11 +794,10 @@
metadata: @config.metadata,
retry_policy: @config.retry_policy
@memorystore_stub.get_certificate_authority 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
@@ -855,10 +873,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
@@ -883,9 +906,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?