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 Freeze for NewBucket
impl RefUnwindSafe for NewBucket
impl Send for NewBucket
impl Sync for NewBucket
impl Unpin for NewBucket
impl UnwindSafe for NewBucket
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more