Show / Hide Table of Contents

Class ObjectACLArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ObjectACLArgs
Inherited Members
ResourceArgs.Empty
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 ObjectACLArgs : ResourceArgs

Constructors

View Source

ObjectACLArgs()

Declaration
public ObjectACLArgs()

Properties

View Source

Bucket

The name of the bucket the object is stored in.

Declaration
public Input<string> Bucket { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Object

The name of the object to apply the acl to.

Declaration
public Input<string> Object { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PredefinedAcl

The "canned" predefined ACL to apply. Must be set if role_entity is not.

Declaration
public Input<string> PredefinedAcl { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RoleEntities

List of role/entity pairs in the form ROLE:entity. See GCS Object ACL documentation for more details. Must be set if predefined_acl is not.

Declaration
public InputList<string> RoleEntities { get; set; }
Property Value
Type Description
InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.