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.
-
#sandbox_internal_ip ⇒ 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.
32978 32979 32980 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32978 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
32966 32967 32968 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32966 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
32971 32972 32973 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32971 def load_balancer_ip @load_balancer_ip end |
#sandbox_internal_ip ⇒ String
Output only. The internal IP address of the SandboxEnvironment.
Corresponds to the JSON property sandboxInternalIp
32976 32977 32978 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32976 def sandbox_internal_ip @sandbox_internal_ip end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32983 32984 32985 32986 32987 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 32983 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) @sandbox_internal_ip = args[:sandbox_internal_ip] if args.key?(:sandbox_internal_ip) end |