pub struct TableResult {
pub acls: Output<Option<Vec<TableAcl>>>,
pub name: Output<String>,
pub storage_account_name: Output<String>,
}
Fields§
§acls: Output<Option<Vec<TableAcl>>>
One or more acl
blocks as defined below.
name: Output<String>
The name of the storage table. Only Alphanumeric characters allowed, starting with a letter. Must be unique within the storage account the table is located. Changing this forces a new resource to be created.
storage_account_name: Output<String>
Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl Freeze for TableResult
impl RefUnwindSafe for TableResult
impl Send for TableResult
impl Sync for TableResult
impl Unpin for TableResult
impl UnwindSafe for TableResult
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