mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
ca9a155c69
* ✨ Create Elastic Security node * 🔨 Place Elastic nodes in Elastic dir * ⚡ Improvements * 🔨 Split credentials * 🎨 Fix formatting * ⚡ Tolerate trailing slash * 👕 Fix lint * 👕 Fix lint * 🐛 Fix tags filter in case:getAll * 🔨 Refactor sort options in case:getAll * ✏️ Reword param descriptions * 🔥 Remove descriptions per feedback * 🐛 Fix case:getStatus operation * ✏️ Reword param and error message * ✏️ Reword param descriptions * 🔨 Account for empty string in owner * ✏️ Reword param description * ✏️ Add more tooltip descriptions * ⚡ Add cred test * ✏️ Add param description * ✏️ Add comment dividers * ⚡ Improve UX for third-party service params * 🔨 Minor tweaks per feedback * 🔨 Make getStatus naming consistent * ⚡ Fix operation Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Mutasem <mutdmour@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
269 lines
4.1 KiB
TypeScript
269 lines
4.1 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const connectorOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
noDataExpression: true,
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
description: 'Create a connector',
|
|
},
|
|
],
|
|
default: 'create',
|
|
},
|
|
];
|
|
|
|
export const connectorFields: INodeProperties[] = [
|
|
// ----------------------------------------
|
|
// connector: create
|
|
// ----------------------------------------
|
|
{
|
|
displayName: 'Connector Name',
|
|
name: 'name',
|
|
description: 'Connectors allow you to send Elastic Security cases into other systems (only ServiceNow, Jira, or IBM Resilient)',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Connector Type',
|
|
name: 'connectorType',
|
|
type: 'options',
|
|
required: true,
|
|
default: '.jira',
|
|
options: [
|
|
{
|
|
name: 'IBM Resilient',
|
|
value: '.resilient',
|
|
},
|
|
{
|
|
name: 'Jira',
|
|
value: '.jira',
|
|
},
|
|
{
|
|
name: 'ServiceNow ITSM',
|
|
value: '.servicenow',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'API URL',
|
|
name: 'apiUrl',
|
|
type: 'string',
|
|
description: 'URL of the third-party instance',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Email',
|
|
name: 'email',
|
|
description: 'Jira-registered email',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
connectorType: [
|
|
'.jira',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'apiToken',
|
|
description: 'Jira API token',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
connectorType: [
|
|
'.jira',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Project Key',
|
|
name: 'projectKey',
|
|
description: 'Jira Project Key',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
connectorType: [
|
|
'.jira',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
description: 'ServiceNow ITSM username',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
connectorType: [
|
|
'.servicenow',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
description: 'ServiceNow ITSM password',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
connectorType: [
|
|
'.servicenow',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'API Key ID',
|
|
name: 'apiKeyId',
|
|
description: 'IBM Resilient API key ID',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
connectorType: [
|
|
'.resilient',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'API Key Secret',
|
|
name: 'apiKeySecret',
|
|
description: 'IBM Resilient API key secret',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
connectorType: [
|
|
'.resilient',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Organization ID',
|
|
name: 'orgId',
|
|
description: 'IBM Resilient organization ID',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'connector',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
connectorType: [
|
|
'.resilient',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
];
|