[][src]Struct google_healthcare1_beta1::GoogleCloudHealthcareV1beta1FhirRestGcsSource

pub struct GoogleCloudHealthcareV1beta1FhirRestGcsSource {
    pub uri: Option<String>,
}

Specifies the configuration for importing data from Cloud Storage.

This type is not used in any activity, and only used as part of another schema.

Fields

uri: Option<String>

Points to a Cloud Storage URI containing file(s) to import.

The URI must be in the following format: gs://{bucket_id}/{object_id}. The URI can include wildcards in object_id and thus identify multiple files. Supported wildcards:

  • * to match 0 or more non-separator characters
  • ** to match 0 or more characters (including separators). Must be used at the end of a path and with no other wildcards in the path. Can also be used with a file extension (such as .ndjson), which imports all files with the extension in the specified directory and its sub-directories. For example, gs://my-bucket/my-directory/**.ndjson imports all files with .ndjson extensions in my-directory/ and its sub-directories.
  • ? to match 1 character

Files matching the wildcard are expected to contain content only, no metadata.

Trait Implementations

impl Part for GoogleCloudHealthcareV1beta1FhirRestGcsSource[src]

impl Default for GoogleCloudHealthcareV1beta1FhirRestGcsSource[src]

impl Clone for GoogleCloudHealthcareV1beta1FhirRestGcsSource[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudHealthcareV1beta1FhirRestGcsSource[src]

impl Serialize for GoogleCloudHealthcareV1beta1FhirRestGcsSource[src]

impl<'de> Deserialize<'de> for GoogleCloudHealthcareV1beta1FhirRestGcsSource[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]