Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AssignNotebookRuntimeRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AssignNotebookRuntimeRequest
- 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
Request message for NotebookService.AssignNotebookRuntime.
Instance Attribute Summary collapse
-
#notebook_runtime ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookRuntime
A runtime is a virtual machine allocated to a particular user for a particular Notebook file on temporary basis with lifetime limited to 24 hours.
-
#notebook_runtime_id ⇒ String
Optional.
-
#notebook_runtime_template ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1AssignNotebookRuntimeRequest
constructor
A new instance of GoogleCloudAiplatformV1AssignNotebookRuntimeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1AssignNotebookRuntimeRequest
Returns a new instance of GoogleCloudAiplatformV1AssignNotebookRuntimeRequest.
937 938 939 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 937 def initialize(**args) update!(**args) end |
Instance Attribute Details
#notebook_runtime ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookRuntime
A runtime is a virtual machine allocated to a particular user for a particular
Notebook file on temporary basis with lifetime limited to 24 hours.
Corresponds to the JSON property notebookRuntime
924 925 926 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 924 def notebook_runtime @notebook_runtime end |
#notebook_runtime_id ⇒ String
Optional. User specified ID for the notebook runtime.
Corresponds to the JSON property notebookRuntimeId
929 930 931 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 929 def notebook_runtime_id @notebook_runtime_id end |
#notebook_runtime_template ⇒ String
Required. The resource name of the NotebookRuntimeTemplate based on which a
NotebookRuntime will be assigned (reuse or create a new one).
Corresponds to the JSON property notebookRuntimeTemplate
935 936 937 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 935 def notebook_runtime_template @notebook_runtime_template end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
942 943 944 945 946 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 942 def update!(**args) @notebook_runtime = args[:notebook_runtime] if args.key?(:notebook_runtime) @notebook_runtime_id = args[:notebook_runtime_id] if args.key?(:notebook_runtime_id) @notebook_runtime_template = args[:notebook_runtime_template] if args.key?(:notebook_runtime_template) end |