pub struct Environment {
pub container_image: Option<ContainerImage>,
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub display_name: Option<String>,
pub name: Option<String>,
pub post_startup_script: Option<String>,
pub vm_image: Option<VmImage>,
}Expand description
Definition of a software environment that is used to start a notebook instance.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations environments create projects (request)
- locations environments get projects (response)
Fields§
§container_image: Option<ContainerImage>Use a container image to start the notebook instance.
create_time: Option<DateTime<Utc>>Output only. The time at which this environment was created.
description: Option<String>A brief description of this environment.
display_name: Option<String>Display name of this environment for the UI.
name: Option<String>Output only. Name of this environment. Format: projects/{project_id}/locations/{location}/environments/{environment_id}
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. Example: "gs://path-to-file/file-name"
vm_image: Option<VmImage>Use a Compute Engine VM image to start the notebook instance.
Trait Implementations§
Source§impl Clone for Environment
impl Clone for Environment
Source§fn clone(&self) -> Environment
fn clone(&self) -> Environment
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more