Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TargetServer
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1TargetServer
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb 
Overview
TargetServer configuration. TargetServers are used to decouple a proxy TargetEndpoint HTTPTargetConnections from concrete URLs for backend services.
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #host  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #is_enabled  ⇒ Boolean 
    
    
      (also: #is_enabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #port  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #protocol  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Immutable.
 - 
  
    
      #s_sl_info  ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
TLS configuration information for virtual hosts and TargetServers.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1TargetServer 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1TargetServer.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1TargetServer
Returns a new instance of GoogleCloudApigeeV1TargetServer.
      10968 10969 10970  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10968 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#description ⇒ String
Optional. A human-readable description of this TargetServer.
Corresponds to the JSON property description
      10930 10931 10932  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10930 def description @description end  | 
  
#host ⇒ String
Required. The host name this target connects to. Value must be a valid
hostname as described by RFC-1123.
Corresponds to the JSON property host
      10936 10937 10938  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10936 def host @host end  | 
  
#is_enabled ⇒ Boolean Also known as: is_enabled?
Optional. Enabling/disabling a TargetServer is useful when TargetServers are
used in load balancing configurations, and one or more TargetServers need to
taken out of rotation periodically. Defaults to true.
Corresponds to the JSON property isEnabled
      10943 10944 10945  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10943 def is_enabled @is_enabled end  | 
  
#name ⇒ String
Required. The resource id of this target server. Values must match the regular
expression
Corresponds to the JSON property name
      10950 10951 10952  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10950 def name @name end  | 
  
#port ⇒ Fixnum
Required. The port number this target connects to on the given host. Value
must be between 1 and 65535, inclusive.
Corresponds to the JSON property port
      10956 10957 10958  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10956 def port @port end  | 
  
#protocol ⇒ String
Immutable. The protocol used by this TargetServer.
Corresponds to the JSON property protocol
      10961 10962 10963  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10961 def protocol @protocol end  | 
  
#s_sl_info ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfo
TLS configuration information for virtual hosts and TargetServers.
Corresponds to the JSON property sSLInfo
      10966 10967 10968  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10966 def s_sl_info @s_sl_info end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      10973 10974 10975 10976 10977 10978 10979 10980 10981  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 10973 def update!(**args) @description = args[:description] if args.key?(:description) @host = args[:host] if args.key?(:host) @is_enabled = args[:is_enabled] if args.key?(:is_enabled) @name = args[:name] if args.key?(:name) @port = args[:port] if args.key?(:port) @protocol = args[:protocol] if args.key?(:protocol) @s_sl_info = args[:s_sl_info] if args.key?(:s_sl_info) end  |