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

    Type Alias PutStackScriptResponses

    type PutStackScriptResponses = {
        "200": {
            created: string;
            deployments_active: number;
            deployments_total: number;
            description: string;
            id: number;
            images: string[];
            is_public: boolean;
            label: string;
            mine: boolean;
            rev_note: string;
            script: string;
            updated: string;
            user_defined_fields: {
                default?: string;
                example: string;
                label: string;
                manyOf?: string;
                name: string;
                oneOf?: string;
            }[];
            user_gravatar_id: string;
            username: string;
        };
    }
    Index

    Properties

    Properties

    "200": {
        created: string;
        deployments_active: number;
        deployments_total: number;
        description: string;
        id: number;
        images: string[];
        is_public: boolean;
        label: string;
        mine: boolean;
        rev_note: string;
        script: string;
        updated: string;
        user_defined_fields: {
            default?: string;
            example: string;
            label: string;
            manyOf?: string;
            name: string;
            oneOf?: string;
        }[];
        user_gravatar_id: string;
        username: string;
    }

    A StackScript enables you to quickly deploy a fully configured application in an automated manner.

    Type Declaration

    • Readonlycreated: string

      Read-only The date this StackScript was created.

    • Readonlydeployments_active: number

      Read-only Count of currently active, deployed Linodes created from this StackScript.

    • Readonlydeployments_total: number

      Filterable, Read-only The total number of times this StackScript has been deployed.

    • description: string

      Filterable A description for the StackScript.

    • Readonlyid: number

      Read-only The unique ID of this StackScript.

    • images: string[]

      An array of Image IDs. These are the Images that can be deployed with this StackScript.

      any/all indicates that all available Images, including private Images, are accepted.

    • is_public: boolean

      Filterable This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private.

    • label: string

      Filterable The StackScript's label is for display purposes only.

    • Readonlymine: boolean

      Filterable, Read-only Returns true if this StackScript is owned by the account of the user making the request, and the user making the request is unrestricted or has access to this StackScript.

    • rev_note: string

      Filterable This field allows you to add notes for the set of revisions made to this StackScript.

    • script: string

      The script to execute when provisioning a new Linode with this StackScript.

    • Readonlyupdated: string

      Read-only The date this StackScript was last updated.

    • Readonlyuser_defined_fields: {
          default?: string;
          example: string;
          label: string;
          manyOf?: string;
          name: string;
          oneOf?: string;
      }[]

      Read-only This is a list of fields defined with a special syntax inside this StackScript that allow for supplying customized parameters during deployment. See Declare User-Defined Fields (UDFs) for more information.

    • Readonlyuser_gravatar_id: string

      Read-only The Gravatar ID for the User who created the StackScript.

    • Readonlyusername: string

      Read-only The User who created the StackScript.