Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/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_hostname ⇒ String
Output only.
-
#sandbox_internal_ip ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo
constructor
A new instance of GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo
Returns a new instance of GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo.
41936 41937 41938 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41936 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
41914 41915 41916 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41914 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
41919 41920 41921 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41919 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
41924 41925 41926 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41924 def routing_token @routing_token end |
#sandbox_hostname ⇒ String
Output only. The hostname of the SandboxEnvironment.
Corresponds to the JSON property sandboxHostname
41929 41930 41931 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41929 def sandbox_hostname @sandbox_hostname end |
#sandbox_internal_ip ⇒ String
Output only. The internal IP address of the SandboxEnvironment.
Corresponds to the JSON property sandboxInternalIp
41934 41935 41936 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41934 def sandbox_internal_ip @sandbox_internal_ip end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
41941 41942 41943 41944 41945 41946 41947 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 41941 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_hostname = args[:sandbox_hostname] if args.key?(:sandbox_hostname) @sandbox_internal_ip = args[:sandbox_internal_ip] if args.key?(:sandbox_internal_ip) end |