Interface CircleCiNodeParameters

Source
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§

Source§

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

Default: {}

Source§

readonly filters?: { branch?: string }

Default: {}

Source§

readonly limit?: number

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

Source§

readonly operation?: "get" | "getAll" | "trigger"

Default: "get"

Source§

readonly pipelineNumber?: number

The number of the pipeline Default: 1 Type options: {"minValue":1}

Source§

readonly projectSlug?: string

Project slug in the form org-name/repo-name

Source§

readonly resource?: "pipeline"

Default: "pipeline"

Source§

readonly returnAll?: boolean

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

Source§

readonly vcs?: "github" | "bitbucket"

Source control system