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

    Type Alias GetImagesResponses

    type GetImagesResponses = {
        "200": {
            data: {
                capabilities: string[];
                created: string;
                created_by: string;
                deprecated: boolean;
                description: string | null;
                eol: string | null;
                expiry: string | null;
                id: string;
                image_sharing:
                    | {
                        shared_by: { [key: string]: unknown }
                        | null;
                        shared_with: { sharegroup_count: number; sharegroup_list_url: string };
                    }
                    | {
                        shared_by: {
                            sharegroup_id: number;
                            sharegroup_label: string;
                            sharegroup_uuid: string;
                            source_image_id: string
                            | null;
                        };
                        shared_with: { [key: string]: unknown }
                        | null;
                    };
                is_public: boolean;
                is_shared: true
                | false
                | "none";
                label: string;
                regions: {
                    region: string;
                    status:
                        | "available"
                        | "creating"
                        | "pending"
                        | "pending deletion"
                        | "pending replication"
                        | "replicating";
                }[];
                size: number;
                status: "creating"
                | "pending_upload"
                | "available";
                tags: string[];
                total_size: number;
                type: "manual" | "automatic" | "shared";
                updated: string;
                vendor: string | null;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            capabilities: string[];
            created: string;
            created_by: string;
            deprecated: boolean;
            description: string | null;
            eol: string | null;
            expiry: string | null;
            id: string;
            image_sharing:
                | {
                    shared_by: { [key: string]: unknown }
                    | null;
                    shared_with: { sharegroup_count: number; sharegroup_list_url: string };
                }
                | {
                    shared_by: {
                        sharegroup_id: number;
                        sharegroup_label: string;
                        sharegroup_uuid: string;
                        source_image_id: string
                        | null;
                    };
                    shared_with: { [key: string]: unknown }
                    | null;
                };
            is_public: boolean;
            is_shared: true
            | false
            | "none";
            label: string;
            regions: {
                region: string;
                status:
                    | "available"
                    | "creating"
                    | "pending"
                    | "pending deletion"
                    | "pending replication"
                    | "replicating";
            }[];
            size: number;
            status: "creating"
            | "pending_upload"
            | "available";
            tags: string[];
            total_size: number;
            type: "manual" | "automatic" | "shared";
            updated: string;
            vendor: string | null;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    A paginated list of images.

    Type Declaration

    • data: {
          capabilities: string[];
          created: string;
          created_by: string;
          deprecated: boolean;
          description: string | null;
          eol: string | null;
          expiry: string | null;
          id: string;
          image_sharing:
              | {
                  shared_by: { [key: string]: unknown }
                  | null;
                  shared_with: { sharegroup_count: number; sharegroup_list_url: string };
              }
              | {
                  shared_by: {
                      sharegroup_id: number;
                      sharegroup_label: string;
                      sharegroup_uuid: string;
                      source_image_id: string
                      | null;
                  };
                  shared_with: { [key: string]: unknown }
                  | null;
              };
          is_public: boolean;
          is_shared: true
          | false
          | "none";
          label: string;
          regions: {
              region: string;
              status:
                  | "available"
                  | "creating"
                  | "pending"
                  | "pending deletion"
                  | "pending replication"
                  | "replicating";
          }[];
          size: number;
          status: "creating"
          | "pending_upload"
          | "available";
          tags: string[];
          total_size: number;
          type: "manual" | "automatic" | "shared";
          updated: string;
          vendor: string | null;
      }[]
    • 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.