lib/google/cloud/monitoring/dashboard/v1/dashboards_service/client.rb in google-cloud-monitoring-dashboard-v1-0.6.2 vs lib/google/cloud/monitoring/dashboard/v1/dashboards_service/client.rb in google-cloud-monitoring-dashboard-v1-0.6.3
- old
+ new
@@ -41,18 +41,17 @@
# Configure the DashboardsService Client class.
#
# See {::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client::Configuration}
# for a description of the configuration fields.
#
- # ## Example
+ # @example
#
- # To modify the configuration for all DashboardsService clients:
+ # # Modify the configuration for all DashboardsService clients
+ # ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.configure do |config|
+ # config.timeout = 10.0
+ # end
#
- # ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.configure do |config|
- # config.timeout = 10.0
- # end
- #
# @yield [config] Configure the Client client.
# @yieldparam config [Client::Configuration]
#
# @return [Client::Configuration]
#
@@ -105,24 +104,20 @@
end
##
# Create a new DashboardsService client object.
#
- # ## Examples
+ # @example
#
- # To create a new DashboardsService client with the default
- # configuration:
+ # # Create a client using the default configuration
+ # client = ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.new
#
- # client = ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.new
+ # # Create a client using a custom configuration
+ # client = ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.new do |config|
+ # config.timeout = 10.0
+ # end
#
- # To create a new DashboardsService client with a custom
- # configuration:
- #
- # client = ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.new do |config|
- # config.timeout = 10.0
- # end
- #
# @yield [config] Configure the DashboardsService client.
# @yieldparam config [Client::Configuration]
#
def initialize
# These require statements are intentionally placed here to initialize
@@ -137,14 +132,13 @@
# Yield the configuration if needed
yield @config if block_given?
# Create credentials
credentials = @config.credentials
- # Use self-signed JWT if the scope and endpoint are unchanged from default,
+ # Use self-signed JWT if the endpoint is unchanged from default,
# but only if the default endpoint does not have a region prefix.
- enable_self_signed_jwt = @config.scope == Client.configure.scope &&
- @config.endpoint == Client.configure.endpoint &&
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
!@config.endpoint.split(".").first.include?("-")
credentials ||= Credentials.default scope: @config.scope,
enable_self_signed_jwt: enable_self_signed_jwt
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
credentials = Credentials.new credentials, scope: @config.scope
@@ -226,11 +220,13 @@
metadata[:"x-goog-request-params"] ||= request_params_header
options.apply_defaults timeout: @config.rpcs.create_dashboard.timeout,
metadata: metadata,
retry_policy: @config.rpcs.create_dashboard.retry_policy
- options.apply_defaults metadata: @config.metadata,
+
+ options.apply_defaults timeout: @config.timeout,
+ metadata: @config.metadata,
retry_policy: @config.retry_policy
@dashboards_service_stub.call_rpc :create_dashboard, request, options: options do |response, operation|
yield response, operation if block_given?
return response
@@ -305,11 +301,13 @@
metadata[:"x-goog-request-params"] ||= request_params_header
options.apply_defaults timeout: @config.rpcs.list_dashboards.timeout,
metadata: metadata,
retry_policy: @config.rpcs.list_dashboards.retry_policy
- options.apply_defaults metadata: @config.metadata,
+
+ options.apply_defaults timeout: @config.timeout,
+ metadata: @config.metadata,
retry_policy: @config.retry_policy
@dashboards_service_stub.call_rpc :list_dashboards, request, options: options do |response, operation|
response = ::Gapic::PagedEnumerable.new @dashboards_service_stub, :list_dashboards, request, response, operation, options
yield response, operation if block_given?
@@ -380,11 +378,13 @@
metadata[:"x-goog-request-params"] ||= request_params_header
options.apply_defaults timeout: @config.rpcs.get_dashboard.timeout,
metadata: metadata,
retry_policy: @config.rpcs.get_dashboard.retry_policy
- options.apply_defaults metadata: @config.metadata,
+
+ options.apply_defaults timeout: @config.timeout,
+ metadata: @config.metadata,
retry_policy: @config.retry_policy
@dashboards_service_stub.call_rpc :get_dashboard, request, options: options do |response, operation|
yield response, operation if block_given?
return response
@@ -452,11 +452,13 @@
metadata[:"x-goog-request-params"] ||= request_params_header
options.apply_defaults timeout: @config.rpcs.delete_dashboard.timeout,
metadata: metadata,
retry_policy: @config.rpcs.delete_dashboard.retry_policy
- options.apply_defaults metadata: @config.metadata,
+
+ options.apply_defaults timeout: @config.timeout,
+ metadata: @config.metadata,
retry_policy: @config.retry_policy
@dashboards_service_stub.call_rpc :delete_dashboard, request, options: options do |response, operation|
yield response, operation if block_given?
return response
@@ -525,11 +527,13 @@
metadata[:"x-goog-request-params"] ||= request_params_header
options.apply_defaults timeout: @config.rpcs.update_dashboard.timeout,
metadata: metadata,
retry_policy: @config.rpcs.update_dashboard.retry_policy
- options.apply_defaults metadata: @config.metadata,
+
+ options.apply_defaults timeout: @config.timeout,
+ metadata: @config.metadata,
retry_policy: @config.retry_policy
@dashboards_service_stub.call_rpc :update_dashboard, request, options: options do |response, operation|
yield response, operation if block_given?
return response
@@ -549,25 +553,24 @@
# for a list of RPCs that can be configured independently.
#
# Configuration can be applied globally to all clients, or to a single client
# on construction.
#
- # # Examples
+ # @example
#
- # To modify the global config, setting the timeout for create_dashboard
- # to 20 seconds, and all remaining timeouts to 10 seconds:
+ # # Modify the global config, setting the timeout for
+ # # create_dashboard to 20 seconds,
+ # # and all remaining timeouts to 10 seconds.
+ # ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.configure do |config|
+ # config.timeout = 10.0
+ # config.rpcs.create_dashboard.timeout = 20.0
+ # end
#
- # ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.configure do |config|
- # config.timeout = 10.0
- # config.rpcs.create_dashboard.timeout = 20.0
- # end
- #
- # To apply the above configuration only to a new client:
- #
- # client = ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.new do |config|
- # config.timeout = 10.0
- # config.rpcs.create_dashboard.timeout = 20.0
- # end
+ # # Apply the above configuration only to a new client.
+ # client = ::Google::Cloud::Monitoring::Dashboard::V1::DashboardsService::Client.new do |config|
+ # config.timeout = 10.0
+ # config.rpcs.create_dashboard.timeout = 20.0
+ # end
#
# @!attribute [rw] endpoint
# The hostname or hostname:port of the service endpoint.
# Defaults to `"monitoring.googleapis.com"`.
# @return [::String]