pub struct RuntimeSoftwareConfig {
Show 13 fields pub custom_gpu_driver_path: Option<String>, pub disable_terminal: Option<bool>, pub enable_health_monitoring: Option<bool>, pub idle_shutdown: Option<bool>, pub idle_shutdown_timeout: Option<i32>, pub install_gpu_driver: Option<bool>, pub kernels: Option<Vec<ContainerImage>>, pub mixer_disabled: Option<bool>, pub notebook_upgrade_schedule: Option<String>, pub post_startup_script: Option<String>, pub post_startup_script_behavior: Option<String>, pub upgradeable: Option<bool>, pub version: Option<String>,
}
Expand description

Specifies the selection and configuration of software inside the runtime. The properties to set on runtime. Properties keys are specified in key:value format, for example: * idle_shutdown: true * idle_shutdown_timeout: 180 * enable_health_monitoring: true

This type is not used in any activity, and only used as part of another schema.

Fields§

§custom_gpu_driver_path: Option<String>

Specify a custom Cloud Storage path where the GPU driver is stored. If not specified, we’ll automatically choose from official GPU drivers.

§disable_terminal: Option<bool>

Bool indicating whether JupyterLab terminal will be available or not. Default: False

§enable_health_monitoring: Option<bool>

Verifies core internal services are running. Default: True

§idle_shutdown: Option<bool>

Runtime will automatically shutdown after idle_shutdown_time. Default: True

§idle_shutdown_timeout: Option<i32>

Time in minutes to wait before shutting down runtime. Default: 180 minutes

§install_gpu_driver: Option<bool>

Install Nvidia Driver automatically. Default: True

§kernels: Option<Vec<ContainerImage>>

Optional. Use a list of container images to use as Kernels in the notebook instance.

§mixer_disabled: Option<bool>

Bool indicating whether mixer client should be disabled. Default: False

§notebook_upgrade_schedule: Option<String>

Cron expression in UTC timezone, used to schedule instance auto upgrade. Please follow the cron format.

§post_startup_script: Option<String>

Path to a Bash script that automatically runs after a notebook instance fully boots up. The path must be a URL or Cloud Storage path (gs://path-to-file/file-name).

§post_startup_script_behavior: Option<String>

Behavior for the post startup script.

§upgradeable: Option<bool>

Output only. Bool indicating whether an newer image is available in an image family.

§version: Option<String>

Output only. version of boot image such as M100, from release label of the image.

Trait Implementations§

source§

impl Clone for RuntimeSoftwareConfig

source§

fn clone(&self) -> RuntimeSoftwareConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RuntimeSoftwareConfig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for RuntimeSoftwareConfig

source§

fn default() -> RuntimeSoftwareConfig

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for RuntimeSoftwareConfig

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for RuntimeSoftwareConfig

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Part for RuntimeSoftwareConfig

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,