Struct googapis::google::cloud::notebooks::v1::Instance[][src]

pub struct Instance {
Show 33 fields pub name: String, pub post_startup_script: String, pub proxy_uri: String, pub instance_owners: Vec<String>, pub service_account: String, pub service_account_scopes: Vec<String>, pub machine_type: String, pub accelerator_config: Option<AcceleratorConfig>, pub state: i32, pub install_gpu_driver: bool, pub custom_gpu_driver_path: String, pub boot_disk_type: i32, pub boot_disk_size_gb: i64, pub data_disk_type: i32, pub data_disk_size_gb: i64, pub no_remove_data_disk: bool, pub disk_encryption: i32, pub kms_key: String, pub disks: Vec<Disk>, pub shielded_instance_config: Option<ShieldedInstanceConfig>, pub no_public_ip: bool, pub no_proxy_access: bool, pub network: String, pub subnet: String, pub labels: HashMap<String, String>, pub metadata: HashMap<String, String>, pub tags: Vec<String>, pub upgrade_history: Vec<UpgradeHistoryEntry>, pub nic_type: i32, pub reservation_affinity: Option<ReservationAffinity>, pub create_time: Option<Timestamp>, pub update_time: Option<Timestamp>, pub environment: Option<Environment>,
}
Expand description

The definition of a notebook instance.

Fields

name: String

Output only. The name of this notebook instance. Format: projects/{project_id}/locations/{location}/instances/{instance_id}

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 (gs://path-to-file/file-name).

proxy_uri: String

Output only. The proxy endpoint that is used to access the Jupyter notebook.

instance_owners: Vec<String>

Input only. The owner of this instance after creation. Format: alias@example.com

Currently supports one owner only. If not specified, all of the service account users of your VM instance’s service account can use the instance.

service_account: String

The service account on this instance, giving access to other Google Cloud services. You can use any service account within the same project, but you must have the service account user permission to use the instance.

If not specified, the Compute Engine default service account is used.

service_account_scopes: Vec<String>

Optional. The URIs of service account scopes to be included in Compute Engine instances.

If not specified, the following [scopes](https://cloud.google.com/compute/docs/access/service-accounts#accesscopesiam) are defined:

machine_type: String

Required. The Compute Engine machine type of this instance.

accelerator_config: Option<AcceleratorConfig>

The hardware accelerator used on this instance. If you use accelerators, make sure that your configuration has enough vCPUs and memory to support the machine_type you have selected.

state: i32

Output only. The state of this instance.

install_gpu_driver: bool

Whether the end user authorizes Google Cloud to install GPU driver on this instance. If this field is empty or set to false, the GPU driver won’t be installed. Only applicable to instances with GPUs.

custom_gpu_driver_path: String

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

boot_disk_type: i32

Input only. The type of the boot disk attached to this instance, defaults to standard persistent disk (PD_STANDARD).

boot_disk_size_gb: i64

Input only. The size of the boot disk in GB attached to this instance, up to a maximum of 64000 GB (64 TB). The minimum recommended value is 100 GB. If not specified, this defaults to 100.

data_disk_type: i32

Input only. The type of the data disk attached to this instance, defaults to standard persistent disk (PD_STANDARD).

data_disk_size_gb: i64

Input only. The size of the data disk in GB attached to this instance, up to a maximum of 64000 GB (64 TB). You can choose the size of the data disk based on how big your notebooks and data are. If not specified, this defaults to 100.

no_remove_data_disk: bool

Input only. If true, the data disk will not be auto deleted when deleting the instance.

disk_encryption: i32

Input only. Disk encryption method used on the boot and data disks, defaults to GMEK.

kms_key: String

Input only. The KMS key used to encrypt the disks, only applicable if disk_encryption is CMEK. Format: projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}

Learn more about using your own encryption keys.

disks: Vec<Disk>

Output only. Attached disks to notebook instance.

shielded_instance_config: Option<ShieldedInstanceConfig>

Optional. Shielded VM configuration. Images using supported Shielded VM features.

no_public_ip: bool

If true, no public IP will be assigned to this instance.

no_proxy_access: bool

If true, the notebook instance will not register with the proxy.

network: String

The name of the VPC that this instance is in. Format: projects/{project_id}/global/networks/{network_id}

subnet: String

The name of the subnet that this instance is in. Format: projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}

labels: HashMap<String, String>

Labels to apply to this instance. These can be later modified by the setLabels method.

metadata: HashMap<String, String>

Custom metadata to apply to this instance.

tags: Vec<String>

Optional. The Compute Engine tags to add to runtime (see Tagging instances).

upgrade_history: Vec<UpgradeHistoryEntry>

The upgrade history of this instance.

nic_type: i32

Optional. The type of vNIC to be used on this interface. This may be gVNIC or VirtioNet.

reservation_affinity: Option<ReservationAffinity>

Optional. The optional reservation affinity. Setting this field will apply the specified Zonal Compute Reservation to this notebook instance.

create_time: Option<Timestamp>

Output only. Instance creation time.

update_time: Option<Timestamp>

Output only. Instance update time.

environment: Option<Environment>

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

Implementations

Returns the enum value of state, or the default if the field is set to an invalid enum value.

Sets state to the provided enum value.

Returns the enum value of boot_disk_type, or the default if the field is set to an invalid enum value.

Sets boot_disk_type to the provided enum value.

Returns the enum value of disk_encryption, or the default if the field is set to an invalid enum value.

Sets disk_encryption to the provided enum value.

Returns the enum value of data_disk_type, or the default if the field is set to an invalid enum value.

Sets data_disk_type to the provided enum value.

Returns the enum value of nic_type, or the default if the field is set to an invalid enum value.

Sets nic_type to the provided enum value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Returns the encoded length of the message without a length delimiter.

Clears the message, resetting all fields to their default.

Encodes the message to a buffer. Read more

Encodes the message to a newly allocated buffer.

Encodes the message with a length-delimiter to a buffer. Read more

Encodes the message with a length-delimiter to a newly allocated buffer.

Decodes an instance of the message from a buffer. Read more

Decodes a length-delimited instance of the message from the buffer.

Decodes an instance of the message from a buffer, and merges it into self. Read more

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

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

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

Performs the conversion.

Wrap the input message T in a tonic::Request

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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