1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use reqwest_middleware::{ClientWithMiddleware as Client, RequestBuilder};
use crate::http::Escape;
/// Request message for GetObject.
#[derive(Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize, Debug, Default)]
#[serde(rename_all = "camelCase")]
pub struct DeleteObjectRequest {
/// Required. Name of the bucket in which the object resides.
#[serde(skip_serializing)]
pub bucket: String,
/// Required. Name of the object.
#[serde(skip_serializing)]
pub object: String,
/// If present, selects a specific revision of this object (as opposed to the
/// latest version, the default).
pub generation: Option<i64>,
/// Makes the operation conditional on whether the object's current generation
/// matches the given value. Setting to 0 makes the operation succeed only if
/// there are no live versions of the object.
pub if_generation_match: Option<i64>,
/// Makes the operation conditional on whether the object's current generation
/// does not match the given value. If no live object exists, the precondition
/// fails. Setting to 0 makes the operation succeed only if there is a live
/// version of the object.
pub if_generation_not_match: Option<i64>,
/// Makes the operation conditional on whether the object's current
/// metageneration matches the given value.
pub if_metageneration_match: Option<i64>,
/// Makes the operation conditional on whether the object's current
/// metageneration does not match the given value.
pub if_metageneration_not_match: Option<i64>,
}
pub(crate) fn build(base_url: &str, client: &Client, req: &DeleteObjectRequest) -> RequestBuilder {
let url = format!("{}/b/{}/o/{}", base_url, req.bucket.escape(), req.object.escape());
client.delete(url).query(&req)
}