pub struct BatchDeleteTableVersionsRequest {
pub identity: Option<Box<Identity>>,
pub context: Option<HashMap<String, String>>,
pub id: Option<Vec<String>>,
pub branch: Option<String>,
pub ranges: Vec<VersionRange>,
}Expand description
BatchDeleteTableVersionsRequest : Request to delete table version records. Supports deleting ranges of versions for efficient bulk cleanup.
Fields§
§identity: Option<Box<Identity>>§context: Option<HashMap<String, String>>Arbitrary context for a request as key-value pairs. How to use the context is custom to the specific implementation. REST NAMESPACE ONLY Context entries are passed via HTTP headers using the naming convention x-lance-ctx-<key>: <value>. For example, a context entry {\"trace_id\": \"abc123\"} would be sent as the header x-lance-ctx-trace_id: abc123.
id: Option<Vec<String>>The table identifier
branch: Option<String>Branch to target. When not specified, the main branch is used.
ranges: Vec<VersionRange>List of version ranges to delete. Each range specifies start (inclusive) and end (exclusive) versions.
Implementations§
Source§impl BatchDeleteTableVersionsRequest
impl BatchDeleteTableVersionsRequest
Sourcepub fn new(ranges: Vec<VersionRange>) -> BatchDeleteTableVersionsRequest
pub fn new(ranges: Vec<VersionRange>) -> BatchDeleteTableVersionsRequest
Request to delete table version records. Supports deleting ranges of versions for efficient bulk cleanup.
Trait Implementations§
Source§impl Clone for BatchDeleteTableVersionsRequest
impl Clone for BatchDeleteTableVersionsRequest
Source§fn clone(&self) -> BatchDeleteTableVersionsRequest
fn clone(&self) -> BatchDeleteTableVersionsRequest
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for BatchDeleteTableVersionsRequest
impl Default for BatchDeleteTableVersionsRequest
Source§fn default() -> BatchDeleteTableVersionsRequest
fn default() -> BatchDeleteTableVersionsRequest
Source§impl<'de> Deserialize<'de> for BatchDeleteTableVersionsRequest
impl<'de> Deserialize<'de> for BatchDeleteTableVersionsRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BatchDeleteTableVersionsRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BatchDeleteTableVersionsRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for BatchDeleteTableVersionsRequest
impl PartialEq for BatchDeleteTableVersionsRequest
Source§fn eq(&self, other: &BatchDeleteTableVersionsRequest) -> bool
fn eq(&self, other: &BatchDeleteTableVersionsRequest) -> bool
self and other values to be equal, and is used by ==.