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 which uses this Certificate Map.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GclbTarget

Returns a new instance of GclbTarget.



418
419
420
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 418

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

Instance Attribute Details

#ip_configsArray<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_proxyString

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

Returns:

  • (String)


410
411
412
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 410

def target_https_proxy
  @target_https_proxy
end

#target_ssl_proxyString

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

Returns:

  • (String)


416
417
418
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 416

def target_ssl_proxy
  @target_ssl_proxy
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



423
424
425
426
427
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 423

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