Struct cloud_storage::bucket::NewBucket
source · [−]pub struct NewBucket {Show 15 fields
pub name: String,
pub default_event_based_hold: Option<bool>,
pub acl: Option<Vec<NewBucketAccessControl>>,
pub default_object_acl: Option<Vec<NewDefaultObjectAccessControl>>,
pub iam_configuration: Option<IamConfiguration>,
pub encryption: Option<Encryption>,
pub location: Location,
pub website: Option<Website>,
pub logging: Option<Logging>,
pub versioning: Option<Versioning>,
pub cors: Option<Vec<Cors>>,
pub lifecycle: Option<Lifecycle>,
pub labels: Option<HashMap<String, String>>,
pub storage_class: Option<StorageClass>,
pub billing: Option<Billing>,
}
Expand description
A model that can be used to insert new buckets into Google Cloud Storage.
Fields
name: String
The name of the bucket. See the bucket naming guidelines for more information.
default_event_based_hold: Option<bool>
Whether or not to automatically apply an eventBasedHold to new objects added to the bucket.
acl: Option<Vec<NewBucketAccessControl>>
Access controls on the bucket, containing one or more BucketAccessControls
resources. If
iamConfiguration.uniformBucketLevelAccess.enabled
is set to true, this field is omitted in
responses, and requests that specify this field fail with a 400 Bad Request
response.
default_object_acl: Option<Vec<NewDefaultObjectAccessControl>>
Default access controls to apply to new objects when no ACL is provided. This list defines
an entity and role for one or more DefaultObjectAccessControls
resources. If
iamConfiguration.uniformBucketLevelAccess.enabled
is set to true, this field is omitted in
responses, and requests that specify this field fail with a 400 Bad Request
response.
iam_configuration: Option<IamConfiguration>
The bucket’s IAM configuration.
encryption: Option<Encryption>
Encryption configuration for a bucket.
location: Location
The location of the bucket. Object data for objects in the bucket resides in physical storage within this region. Defaults to US. See Cloud Storage bucket locations for the authoritative list.
website: Option<Website>
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.
logging: Option<Logging>
The bucket’s logging configuration, which defines the destination bucket and optional name prefix for the current bucket’s logs.
versioning: Option<Versioning>
The bucket’s versioning configuration.
cors: Option<Vec<Cors>>
The bucket’s Cross-Origin Resource Sharing (CORS) configuration.
lifecycle: Option<Lifecycle>
The bucket’s lifecycle configuration. See lifecycle management for more information.
labels: Option<HashMap<String, String>>
User-provided bucket labels, in key/value pairs.
storage_class: Option<StorageClass>
The bucket’s default storage class, used whenever no storageClass is specified for a newly-created object. If storageClass is not specified when the bucket is created, it defaults to STANDARD. For more information, see storage classes.
billing: Option<Billing>
The bucket’s billing configuration.
Trait Implementations
impl StructuralPartialEq for NewBucket
Auto Trait Implementations
impl RefUnwindSafe for NewBucket
impl Send for NewBucket
impl Sync for NewBucket
impl Unpin for NewBucket
impl UnwindSafe for NewBucket
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more