Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ResourceRuntime
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ResourceRuntime
- 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
Persistent Cluster runtime information as output
Instance Attribute Summary collapse
-
#access_uris ⇒ Hash<String,String>
Output only.
-
#notebook_runtime_template ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ResourceRuntime
constructor
A new instance of GoogleCloudAiplatformV1beta1ResourceRuntime.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ResourceRuntime
Returns a new instance of GoogleCloudAiplatformV1beta1ResourceRuntime.
23785 23786 23787 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23785 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_uris ⇒ Hash<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
23775 23776 23777 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23775 def access_uris @access_uris end |
#notebook_runtime_template ⇒ String
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
23783 23784 23785 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23783 def notebook_runtime_template @notebook_runtime_template end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23790 23791 23792 23793 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23790 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 |