class Google::Apis::ApigeeV1::GoogleCloudApigeeV1TargetServerConfig
Attributes
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]
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 name of the target server. Corresponds to the JSON property `host` @return [String]
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 number for the target server. Corresponds to the JSON property `port` @return [Fixnum]
The protocol used by this target server. Corresponds to the JSON property `protocol` @return [String]
TLS settings for the target server. Corresponds to the JSON property `tlsInfo` @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfoConfig]
Public Class Methods
# File lib/google/apis/apigee_v1/classes.rb, line 6977 def initialize(**args) update!(**args) end
Public Instance Methods
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