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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
use crate::http::object_access_controls::Projection;
use crate::http::objects::copy::CopyObjectRequest;
use crate::http::objects::delete::DeleteObjectRequest;
use crate::http::objects::{Encryption, Object};

/// Request message for moving an object.
#[derive(Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize, Debug, Default)]
#[serde(rename_all = "camelCase")]
pub struct MoveObjectRequest {
    /// Name of the new object. Required when the object metadata is not otherwise provided. Overrides the object metadata's name value, if any.
    pub destination_bucket: String,
    /// Name of the new object. Required when the object metadata is not otherwise provided. Overrides the object metadata's name value, if any.
    pub destination_object: String,
    // Name of the source object. For information about how to URL encode object names to be path safe, see Encoding URI path parts.
    pub source_object: String,
    /// Name of the bucket in which to find the source object.
    #[serde(skip_serializing)]
    pub source_bucket: String,

    /// Makes the operation conditional on there being a live destination object with a generation number that matches the given value. Setting ifGenerationMatch to 0 makes the operation succeed only if there is no live destination object.
    pub if_generation_match: Option<i64>,
    /// Makes the operation conditional on there being a live destination object with a generation number that does not match the given value. If no live destination object exists, the precondition fails. Setting ifGenerationNotMatch to 0 makes the operation succeed if there is a live version of the object.
    pub if_generation_not_match: Option<i64>,
    /// Makes the operation conditional on there being a live destination object with a metageneration number that matches the given value.
    pub if_metageneration_match: Option<i64>,
    /// Makes the operation conditional on there being a live destination object with a metageneration number that does not match the given value.
    pub if_metageneration_not_match: Option<i64>,
    /// Makes the operation conditional on whether the source object's generation matches the given value.
    pub if_source_generation_match: Option<i64>,
    /// Makes the operation conditional on whether the source object's generation does not match the given value.
    pub if_source_generation_not_match: Option<i64>,
    /// Makes the operation conditional on whether the source object's current metageneration matches the given value.
    pub if_source_metageneration_match: Option<i64>,
    /// Makes the operation conditional on whether the source object's current metageneration does not match the given value.
    pub if_source_metageneration_not_match: Option<i64>,
    /// Set of properties to return. Defaults to noAcl, unless the object resource specifies the acl property, when it defaults to full.
    ///
    /// Acceptable values are:
    /// full: Include all properties.
    /// noAcl: Omit the owner, acl property.
    pub projection: Option<Projection>,
    /// If present, selects a specific revision of the source object (as opposed to the latest version, the default)
    pub source_generation: Option<i64>,
    /// The Object metadata for updating.
    #[serde(skip_serializing)]
    pub metadata: Option<Object>,

    #[serde(skip_serializing)]
    pub encryption: Option<Encryption>,
}

impl From<MoveObjectRequest> for CopyObjectRequest {
    fn from(value: MoveObjectRequest) -> Self {
        CopyObjectRequest {
            destination_bucket: value.destination_bucket,
            destination_object: value.destination_object,
            source_object: value.source_object,
            source_bucket: value.source_bucket,
            if_generation_match: value.if_generation_match,
            if_generation_not_match: value.if_generation_not_match,
            if_metageneration_match: value.if_metageneration_match,
            if_metageneration_not_match: value.if_metageneration_not_match,
            if_source_generation_match: value.if_source_generation_match,
            if_source_generation_not_match: value.if_source_generation_not_match,
            if_source_metageneration_match: value.if_source_metageneration_match,
            if_source_metageneration_not_match: value.if_source_metageneration_not_match,
            projection: value.projection,
            source_generation: value.source_generation,
            metadata: value.metadata,
            encryption: value.encryption,
        }
    }
}

impl From<MoveObjectRequest> for DeleteObjectRequest {
    fn from(value: MoveObjectRequest) -> Self {
        DeleteObjectRequest {
            bucket: value.source_bucket,
            object: value.source_object,
            generation: value.source_generation,
            if_generation_match: value.if_source_generation_match,
            if_generation_not_match: value.if_source_generation_not_match,
            if_metageneration_match: value.if_metageneration_match,
            if_metageneration_not_match: value.if_metageneration_not_match,
        }
    }
}