2021-07-10 04:44:23 -07:00
|
|
|
import {
|
|
|
|
INodeProperties
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const configOperations: INodeProperties[] = [
|
2021-07-10 04:44:23 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2021-07-10 04:44:23 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'config',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get the configuration',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get the config',
|
2021-07-10 04:44:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Check Configuration',
|
|
|
|
value: 'check',
|
|
|
|
description: 'Check the configuration',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Check the config',
|
2021-07-10 04:44:23 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'get',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|