pub struct PageBlobClientSetSequenceNumberOptions<'a> {
pub blob_sequence_number: Option<i64>,
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 lease_id: Option<String>,
pub method_options: ClientMethodOptions<'a>,
pub timeout: Option<i32>,
}
Expand description
Options to be passed to PageBlobClient::set_sequence_number()
Fields§
§blob_sequence_number: Option<i64>
Set for page blobs only. The sequence number is a user-controlled value that you can use to track requests. The value of the sequence number must be between 0 and 2^63 - 1.
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.
lease_id: Option<String>
If specified, the operation only succeeds if the resource’s lease is active and matches this ID.
method_options: ClientMethodOptions<'a>
Allows customization of the method call.
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 PageBlobClientSetSequenceNumberOptions<'a>
impl<'a> Clone for PageBlobClientSetSequenceNumberOptions<'a>
Source§fn clone(&self) -> PageBlobClientSetSequenceNumberOptions<'a>
fn clone(&self) -> PageBlobClientSetSequenceNumberOptions<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more