Struct google_storage1::api::Bucket

source ·
pub struct Bucket {
Show 33 fields pub acl: Option<Vec<BucketAccessControl>>, pub autoclass: Option<BucketAutoclass>, pub billing: Option<BucketBilling>, pub cors: Option<Vec<BucketCors>>, pub custom_placement_config: Option<BucketCustomPlacementConfig>, pub default_event_based_hold: Option<bool>, pub default_object_acl: Option<Vec<ObjectAccessControl>>, pub encryption: Option<BucketEncryption>, pub etag: Option<String>, pub hierarchical_namespace: Option<BucketHierarchicalNamespace>, pub iam_configuration: Option<BucketIamConfiguration>, pub id: Option<String>, pub kind: Option<String>, pub labels: Option<HashMap<String, String>>, pub lifecycle: Option<BucketLifecycle>, pub location: Option<String>, pub location_type: Option<String>, pub logging: Option<BucketLogging>, pub metageneration: Option<i64>, pub name: Option<String>, pub object_retention: Option<BucketObjectRetention>, pub owner: Option<BucketOwner>, pub project_number: Option<u64>, pub retention_policy: Option<BucketRetentionPolicy>, pub rpo: Option<String>, pub satisfies_pzs: Option<bool>, pub self_link: Option<String>, pub soft_delete_policy: Option<BucketSoftDeletePolicy>, pub storage_class: Option<String>, pub time_created: Option<DateTime<Utc>>, pub updated: Option<DateTime<Utc>>, pub versioning: Option<BucketVersioning>, pub website: Option<BucketWebsite>,
}
Expand description

A bucket.

§Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields§

§acl: Option<Vec<BucketAccessControl>>

Access controls on the bucket.

§autoclass: Option<BucketAutoclass>

The bucket’s Autoclass configuration.

§billing: Option<BucketBilling>

The bucket’s billing configuration.

§cors: Option<Vec<BucketCors>>

The bucket’s Cross-Origin Resource Sharing (CORS) configuration.

§custom_placement_config: Option<BucketCustomPlacementConfig>

The bucket’s custom placement configuration for Custom Dual Regions.

§default_event_based_hold: Option<bool>

The default value for event-based hold on newly created objects in this bucket. Event-based hold is a way to retain objects indefinitely until an event occurs, signified by the hold’s release. After being released, such objects will be subject to bucket-level retention (if any). One sample use case of this flag is for banks to hold loan documents for at least 3 years after loan is paid in full. Here, bucket-level retention is 3 years and the event is loan being paid in full. In this example, these objects will be held intact for any number of years until the event has occurred (event-based hold on the object is released) and then 3 more years after that. That means retention duration of the objects begins from the moment event-based hold transitioned from true to false. Objects under event-based hold cannot be deleted, overwritten or archived until the hold is removed.

§default_object_acl: Option<Vec<ObjectAccessControl>>

Default access controls to apply to new objects when no ACL is provided.

§encryption: Option<BucketEncryption>

Encryption configuration for a bucket.

§etag: Option<String>

HTTP 1.1 Entity tag for the bucket.

§hierarchical_namespace: Option<BucketHierarchicalNamespace>

The bucket’s hierarchical namespace configuration.

§iam_configuration: Option<BucketIamConfiguration>

The bucket’s IAM configuration.

§id: Option<String>

The ID of the bucket. For buckets, the id and name properties are the same.

§kind: Option<String>

The kind of item this is. For buckets, this is always storage#bucket.

§labels: Option<HashMap<String, String>>

User-provided labels, in key/value pairs.

§lifecycle: Option<BucketLifecycle>

The bucket’s lifecycle configuration. See lifecycle management for more information.

§location: Option<String>

The location of the bucket. Object data for objects in the bucket resides in physical storage within this region. Defaults to US. See the developer’s guide for the authoritative list.

§location_type: Option<String>

The type of the bucket location.

§logging: Option<BucketLogging>

The bucket’s logging configuration, which defines the destination bucket and optional name prefix for the current bucket’s logs.

§metageneration: Option<i64>

The metadata generation of this bucket.

§name: Option<String>

The name of the bucket.

§object_retention: Option<BucketObjectRetention>

The bucket’s object retention config.

§owner: Option<BucketOwner>

The owner of the bucket. This is always the project team’s owner group.

§project_number: Option<u64>

The project number of the project the bucket belongs to.

§retention_policy: Option<BucketRetentionPolicy>

The bucket’s retention policy. The retention policy enforces a minimum retention time for all objects contained in the bucket, based on their creation time. Any attempt to overwrite or delete objects younger than the retention period will result in a PERMISSION_DENIED error. An unlocked retention policy can be modified or removed from the bucket via a storage.buckets.update operation. A locked retention policy cannot be removed or shortened in duration for the lifetime of the bucket. Attempting to remove or decrease period of a locked retention policy will result in a PERMISSION_DENIED error.

§rpo: Option<String>

The Recovery Point Objective (RPO) of this bucket. Set to ASYNC_TURBO to turn on Turbo Replication on a bucket.

§satisfies_pzs: Option<bool>

Reserved for future use.

§self_link: Option<String>

The URI of this bucket.

§soft_delete_policy: Option<BucketSoftDeletePolicy>

The bucket’s soft delete policy, which defines the period of time that soft-deleted objects will be retained, and cannot be permanently deleted.

§storage_class: Option<String>

The bucket’s default storage class, used whenever no storageClass is specified for a newly-created object. This defines how objects in the bucket are stored and determines the SLA and the cost of storage. Values include MULTI_REGIONAL, REGIONAL, STANDARD, NEARLINE, COLDLINE, ARCHIVE, and DURABLE_REDUCED_AVAILABILITY. If this value is not specified when the bucket is created, it will default to STANDARD. For more information, see storage classes.

§time_created: Option<DateTime<Utc>>

The creation time of the bucket in RFC 3339 format.

§updated: Option<DateTime<Utc>>

The modification time of the bucket in RFC 3339 format.

§versioning: Option<BucketVersioning>

The bucket’s versioning configuration.

§website: Option<BucketWebsite>

The bucket’s website configuration, controlling how the service behaves when accessing bucket contents as a web site. See the Static Website Examples for more information.

Trait Implementations§

source§

impl Clone for Bucket

source§

fn clone(&self) -> Bucket

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Bucket

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Bucket

source§

fn default() -> Bucket

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Bucket

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for Bucket

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl RequestValue for Bucket

source§

impl Resource for Bucket

source§

impl ResponseResult for Bucket

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,