pub enum PrimitiveIamRole {
Viewer,
Editor,
Owner,
}
Expand description
The following enum contains primitive roles and the Cloud Storage permissions that these roles contain. Primitive roles cannot be added at the bucket-level.
Variants§
Viewer
Grants permission to list buckets as well as view bucket metadata, excluding ACLs, when listing. Also grants permission to list and get HMAC keys in the project.
Editor
Grants permission to create, list, and delete buckets. Grants permission to view bucket metadata, excluding ACLs, when listing. Grants full control over HMAC keys in a project.
Owner
Grants permission to create, list, and delete buckets. Also grants permission to view bucket metadata, excluding ACLs, when listing. Grants full control over HMAC keys in a project.
Trait Implementations§
Source§impl Debug for PrimitiveIamRole
impl Debug for PrimitiveIamRole
Source§impl<'de> Deserialize<'de> for PrimitiveIamRole
impl<'de> Deserialize<'de> for PrimitiveIamRole
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 PartialEq for PrimitiveIamRole
impl PartialEq for PrimitiveIamRole
Source§impl Serialize for PrimitiveIamRole
impl Serialize for PrimitiveIamRole
impl StructuralPartialEq for PrimitiveIamRole
Auto Trait Implementations§
impl Freeze for PrimitiveIamRole
impl RefUnwindSafe for PrimitiveIamRole
impl Send for PrimitiveIamRole
impl Sync for PrimitiveIamRole
impl Unpin for PrimitiveIamRole
impl UnwindSafe for PrimitiveIamRole
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
Mutably borrows from an owned value. Read more