Show / Hide Table of Contents

Class Bucket.IamConfigurationData.UniformBucketLevelAccessData

The bucket's uniform bucket-level access configuration.

Inheritance
System.Object
Bucket.IamConfigurationData.UniformBucketLevelAccessData
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: Google.Apis.Storage.v1.Data
Assembly: Google.Apis.Storage.v1.dll
Syntax
public class UniformBucketLevelAccessData

Properties

Enabled

If set, access is controlled only by bucket-level or above IAM policies.

Declaration
[JsonProperty("enabled")]
public virtual bool? Enabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

LockedTime

System.DateTime representation of LockedTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? LockedTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

LockedTimeRaw

The deadline for changing iamConfiguration.uniformBucketLevelAccess.enabled from true to false in RFC 3339 format. iamConfiguration.uniformBucketLevelAccess.enabled may be changed from true to false until the locked time, after which the field is immutable.

Declaration
[JsonProperty("lockedTime")]
public virtual string LockedTimeRaw { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top