pub struct GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig {
pub image_destination: Option<GoogleCloudAiplatformV1beta1ContainerRegistryDestination>,
pub artifact_destination: Option<GoogleCloudAiplatformV1beta1GcsDestination>,
pub export_format_id: Option<String>,
}Expand description
Output configuration for the Model export.
This type is not used in any activity, and only used as part of another schema.
Fields§
§image_destination: Option<GoogleCloudAiplatformV1beta1ContainerRegistryDestination>The Google Container Registry or Artifact Registry uri where the Model container image will be copied to. This field should only be set when the exportableContent field of the [Model.supported_export_formats] object contains IMAGE.
artifact_destination: Option<GoogleCloudAiplatformV1beta1GcsDestination>The Cloud Storage location where the Model artifact is to be written to. Under the directory given as the destination a new one with name “model-export--”, where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format, will be created. Inside, the Model and any of its supporting files will be written. This field should only be set when the exportableContent field of the [Model.supported_export_formats] object contains ARTIFACT.
export_format_id: Option<String>The ID of the format in which the Model must be exported. Each Model lists the export formats it supports. If no value is provided here, then the first from the list of the Model’s supported formats is used by default.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
impl Clone for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
Source§fn clone(&self) -> GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
fn clone(&self) -> GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
impl Default for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
Source§fn default() -> GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
fn default() -> GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
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 GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
impl RefUnwindSafe for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
impl Send for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
impl Sync for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
impl Unpin for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
impl UnwindSafe for GoogleCloudAiplatformV1beta1ExportModelRequestOutputConfig
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