Googly.CloudStorage.Model.BucketIamConfiguration (googly_cloud_storage v0.1.0)

Copy Markdown View Source

The bucket's IAM configuration.

Attributes

  • bucket_policy_only (type: Googly.CloudStorage.Model.BucketIamConfigurationBucketPolicyOnly.t()) - The bucket's uniform bucket-level access configuration. The feature was formerly known as Bucket Policy Only. For backward compatibility, this field will be populated with identical information as the uniformBucketLevelAccess field. We recommend using the uniformBucketLevelAccess field to enable and disable the feature.
  • public_access_prevention (type: String.t()) - The bucket's Public Access Prevention configuration. Currently, 'inherited' and 'enforced' are supported.
  • uniform_bucket_level_access (type: Googly.CloudStorage.Model.BucketIamConfigurationUniformBucketLevelAccess.t()) - The bucket's uniform bucket-level access configuration.

Summary

Types

t()

@type t() :: %Googly.CloudStorage.Model.BucketIamConfiguration{
  bucket_policy_only:
    Googly.CloudStorage.Model.BucketIamConfigurationBucketPolicyOnly.t() | nil,
  public_access_prevention: String.t() | nil,
  uniform_bucket_level_access:
    Googly.CloudStorage.Model.BucketIamConfigurationUniformBucketLevelAccess.t()
    | nil
}