Class: Google::Cloud::AIPlatform::V1::NotebookRuntime
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::NotebookRuntime
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb
Overview
A runtime is a virtual machine allocated to a particular user for a particular Notebook file on temporary basis with lifetime. Default runtimes have a lifetime of 18 hours, while custom runtimes last for 6 months from their creation or last upgrade.
Defined Under Namespace
Modules: HealthState, RuntimeState Classes: LabelsEntry
Instance Attribute Summary collapse
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#data_persistent_disk_spec ⇒ ::Google::Cloud::AIPlatform::V1::PersistentDiskSpec
readonly
Output only.
-
#description ⇒ ::String
The description of the NotebookRuntime.
-
#display_name ⇒ ::String
Required.
-
#encryption_spec ⇒ ::Google::Cloud::AIPlatform::V1::EncryptionSpec
readonly
Output only.
-
#euc_config ⇒ ::Google::Cloud::AIPlatform::V1::NotebookEucConfig
readonly
Output only.
-
#expiration_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#health_state ⇒ ::Google::Cloud::AIPlatform::V1::NotebookRuntime::HealthState
readonly
Output only.
-
#idle_shutdown_config ⇒ ::Google::Cloud::AIPlatform::V1::NotebookIdleShutdownConfig
readonly
Output only.
-
#is_upgradable ⇒ ::Boolean
readonly
Output only.
-
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
The labels with user-defined metadata to organize your NotebookRuntime.
-
#machine_spec ⇒ ::Google::Cloud::AIPlatform::V1::MachineSpec
readonly
Output only.
-
#name ⇒ ::String
readonly
Output only.
-
#network_spec ⇒ ::Google::Cloud::AIPlatform::V1::NetworkSpec
readonly
Output only.
-
#network_tags ⇒ ::Array<::String>
Optional.
-
#notebook_runtime_template_ref ⇒ ::Google::Cloud::AIPlatform::V1::NotebookRuntimeTemplateRef
readonly
Output only.
-
#notebook_runtime_type ⇒ ::Google::Cloud::AIPlatform::V1::NotebookRuntimeType
readonly
Output only.
-
#proxy_uri ⇒ ::String
readonly
Output only.
-
#runtime_state ⇒ ::Google::Cloud::AIPlatform::V1::NotebookRuntime::RuntimeState
readonly
Output only.
-
#runtime_user ⇒ ::String
Required.
-
#satisfies_pzi ⇒ ::Boolean
readonly
Output only.
-
#satisfies_pzs ⇒ ::Boolean
readonly
Output only.
-
#service_account ⇒ ::String
readonly
Output only.
-
#shielded_vm_config ⇒ ::Google::Cloud::AIPlatform::V1::ShieldedVmConfig
readonly
Output only.
-
#software_config ⇒ ::Google::Cloud::AIPlatform::V1::NotebookSoftwareConfig
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#version ⇒ ::String
readonly
Output only.
Instance Attribute Details
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Timestamp when this NotebookRuntime was created.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#data_persistent_disk_spec ⇒ ::Google::Cloud::AIPlatform::V1::PersistentDiskSpec (readonly)
Returns Output only. The specification of [persistent disk][https://cloud.google.com/compute/docs/disks/persistent-disks] attached to the notebook runtime as data disk storage.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#description ⇒ ::String
Returns The description of the NotebookRuntime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#display_name ⇒ ::String
Returns Required. The display name of the NotebookRuntime. The name can be up to 128 characters long and can consist of any UTF-8 characters.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#encryption_spec ⇒ ::Google::Cloud::AIPlatform::V1::EncryptionSpec (readonly)
Returns Output only. Customer-managed encryption key spec for the notebook runtime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#euc_config ⇒ ::Google::Cloud::AIPlatform::V1::NotebookEucConfig (readonly)
Returns Output only. EUC configuration of the notebook runtime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#expiration_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Timestamp when this NotebookRuntime will be expired:
- System Predefined NotebookRuntime: 24 hours after creation. After expiration, system predifined runtime will be deleted.
- User created NotebookRuntime: 6 months after last upgrade. After expiration, user created runtime will be stopped and allowed for upgrade.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#health_state ⇒ ::Google::Cloud::AIPlatform::V1::NotebookRuntime::HealthState (readonly)
Returns Output only. The health state of the NotebookRuntime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#idle_shutdown_config ⇒ ::Google::Cloud::AIPlatform::V1::NotebookIdleShutdownConfig (readonly)
Returns Output only. The idle shutdown configuration of the notebook runtime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#is_upgradable ⇒ ::Boolean (readonly)
Returns Output only. Whether NotebookRuntime is upgradable.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns The labels with user-defined metadata to organize your NotebookRuntime.
Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one NotebookRuntime (System labels are excluded).
See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. Following system labels exist for NotebookRuntime:
- "aiplatform.googleapis.com/notebook_runtime_gce_instance_id": output only, its value is the Compute Engine instance id.
- "aiplatform.googleapis.com/colab_enterprise_entry_service": its value is either "bigquery" or "vertex"; if absent, it should be "vertex". This is to describe the entry service, either BigQuery or Vertex.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#machine_spec ⇒ ::Google::Cloud::AIPlatform::V1::MachineSpec (readonly)
Returns Output only. The specification of a single machine used by the notebook runtime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#name ⇒ ::String (readonly)
Returns Output only. The resource name of the NotebookRuntime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#network_spec ⇒ ::Google::Cloud::AIPlatform::V1::NetworkSpec (readonly)
Returns Output only. Network spec of the notebook runtime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#network_tags ⇒ ::Array<::String>
Returns Optional. The Compute Engine tags to add to runtime (see Tagging instances).
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#notebook_runtime_template_ref ⇒ ::Google::Cloud::AIPlatform::V1::NotebookRuntimeTemplateRef (readonly)
Returns Output only. The pointer to NotebookRuntimeTemplate this NotebookRuntime is created from.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#notebook_runtime_type ⇒ ::Google::Cloud::AIPlatform::V1::NotebookRuntimeType (readonly)
Returns Output only. The type of the notebook runtime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#proxy_uri ⇒ ::String (readonly)
Returns Output only. The proxy endpoint used to access the NotebookRuntime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#runtime_state ⇒ ::Google::Cloud::AIPlatform::V1::NotebookRuntime::RuntimeState (readonly)
Returns Output only. The runtime (instance) state of the NotebookRuntime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#runtime_user ⇒ ::String
Returns Required. The user email of the NotebookRuntime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#satisfies_pzi ⇒ ::Boolean (readonly)
Returns Output only. Reserved for future use.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#satisfies_pzs ⇒ ::Boolean (readonly)
Returns Output only. Reserved for future use.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#service_account ⇒ ::String (readonly)
Returns Output only. Deprecated: This field is no longer used and the "Vertex AI Notebook Service Account" (service-PROJECT_NUMBER@gcp-sa-aiplatform-vm.iam.gserviceaccount.com) is used for the runtime workload identity. See https://cloud.google.com/iam/docs/service-agents#vertex-ai-notebook-service-account for more details.
The service account that the NotebookRuntime workload runs as.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#shielded_vm_config ⇒ ::Google::Cloud::AIPlatform::V1::ShieldedVmConfig (readonly)
Returns Output only. Runtime Shielded VM spec.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#software_config ⇒ ::Google::Cloud::AIPlatform::V1::NotebookSoftwareConfig (readonly)
Returns Output only. Software config of the notebook runtime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Timestamp when this NotebookRuntime was most recently updated.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |
#version ⇒ ::String (readonly)
Returns Output only. The VM os image version of NotebookRuntime.
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 255 class NotebookRuntime include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The substate of the NotebookRuntime to display health information. module HealthState # Unspecified health state. HEALTH_STATE_UNSPECIFIED = 0 # NotebookRuntime is in healthy state. Applies to ACTIVE state. HEALTHY = 1 # NotebookRuntime is in unhealthy state. Applies to ACTIVE state. UNHEALTHY = 2 end # The substate of the NotebookRuntime to display state of runtime. # The resource of NotebookRuntime is in ACTIVE state for these sub state. module RuntimeState # Unspecified runtime state. RUNTIME_STATE_UNSPECIFIED = 0 # NotebookRuntime is in running state. RUNNING = 1 # NotebookRuntime is in starting state. This is when the runtime is being # started from a stopped state. BEING_STARTED = 2 # NotebookRuntime is in stopping state. BEING_STOPPED = 3 # NotebookRuntime is in stopped state. STOPPED = 4 # NotebookRuntime is in upgrading state. It is in the middle of upgrading # process. BEING_UPGRADED = 5 # NotebookRuntime was unable to start/stop properly. ERROR = 100 # NotebookRuntime is in invalid state. Cannot be recovered. INVALID = 101 end end |