Struct google_api_proto::google::cloud::aiplatform::v1beta1::NotebookRuntimeTemplate
source · pub struct NotebookRuntimeTemplate {Show 18 fields
pub name: String,
pub display_name: String,
pub description: String,
pub is_default: bool,
pub machine_spec: Option<MachineSpec>,
pub data_persistent_disk_spec: Option<PersistentDiskSpec>,
pub network_spec: Option<NetworkSpec>,
pub service_account: String,
pub etag: String,
pub labels: BTreeMap<String, String>,
pub idle_shutdown_config: Option<NotebookIdleShutdownConfig>,
pub euc_config: Option<NotebookEucConfig>,
pub create_time: Option<Timestamp>,
pub update_time: Option<Timestamp>,
pub notebook_runtime_type: i32,
pub shielded_vm_config: Option<ShieldedVmConfig>,
pub network_tags: Vec<String>,
pub encryption_spec: Option<EncryptionSpec>,
}
Expand description
A template that specifies runtime configurations such as machine type, runtime version, network configurations, etc. Multiple runtimes can be created from a runtime template.
Fields§
§name: String
The resource name of the NotebookRuntimeTemplate.
display_name: String
Required. The display name of the NotebookRuntimeTemplate. The name can be up to 128 characters long and can consist of any UTF-8 characters.
description: String
The description of the NotebookRuntimeTemplate.
is_default: bool
Output only. The default template to use if not specified.
machine_spec: Option<MachineSpec>
Optional. Immutable. The specification of a single machine for the template.
data_persistent_disk_spec: Option<PersistentDiskSpec>
Optional. The specification of [persistent disk][https://cloud.google.com/compute/docs/disks/persistent-disks] attached to the runtime as data disk storage.
network_spec: Option<NetworkSpec>
Optional. Network spec.
service_account: String
The service account that the runtime workload runs as. 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.
etag: String
Used to perform consistent read-modify-write updates. If not set, a blind “overwrite” update happens.
labels: BTreeMap<String, String>
The labels with user-defined metadata to organize the NotebookRuntimeTemplates.
Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed.
See https://goo.gl/xmQnxf for more information and examples of labels.
idle_shutdown_config: Option<NotebookIdleShutdownConfig>
The idle shutdown configuration of NotebookRuntimeTemplate. This config will only be set when idle shutdown is enabled.
euc_config: Option<NotebookEucConfig>
EUC configuration of the NotebookRuntimeTemplate.
create_time: Option<Timestamp>
Output only. Timestamp when this NotebookRuntimeTemplate was created.
update_time: Option<Timestamp>
Output only. Timestamp when this NotebookRuntimeTemplate was most recently updated.
notebook_runtime_type: i32
Optional. Immutable. The type of the notebook runtime template.
shielded_vm_config: Option<ShieldedVmConfig>
Optional. Immutable. Runtime Shielded VM spec.
Optional. The Compute Engine tags to add to runtime (see Tagging instances).
encryption_spec: Option<EncryptionSpec>
Customer-managed encryption key spec for the notebook runtime.
Implementations§
source§impl NotebookRuntimeTemplate
impl NotebookRuntimeTemplate
sourcepub fn notebook_runtime_type(&self) -> NotebookRuntimeType
pub fn notebook_runtime_type(&self) -> NotebookRuntimeType
Returns the enum value of notebook_runtime_type
, or the default if the field is set to an invalid enum value.
sourcepub fn set_notebook_runtime_type(&mut self, value: NotebookRuntimeType)
pub fn set_notebook_runtime_type(&mut self, value: NotebookRuntimeType)
Sets notebook_runtime_type
to the provided enum value.
Trait Implementations§
source§impl Clone for NotebookRuntimeTemplate
impl Clone for NotebookRuntimeTemplate
source§fn clone(&self) -> NotebookRuntimeTemplate
fn clone(&self) -> NotebookRuntimeTemplate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NotebookRuntimeTemplate
impl Debug for NotebookRuntimeTemplate
source§impl Default for NotebookRuntimeTemplate
impl Default for NotebookRuntimeTemplate
source§impl Message for NotebookRuntimeTemplate
impl Message for NotebookRuntimeTemplate
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for NotebookRuntimeTemplate
impl PartialEq for NotebookRuntimeTemplate
source§fn eq(&self, other: &NotebookRuntimeTemplate) -> bool
fn eq(&self, other: &NotebookRuntimeTemplate) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NotebookRuntimeTemplate
Auto Trait Implementations§
impl Freeze for NotebookRuntimeTemplate
impl RefUnwindSafe for NotebookRuntimeTemplate
impl Send for NotebookRuntimeTemplate
impl Sync for NotebookRuntimeTemplate
impl Unpin for NotebookRuntimeTemplate
impl UnwindSafe for NotebookRuntimeTemplate
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request