Class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1HttpConfig
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1HttpConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
HttpConfig is a configuration for HTTP related git operations.
Instance Attribute Summary collapse
-
#proxy_secret_version_name ⇒ String
SecretVersion resource of the HTTP proxy URL.
-
#proxy_ssl_ca_info ⇒ Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GcsLocation
Represents a storage location in Cloud Storage Corresponds to the JSON property
proxySslCaInfo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsCloudbuildV1HttpConfig
constructor
A new instance of GoogleDevtoolsCloudbuildV1HttpConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsCloudbuildV1HttpConfig
Returns a new instance of GoogleDevtoolsCloudbuildV1HttpConfig.
2465 2466 2467 |
# File 'lib/google/apis/run_v1/classes.rb', line 2465 def initialize(**args) update!(**args) end |
Instance Attribute Details
#proxy_secret_version_name ⇒ String
SecretVersion resource of the HTTP proxy URL. The proxy URL should be in
format protocol://@]proxyhost[:port].
Corresponds to the JSON property proxySecretVersionName
2458 2459 2460 |
# File 'lib/google/apis/run_v1/classes.rb', line 2458 def proxy_secret_version_name @proxy_secret_version_name end |
#proxy_ssl_ca_info ⇒ Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GcsLocation
Represents a storage location in Cloud Storage
Corresponds to the JSON property proxySslCaInfo
2463 2464 2465 |
# File 'lib/google/apis/run_v1/classes.rb', line 2463 def proxy_ssl_ca_info @proxy_ssl_ca_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2470 2471 2472 2473 |
# File 'lib/google/apis/run_v1/classes.rb', line 2470 def update!(**args) @proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name) @proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info) end |