interface CircleCiNodeParameters {
additionalFields?: { branch?: string; tag?: string };
filters?: { branch?: string };
limit?: number;
operation?: "get" | "getAll" | "trigger";
pipelineNumber?: number;
projectSlug?: string;
resource?: "pipeline";
returnAll?: boolean;
vcs?: "github" | "bitbucket";
}Properties§
§§§§§§§§
readonly additional Fields?: { ... }§
readonly filters?: { ... }Default: {}
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
readonly operation?: "get" | "getAll" | "trigger"Default: "get"
readonly pipeline Number?: numberThe number of the pipeline Default: 1 Type options: {"minValue":1}
readonly project Slug?: stringProject slug in the form org-name/repo-name
readonly resource?: "pipeline"Default: "pipeline"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly vcs?: "github" | "bitbucket"Source control system
Default: {}