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 additional Fields?: { ... }
readonly deploy Id?: 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 return All?: boolean
Whether to return all results or only up to a given limit
readonly site Id?: string
Enter the Site ID. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getSites"}
Default: {}