pub struct TableEntityResult {
pub entity: Output<HashMap<String, String>>,
pub partition_key: Output<String>,
pub row_key: Output<String>,
pub storage_table_id: Output<String>,
}
Fields§
§entity: Output<HashMap<String, String>>
A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.
partition_key: Output<String>
The key for the partition where the entity will be inserted/merged. Changing this forces a new resource to be created.
row_key: Output<String>
The key for the row where the entity will be inserted/merged. Changing this forces a new resource to be created.
storage_table_id: Output<String>
The Storage Share ID in which this file will be placed into. Changing this forces a new resource to be created.
Auto Trait Implementations§
impl Freeze for TableEntityResult
impl RefUnwindSafe for TableEntityResult
impl Send for TableEntityResult
impl Sync for TableEntityResult
impl Unpin for TableEntityResult
impl UnwindSafe for TableEntityResult
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