interface JiraProps {
alwaysOutputData?: boolean;
disabled?: boolean;
executeOnce?: boolean;
jiraSoftwareCloudApiCredentials?: Credentials<
JiraSoftwareCloudApiCredentials,
>;
jiraSoftwareServerApiCredentials?: Credentials<
JiraSoftwareServerApiCredentials,
>;
jiraSoftwareServerPatApiCredentials?: Credentials<
JiraSoftwareServerPatApiCredentials,
>;
label?: string;
maxTries?: number;
notes?: string;
notesInFlow?: boolean;
onError?: | "continueRegularOutput"
| "continueErrorOutput";
parameters: JiraNodeParameters;
position?: NodePosition;
retryOnFail?: boolean;
}
Properties§
Source§execute Once?: boolean
execute Once?: boolean
If active, the node executes only once, with data from the first item it receives
Source§readonly jira Software Cloud Api Credentials?: Credentials<JiraSoftwareCloudApiCredentials>
readonly jira Software Cloud Api Credentials?: Credentials<JiraSoftwareCloudApiCredentials>
Source§readonly jira Software Server Api Credentials?: Credentials<JiraSoftwareServerApiCredentials>
readonly jira Software Server Api Credentials?: Credentials<JiraSoftwareServerApiCredentials>
Source§readonly jira Software Server Pat Api Credentials?: Credentials<JiraSoftwareServerPatApiCredentials>
readonly jira Software Server Pat Api Credentials?: Credentials<JiraSoftwareServerPatApiCredentials>
Source§max Tries?: number
max Tries?: number
Number of times to attempt to execute the node before failing the execution
Enabled if retryOnFail
is true
Source§on Error?: "continueRegularOutput" | "continueErrorOutput"
on Error?: "continueRegularOutput" | "continueErrorOutput"
Action to take when the node execution fails When undefined, an error will stop the workflow execution
If true, the node won't run but subsequent nodes WILL be executed