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

    Type Alias PostUploadImageData

    type PostUploadImageData = {
        body?: {
            cloud_init?: boolean;
            description?: string;
            label: string;
            region: string;
            tags?: string[];
        };
        path?: never;
        query?: never;
        url: "images/upload";
    }
    Index

    Properties

    Properties

    body?: {
        cloud_init?: boolean;
        description?: string;
        label: string;
        region: string;
        tags?: string[];
    }

    The uploaded image details.

    Type Declaration

    • Optionalcloud_init?: boolean

      Whether the uploaded Image supports cloud-init.

    • Optionaldescription?: string

      Description for the uploaded image.

    • label: string

      Label for the uploaded image.

    • region: string

      The region to upload to. Once uploaded, the image can be used in any region.

      📘

      Only core regions that support our Object Storage service can store an uploaded image.

    • Optionaltags?: string[]

      Tags you can use to organize images. A tag can be from 3 to 100 characters long, and an image can have a maximum of 500 total tags.

    path?: never
    query?: never
    url: "images/upload"