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?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
readonly operation?: "get" | "getAll" | "trigger"
Default: "get"
readonly pipeline Number?: number
The number of the pipeline Default: 1 Type options: {"minValue":1}
readonly project Slug?: string
Project slug in the form org-name/repo-name
readonly resource?: "pipeline"
Default: "pipeline"
readonly return All?: boolean
Whether to return all results or only up to a given limit
readonly vcs?: "github" | "bitbucket"
Source control system
Default: {}