Class: Google::Apis::NetworkservicesV1beta1::AgentGatewayAgentGatewayOutputCard
- Inherits:
-
Object
- Object
- Google::Apis::NetworkservicesV1beta1::AgentGatewayAgentGatewayOutputCard
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkservices_v1beta1/classes.rb,
lib/google/apis/networkservices_v1beta1/representations.rb,
lib/google/apis/networkservices_v1beta1/representations.rb
Overview
AgentGatewayOutputCard contains informational output-only fields
Instance Attribute Summary collapse
-
#mtls_endpoint ⇒ String
Output only.
-
#root_certificates ⇒ Array<String>
Output only.
-
#service_extensions_service_account ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AgentGatewayAgentGatewayOutputCard
constructor
A new instance of AgentGatewayAgentGatewayOutputCard.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AgentGatewayAgentGatewayOutputCard
Returns a new instance of AgentGatewayAgentGatewayOutputCard.
137 138 139 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 137 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mtls_endpoint ⇒ String
Output only. mTLS Endpoint associated with this AgentGateway
Corresponds to the JSON property mtlsEndpoint
125 126 127 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 125 def mtls_endpoint @mtls_endpoint end |
#root_certificates ⇒ Array<String>
Output only. Root Certificates for Agents to validate this AgentGateway
Corresponds to the JSON property rootCertificates
130 131 132 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 130 def root_certificates @root_certificates end |
#service_extensions_service_account ⇒ String
Output only. Service Account used by Service Extensions to operate.
Corresponds to the JSON property serviceExtensionsServiceAccount
135 136 137 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 135 def service_extensions_service_account @service_extensions_service_account end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
142 143 144 145 146 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 142 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 |