pub struct BlobClientAcquireLeaseOptions<'a> {
pub client_request_id: Option<String>,
pub if_match: Option<String>,
pub if_modified_since: Option<OffsetDateTime>,
pub if_none_match: Option<String>,
pub if_tags: Option<String>,
pub if_unmodified_since: Option<OffsetDateTime>,
pub method_options: ClientMethodOptions<'a>,
pub proposed_lease_id: Option<String>,
pub timeout: Option<i32>,
}
Expand description
Options to be passed to BlobClient::acquire_lease()
Fields§
§client_request_id: Option<String>
An opaque, globally-unique, client-generated string identifier for the request.
if_match: Option<String>
A condition that must be met in order for the request to be processed.
if_modified_since: Option<OffsetDateTime>
A date-time value. A request is made under the condition that the resource has been modified since the specified date-time.
if_none_match: Option<String>
A condition that must be met in order for the request to be processed.
Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
if_unmodified_since: Option<OffsetDateTime>
A date-time value. A request is made under the condition that the resource has not been modified since the specified date-time.
method_options: ClientMethodOptions<'a>
Allows customization of the method call.
proposed_lease_id: Option<String>
Optional. The proposed lease ID for the container.
timeout: Option<i32>
The timeout parameter is expressed in seconds. For more information, see Setting Timeouts for Blob Service Operations.
Trait Implementations§
Source§impl<'a> Clone for BlobClientAcquireLeaseOptions<'a>
impl<'a> Clone for BlobClientAcquireLeaseOptions<'a>
Source§fn clone(&self) -> BlobClientAcquireLeaseOptions<'a>
fn clone(&self) -> BlobClientAcquireLeaseOptions<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more