@n8n-dev/n8n-nodes-hcloud 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.
- package/README.md +26 -0
- package/dist/credentials/HcloudApi.credentials.d.ts +10 -0
- package/dist/credentials/HcloudApi.credentials.js +47 -0
- package/dist/credentials/HcloudApi.credentials.js.map +1 -0
- package/dist/icons/hcloud.dark.svg +4 -0
- package/dist/icons/hcloud.svg +4 -0
- package/dist/nodes/Hcloud/Hcloud.node.d.ts +4 -0
- package/dist/nodes/Hcloud/Hcloud.node.js +194 -0
- package/dist/nodes/Hcloud/Hcloud.node.js.map +1 -0
- package/dist/nodes/Hcloud/Hcloud.node.json +20 -0
- package/dist/nodes/Hcloud/hcloud.dark.svg +4 -0
- package/dist/nodes/Hcloud/hcloud.svg +4 -0
- package/dist/nodes/Hcloud/resources/actions/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/actions/index.js +128 -0
- package/dist/nodes/Hcloud/resources/actions/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/certificates/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/certificates/index.js +1062 -0
- package/dist/nodes/Hcloud/resources/certificates/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/datacenters/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/datacenters/index.js +202 -0
- package/dist/nodes/Hcloud/resources/datacenters/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/firewalls/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/firewalls/index.js +1153 -0
- package/dist/nodes/Hcloud/resources/firewalls/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/floating-ips/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/floating-ips/index.js +1313 -0
- package/dist/nodes/Hcloud/resources/floating-ips/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/images/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/images/index.js +1036 -0
- package/dist/nodes/Hcloud/resources/images/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/index.d.ts +21 -0
- package/dist/nodes/Hcloud/resources/index.js +46 -0
- package/dist/nodes/Hcloud/resources/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/isos/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/isos/index.js +237 -0
- package/dist/nodes/Hcloud/resources/isos/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/load-balancer-types/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/load-balancer-types/index.js +177 -0
- package/dist/nodes/Hcloud/resources/load-balancer-types/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/load-balancers/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/load-balancers/index.js +2724 -0
- package/dist/nodes/Hcloud/resources/load-balancers/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/locations/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/locations/index.js +202 -0
- package/dist/nodes/Hcloud/resources/locations/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/networks/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/networks/index.js +1595 -0
- package/dist/nodes/Hcloud/resources/networks/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/placement-groups/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/placement-groups/index.js +514 -0
- package/dist/nodes/Hcloud/resources/placement-groups/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/pricing/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/pricing/index.js +53 -0
- package/dist/nodes/Hcloud/resources/pricing/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/primary-ips/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/primary-ips/index.js +1428 -0
- package/dist/nodes/Hcloud/resources/primary-ips/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/server-types/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/server-types/index.js +177 -0
- package/dist/nodes/Hcloud/resources/server-types/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/servers/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/servers/index.js +3086 -0
- package/dist/nodes/Hcloud/resources/servers/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/ssh-keys/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/ssh-keys/index.js +508 -0
- package/dist/nodes/Hcloud/resources/ssh-keys/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/storage-box-types/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/storage-box-types/index.js +177 -0
- package/dist/nodes/Hcloud/resources/storage-box-types/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/storage-boxes/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/storage-boxes/index.js +3281 -0
- package/dist/nodes/Hcloud/resources/storage-boxes/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/volumes/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/volumes/index.js +1327 -0
- package/dist/nodes/Hcloud/resources/volumes/index.js.map +1 -0
- package/dist/nodes/Hcloud/resources/zones/index.d.ts +2 -0
- package/dist/nodes/Hcloud/resources/zones/index.js +3379 -0
- package/dist/nodes/Hcloud/resources/zones/index.js.map +1 -0
- package/dist/package.json +53 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +53 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.storageBoxTypesDescription = void 0;
|
|
4
|
+
exports.storageBoxTypesDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Storage Box Types"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "List Storage Box Types",
|
|
20
|
+
"value": "List Storage Box Types",
|
|
21
|
+
"action": "List Storage Box Types",
|
|
22
|
+
"description": "Returns a paginated list of Storage Box Types.\n",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/storage_box_types"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Get Storage Box Type",
|
|
32
|
+
"value": "Get Storage Box Type",
|
|
33
|
+
"action": "Get a Storage Box Type",
|
|
34
|
+
"description": "Returns a specific Storage Box Type.\n",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "GET",
|
|
38
|
+
"url": "=/storage_box_types/{{$parameter[\"id\"]}}"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"default": ""
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"displayName": "GET /storage_box_types",
|
|
47
|
+
"name": "operation",
|
|
48
|
+
"type": "notice",
|
|
49
|
+
"typeOptions": {
|
|
50
|
+
"theme": "info"
|
|
51
|
+
},
|
|
52
|
+
"default": "",
|
|
53
|
+
"displayOptions": {
|
|
54
|
+
"show": {
|
|
55
|
+
"resource": [
|
|
56
|
+
"Storage Box Types"
|
|
57
|
+
],
|
|
58
|
+
"operation": [
|
|
59
|
+
"List Storage Box Types"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"displayName": "Name",
|
|
66
|
+
"name": "name",
|
|
67
|
+
"description": "Filter resources by their name. The response will only contain the resources\nmatching exactly the specified name.\n",
|
|
68
|
+
"default": "",
|
|
69
|
+
"type": "string",
|
|
70
|
+
"routing": {
|
|
71
|
+
"send": {
|
|
72
|
+
"type": "query",
|
|
73
|
+
"property": "name",
|
|
74
|
+
"value": "={{ $value }}",
|
|
75
|
+
"propertyInDotNotation": false
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"displayOptions": {
|
|
79
|
+
"show": {
|
|
80
|
+
"resource": [
|
|
81
|
+
"Storage Box Types"
|
|
82
|
+
],
|
|
83
|
+
"operation": [
|
|
84
|
+
"List Storage Box Types"
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"displayName": "Page",
|
|
91
|
+
"name": "page",
|
|
92
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
93
|
+
"default": 1,
|
|
94
|
+
"type": "number",
|
|
95
|
+
"routing": {
|
|
96
|
+
"send": {
|
|
97
|
+
"type": "query",
|
|
98
|
+
"property": "page",
|
|
99
|
+
"value": "={{ $value }}",
|
|
100
|
+
"propertyInDotNotation": false
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"displayOptions": {
|
|
104
|
+
"show": {
|
|
105
|
+
"resource": [
|
|
106
|
+
"Storage Box Types"
|
|
107
|
+
],
|
|
108
|
+
"operation": [
|
|
109
|
+
"List Storage Box Types"
|
|
110
|
+
]
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"displayName": "Per Page",
|
|
116
|
+
"name": "per_page",
|
|
117
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
118
|
+
"default": 25,
|
|
119
|
+
"type": "number",
|
|
120
|
+
"routing": {
|
|
121
|
+
"send": {
|
|
122
|
+
"type": "query",
|
|
123
|
+
"property": "per_page",
|
|
124
|
+
"value": "={{ $value }}",
|
|
125
|
+
"propertyInDotNotation": false
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"displayOptions": {
|
|
129
|
+
"show": {
|
|
130
|
+
"resource": [
|
|
131
|
+
"Storage Box Types"
|
|
132
|
+
],
|
|
133
|
+
"operation": [
|
|
134
|
+
"List Storage Box Types"
|
|
135
|
+
]
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"displayName": "GET /storage_box_types/{id}",
|
|
141
|
+
"name": "operation",
|
|
142
|
+
"type": "notice",
|
|
143
|
+
"typeOptions": {
|
|
144
|
+
"theme": "info"
|
|
145
|
+
},
|
|
146
|
+
"default": "",
|
|
147
|
+
"displayOptions": {
|
|
148
|
+
"show": {
|
|
149
|
+
"resource": [
|
|
150
|
+
"Storage Box Types"
|
|
151
|
+
],
|
|
152
|
+
"operation": [
|
|
153
|
+
"Get Storage Box Type"
|
|
154
|
+
]
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"displayName": "Id",
|
|
160
|
+
"name": "id",
|
|
161
|
+
"required": true,
|
|
162
|
+
"description": "ID of the Storage Box Type.",
|
|
163
|
+
"default": 42,
|
|
164
|
+
"type": "number",
|
|
165
|
+
"displayOptions": {
|
|
166
|
+
"show": {
|
|
167
|
+
"resource": [
|
|
168
|
+
"Storage Box Types"
|
|
169
|
+
],
|
|
170
|
+
"operation": [
|
|
171
|
+
"Get Storage Box Type"
|
|
172
|
+
]
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
];
|
|
177
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/Hcloud/resources/storage-box-types/index.ts"],"names":[],"mappings":"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"}
|