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§

§readonly additionalFields?: { ... }

Default: {}

§readonly deployId?: string
§readonly limit?: number

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

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

Default: "getAll"

§readonly resource?: "site" | "deploy"

Default: "deploy"

§readonly returnAll?: boolean

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

§readonly siteId?: string

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