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 limited to 24 hours.
Defined Under Namespace
Modules: HealthState, RuntimeState Classes: LabelsEntry
Instance Attribute Summary collapse
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#description ⇒ ::String
The description of the NotebookRuntime.
-
#display_name ⇒ ::String
Required.
-
#encryption_spec ⇒ ::Google::Cloud::AIPlatform::V1::EncryptionSpec
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.
-
#name ⇒ ::String
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.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#version ⇒ ::String
readonly
Output only.
Instance Attribute Details
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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}
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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>
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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)
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_runtime.rb', line 208 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. 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 |