Interface NetlifyNodeParameters

Source
interface NetlifyNodeParameters {
    additionalFields?: {
        branch?: string;
        title?: string;
    };
    deployId?: string;
    limit?: number;
    operation?: | "create"
    | "get"
    | "getAll"
    | "delete"
    | "cancel";
    resource?: "site"
    | "deploy";
    returnAll?: boolean;
    siteId?: string;
}

Properties§

Source§

readonly additionalFields?: { branch?: string; title?: string }

Default: {}

Source§

readonly deployId?: string

Source§

readonly limit?: number

Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":200}

Source§

readonly operation?: "create" | "get" | "getAll" | "delete" | "cancel"

Default: "getAll"

Source§

readonly resource?: "site" | "deploy"

Default: "deploy"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly siteId?: string

Enter the Site ID. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getSites"}