[][src]Struct google_storagetransfer1::AzureBlobStorageData

pub struct AzureBlobStorageData {
    pub container: Option<String>,
    pub azure_credentials: Option<AzureCredentials>,
    pub storage_account: Option<String>,
}

An AzureBlobStorageData resource can be a data source, but not a data sink. An AzureBlobStorageData resource represents one Azure container. The storage account determines the Azure endpoint. In an AzureBlobStorageData resource, a blobs's name is the Azure Blob Storage blob's key name.

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

Fields

container: Option<String>

Required. The container to transfer from the Azure Storage account.

azure_credentials: Option<AzureCredentials>

Required. Credentials used to authenticate API requests to Azure.

storage_account: Option<String>

Required. The name of the Azure Storage account.

Trait Implementations

impl Clone for AzureBlobStorageData[src]

impl Debug for AzureBlobStorageData[src]

impl Default for AzureBlobStorageData[src]

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

impl Part for AzureBlobStorageData[src]

impl Serialize for AzureBlobStorageData[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any