Struct gapi_grpc::google::cloud::aiplatform::v1beta1::export_model_request::OutputConfig[][src]

pub struct OutputConfig {
    pub export_format_id: String,
    pub artifact_destination: Option<GcsDestination>,
    pub image_destination: Option<ContainerRegistryDestination>,
}

Output configuration for the Model export.

Fields

export_format_id: String

The ID of the format in which the Model must be exported. Each Model lists the [export formats it supports][google.cloud.aiplatform.v1beta1.Model.supported_export_formats]. If no value is provided here, then the first from the list of the Model’s supported formats is used by default.

artifact_destination: Option<GcsDestination>

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-<model-display-name>-<timestamp-of-export-call>”, 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.

image_destination: Option<ContainerRegistryDestination>

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.

Trait Implementations

impl Clone for OutputConfig[src]

impl Debug for OutputConfig[src]

impl Default for OutputConfig[src]

impl Message for OutputConfig[src]

impl PartialEq<OutputConfig> for OutputConfig[src]

impl StructuralPartialEq for OutputConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for OutputConfig

impl Send for OutputConfig

impl Sync for OutputConfig

impl Unpin for OutputConfig

impl UnwindSafe for OutputConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]