class Google::Apis::ApigeeV1::GoogleCloudApigeeV1TargetServerConfig

Attributes

enabled[RW]

Whether the target server is enabled. An empty/omitted value for this field should be interpreted as true. Corresponds to the JSON property `enabled` @return [Boolean]

enabled?[RW]

Whether the target server is enabled. An empty/omitted value for this field should be interpreted as true. Corresponds to the JSON property `enabled` @return [Boolean]

host[RW]

Host name of the target server. Corresponds to the JSON property `host` @return [String]

name[RW]

Target server revision name in the following format: `organizations/`org`/ environments/`env`/targetservers/`targetserver`/revisions/`rev“ Corresponds to the JSON property `name` @return [String]

port[RW]

Port number for the target server. Corresponds to the JSON property `port` @return [Fixnum]

protocol[RW]

The protocol used by this target server. Corresponds to the JSON property `protocol` @return [String]

tls_info[RW]

TLS settings for the target server. Corresponds to the JSON property `tlsInfo` @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfoConfig]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 6977
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 6982
def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @host = args[:host] if args.key?(:host)
  @name = args[:name] if args.key?(:name)
  @port = args[:port] if args.key?(:port)
  @protocol = args[:protocol] if args.key?(:protocol)
  @tls_info = args[:tls_info] if args.key?(:tls_info)
end