Class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1HttpConfig
- Inherits:
-
Object
- Object
- Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1HttpConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v2/classes.rb,
lib/google/apis/run_v2/representations.rb,
lib/google/apis/run_v2/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::RunV2::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.
4012 4013 4014 |
# File 'lib/google/apis/run_v2/classes.rb', line 4012 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
4005 4006 4007 |
# File 'lib/google/apis/run_v2/classes.rb', line 4005 def proxy_secret_version_name @proxy_secret_version_name end |
#proxy_ssl_ca_info ⇒ Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1GcsLocation
Represents a storage location in Cloud Storage
Corresponds to the JSON property proxySslCaInfo
4010 4011 4012 |
# File 'lib/google/apis/run_v2/classes.rb', line 4010 def proxy_ssl_ca_info @proxy_ssl_ca_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4017 4018 4019 4020 |
# File 'lib/google/apis/run_v2/classes.rb', line 4017 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 |