Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourceRuntime

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

Persistent Cluster runtime information as output

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ResourceRuntime

Returns a new instance of GoogleCloudAiplatformV1ResourceRuntime.



18942
18943
18944
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18942

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

Instance Attribute Details

#access_urisHash<String,String>

Output only. URIs for user to connect to the Cluster. Example: " RAY_HEAD_NODE_INTERNAL_IP": "head-node-IP:10001" "RAY_DASHBOARD_URI": "ray- dashboard-address:8888" Corresponds to the JSON property accessUris

Returns:

  • (Hash<String,String>)


18932
18933
18934
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18932

def access_uris
  @access_uris
end

#notebook_runtime_templateString

Output only. The resource name of NotebookRuntimeTemplate for the RoV Persistent Cluster The NotebokRuntimeTemplate is created in the same VPC (if set), and with the same Ray and Python version as the Persistent Cluster. Example: "projects/1000/locations/us-central1/notebookRuntimeTemplates/abc123" Corresponds to the JSON property notebookRuntimeTemplate

Returns:

  • (String)


18940
18941
18942
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18940

def notebook_runtime_template
  @notebook_runtime_template
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18947
18948
18949
18950
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 18947

def update!(**args)
  @access_uris = args[:access_uris] if args.key?(:access_uris)
  @notebook_runtime_template = args[:notebook_runtime_template] if args.key?(:notebook_runtime_template)
end