mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add UptimeRobot Node (#1830)
* Add Monitor & account resources * Add alert contact resource * Add mwindows resource * Add 'public status page' resource * Clean up & lint fixes * Minor fixes * Apply code review suggestions * Minor fixes * Fix options name casing * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements on UptimeRobot Node * ⚡ Activate continueOnFail support Co-authored-by: dali <servfrdali@yahoo.fr> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
@@ -0,0 +1,468 @@
|
||||
import {
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export const maintenanceWindowOperations = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a maintenance window',
|
||||
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a maintenance window',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a maintenance window',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all a maintenance windows',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
description: 'Update a maintenance window',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
description: 'The operation to perform.',
|
||||
},
|
||||
] as INodeProperties[];
|
||||
|
||||
export const maintenanceWindowFields = [
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* maintenanceWindow:create */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Duration (minutes)',
|
||||
name: 'duration',
|
||||
type: 'number',
|
||||
required: true,
|
||||
default: 1,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The maintenance window activation period (minutes).',
|
||||
},
|
||||
{
|
||||
displayName: 'Friendly Name',
|
||||
name: 'friendlyName',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The friendly name of the maintenance window.',
|
||||
},
|
||||
{
|
||||
displayName: 'Type',
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
required: true,
|
||||
default: '',
|
||||
options: [
|
||||
{
|
||||
name: 'Once',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
name: 'Daily',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
name: 'Weekly',
|
||||
value: 3,
|
||||
},
|
||||
{
|
||||
name: 'Monthly',
|
||||
value: 4,
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The type of the maintenance window.',
|
||||
},
|
||||
{
|
||||
displayName: 'Week Day',
|
||||
name: 'weekDay',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
type: [
|
||||
3,
|
||||
],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Monday',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
name: 'Tuesday',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
name: 'Wednesday',
|
||||
value: 3,
|
||||
},
|
||||
{
|
||||
name: 'Thursday',
|
||||
value: 4,
|
||||
},
|
||||
{
|
||||
name: 'Friday',
|
||||
value: 5,
|
||||
},
|
||||
{
|
||||
name: 'Saturday',
|
||||
value: 6,
|
||||
},
|
||||
{
|
||||
name: 'Sunday',
|
||||
value: 7,
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Month Day',
|
||||
name: 'monthDay',
|
||||
type: 'number',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
type: [
|
||||
4,
|
||||
],
|
||||
},
|
||||
},
|
||||
typeOptions: {
|
||||
minValue: 1,
|
||||
maxValue: 30,
|
||||
},
|
||||
default: 1,
|
||||
},
|
||||
{
|
||||
displayName: 'Start Time',
|
||||
name: 'start_time',
|
||||
type: 'dateTime',
|
||||
required: true,
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The maintenance window start datetime.',
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* maintenanceWindow:delete */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'ID',
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'delete',
|
||||
'get',
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the maintenance window.',
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* maintenanceWindow:getAll */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'Return All',
|
||||
name: 'returnAll',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: 'Whether all results should be returned or only up to a given limit.',
|
||||
},
|
||||
{
|
||||
displayName: 'Limit',
|
||||
name: 'limit',
|
||||
type: 'number',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
returnAll: [
|
||||
false,
|
||||
],
|
||||
},
|
||||
},
|
||||
typeOptions: {
|
||||
minValue: 1,
|
||||
maxValue: 100,
|
||||
},
|
||||
default: 50,
|
||||
description: 'How many results to return.',
|
||||
},
|
||||
{
|
||||
displayName: 'Filters',
|
||||
name: 'filters',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Maintenance Window IDs',
|
||||
name: 'mwindow',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Maintenance windows ids separated with dash, e.g. 236-1782-4790.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* maintenanceWindow:update */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
{
|
||||
displayName: 'ID',
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'update',
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The ID of the maintenance window.',
|
||||
},
|
||||
{
|
||||
displayName: 'Duration (minutes)',
|
||||
name: 'duration',
|
||||
type: 'number',
|
||||
required: true,
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'update',
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'The maintenance window activation period (minutes).',
|
||||
},
|
||||
{
|
||||
displayName: 'Update Fields',
|
||||
name: 'updateFields',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'maintenanceWindow',
|
||||
],
|
||||
operation: [
|
||||
'update',
|
||||
],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Friendly Name',
|
||||
name: 'friendly_name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'The friendly name of the maintenance window.',
|
||||
},
|
||||
{
|
||||
displayName: 'Start Time',
|
||||
name: 'start_time',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'The maintenance window start datetime.',
|
||||
},
|
||||
{
|
||||
displayName: 'Type',
|
||||
name: 'type',
|
||||
type: 'options',
|
||||
default: '',
|
||||
options: [
|
||||
{
|
||||
name: 'Once',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
name: 'Daily',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
name: 'Weekly',
|
||||
value: 3,
|
||||
},
|
||||
{
|
||||
name: 'Monthly',
|
||||
value: 4,
|
||||
},
|
||||
],
|
||||
description: 'The type of the maintenance window.',
|
||||
},
|
||||
{
|
||||
displayName: 'Week Day',
|
||||
name: 'weekDay',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
show: {
|
||||
type: [
|
||||
3,
|
||||
],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Monday',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
name: 'Tuesday',
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
name: 'Wednesday',
|
||||
value: 3,
|
||||
},
|
||||
{
|
||||
name: 'Thursday',
|
||||
value: 4,
|
||||
},
|
||||
{
|
||||
name: 'Friday',
|
||||
value: 5,
|
||||
},
|
||||
{
|
||||
name: 'Saturday',
|
||||
value: 6,
|
||||
},
|
||||
{
|
||||
name: 'Sunday',
|
||||
value: 7,
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Month Day',
|
||||
name: 'monthDay',
|
||||
type: 'number',
|
||||
displayOptions: {
|
||||
show: {
|
||||
type: [
|
||||
4,
|
||||
],
|
||||
},
|
||||
},
|
||||
typeOptions: {
|
||||
minValue: 1,
|
||||
maxValue: 30,
|
||||
},
|
||||
default: 1,
|
||||
},
|
||||
],
|
||||
},
|
||||
] as INodeProperties[];
|
||||
Reference in New Issue
Block a user