@n8n-dev/n8n-nodes-amazonaws-networkmanager 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AmazonawsNetworkmanager = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const default_1 = require("./resources/default");
6
+ class AmazonawsNetworkmanager {
7
+ constructor() {
8
+ this.description = {
9
+ displayName: 'Amazonaws Networkmanager',
10
+ name: 'N8nDevAmazonawsNetworkmanager',
11
+ icon: { light: 'file:./amazonaws-networkmanager.png', dark: 'file:./amazonaws-networkmanager.dark.png' },
12
+ group: ['input'],
13
+ version: 1,
14
+ subtitle: '={{\$parameter["operation"] + ": " + \$parameter["resource"]}}',
15
+ description: 'AWS Cloud WAN and Transit Gateway centralize network management across accounts, Regions, and on-premises.',
16
+ defaults: { name: 'Amazonaws Networkmanager' },
17
+ usableAsTool: true,
18
+ inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
19
+ outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
20
+ credentials: [
21
+ {
22
+ name: 'N8nDevAmazonawsNetworkmanagerApi',
23
+ required: true,
24
+ },
25
+ ],
26
+ requestDefaults: {
27
+ baseURL: '={{\$credentials.url}}',
28
+ headers: {
29
+ Accept: 'application/json',
30
+ 'Content-Type': 'application/json',
31
+ },
32
+ },
33
+ properties: [
34
+ {
35
+ "displayName": "Resource",
36
+ "name": "resource",
37
+ "type": "options",
38
+ "noDataExpression": true,
39
+ "options": [
40
+ {
41
+ "name": "Default",
42
+ "value": "Default",
43
+ "description": ""
44
+ }
45
+ ],
46
+ "default": ""
47
+ },
48
+ ...default_1.defaultDescription
49
+ ],
50
+ };
51
+ }
52
+ }
53
+ exports.AmazonawsNetworkmanager = AmazonawsNetworkmanager;
54
+ //# sourceMappingURL=AmazonawsNetworkmanager.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AmazonawsNetworkmanager.node.js","sourceRoot":"","sources":["../../../nodes/AmazonawsNetworkmanager/AmazonawsNetworkmanager.node.ts"],"names":[],"mappings":";;;AAAA,+CAA8F;AAC9F,iDAAyD;AAEzD,MAAa,uBAAuB;IAApC;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,0BAA0B;YACvC,IAAI,EAAE,+BAA+B;YACrC,IAAI,EAAE,EAAE,KAAK,EAAE,qCAAqC,EAAE,IAAI,EAAE,0CAA0C,EAAE;YACxG,KAAK,EAAE,CAAC,OAAO,CAAC;YAChB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,gEAAgE;YAC1E,WAAW,EAAE,4GAA4G;YACzH,QAAQ,EAAE,EAAE,IAAI,EAAE,0BAA0B,EAAE;YAC9C,YAAY,EAAE,IAAI;YAClB,MAAM,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YAClC,OAAO,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YACnC,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,kCAAkC;oBACxC,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,eAAe,EAAE;gBAChB,OAAO,EAAE,wBAAwB;gBACjC,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBAClC;aACD;YACD,UAAU,EAAE;gBACZ;oBACC,aAAa,EAAE,UAAU;oBACzB,MAAM,EAAE,UAAU;oBAClB,MAAM,EAAE,SAAS;oBACjB,kBAAkB,EAAE,IAAI;oBACxB,SAAS,EAAE;wBACV;4BACC,MAAM,EAAE,SAAS;4BACjB,OAAO,EAAE,SAAS;4BAClB,aAAa,EAAE,EAAE;yBACjB;qBACD;oBACD,SAAS,EAAE,EAAE;iBACb;gBACD,GAAG,4BAAkB;aACpB;SACD,CAAC;IACH,CAAC;CAAA;AA5CD,0DA4CC"}
@@ -0,0 +1,20 @@
1
+ {
2
+ "node": "N8nDevAmazonawsNetworkmanager",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": [
6
+ "Development"
7
+ ],
8
+ "resources": {
9
+ "primaryDocumentation": [
10
+ {
11
+ "url": "https://github.com/n8n-code/n8n-nodes-amazonaws-networkmanager"
12
+ }
13
+ ],
14
+ "credentialDocumentation": [
15
+ {
16
+ "url": "https://github.com/n8n-code/n8n-nodes-amazonaws-networkmanager?tab=readme-ov-file#credentials"
17
+ }
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1,2 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const defaultDescription: INodeProperties[];