Class: Google::Apis::CertificatemanagerV1::GclbTarget

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GclbTarget

Returns a new instance of GclbTarget.



560
561
562
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 560

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#ip_configsArray<Google::Apis::CertificatemanagerV1::IpConfig>

Output only. IP configurations for this Target Proxy where the Certificate Map is serving. Corresponds to the JSON property ipConfigs



546
547
548
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 546

def ip_configs
  @ip_configs
end

#target_https_proxyString

Output only. This field returns the resource name in the following format: // compute.googleapis.com/projects/*/global/targetHttpsProxies/*. Corresponds to the JSON property targetHttpsProxy

Returns:

  • (String)


552
553
554
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 552

def target_https_proxy
  @target_https_proxy
end

#target_ssl_proxyString

Output only. This field returns the resource name in the following format: // compute.googleapis.com/projects/*/global/targetSslProxies/*. Corresponds to the JSON property targetSslProxy

Returns:

  • (String)


558
559
560
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 558

def target_ssl_proxy
  @target_ssl_proxy
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



565
566
567
568
569
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 565

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