class Google::Cloud::Config

def self.create show_warnings: true

Returns:
  • (Config) - The constructed Config object.

Parameters:
  • show_warnings (boolean) -- Whether to print warnings when a
def self.create show_warnings: true
  config = new [], show_warnings: show_warnings
  yield config if block_given?
  config
end