Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo

Returns a new instance of GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo.



34398
34399
34400
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 34398

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

Instance Attribute Details

#load_balancer_hostnameString

Output only. The hostname of the load balancer. Corresponds to the JSON property loadBalancerHostname

Returns:

  • (String)


34376
34377
34378
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 34376

def load_balancer_hostname
  @load_balancer_hostname
end

#load_balancer_ipString

Output only. The IP address of the load balancer. Corresponds to the JSON property loadBalancerIp

Returns:

  • (String)


34381
34382
34383
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 34381

def load_balancer_ip
  @load_balancer_ip
end

#routing_tokenString

Output only. The routing token for the SandboxEnvironment. Corresponds to the JSON property routingToken

Returns:

  • (String)


34386
34387
34388
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 34386

def routing_token
  @routing_token
end

#sandbox_hostnameString

Output only. The hostname of the SandboxEnvironment. Corresponds to the JSON property sandboxHostname

Returns:

  • (String)


34391
34392
34393
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 34391

def sandbox_hostname
  @sandbox_hostname
end

#sandbox_internal_ipString

Output only. The internal IP address of the SandboxEnvironment. Corresponds to the JSON property sandboxInternalIp

Returns:

  • (String)


34396
34397
34398
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 34396

def sandbox_internal_ip
  @sandbox_internal_ip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



34403
34404
34405
34406
34407
34408
34409
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 34403

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