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

    Type Alias GetObjectStorageKeysResponses

    type GetObjectStorageKeysResponses = {
        "200": {
            data: {
                access_key: string;
                bucket_access: {
                    bucket_name: string;
                    cluster: string;
                    permissions: "read_write" | "read_only";
                    region: string;
                }[];
                id: number;
                label: string;
                limited: boolean;
                regions: {
                    endpoint_type: "E0"
                    | "E1"
                    | "E2"
                    | "E3";
                    id: string;
                    s3_endpoint: string;
                }[];
                secret_key: string;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            access_key: string;
            bucket_access: {
                bucket_name: string;
                cluster: string;
                permissions: "read_write" | "read_only";
                region: string;
            }[];
            id: number;
            label: string;
            limited: boolean;
            regions: {
                endpoint_type: "E0"
                | "E1"
                | "E2"
                | "E3";
                id: string;
                s3_endpoint: string;
            }[];
            secret_key: string;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    A paginated list of Object Storage Keys.

    Type Declaration

    • data: {
          access_key: string;
          bucket_access: {
              bucket_name: string;
              cluster: string;
              permissions: "read_write" | "read_only";
              region: string;
          }[];
          id: number;
          label: string;
          limited: boolean;
          regions: {
              endpoint_type: "E0"
              | "E1"
              | "E2"
              | "E3";
              id: string;
              s3_endpoint: string;
          }[];
          secret_key: string;
      }[]
    • Readonlypage: number

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.