[][src]Struct gcp_client::google::storage::v1::ComposeObjectRequest

pub struct ComposeObjectRequest {
    pub destination_bucket: String,
    pub destination_object: String,
    pub destination_predefined_acl: i32,
    pub destination: Option<Object>,
    pub source_objects: Vec<SourceObjects>,
    pub if_generation_match: Option<i64>,
    pub if_metageneration_match: Option<i64>,
    pub kms_key_name: String,
    pub common_object_request_params: Option<CommonObjectRequestParams>,
    pub common_request_params: Option<CommonRequestParams>,
}

Request message for ComposeObject.

Fields

destination_bucket: String

Required. Name of the bucket containing the source objects. The destination object is stored in this bucket.

destination_object: String

Required. Name of the new object.

destination_predefined_acl: i32

Apply a predefined set of access controls to the destination object.

destination: Option<Object>

Properties of the resulting object.

source_objects: Vec<SourceObjects>

The list of source objects that will be concatenated into a single object.

if_generation_match: 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.

if_metageneration_match: Option<i64>

Makes the operation conditional on whether the object's current metageneration matches the given value.

kms_key_name: String

Resource name of the Cloud KMS key, of the form projects/my-project/locations/my-location/keyRings/my-kr/cryptoKeys/my-key, that will be used to encrypt the object. Overrides the object metadata's kms_key_name value, if any.

common_object_request_params: Option<CommonObjectRequestParams>

A set of parameters common to Storage API requests concerning an object.

common_request_params: Option<CommonRequestParams>

A set of parameters common to all Storage API requests.

Implementations

impl ComposeObjectRequest[src]

pub fn destination_predefined_acl(&self) -> PredefinedObjectAcl[src]

Returns the enum value of destination_predefined_acl, or the default if the field is set to an invalid enum value.

pub fn set_destination_predefined_acl(&mut self, value: PredefinedObjectAcl)[src]

Sets destination_predefined_acl to the provided enum value.

Trait Implementations

impl Clone for ComposeObjectRequest[src]

impl Debug for ComposeObjectRequest[src]

impl Default for ComposeObjectRequest[src]

impl Message for ComposeObjectRequest[src]

impl PartialEq<ComposeObjectRequest> for ComposeObjectRequest[src]

impl StructuralPartialEq for ComposeObjectRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]