pub struct GoogleCloudAiplatformV1DatasetVersion {
pub create_time: Option<DateTime<Utc>>,
pub update_time: Option<DateTime<Utc>>,
pub display_name: Option<String>,
pub big_query_dataset_name: Option<String>,
pub metadata: Option<Value>,
pub etag: Option<String>,
pub model_reference: Option<String>,
pub name: Option<String>,
}Expand description
Describes the dataset version.
§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 datasets dataset versions patch projects (request|response)
- locations datasets dataset versions get projects (response)
- locations datasets dataset versions create projects (request)
Fields§
§create_time: Option<DateTime<Utc>>Output only. Timestamp when this DatasetVersion was created.
update_time: Option<DateTime<Utc>>Output only. Timestamp when this DatasetVersion was last updated.
display_name: Option<String>The user-defined name of the DatasetVersion. The name can be up to 128 characters long and can consist of any UTF-8 characters.
big_query_dataset_name: Option<String>Output only. Name of the associated BigQuery dataset.
metadata: Option<Value>Required. Output only. Additional information about the DatasetVersion.
etag: Option<String>Used to perform consistent read-modify-write updates. If not set, a blind “overwrite” update happens.
model_reference: Option<String>Output only. Reference to the public base model last used by the dataset version. Only set for prompt dataset versions.
name: Option<String>Output only. Identifier. The resource name of the DatasetVersion.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1DatasetVersion
impl Clone for GoogleCloudAiplatformV1DatasetVersion
Source§fn clone(&self) -> GoogleCloudAiplatformV1DatasetVersion
fn clone(&self) -> GoogleCloudAiplatformV1DatasetVersion
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1DatasetVersion
impl Default for GoogleCloudAiplatformV1DatasetVersion
Source§fn default() -> GoogleCloudAiplatformV1DatasetVersion
fn default() -> GoogleCloudAiplatformV1DatasetVersion
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1DatasetVersion
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1DatasetVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudAiplatformV1DatasetVersion
impl ResponseResult for GoogleCloudAiplatformV1DatasetVersion
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1DatasetVersion
impl RefUnwindSafe for GoogleCloudAiplatformV1DatasetVersion
impl Send for GoogleCloudAiplatformV1DatasetVersion
impl Sync for GoogleCloudAiplatformV1DatasetVersion
impl Unpin for GoogleCloudAiplatformV1DatasetVersion
impl UnwindSafe for GoogleCloudAiplatformV1DatasetVersion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more