Class: Google::Apis::CertificatemanagerV1::GclbTarget
- Inherits:
-
Object
- Object
- Google::Apis::CertificatemanagerV1::GclbTarget
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/certificatemanager_v1/classes.rb,
lib/google/apis/certificatemanager_v1/representations.rb,
lib/google/apis/certificatemanager_v1/representations.rb
Overview
Describes a Target Proxy which uses this Certificate Map.
Instance Attribute Summary collapse
-
#ip_configs ⇒ Array<Google::Apis::CertificatemanagerV1::IpConfig>
IP configurations for this Target Proxy where the Certificate Map is serving.
-
#target_https_proxy ⇒ String
A name must be in the format
projects/*/locations/*/targetHttpsProxies/*. -
#target_ssl_proxy ⇒ String
A name must be in the format
projects/*/locations/*/targetSslProxies/*.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GclbTarget
constructor
A new instance of GclbTarget.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GclbTarget
Returns a new instance of GclbTarget.
416 417 418 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 416 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip_configs ⇒ Array<Google::Apis::CertificatemanagerV1::IpConfig>
IP configurations for this Target Proxy where the Certificate Map is serving.
Corresponds to the JSON property ipConfigs
404 405 406 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 404 def ip_configs @ip_configs end |
#target_https_proxy ⇒ String
A name must be in the format projects/*/locations/*/targetHttpsProxies/*.
Corresponds to the JSON property targetHttpsProxy
409 410 411 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 409 def target_https_proxy @target_https_proxy end |
#target_ssl_proxy ⇒ String
A name must be in the format projects/*/locations/*/targetSslProxies/*.
Corresponds to the JSON property targetSslProxy
414 415 416 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 414 def target_ssl_proxy @target_ssl_proxy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
421 422 423 424 425 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 421 def update!(**args) @ip_configs = args[:ip_configs] if args.key?(:ip_configs) @target_https_proxy = args[:target_https_proxy] if args.key?(:target_https_proxy) @target_ssl_proxy = args[:target_ssl_proxy] if args.key?(:target_ssl_proxy) end |