Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
The connection information of the SandboxEnvironment.
Instance Attribute Summary collapse
-
#load_balancer_hostname ⇒ String
Output only.
-
#load_balancer_ip ⇒ String
Output only.
-
#routing_token ⇒ String
Output only.
-
#sandbox_internal_ip ⇒ String
Output only.
-
#service_attachment ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo
constructor
A new instance of GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo
Returns a new instance of GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo.
37547 37548 37549 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37547 def initialize(**args) update!(**args) end |
Instance Attribute Details
#load_balancer_hostname ⇒ String
Output only. The hostname of the load balancer.
Corresponds to the JSON property loadBalancerHostname
37522 37523 37524 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37522 def load_balancer_hostname @load_balancer_hostname end |
#load_balancer_ip ⇒ String
Output only. The IP address of the load balancer.
Corresponds to the JSON property loadBalancerIp
37527 37528 37529 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37527 def load_balancer_ip @load_balancer_ip end |
#routing_token ⇒ String
Output only. The routing token for the SandboxEnvironment.
Corresponds to the JSON property routingToken
37532 37533 37534 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37532 def routing_token @routing_token end |
#sandbox_internal_ip ⇒ String
Output only. The internal IP address of the SandboxEnvironment.
Corresponds to the JSON property sandboxInternalIp
37537 37538 37539 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37537 def sandbox_internal_ip @sandbox_internal_ip end |
#service_attachment ⇒ String
Output only. The name of the PSC-E service attachment created for private
ingress to this SandboxEnvironment. Only populated when the template enables
private ingress (see SandboxEnvironmentTemplate.ingress_control_config). VPC-
SC customers use this to create a PSC endpoint in their VPC.
Corresponds to the JSON property serviceAttachment
37545 37546 37547 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37545 def @service_attachment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
37552 37553 37554 37555 37556 37557 37558 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 37552 def update!(**args) @load_balancer_hostname = args[:load_balancer_hostname] if args.key?(:load_balancer_hostname) @load_balancer_ip = args[:load_balancer_ip] if args.key?(:load_balancer_ip) @routing_token = args[:routing_token] if args.key?(:routing_token) @sandbox_internal_ip = args[:sandbox_internal_ip] if args.key?(:sandbox_internal_ip) @service_attachment = args[:service_attachment] if args.key?(:service_attachment) end |