pub struct TableArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> TableArgsBuilder<S>
impl<S: State> TableArgsBuilder<S>
sourcepub fn build_struct(self) -> TableArgswhere
S: IsComplete,
pub fn build_struct(self) -> TableArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn acls(
self,
value: impl Into<Output<Option<Vec<TableAcl>>>>,
) -> TableArgsBuilder<SetAcls<S>>where
S::Acls: IsUnset,
pub fn acls(
self,
value: impl Into<Output<Option<Vec<TableAcl>>>>,
) -> TableArgsBuilder<SetAcls<S>>where
S::Acls: IsUnset,
sourcepub fn maybe_acls(
self,
value: Option<impl Into<Output<Option<Vec<TableAcl>>>>>,
) -> TableArgsBuilder<SetAcls<S>>where
S::Acls: IsUnset,
pub fn maybe_acls(
self,
value: Option<impl Into<Output<Option<Vec<TableAcl>>>>>,
) -> TableArgsBuilder<SetAcls<S>>where
S::Acls: IsUnset,
sourcepub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> TableArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> TableArgsBuilder<SetName<S>>where
S::Name: IsUnset,
Optional (Some / Option setters). Default: <pulumi_wasm_rust::Output<Option<String>> as Default>::default()
.
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.
sourcepub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> TableArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> TableArgsBuilder<SetName<S>>where
S::Name: IsUnset,
Optional (Some / Option setters). Default: <pulumi_wasm_rust::Output<Option<String>> as Default>::default()
.
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.
sourcepub fn storage_account_name(
self,
value: impl Into<Output<String>>,
) -> TableArgsBuilder<SetStorageAccountName<S>>where
S::StorageAccountName: IsUnset,
pub fn storage_account_name(
self,
value: impl Into<Output<String>>,
) -> TableArgsBuilder<SetStorageAccountName<S>>where
S::StorageAccountName: IsUnset,
Required.
Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.