pub struct GoogleCloudAiplatformV1beta1ExportDataConfig {
pub fraction_split: Option<GoogleCloudAiplatformV1beta1ExportFractionSplit>,
pub annotations_filter: Option<String>,
pub gcs_destination: Option<GoogleCloudAiplatformV1beta1GcsDestination>,
}Expand description
Describes what part of the Dataset is to be exported, the destination of the export and how to export.
This type is not used in any activity, and only used as part of another schema.
Fields§
§fraction_split: Option<GoogleCloudAiplatformV1beta1ExportFractionSplit>Split based on fractions defining the size of each set.
annotations_filter: Option<String>An expression for filtering what part of the Dataset is to be exported. Only Annotations that match this filter will be exported. The filter syntax is the same as in ListAnnotations.
gcs_destination: Option<GoogleCloudAiplatformV1beta1GcsDestination>The Google Cloud Storage location where the output is to be written to. In the given directory a new directory will be created with name: export-data-- where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. All export output will be written into that directory. Inside that directory, annotations with the same schema will be grouped into sub directories which are named with the corresponding annotations’ schema title. Inside these sub directories, a schema.yaml will be created to describe the output format.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1beta1ExportDataConfig
impl Clone for GoogleCloudAiplatformV1beta1ExportDataConfig
Source§fn clone(&self) -> GoogleCloudAiplatformV1beta1ExportDataConfig
fn clone(&self) -> GoogleCloudAiplatformV1beta1ExportDataConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1beta1ExportDataConfig
impl Default for GoogleCloudAiplatformV1beta1ExportDataConfig
Source§fn default() -> GoogleCloudAiplatformV1beta1ExportDataConfig
fn default() -> GoogleCloudAiplatformV1beta1ExportDataConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1ExportDataConfig
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1ExportDataConfig
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 Part for GoogleCloudAiplatformV1beta1ExportDataConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1beta1ExportDataConfig
impl RefUnwindSafe for GoogleCloudAiplatformV1beta1ExportDataConfig
impl Send for GoogleCloudAiplatformV1beta1ExportDataConfig
impl Sync for GoogleCloudAiplatformV1beta1ExportDataConfig
impl Unpin for GoogleCloudAiplatformV1beta1ExportDataConfig
impl UnwindSafe for GoogleCloudAiplatformV1beta1ExportDataConfig
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