n8n/packages/nodes-base/nodes/Misp/descriptions/GalaxyDescription.ts

128 lines
2.1 KiB
TypeScript
Raw Normal View History

import {
INodeProperties,
} from 'n8n-workflow';
export const galaxyOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'galaxy',
],
},
},
noDataExpression: true,
options: [
{
name: 'Delete',
value: 'delete',
action: 'Delete a galaxy',
},
{
name: 'Get',
value: 'get',
action: 'Get a galaxy',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all galaxies',
},
],
default: 'get',
},
];
export const galaxyFields: INodeProperties[] = [
// ----------------------------------------
// galaxy: delete
// ----------------------------------------
{
displayName: 'Galaxy ID',
name: 'galaxyId',
description: 'UUID or numeric ID of the galaxy',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'galaxy',
],
operation: [
'delete',
],
},
},
},
// ----------------------------------------
// galaxy: get
// ----------------------------------------
{
displayName: 'Galaxy ID',
name: 'galaxyId',
description: 'UUID or numeric ID of the galaxy',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'galaxy',
],
operation: [
'get',
],
},
},
},
// ----------------------------------------
// galaxy: getAll
// ----------------------------------------
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: [
'galaxy',
],
operation: [
'getAll',
],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
description: 'Max number of results to return',
typeOptions: {
minValue: 1,
},
displayOptions: {
show: {
resource: [
'galaxy',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
},
];