Class ObjectAccessControlArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Storage
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class ObjectAccessControlArgs : ResourceArgs
Constructors
View SourceObjectAccessControlArgs()
Declaration
public ObjectAccessControlArgs()
Properties
View SourceBucket
The name of the bucket.
Declaration
public Input<string> Bucket { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Entity
The entity holding the permission, in one of the following forms:
- user-{{userId}}
- user-{{email}} (such as "user-liz@example.com")
- group-{{groupId}}
- group-{{email}} (such as "group-example@googlegroups.com")
- domain-{{domain}} (such as "domain-example.com")
- project-team-{{projectId}}
- allUsers
- allAuthenticatedUsers
Declaration
public Input<string> Entity { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Object
The name of the object to apply the access control to.
Declaration
public Input<string> Object { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Role
The access permission for the entity.
Declaration
public Input<string> Role { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |