pub struct BlobFolderMappingProperties {
pub container_name: String,
pub data_set_id: String,
pub data_set_mapping_status: Option<DataSetMappingStatus>,
pub prefix: String,
pub provisioning_state: Option<ProvisioningState>,
pub resource_group: String,
pub storage_account_name: String,
pub subscription_id: String,
}
Expand description
Azure storage Blob folder data set mapping property bag.
Fields§
§container_name: String
Container that has the file path.
data_set_id: String
The id of the source data set.
data_set_mapping_status: Option<DataSetMappingStatus>
Gets the status of the data set mapping.
prefix: String
Prefix for blob folder
provisioning_state: Option<ProvisioningState>
Provisioning state of the data set mapping.
resource_group: String
Resource group of storage account.
storage_account_name: String
Storage account name of the source data set.
subscription_id: String
Subscription id of storage account.
Implementations§
Trait Implementations§
Source§impl Clone for BlobFolderMappingProperties
impl Clone for BlobFolderMappingProperties
Source§fn clone(&self) -> BlobFolderMappingProperties
fn clone(&self) -> BlobFolderMappingProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BlobFolderMappingProperties
impl Debug for BlobFolderMappingProperties
Source§impl<'de> Deserialize<'de> for BlobFolderMappingProperties
impl<'de> Deserialize<'de> for BlobFolderMappingProperties
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>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for BlobFolderMappingProperties
Auto Trait Implementations§
impl Freeze for BlobFolderMappingProperties
impl RefUnwindSafe for BlobFolderMappingProperties
impl Send for BlobFolderMappingProperties
impl Sync for BlobFolderMappingProperties
impl Unpin for BlobFolderMappingProperties
impl UnwindSafe for BlobFolderMappingProperties
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
Mutably borrows from an owned value. Read more