class Google::Apis::StorageV1::Bucket::IamConfiguration::UniformBucketLevelAccess
The bucket's uniform bucket-level access configuration.
Attributes
enabled[RW]
If set, access is controlled only by bucket-level or above IAM policies. Corresponds to the JSON property `enabled` @return [Boolean]
enabled?[RW]
If set, access is controlled only by bucket-level or above IAM policies. Corresponds to the JSON property `enabled` @return [Boolean]
locked_time[RW]
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. Corresponds to the JSON property `lockedTime` @return [DateTime]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/storage_v1/classes.rb, line 410 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/storage_v1/classes.rb, line 415 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) @locked_time = args[:locked_time] if args.key?(:locked_time) end