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 that uses this Certificate Map.
Instance Attribute Summary collapse
-
#ip_configs ⇒ Array<Google::Apis::CertificatemanagerV1::IpConfig>
Output only.
-
#target_https_proxy ⇒ String
Output only.
-
#target_ssl_proxy ⇒ String
Output only.
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.
565 566 567 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 565 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip_configs ⇒ Array<Google::Apis::CertificatemanagerV1::IpConfig>
Output only. IP configurations for this Target Proxy where the Certificate Map
is serving.
Corresponds to the JSON property ipConfigs
551 552 553 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 551 def ip_configs @ip_configs end |
#target_https_proxy ⇒ String
Output only. This field returns the resource name in the following format: //
compute.googleapis.com/projects/*/global/targetHttpsProxies/*
.
Corresponds to the JSON property targetHttpsProxy
557 558 559 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 557 def target_https_proxy @target_https_proxy end |
#target_ssl_proxy ⇒ String
Output only. This field returns the resource name in the following format: //
compute.googleapis.com/projects/*/global/targetSslProxies/*
.
Corresponds to the JSON property targetSslProxy
563 564 565 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 563 def target_ssl_proxy @target_ssl_proxy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
570 571 572 573 574 |
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 570 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 |