Struct gapi_grpc::google::cloud::notebooks::v1beta1::Environment[][src]

pub struct Environment {
    pub name: String,
    pub display_name: String,
    pub description: String,
    pub post_startup_script: String,
    pub create_time: Option<Timestamp>,
    pub image_type: Option<ImageType>,
}

Definition of a software environment that is used to start a notebook instance.

Fields

name: String

Output only. Name of this environment. Format: projects/{project_id}/locations/{location}/environments/{environment_id}

display_name: String

Display name of this environment for the UI.

description: String

A brief description of this environment.

post_startup_script: 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. Example: "gs://path-to-file/file-name"

create_time: Option<Timestamp>

Output only. The time at which this environment was created.

image_type: Option<ImageType>

Type of the environment; can be one of VM image, or container image.

Trait Implementations

impl Clone for Environment[src]

impl Debug for Environment[src]

impl Default for Environment[src]

impl Message for Environment[src]

impl PartialEq<Environment> for Environment[src]

impl StructuralPartialEq for Environment[src]

Auto Trait Implementations

impl RefUnwindSafe for Environment

impl Send for Environment

impl Sync for Environment

impl Unpin for Environment

impl UnwindSafe for Environment

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]