lib/google/cloud/container.rb in google-cloud-container-1.0.0 vs lib/google/cloud/container.rb in google-cloud-container-1.1.0
- old
+ new
@@ -27,17 +27,20 @@
require "google/cloud" unless defined? ::Google::Cloud.new
require "google/cloud/config"
# Set the default configuration
::Google::Cloud.configure.add_config! :container do |config|
- config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
- config.add_field! :lib_name, nil, match: ::String
- config.add_field! :lib_version, nil, match: ::String
- config.add_field! :interceptors, nil, match: ::Array
- config.add_field! :timeout, nil, match: ::Numeric
- config.add_field! :metadata, nil, match: ::Hash
- config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
+ config.add_field! :endpoint, "container.googleapis.com", match: ::String
+ config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
+ config.add_field! :scope, nil, match: [::Array, ::String]
+ config.add_field! :lib_name, nil, match: ::String
+ config.add_field! :lib_version, nil, match: ::String
+ config.add_field! :interceptors, nil, match: ::Array
+ config.add_field! :timeout, nil, match: ::Numeric
+ config.add_field! :metadata, nil, match: ::Hash
+ config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
+ config.add_field! :quota_project, nil, match: ::String
end
module Google
module Cloud
module Container
@@ -105,5 +108,8 @@
::Google::Cloud.configure.container
end
end
end
end
+
+helper_path = ::File.join __dir__, "container", "helpers.rb"
+require "google/cloud/container/helpers" if ::File.file? helper_path