Struct gapi_grpc::google::cloud::aiplatform::v1beta1::ImportDataConfig[][src]

pub struct ImportDataConfig {
    pub data_item_labels: HashMap<String, String>,
    pub import_schema_uri: String,
    pub source: Option<Source>,
}

Describes the location from where we import data into a Dataset, together with the labels that will be applied to the DataItems and the Annotations.

Fields

data_item_labels: HashMap<String, String>

Labels that will be applied to newly imported DataItems. If an identical DataItem as one being imported already exists in the Dataset, then these labels will be appended to these of the already existing one, and if labels with identical key is imported before, the old label value will be overwritten. If two DataItems are identical in the same import data operation, the labels will be combined and if key collision happens in this case, one of the values will be picked randomly. Two DataItems are considered identical if their content bytes are identical (e.g. image bytes or pdf bytes). These labels will be overridden by Annotation labels specified inside index file referenced by [import_schema_uri][google.cloud.aiplatform.v1beta1.ImportDataConfig.import_schema_uri], e.g. jsonl file.

import_schema_uri: String

Required. Points to a YAML file stored on Google Cloud Storage describing the import format. Validation will be done against the schema. The schema is defined as an OpenAPI 3.0.2 Schema Object.

source: Option<Source>

The source of the input.

Trait Implementations

impl Clone for ImportDataConfig[src]

impl Debug for ImportDataConfig[src]

impl Default for ImportDataConfig[src]

impl Message for ImportDataConfig[src]

impl PartialEq<ImportDataConfig> for ImportDataConfig[src]

impl StructuralPartialEq for ImportDataConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for ImportDataConfig

impl Send for ImportDataConfig

impl Sync for ImportDataConfig

impl Unpin for ImportDataConfig

impl UnwindSafe for ImportDataConfig

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]