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

    Type Alias GetObjectStorageBucketContentResponses

    type GetObjectStorageBucketContentResponses = {
        "200": {
            data: {
                etag: string;
                last_modified: string;
                name: string;
                owner: string;
                size: number;
            }[];
            is_truncated: boolean;
            next_marker: string
            | null;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            etag: string;
            last_modified: string;
            name: string;
            owner: string;
            size: number;
        }[];
        is_truncated: boolean;
        next_marker: string
        | null;
    }

    One page of the requested bucket's contents.

    Type Declaration

    • data: {
          etag: string;
          last_modified: string;
          name: string;
          owner: string;
          size: number;
      }[]
    • is_truncated: boolean

      Designates if there is another page of bucket objects.

    • next_marker: string | null

      Returns the value you should pass to the marker query parameter to get the next page of objects. If there is no next page, null will be returned.