Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookRuntime
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookRuntime
- 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
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.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
The description of the NotebookRuntime.
-
#display_name ⇒ String
Required.
-
#health_state ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#notebook_runtime_template_ref ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookRuntimeTemplateRef
Points to a NotebookRuntimeTemplateRef.
-
#proxy_uri ⇒ String
Output only.
-
#runtime_state ⇒ String
Output only.
-
#runtime_user ⇒ String
Required.
-
#service_account ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1NotebookRuntime
constructor
A new instance of GoogleCloudAiplatformV1beta1NotebookRuntime.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1NotebookRuntime
Returns a new instance of GoogleCloudAiplatformV1beta1NotebookRuntime.
12570 12571 12572 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp when this NotebookRuntime was created.
Corresponds to the JSON property createTime
12517 12518 12519 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12517 def create_time @create_time end |
#description ⇒ String
The description of the NotebookRuntime.
Corresponds to the JSON property description
12522 12523 12524 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12522 def description @description end |
#display_name ⇒ String
Required. The display name of the NotebookRuntime. The name can be up to 128
characters long and can consist of any UTF-8 characters.
Corresponds to the JSON property displayName
12528 12529 12530 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12528 def display_name @display_name end |
#health_state ⇒ String
Output only. The health state of the NotebookRuntime.
Corresponds to the JSON property healthState
12533 12534 12535 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12533 def health_state @health_state end |
#name ⇒ String
Output only. The resource name of the NotebookRuntime.
Corresponds to the JSON property name
12538 12539 12540 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12538 def name @name end |
#notebook_runtime_template_ref ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookRuntimeTemplateRef
Points to a NotebookRuntimeTemplateRef.
Corresponds to the JSON property notebookRuntimeTemplateRef
12543 12544 12545 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12543 def notebook_runtime_template_ref @notebook_runtime_template_ref end |
#proxy_uri ⇒ String
Output only. The proxy endpoint used to access the NotebookRuntime.
Corresponds to the JSON property proxyUri
12548 12549 12550 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12548 def proxy_uri @proxy_uri end |
#runtime_state ⇒ String
Output only. The runtime (instance) state of the NotebookRuntime.
Corresponds to the JSON property runtimeState
12553 12554 12555 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12553 def runtime_state @runtime_state end |
#runtime_user ⇒ String
Required. The user email of the NotebookRuntime.
Corresponds to the JSON property runtimeUser
12558 12559 12560 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12558 def runtime_user @runtime_user end |
#service_account ⇒ String
Output only. The service account that the NotebookRuntime workload runs as.
Corresponds to the JSON property serviceAccount
12563 12564 12565 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12563 def service_account @service_account end |
#update_time ⇒ String
Output only. Timestamp when this NotebookRuntime was most recently updated.
Corresponds to the JSON property updateTime
12568 12569 12570 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12568 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12575 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @health_state = args[:health_state] if args.key?(:health_state) @name = args[:name] if args.key?(:name) @notebook_runtime_template_ref = args[:notebook_runtime_template_ref] if args.key?(:notebook_runtime_template_ref) @proxy_uri = args[:proxy_uri] if args.key?(:proxy_uri) @runtime_state = args[:runtime_state] if args.key?(:runtime_state) @runtime_user = args[:runtime_user] if args.key?(:runtime_user) @service_account = args[:service_account] if args.key?(:service_account) @update_time = args[:update_time] if args.key?(:update_time) end |