Class: Google::Apis::NetworkservicesV1::AgentGatewayAgentGatewayOutputCard

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networkservices_v1/classes.rb,
lib/google/apis/networkservices_v1/representations.rb,
lib/google/apis/networkservices_v1/representations.rb

Overview

AgentGatewayOutputCard contains informational output-only fields

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AgentGatewayAgentGatewayOutputCard

Returns a new instance of AgentGatewayAgentGatewayOutputCard.



219
220
221
# File 'lib/google/apis/networkservices_v1/classes.rb', line 219

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

Instance Attribute Details

#mtls_endpointString

Output only. mTLS Endpoint associated with this AgentGateway Corresponds to the JSON property mtlsEndpoint

Returns:

  • (String)


207
208
209
# File 'lib/google/apis/networkservices_v1/classes.rb', line 207

def mtls_endpoint
  @mtls_endpoint
end

#root_certificatesArray<String>

Output only. Root Certificates for Agents to validate this AgentGateway Corresponds to the JSON property rootCertificates

Returns:

  • (Array<String>)


212
213
214
# File 'lib/google/apis/networkservices_v1/classes.rb', line 212

def root_certificates
  @root_certificates
end

#service_extensions_service_accountString

Output only. Service Account used by Service Extensions to operate. Corresponds to the JSON property serviceExtensionsServiceAccount

Returns:

  • (String)


217
218
219
# File 'lib/google/apis/networkservices_v1/classes.rb', line 217

def 
  @service_extensions_service_account
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



224
225
226
227
228
# File 'lib/google/apis/networkservices_v1/classes.rb', line 224

def update!(**args)
  @mtls_endpoint = args[:mtls_endpoint] if args.key?(:mtls_endpoint)
  @root_certificates = args[:root_certificates] if args.key?(:root_certificates)
  @service_extensions_service_account = args[:service_extensions_service_account] if args.key?(:service_extensions_service_account)
end