interface BitbucketTriggerNodeParameters {
authentication?: "accessToken" | "password";
events?: string[];
repository?: string;
resource?: "repository" | "workspace";
workspace?: string;
}Properties§
Source§readonly events?: string[]
readonly events?: string[]
The events to listen to. Choose from the list, or specify IDs using an expression. Default: [] Type options: {"loadOptionsMethod":"getWorkspaceEvents"}
Source§readonly repository?: string
readonly repository?: string
The repository of which to listen to the events. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getRepositories","loadOptionsDependsOn":["workspace"]}
Source§readonly workspace?: string
readonly workspace?: string
The repository of which to listen to the events. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getWorkspaces"}
Default: "password"