@akamai/openapi-ts
    Preparing search index...

    Type Alias PutObjectStorageBucketAclData

    type PutObjectStorageBucketAclData = {
        body?: {
            acl:
                | "private"
                | "public-read"
                | "authenticated-read"
                | "public-read-write"
                | "custom";
            name: string;
        };
        path: { bucket: string; regionId: string };
        query?: never;
        url: "object-storage/buckets/{regionId}/{bucket}/object-acl";
    }
    Index

    Properties

    Properties

    body?: {
        acl:
            | "private"
            | "public-read"
            | "authenticated-read"
            | "public-read-write"
            | "custom";
        name: string;
    }

    Type Declaration

    • acl:
          | "private"
          | "public-read"
          | "authenticated-read"
          | "public-read-write"
          | "custom"

      The S3 predefined collection of grantees and permissions set for the bucket, also referred to as a Canned ACL.

    • name: string

      The name of the object where access control list (ACL) settings will be updated. Run the List Object Storage bucket contents operation to access all object names in a bucket.

    path: { bucket: string; regionId: string }

    Type Declaration

    • bucket: string

      The bucket name.

    • regionId: string

      Identifies a region where this bucket lives.

      📘

      You can use a clusterId in place of regionId in requests for buckets that you created using the legacy version of the API. Run List clusters to see each cluster id.

    query?: never
    url: "object-storage/buckets/{regionId}/{bucket}/object-acl"