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

    Type Alias GetSharegroupImagesByTokenResponses

    type GetSharegroupImagesByTokenResponses = {
        "200": {
            data: {
                capabilities: string[];
                created: string;
                created_by: string | null;
                deprecated: boolean;
                description: string;
                eol: string | null;
                expiry: string | null;
                id: string;
                image_sharing: {
                    shared_by: {
                        sharegroup_id: number;
                        sharegroup_label: string;
                        sharegroup_uuid: string;
                        source_image_id: string;
                    };
                    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 | null;
                vendor: string | null;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            capabilities: string[];
            created: string;
            created_by: string | null;
            deprecated: boolean;
            description: string;
            eol: string | null;
            expiry: string | null;
            id: string;
            image_sharing: {
                shared_by: {
                    sharegroup_id: number;
                    sharegroup_label: string;
                    sharegroup_uuid: string;
                    source_image_id: string;
                };
                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 | null;
            vendor: string | null;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    A paginated list of shared images in a share group.

    Type Declaration

    • data: {
          capabilities: string[];
          created: string;
          created_by: string | null;
          deprecated: boolean;
          description: string;
          eol: string | null;
          expiry: string | null;
          id: string;
          image_sharing: {
              shared_by: {
                  sharegroup_id: number;
                  sharegroup_label: string;
                  sharegroup_uuid: string;
                  source_image_id: string;
              };
              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 | null;
          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.