@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,1595 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.networksDescription = void 0;
|
|
4
|
+
exports.networksDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Networks"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "List Networks",
|
|
20
|
+
"value": "List Networks",
|
|
21
|
+
"action": "List Networks",
|
|
22
|
+
"description": "List multiple Networks.\n\nUse the provided URI parameters to modify the result.\n",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/networks"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Create Network",
|
|
32
|
+
"value": "Create Network",
|
|
33
|
+
"action": "Create a Network",
|
|
34
|
+
"description": "Creates a Network.\n\nThe provided `ip_range` can only be extended later on, but not reduced.\n\nSubnets can be added now or later on using the add subnet action. If you do not specify an `ip_range` for the subnet the first available /24 range will be used.\n\nRoutes can be added now or later by using the add route action.\n",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "POST",
|
|
38
|
+
"url": "=/networks"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Delete Network",
|
|
44
|
+
"value": "Delete Network",
|
|
45
|
+
"action": "Delete a Network",
|
|
46
|
+
"description": "Deletes a Network.\n\nAttached resources will be detached automatically.\n",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "DELETE",
|
|
50
|
+
"url": "=/networks/{{$parameter[\"id\"]}}"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Get Network",
|
|
56
|
+
"value": "Get Network",
|
|
57
|
+
"action": "Get a Network",
|
|
58
|
+
"description": "Get a specific Network.\n",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"url": "=/networks/{{$parameter[\"id\"]}}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Replace Network",
|
|
68
|
+
"value": "Replace Network",
|
|
69
|
+
"action": "Update a Network",
|
|
70
|
+
"description": "Update a Network.\n\nIf a change is currently being performed on this Network, a error response with code `conflict` will be returned.\n",
|
|
71
|
+
"routing": {
|
|
72
|
+
"request": {
|
|
73
|
+
"method": "PUT",
|
|
74
|
+
"url": "=/networks/{{$parameter[\"id\"]}}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "List Actions For Network",
|
|
80
|
+
"value": "List Actions For Network",
|
|
81
|
+
"action": "List Actions for a Network",
|
|
82
|
+
"description": "Lists Actions for a Network.\n\nUse the provided URI parameters to modify the result.\n",
|
|
83
|
+
"routing": {
|
|
84
|
+
"request": {
|
|
85
|
+
"method": "GET",
|
|
86
|
+
"url": "=/networks/{{$parameter[\"id\"]}}/actions"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "Get Action For Network",
|
|
92
|
+
"value": "Get Action For Network",
|
|
93
|
+
"action": "Get an Action for a Network",
|
|
94
|
+
"description": "Returns a specific Action for a Network.\n",
|
|
95
|
+
"routing": {
|
|
96
|
+
"request": {
|
|
97
|
+
"method": "GET",
|
|
98
|
+
"url": "=/networks/{{$parameter[\"id\"]}}/actions/{{$parameter[\"action_id\"]}}"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "Add Route To Network",
|
|
104
|
+
"value": "Add Route To Network",
|
|
105
|
+
"action": "Add a route to a Network",
|
|
106
|
+
"description": "Adds a route entry to a Network.\n\nIf a change is currently being performed on this Network, a error response with code `conflict` will be returned.\n",
|
|
107
|
+
"routing": {
|
|
108
|
+
"request": {
|
|
109
|
+
"method": "POST",
|
|
110
|
+
"url": "=/networks/{{$parameter[\"id\"]}}/actions/add_route"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "Add Subnet To Network",
|
|
116
|
+
"value": "Add Subnet To Network",
|
|
117
|
+
"action": "Add a subnet to a Network",
|
|
118
|
+
"description": "Adds a new subnet to the Network.\n\nIf the subnet `ip_range` is not provided, the first available `/24` IP range will be used.\n\nIf a change is currently being performed on this Network, a error response with code `conflict` will be returned.\n",
|
|
119
|
+
"routing": {
|
|
120
|
+
"request": {
|
|
121
|
+
"method": "POST",
|
|
122
|
+
"url": "=/networks/{{$parameter[\"id\"]}}/actions/add_subnet"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "Change Ip Range Of Network",
|
|
128
|
+
"value": "Change Ip Range Of Network",
|
|
129
|
+
"action": "Change IP range of a Network",
|
|
130
|
+
"description": "Changes the IP range of a Network.\n\nThe following restrictions apply to changing the IP range:\n- IP ranges can only be extended and never shrunk.\n- IPs can only be added to the end of the existing range, therefore only the netmask is allowed to be changed.\n\nTo update the routes on the connected Servers, they need to be rebooted or the routes to be updated manually.\n\nFor example if the Network has a range of `10.0.0.0/16` to extend it the new range has to start with the IP `10.0.0.0` as well. The netmask `/16` can be changed to a smaller one then `16` therefore increasing the IP range. A valid entry would be `10.0.0.0/15`, `10.0.0.0/14` or `10.0.0.0/13` and so on.\n\nIf a change is currently being performed on this Network, a error response with code `conflict` will be returned.\n",
|
|
131
|
+
"routing": {
|
|
132
|
+
"request": {
|
|
133
|
+
"method": "POST",
|
|
134
|
+
"url": "=/networks/{{$parameter[\"id\"]}}/actions/change_ip_range"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "Change Network Protection",
|
|
140
|
+
"value": "Change Network Protection",
|
|
141
|
+
"action": "Change Network Protection",
|
|
142
|
+
"description": "Changes the protection settings of a Network.\n\nIf a change is currently being performed on this Network, a error response with code `conflict` will be returned.\n",
|
|
143
|
+
"routing": {
|
|
144
|
+
"request": {
|
|
145
|
+
"method": "POST",
|
|
146
|
+
"url": "=/networks/{{$parameter[\"id\"]}}/actions/change_protection"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "Delete Route From Network",
|
|
152
|
+
"value": "Delete Route From Network",
|
|
153
|
+
"action": "Delete a route from a Network",
|
|
154
|
+
"description": "Delete a route entry from a Network.\n\nIf a change is currently being performed on this Network, a error response with code `conflict` will be returned.\n",
|
|
155
|
+
"routing": {
|
|
156
|
+
"request": {
|
|
157
|
+
"method": "POST",
|
|
158
|
+
"url": "=/networks/{{$parameter[\"id\"]}}/actions/delete_route"
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "Delete Subnet From Network",
|
|
164
|
+
"value": "Delete Subnet From Network",
|
|
165
|
+
"action": "Delete a subnet from a Network",
|
|
166
|
+
"description": "Deletes a single subnet entry from a Network.\n\nSubnets containing attached resources can not be deleted, they must be detached beforehand.\n\nIf a change is currently being performed on this Network, a error response with code `conflict` will be returned.\n",
|
|
167
|
+
"routing": {
|
|
168
|
+
"request": {
|
|
169
|
+
"method": "POST",
|
|
170
|
+
"url": "=/networks/{{$parameter[\"id\"]}}/actions/delete_subnet"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "List Network Actions",
|
|
176
|
+
"value": "List Network Actions",
|
|
177
|
+
"action": "List Actions",
|
|
178
|
+
"description": "Lists multiple Actions.\n\nUse the provided URI parameters to modify the result.\n",
|
|
179
|
+
"routing": {
|
|
180
|
+
"request": {
|
|
181
|
+
"method": "GET",
|
|
182
|
+
"url": "=/networks/actions"
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "Get Network Action",
|
|
188
|
+
"value": "Get Network Action",
|
|
189
|
+
"action": "Get an Action",
|
|
190
|
+
"description": "Returns a single Action.\n",
|
|
191
|
+
"routing": {
|
|
192
|
+
"request": {
|
|
193
|
+
"method": "GET",
|
|
194
|
+
"url": "=/networks/actions/{{$parameter[\"id\"]}}"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"default": ""
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"displayName": "GET /networks",
|
|
203
|
+
"name": "operation",
|
|
204
|
+
"type": "notice",
|
|
205
|
+
"typeOptions": {
|
|
206
|
+
"theme": "info"
|
|
207
|
+
},
|
|
208
|
+
"default": "",
|
|
209
|
+
"displayOptions": {
|
|
210
|
+
"show": {
|
|
211
|
+
"resource": [
|
|
212
|
+
"Networks"
|
|
213
|
+
],
|
|
214
|
+
"operation": [
|
|
215
|
+
"List Networks"
|
|
216
|
+
]
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"displayName": "Sort",
|
|
222
|
+
"name": "sort",
|
|
223
|
+
"description": "Sort resources by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
224
|
+
"default": "[\n null\n]",
|
|
225
|
+
"type": "json",
|
|
226
|
+
"routing": {
|
|
227
|
+
"send": {
|
|
228
|
+
"type": "query",
|
|
229
|
+
"property": "sort",
|
|
230
|
+
"value": "={{ $value }}",
|
|
231
|
+
"propertyInDotNotation": false
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"displayOptions": {
|
|
235
|
+
"show": {
|
|
236
|
+
"resource": [
|
|
237
|
+
"Networks"
|
|
238
|
+
],
|
|
239
|
+
"operation": [
|
|
240
|
+
"List Networks"
|
|
241
|
+
]
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"displayName": "Name",
|
|
247
|
+
"name": "name",
|
|
248
|
+
"description": "Filter resources by their name. The response will only contain the resources\nmatching exactly the specified name.\n",
|
|
249
|
+
"default": "",
|
|
250
|
+
"type": "string",
|
|
251
|
+
"routing": {
|
|
252
|
+
"send": {
|
|
253
|
+
"type": "query",
|
|
254
|
+
"property": "name",
|
|
255
|
+
"value": "={{ $value }}",
|
|
256
|
+
"propertyInDotNotation": false
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"displayOptions": {
|
|
260
|
+
"show": {
|
|
261
|
+
"resource": [
|
|
262
|
+
"Networks"
|
|
263
|
+
],
|
|
264
|
+
"operation": [
|
|
265
|
+
"List Networks"
|
|
266
|
+
]
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"displayName": "Label Selector",
|
|
272
|
+
"name": "label_selector",
|
|
273
|
+
"description": "Filter resources by labels. The response will only contain resources matching the\nlabel selector. For more information, see \"Label Selector\".\n",
|
|
274
|
+
"default": "",
|
|
275
|
+
"type": "string",
|
|
276
|
+
"routing": {
|
|
277
|
+
"send": {
|
|
278
|
+
"type": "query",
|
|
279
|
+
"property": "label_selector",
|
|
280
|
+
"value": "={{ $value }}",
|
|
281
|
+
"propertyInDotNotation": false
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"displayOptions": {
|
|
285
|
+
"show": {
|
|
286
|
+
"resource": [
|
|
287
|
+
"Networks"
|
|
288
|
+
],
|
|
289
|
+
"operation": [
|
|
290
|
+
"List Networks"
|
|
291
|
+
]
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"displayName": "Page",
|
|
297
|
+
"name": "page",
|
|
298
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
299
|
+
"default": 1,
|
|
300
|
+
"type": "number",
|
|
301
|
+
"routing": {
|
|
302
|
+
"send": {
|
|
303
|
+
"type": "query",
|
|
304
|
+
"property": "page",
|
|
305
|
+
"value": "={{ $value }}",
|
|
306
|
+
"propertyInDotNotation": false
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"displayOptions": {
|
|
310
|
+
"show": {
|
|
311
|
+
"resource": [
|
|
312
|
+
"Networks"
|
|
313
|
+
],
|
|
314
|
+
"operation": [
|
|
315
|
+
"List Networks"
|
|
316
|
+
]
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"displayName": "Per Page",
|
|
322
|
+
"name": "per_page",
|
|
323
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
324
|
+
"default": 25,
|
|
325
|
+
"type": "number",
|
|
326
|
+
"routing": {
|
|
327
|
+
"send": {
|
|
328
|
+
"type": "query",
|
|
329
|
+
"property": "per_page",
|
|
330
|
+
"value": "={{ $value }}",
|
|
331
|
+
"propertyInDotNotation": false
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"displayOptions": {
|
|
335
|
+
"show": {
|
|
336
|
+
"resource": [
|
|
337
|
+
"Networks"
|
|
338
|
+
],
|
|
339
|
+
"operation": [
|
|
340
|
+
"List Networks"
|
|
341
|
+
]
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"displayName": "POST /networks",
|
|
347
|
+
"name": "operation",
|
|
348
|
+
"type": "notice",
|
|
349
|
+
"typeOptions": {
|
|
350
|
+
"theme": "info"
|
|
351
|
+
},
|
|
352
|
+
"default": "",
|
|
353
|
+
"displayOptions": {
|
|
354
|
+
"show": {
|
|
355
|
+
"resource": [
|
|
356
|
+
"Networks"
|
|
357
|
+
],
|
|
358
|
+
"operation": [
|
|
359
|
+
"Create Network"
|
|
360
|
+
]
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"displayName": "Expose Routes To Vswitch",
|
|
366
|
+
"name": "expose_routes_to_vswitch",
|
|
367
|
+
"type": "boolean",
|
|
368
|
+
"default": false,
|
|
369
|
+
"description": "Toggle to expose routes to the Networks vSwitch.\n\nIndicates if the routes from this Network should be exposed to the vSwitch in this Network. Only takes effect if a [vSwitch is setup](https://docs.hetzner.com/cloud/networks/connect-dedi-vswitch) in this Network.\n",
|
|
370
|
+
"routing": {
|
|
371
|
+
"send": {
|
|
372
|
+
"property": "expose_routes_to_vswitch",
|
|
373
|
+
"propertyInDotNotation": false,
|
|
374
|
+
"type": "body",
|
|
375
|
+
"value": "={{ $value }}"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"displayOptions": {
|
|
379
|
+
"show": {
|
|
380
|
+
"resource": [
|
|
381
|
+
"Networks"
|
|
382
|
+
],
|
|
383
|
+
"operation": [
|
|
384
|
+
"Create Network"
|
|
385
|
+
]
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"required": true,
|
|
391
|
+
"displayName": "Ip Range",
|
|
392
|
+
"name": "ip_range",
|
|
393
|
+
"type": "string",
|
|
394
|
+
"default": "10.0.0.0/16",
|
|
395
|
+
"description": "IP range of the Network.\n\nUses CIDR notation.\n\nMust span all included subnets. Must be one of the private IPv4 ranges of RFC1918.\n\nMinimum network size is /24. We highly recommend that you pick a larger Network with a /16 netmask.\n",
|
|
396
|
+
"routing": {
|
|
397
|
+
"send": {
|
|
398
|
+
"property": "ip_range",
|
|
399
|
+
"propertyInDotNotation": false,
|
|
400
|
+
"type": "body",
|
|
401
|
+
"value": "={{ $value }}"
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"displayOptions": {
|
|
405
|
+
"show": {
|
|
406
|
+
"resource": [
|
|
407
|
+
"Networks"
|
|
408
|
+
],
|
|
409
|
+
"operation": [
|
|
410
|
+
"Create Network"
|
|
411
|
+
]
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"displayName": "Labels",
|
|
417
|
+
"name": "labels",
|
|
418
|
+
"type": "json",
|
|
419
|
+
"default": "{\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n}",
|
|
420
|
+
"description": "User-defined labels (`key/value` pairs) for the Resource.\nFor more information, see \"Labels\".\n | User-defined labels (`key/value` pairs) for the Resource.\n\nNote that the set of Labels provided in the request will overwrite the\nexisting one.\n\nFor more information, see \"Labels\".\n",
|
|
421
|
+
"routing": {
|
|
422
|
+
"send": {
|
|
423
|
+
"property": "labels",
|
|
424
|
+
"propertyInDotNotation": false,
|
|
425
|
+
"type": "body",
|
|
426
|
+
"value": "={{ JSON.parse($value) }}"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"displayOptions": {
|
|
430
|
+
"show": {
|
|
431
|
+
"resource": [
|
|
432
|
+
"Networks"
|
|
433
|
+
],
|
|
434
|
+
"operation": [
|
|
435
|
+
"Create Network"
|
|
436
|
+
]
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"required": true,
|
|
442
|
+
"displayName": "Name",
|
|
443
|
+
"name": "name",
|
|
444
|
+
"type": "string",
|
|
445
|
+
"default": "mynet",
|
|
446
|
+
"description": "Name of the Network.",
|
|
447
|
+
"routing": {
|
|
448
|
+
"send": {
|
|
449
|
+
"property": "name",
|
|
450
|
+
"propertyInDotNotation": false,
|
|
451
|
+
"type": "body",
|
|
452
|
+
"value": "={{ $value }}"
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
"displayOptions": {
|
|
456
|
+
"show": {
|
|
457
|
+
"resource": [
|
|
458
|
+
"Networks"
|
|
459
|
+
],
|
|
460
|
+
"operation": [
|
|
461
|
+
"Create Network"
|
|
462
|
+
]
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"displayName": "Routes",
|
|
468
|
+
"name": "routes",
|
|
469
|
+
"type": "json",
|
|
470
|
+
"default": "[\n {\n \"destination\": \"10.100.1.0/24\",\n \"gateway\": \"10.0.1.1\"\n }\n]",
|
|
471
|
+
"description": "Array of routes set in this Network.",
|
|
472
|
+
"routing": {
|
|
473
|
+
"send": {
|
|
474
|
+
"property": "routes",
|
|
475
|
+
"propertyInDotNotation": false,
|
|
476
|
+
"type": "body",
|
|
477
|
+
"value": "={{ JSON.parse($value) }}"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
"displayOptions": {
|
|
481
|
+
"show": {
|
|
482
|
+
"resource": [
|
|
483
|
+
"Networks"
|
|
484
|
+
],
|
|
485
|
+
"operation": [
|
|
486
|
+
"Create Network"
|
|
487
|
+
]
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"displayName": "Subnets",
|
|
493
|
+
"name": "subnets",
|
|
494
|
+
"type": "json",
|
|
495
|
+
"default": "[\n {\n \"ip_range\": \"10.0.1.0/24\",\n \"network_zone\": \"eu-central\",\n \"vswitch_id\": 1000\n }\n]",
|
|
496
|
+
"description": "Array of subnets to allocate.",
|
|
497
|
+
"routing": {
|
|
498
|
+
"send": {
|
|
499
|
+
"property": "subnets",
|
|
500
|
+
"propertyInDotNotation": false,
|
|
501
|
+
"type": "body",
|
|
502
|
+
"value": "={{ JSON.parse($value) }}"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"displayOptions": {
|
|
506
|
+
"show": {
|
|
507
|
+
"resource": [
|
|
508
|
+
"Networks"
|
|
509
|
+
],
|
|
510
|
+
"operation": [
|
|
511
|
+
"Create Network"
|
|
512
|
+
]
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"displayName": "DELETE /networks/{id}",
|
|
518
|
+
"name": "operation",
|
|
519
|
+
"type": "notice",
|
|
520
|
+
"typeOptions": {
|
|
521
|
+
"theme": "info"
|
|
522
|
+
},
|
|
523
|
+
"default": "",
|
|
524
|
+
"displayOptions": {
|
|
525
|
+
"show": {
|
|
526
|
+
"resource": [
|
|
527
|
+
"Networks"
|
|
528
|
+
],
|
|
529
|
+
"operation": [
|
|
530
|
+
"Delete Network"
|
|
531
|
+
]
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"displayName": "Id",
|
|
537
|
+
"name": "id",
|
|
538
|
+
"required": true,
|
|
539
|
+
"description": "ID of the Network.",
|
|
540
|
+
"default": 42,
|
|
541
|
+
"type": "number",
|
|
542
|
+
"displayOptions": {
|
|
543
|
+
"show": {
|
|
544
|
+
"resource": [
|
|
545
|
+
"Networks"
|
|
546
|
+
],
|
|
547
|
+
"operation": [
|
|
548
|
+
"Delete Network"
|
|
549
|
+
]
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"displayName": "GET /networks/{id}",
|
|
555
|
+
"name": "operation",
|
|
556
|
+
"type": "notice",
|
|
557
|
+
"typeOptions": {
|
|
558
|
+
"theme": "info"
|
|
559
|
+
},
|
|
560
|
+
"default": "",
|
|
561
|
+
"displayOptions": {
|
|
562
|
+
"show": {
|
|
563
|
+
"resource": [
|
|
564
|
+
"Networks"
|
|
565
|
+
],
|
|
566
|
+
"operation": [
|
|
567
|
+
"Get Network"
|
|
568
|
+
]
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"displayName": "Id",
|
|
574
|
+
"name": "id",
|
|
575
|
+
"required": true,
|
|
576
|
+
"description": "ID of the Network.",
|
|
577
|
+
"default": 42,
|
|
578
|
+
"type": "number",
|
|
579
|
+
"displayOptions": {
|
|
580
|
+
"show": {
|
|
581
|
+
"resource": [
|
|
582
|
+
"Networks"
|
|
583
|
+
],
|
|
584
|
+
"operation": [
|
|
585
|
+
"Get Network"
|
|
586
|
+
]
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"displayName": "PUT /networks/{id}",
|
|
592
|
+
"name": "operation",
|
|
593
|
+
"type": "notice",
|
|
594
|
+
"typeOptions": {
|
|
595
|
+
"theme": "info"
|
|
596
|
+
},
|
|
597
|
+
"default": "",
|
|
598
|
+
"displayOptions": {
|
|
599
|
+
"show": {
|
|
600
|
+
"resource": [
|
|
601
|
+
"Networks"
|
|
602
|
+
],
|
|
603
|
+
"operation": [
|
|
604
|
+
"Replace Network"
|
|
605
|
+
]
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"displayName": "Id",
|
|
611
|
+
"name": "id",
|
|
612
|
+
"required": true,
|
|
613
|
+
"description": "ID of the Network.",
|
|
614
|
+
"default": 42,
|
|
615
|
+
"type": "number",
|
|
616
|
+
"displayOptions": {
|
|
617
|
+
"show": {
|
|
618
|
+
"resource": [
|
|
619
|
+
"Networks"
|
|
620
|
+
],
|
|
621
|
+
"operation": [
|
|
622
|
+
"Replace Network"
|
|
623
|
+
]
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"displayName": "Expose Routes To Vswitch",
|
|
629
|
+
"name": "expose_routes_to_vswitch",
|
|
630
|
+
"type": "boolean",
|
|
631
|
+
"default": false,
|
|
632
|
+
"description": "Toggle to expose routes to the Networks vSwitch.\n\nIndicates if the routes from this Network should be exposed to the vSwitch in this Network. Only takes effect if a [vSwitch is setup](https://docs.hetzner.com/cloud/networks/connect-dedi-vswitch) in this Network.\n",
|
|
633
|
+
"routing": {
|
|
634
|
+
"send": {
|
|
635
|
+
"property": "expose_routes_to_vswitch",
|
|
636
|
+
"propertyInDotNotation": false,
|
|
637
|
+
"type": "body",
|
|
638
|
+
"value": "={{ $value }}"
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"displayOptions": {
|
|
642
|
+
"show": {
|
|
643
|
+
"resource": [
|
|
644
|
+
"Networks"
|
|
645
|
+
],
|
|
646
|
+
"operation": [
|
|
647
|
+
"Replace Network"
|
|
648
|
+
]
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"displayName": "Labels",
|
|
654
|
+
"name": "labels",
|
|
655
|
+
"type": "json",
|
|
656
|
+
"default": "{\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n}",
|
|
657
|
+
"description": "User-defined labels (`key/value` pairs) for the Resource.\nFor more information, see \"Labels\".\n | User-defined labels (`key/value` pairs) for the Resource.\n\nNote that the set of Labels provided in the request will overwrite the\nexisting one.\n\nFor more information, see \"Labels\".\n",
|
|
658
|
+
"routing": {
|
|
659
|
+
"send": {
|
|
660
|
+
"property": "labels",
|
|
661
|
+
"propertyInDotNotation": false,
|
|
662
|
+
"type": "body",
|
|
663
|
+
"value": "={{ JSON.parse($value) }}"
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
"displayOptions": {
|
|
667
|
+
"show": {
|
|
668
|
+
"resource": [
|
|
669
|
+
"Networks"
|
|
670
|
+
],
|
|
671
|
+
"operation": [
|
|
672
|
+
"Replace Network"
|
|
673
|
+
]
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"displayName": "Name",
|
|
679
|
+
"name": "name",
|
|
680
|
+
"type": "string",
|
|
681
|
+
"default": "new-name",
|
|
682
|
+
"description": "New Network name.",
|
|
683
|
+
"routing": {
|
|
684
|
+
"send": {
|
|
685
|
+
"property": "name",
|
|
686
|
+
"propertyInDotNotation": false,
|
|
687
|
+
"type": "body",
|
|
688
|
+
"value": "={{ $value }}"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"displayOptions": {
|
|
692
|
+
"show": {
|
|
693
|
+
"resource": [
|
|
694
|
+
"Networks"
|
|
695
|
+
],
|
|
696
|
+
"operation": [
|
|
697
|
+
"Replace Network"
|
|
698
|
+
]
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"displayName": "GET /networks/{id}/actions",
|
|
704
|
+
"name": "operation",
|
|
705
|
+
"type": "notice",
|
|
706
|
+
"typeOptions": {
|
|
707
|
+
"theme": "info"
|
|
708
|
+
},
|
|
709
|
+
"default": "",
|
|
710
|
+
"displayOptions": {
|
|
711
|
+
"show": {
|
|
712
|
+
"resource": [
|
|
713
|
+
"Networks"
|
|
714
|
+
],
|
|
715
|
+
"operation": [
|
|
716
|
+
"List Actions For Network"
|
|
717
|
+
]
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"displayName": "Id",
|
|
723
|
+
"name": "id",
|
|
724
|
+
"required": true,
|
|
725
|
+
"description": "ID of the Network.",
|
|
726
|
+
"default": 42,
|
|
727
|
+
"type": "number",
|
|
728
|
+
"displayOptions": {
|
|
729
|
+
"show": {
|
|
730
|
+
"resource": [
|
|
731
|
+
"Networks"
|
|
732
|
+
],
|
|
733
|
+
"operation": [
|
|
734
|
+
"List Actions For Network"
|
|
735
|
+
]
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"displayName": "Sort",
|
|
741
|
+
"name": "sort",
|
|
742
|
+
"description": "Sort actions by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
743
|
+
"default": "[\n null\n]",
|
|
744
|
+
"type": "json",
|
|
745
|
+
"routing": {
|
|
746
|
+
"send": {
|
|
747
|
+
"type": "query",
|
|
748
|
+
"property": "sort",
|
|
749
|
+
"value": "={{ $value }}",
|
|
750
|
+
"propertyInDotNotation": false
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
"displayOptions": {
|
|
754
|
+
"show": {
|
|
755
|
+
"resource": [
|
|
756
|
+
"Networks"
|
|
757
|
+
],
|
|
758
|
+
"operation": [
|
|
759
|
+
"List Actions For Network"
|
|
760
|
+
]
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"displayName": "Status",
|
|
766
|
+
"name": "status",
|
|
767
|
+
"description": "Filter the actions by status. Can be used multiple times. The response will only\ncontain actions matching the specified statuses.\n",
|
|
768
|
+
"default": "[\n null\n]",
|
|
769
|
+
"type": "json",
|
|
770
|
+
"routing": {
|
|
771
|
+
"send": {
|
|
772
|
+
"type": "query",
|
|
773
|
+
"property": "status",
|
|
774
|
+
"value": "={{ $value }}",
|
|
775
|
+
"propertyInDotNotation": false
|
|
776
|
+
}
|
|
777
|
+
},
|
|
778
|
+
"displayOptions": {
|
|
779
|
+
"show": {
|
|
780
|
+
"resource": [
|
|
781
|
+
"Networks"
|
|
782
|
+
],
|
|
783
|
+
"operation": [
|
|
784
|
+
"List Actions For Network"
|
|
785
|
+
]
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"displayName": "Page",
|
|
791
|
+
"name": "page",
|
|
792
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
793
|
+
"default": 1,
|
|
794
|
+
"type": "number",
|
|
795
|
+
"routing": {
|
|
796
|
+
"send": {
|
|
797
|
+
"type": "query",
|
|
798
|
+
"property": "page",
|
|
799
|
+
"value": "={{ $value }}",
|
|
800
|
+
"propertyInDotNotation": false
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
"displayOptions": {
|
|
804
|
+
"show": {
|
|
805
|
+
"resource": [
|
|
806
|
+
"Networks"
|
|
807
|
+
],
|
|
808
|
+
"operation": [
|
|
809
|
+
"List Actions For Network"
|
|
810
|
+
]
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"displayName": "Per Page",
|
|
816
|
+
"name": "per_page",
|
|
817
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
818
|
+
"default": 25,
|
|
819
|
+
"type": "number",
|
|
820
|
+
"routing": {
|
|
821
|
+
"send": {
|
|
822
|
+
"type": "query",
|
|
823
|
+
"property": "per_page",
|
|
824
|
+
"value": "={{ $value }}",
|
|
825
|
+
"propertyInDotNotation": false
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"displayOptions": {
|
|
829
|
+
"show": {
|
|
830
|
+
"resource": [
|
|
831
|
+
"Networks"
|
|
832
|
+
],
|
|
833
|
+
"operation": [
|
|
834
|
+
"List Actions For Network"
|
|
835
|
+
]
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"displayName": "GET /networks/{id}/actions/{action_id}",
|
|
841
|
+
"name": "operation",
|
|
842
|
+
"type": "notice",
|
|
843
|
+
"typeOptions": {
|
|
844
|
+
"theme": "info"
|
|
845
|
+
},
|
|
846
|
+
"default": "",
|
|
847
|
+
"displayOptions": {
|
|
848
|
+
"show": {
|
|
849
|
+
"resource": [
|
|
850
|
+
"Networks"
|
|
851
|
+
],
|
|
852
|
+
"operation": [
|
|
853
|
+
"Get Action For Network"
|
|
854
|
+
]
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"displayName": "Id",
|
|
860
|
+
"name": "id",
|
|
861
|
+
"required": true,
|
|
862
|
+
"description": "ID of the Network.",
|
|
863
|
+
"default": 42,
|
|
864
|
+
"type": "number",
|
|
865
|
+
"displayOptions": {
|
|
866
|
+
"show": {
|
|
867
|
+
"resource": [
|
|
868
|
+
"Networks"
|
|
869
|
+
],
|
|
870
|
+
"operation": [
|
|
871
|
+
"Get Action For Network"
|
|
872
|
+
]
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"displayName": "Action Id",
|
|
878
|
+
"name": "action_id",
|
|
879
|
+
"required": true,
|
|
880
|
+
"description": "ID of the Action.",
|
|
881
|
+
"default": 42,
|
|
882
|
+
"type": "number",
|
|
883
|
+
"displayOptions": {
|
|
884
|
+
"show": {
|
|
885
|
+
"resource": [
|
|
886
|
+
"Networks"
|
|
887
|
+
],
|
|
888
|
+
"operation": [
|
|
889
|
+
"Get Action For Network"
|
|
890
|
+
]
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"displayName": "POST /networks/{id}/actions/add_route",
|
|
896
|
+
"name": "operation",
|
|
897
|
+
"type": "notice",
|
|
898
|
+
"typeOptions": {
|
|
899
|
+
"theme": "info"
|
|
900
|
+
},
|
|
901
|
+
"default": "",
|
|
902
|
+
"displayOptions": {
|
|
903
|
+
"show": {
|
|
904
|
+
"resource": [
|
|
905
|
+
"Networks"
|
|
906
|
+
],
|
|
907
|
+
"operation": [
|
|
908
|
+
"Add Route To Network"
|
|
909
|
+
]
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"displayName": "Id",
|
|
915
|
+
"name": "id",
|
|
916
|
+
"required": true,
|
|
917
|
+
"description": "ID of the Network.",
|
|
918
|
+
"default": 42,
|
|
919
|
+
"type": "number",
|
|
920
|
+
"displayOptions": {
|
|
921
|
+
"show": {
|
|
922
|
+
"resource": [
|
|
923
|
+
"Networks"
|
|
924
|
+
],
|
|
925
|
+
"operation": [
|
|
926
|
+
"Add Route To Network"
|
|
927
|
+
]
|
|
928
|
+
}
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"required": true,
|
|
933
|
+
"displayName": "Destination",
|
|
934
|
+
"name": "destination",
|
|
935
|
+
"type": "string",
|
|
936
|
+
"default": "10.100.1.0/24",
|
|
937
|
+
"description": "Destination network or host of the route.\n\nPackages addressed for IPs matching the destination IP prefix will be send to the specified gateway.\n\nMust be one of\n* private IPv4 ranges of RFC1918\n* or `0.0.0.0/0`.\n\nMust not overlap with\n* an existing ip_range in any subnets\n* or with any destinations in other routes\n* or with `172.31.1.1`.\n\n`172.31.1.1` is being used as a gateway for the public network interface of Servers.\n",
|
|
938
|
+
"routing": {
|
|
939
|
+
"send": {
|
|
940
|
+
"property": "destination",
|
|
941
|
+
"propertyInDotNotation": false,
|
|
942
|
+
"type": "body",
|
|
943
|
+
"value": "={{ $value }}"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
"displayOptions": {
|
|
947
|
+
"show": {
|
|
948
|
+
"resource": [
|
|
949
|
+
"Networks"
|
|
950
|
+
],
|
|
951
|
+
"operation": [
|
|
952
|
+
"Add Route To Network"
|
|
953
|
+
]
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"required": true,
|
|
959
|
+
"displayName": "Gateway",
|
|
960
|
+
"name": "gateway",
|
|
961
|
+
"type": "string",
|
|
962
|
+
"default": "10.0.1.1",
|
|
963
|
+
"description": "Gateway of the route.\n\nPackages addressed for the specified destination will be send to this IP address.\n\nCannot be\n* the first IP of the networks ip_range,\n* an IP behind a vSwitch or\n* `172.31.1.1`.\n\n`172.31.1.1` is being used as a gateway for the public network interface of Servers.\n",
|
|
964
|
+
"routing": {
|
|
965
|
+
"send": {
|
|
966
|
+
"property": "gateway",
|
|
967
|
+
"propertyInDotNotation": false,
|
|
968
|
+
"type": "body",
|
|
969
|
+
"value": "={{ $value }}"
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
"displayOptions": {
|
|
973
|
+
"show": {
|
|
974
|
+
"resource": [
|
|
975
|
+
"Networks"
|
|
976
|
+
],
|
|
977
|
+
"operation": [
|
|
978
|
+
"Add Route To Network"
|
|
979
|
+
]
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"displayName": "POST /networks/{id}/actions/add_subnet",
|
|
985
|
+
"name": "operation",
|
|
986
|
+
"type": "notice",
|
|
987
|
+
"typeOptions": {
|
|
988
|
+
"theme": "info"
|
|
989
|
+
},
|
|
990
|
+
"default": "",
|
|
991
|
+
"displayOptions": {
|
|
992
|
+
"show": {
|
|
993
|
+
"resource": [
|
|
994
|
+
"Networks"
|
|
995
|
+
],
|
|
996
|
+
"operation": [
|
|
997
|
+
"Add Subnet To Network"
|
|
998
|
+
]
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"displayName": "Id",
|
|
1004
|
+
"name": "id",
|
|
1005
|
+
"required": true,
|
|
1006
|
+
"description": "ID of the Network.",
|
|
1007
|
+
"default": 42,
|
|
1008
|
+
"type": "number",
|
|
1009
|
+
"displayOptions": {
|
|
1010
|
+
"show": {
|
|
1011
|
+
"resource": [
|
|
1012
|
+
"Networks"
|
|
1013
|
+
],
|
|
1014
|
+
"operation": [
|
|
1015
|
+
"Add Subnet To Network"
|
|
1016
|
+
]
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"displayName": "Ip Range",
|
|
1022
|
+
"name": "ip_range",
|
|
1023
|
+
"type": "string",
|
|
1024
|
+
"default": "10.0.1.0/24",
|
|
1025
|
+
"description": "IP range of the subnet.\n\nUses CIDR notation.\n\nMust be a subnet of the parent Networks `ip_range`.\n\nMust not overlap with any other subnets or with any destinations in routes.\n\nMinimum network size is /30. We highly recommend that you pick a larger subnet with a /24 netmask.\n",
|
|
1026
|
+
"routing": {
|
|
1027
|
+
"send": {
|
|
1028
|
+
"property": "ip_range",
|
|
1029
|
+
"propertyInDotNotation": false,
|
|
1030
|
+
"type": "body",
|
|
1031
|
+
"value": "={{ $value }}"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"displayOptions": {
|
|
1035
|
+
"show": {
|
|
1036
|
+
"resource": [
|
|
1037
|
+
"Networks"
|
|
1038
|
+
],
|
|
1039
|
+
"operation": [
|
|
1040
|
+
"Add Subnet To Network"
|
|
1041
|
+
]
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"required": true,
|
|
1047
|
+
"displayName": "Network Zone",
|
|
1048
|
+
"name": "network_zone",
|
|
1049
|
+
"type": "string",
|
|
1050
|
+
"default": "eu-central",
|
|
1051
|
+
"description": "Name of the Network Zone.\n\nThe Location contains the `network_zone` property it belongs to.\n | Name of the Network Zone.\n\nThe Location contains the `network_zone` it belongs to.\n",
|
|
1052
|
+
"routing": {
|
|
1053
|
+
"send": {
|
|
1054
|
+
"property": "network_zone",
|
|
1055
|
+
"propertyInDotNotation": false,
|
|
1056
|
+
"type": "body",
|
|
1057
|
+
"value": "={{ $value }}"
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
1060
|
+
"displayOptions": {
|
|
1061
|
+
"show": {
|
|
1062
|
+
"resource": [
|
|
1063
|
+
"Networks"
|
|
1064
|
+
],
|
|
1065
|
+
"operation": [
|
|
1066
|
+
"Add Subnet To Network"
|
|
1067
|
+
]
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"required": true,
|
|
1073
|
+
"displayName": "Type",
|
|
1074
|
+
"name": "type",
|
|
1075
|
+
"type": "options",
|
|
1076
|
+
"default": "cloud",
|
|
1077
|
+
"description": "Type of subnet.\n\n- `cloud` - Used to connect cloud Servers and Load Balancers.\n- `server` - Same as the `cloud` type. **Deprecated**, use the `cloud` type instead.\n- `vswitch` - Used to [connect cloud Servers and Load Balancers with dedicated Servers](https://docs.hetzner.com/cloud/networks/connect-dedi-vswitch).\n",
|
|
1078
|
+
"options": [
|
|
1079
|
+
{
|
|
1080
|
+
"name": "Cloud",
|
|
1081
|
+
"value": "cloud"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"name": "Server",
|
|
1085
|
+
"value": "server"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"name": "Vswitch",
|
|
1089
|
+
"value": "vswitch"
|
|
1090
|
+
}
|
|
1091
|
+
],
|
|
1092
|
+
"routing": {
|
|
1093
|
+
"send": {
|
|
1094
|
+
"property": "type",
|
|
1095
|
+
"propertyInDotNotation": false,
|
|
1096
|
+
"type": "body",
|
|
1097
|
+
"value": "={{ $value }}"
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
"displayOptions": {
|
|
1101
|
+
"show": {
|
|
1102
|
+
"resource": [
|
|
1103
|
+
"Networks"
|
|
1104
|
+
],
|
|
1105
|
+
"operation": [
|
|
1106
|
+
"Add Subnet To Network"
|
|
1107
|
+
]
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"displayName": "Vswitch Id",
|
|
1113
|
+
"name": "vswitch_id",
|
|
1114
|
+
"type": "number",
|
|
1115
|
+
"default": 1000,
|
|
1116
|
+
"description": "ID of the robot vSwitch.\n\nMust only be supplied for subnets of type `vswitch`.\n | ID of the robot vSwitch.\n\nMust be supplied if the subnet is of type `vswitch`.\n",
|
|
1117
|
+
"routing": {
|
|
1118
|
+
"send": {
|
|
1119
|
+
"property": "vswitch_id",
|
|
1120
|
+
"propertyInDotNotation": false,
|
|
1121
|
+
"type": "body",
|
|
1122
|
+
"value": "={{ $value }}"
|
|
1123
|
+
}
|
|
1124
|
+
},
|
|
1125
|
+
"displayOptions": {
|
|
1126
|
+
"show": {
|
|
1127
|
+
"resource": [
|
|
1128
|
+
"Networks"
|
|
1129
|
+
],
|
|
1130
|
+
"operation": [
|
|
1131
|
+
"Add Subnet To Network"
|
|
1132
|
+
]
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"displayName": "POST /networks/{id}/actions/change_ip_range",
|
|
1138
|
+
"name": "operation",
|
|
1139
|
+
"type": "notice",
|
|
1140
|
+
"typeOptions": {
|
|
1141
|
+
"theme": "info"
|
|
1142
|
+
},
|
|
1143
|
+
"default": "",
|
|
1144
|
+
"displayOptions": {
|
|
1145
|
+
"show": {
|
|
1146
|
+
"resource": [
|
|
1147
|
+
"Networks"
|
|
1148
|
+
],
|
|
1149
|
+
"operation": [
|
|
1150
|
+
"Change Ip Range Of Network"
|
|
1151
|
+
]
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"displayName": "Id",
|
|
1157
|
+
"name": "id",
|
|
1158
|
+
"required": true,
|
|
1159
|
+
"description": "ID of the Network.",
|
|
1160
|
+
"default": 42,
|
|
1161
|
+
"type": "number",
|
|
1162
|
+
"displayOptions": {
|
|
1163
|
+
"show": {
|
|
1164
|
+
"resource": [
|
|
1165
|
+
"Networks"
|
|
1166
|
+
],
|
|
1167
|
+
"operation": [
|
|
1168
|
+
"Change Ip Range Of Network"
|
|
1169
|
+
]
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"required": true,
|
|
1175
|
+
"displayName": "Ip Range",
|
|
1176
|
+
"name": "ip_range",
|
|
1177
|
+
"type": "string",
|
|
1178
|
+
"default": "10.0.0.0/16",
|
|
1179
|
+
"description": "IP range of the Network.\n\nUses CIDR notation.\n\nMust span all included subnets. Must be one of the private IPv4 ranges of RFC1918.\n\nMinimum network size is /24. We highly recommend that you pick a larger Network with a /16 netmask.\n",
|
|
1180
|
+
"routing": {
|
|
1181
|
+
"send": {
|
|
1182
|
+
"property": "ip_range",
|
|
1183
|
+
"propertyInDotNotation": false,
|
|
1184
|
+
"type": "body",
|
|
1185
|
+
"value": "={{ $value }}"
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
"displayOptions": {
|
|
1189
|
+
"show": {
|
|
1190
|
+
"resource": [
|
|
1191
|
+
"Networks"
|
|
1192
|
+
],
|
|
1193
|
+
"operation": [
|
|
1194
|
+
"Change Ip Range Of Network"
|
|
1195
|
+
]
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"displayName": "POST /networks/{id}/actions/change_protection",
|
|
1201
|
+
"name": "operation",
|
|
1202
|
+
"type": "notice",
|
|
1203
|
+
"typeOptions": {
|
|
1204
|
+
"theme": "info"
|
|
1205
|
+
},
|
|
1206
|
+
"default": "",
|
|
1207
|
+
"displayOptions": {
|
|
1208
|
+
"show": {
|
|
1209
|
+
"resource": [
|
|
1210
|
+
"Networks"
|
|
1211
|
+
],
|
|
1212
|
+
"operation": [
|
|
1213
|
+
"Change Network Protection"
|
|
1214
|
+
]
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"displayName": "Id",
|
|
1220
|
+
"name": "id",
|
|
1221
|
+
"required": true,
|
|
1222
|
+
"description": "ID of the Network.",
|
|
1223
|
+
"default": 42,
|
|
1224
|
+
"type": "number",
|
|
1225
|
+
"displayOptions": {
|
|
1226
|
+
"show": {
|
|
1227
|
+
"resource": [
|
|
1228
|
+
"Networks"
|
|
1229
|
+
],
|
|
1230
|
+
"operation": [
|
|
1231
|
+
"Change Network Protection"
|
|
1232
|
+
]
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"displayName": "Delete",
|
|
1238
|
+
"name": "delete",
|
|
1239
|
+
"type": "boolean",
|
|
1240
|
+
"default": true,
|
|
1241
|
+
"description": "Delete protection setting.\n\nIf true, prevents the Network from being deleted.\n",
|
|
1242
|
+
"routing": {
|
|
1243
|
+
"send": {
|
|
1244
|
+
"property": "delete",
|
|
1245
|
+
"propertyInDotNotation": false,
|
|
1246
|
+
"type": "body",
|
|
1247
|
+
"value": "={{ $value }}"
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
"displayOptions": {
|
|
1251
|
+
"show": {
|
|
1252
|
+
"resource": [
|
|
1253
|
+
"Networks"
|
|
1254
|
+
],
|
|
1255
|
+
"operation": [
|
|
1256
|
+
"Change Network Protection"
|
|
1257
|
+
]
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
"displayName": "POST /networks/{id}/actions/delete_route",
|
|
1263
|
+
"name": "operation",
|
|
1264
|
+
"type": "notice",
|
|
1265
|
+
"typeOptions": {
|
|
1266
|
+
"theme": "info"
|
|
1267
|
+
},
|
|
1268
|
+
"default": "",
|
|
1269
|
+
"displayOptions": {
|
|
1270
|
+
"show": {
|
|
1271
|
+
"resource": [
|
|
1272
|
+
"Networks"
|
|
1273
|
+
],
|
|
1274
|
+
"operation": [
|
|
1275
|
+
"Delete Route From Network"
|
|
1276
|
+
]
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"displayName": "Id",
|
|
1282
|
+
"name": "id",
|
|
1283
|
+
"required": true,
|
|
1284
|
+
"description": "ID of the Network.",
|
|
1285
|
+
"default": 42,
|
|
1286
|
+
"type": "number",
|
|
1287
|
+
"displayOptions": {
|
|
1288
|
+
"show": {
|
|
1289
|
+
"resource": [
|
|
1290
|
+
"Networks"
|
|
1291
|
+
],
|
|
1292
|
+
"operation": [
|
|
1293
|
+
"Delete Route From Network"
|
|
1294
|
+
]
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"required": true,
|
|
1300
|
+
"displayName": "Destination",
|
|
1301
|
+
"name": "destination",
|
|
1302
|
+
"type": "string",
|
|
1303
|
+
"default": "10.100.1.0/24",
|
|
1304
|
+
"description": "Destination network or host of the route.\n\nPackages addressed for IPs matching the destination IP prefix will be send to the specified gateway.\n\nMust be one of\n* private IPv4 ranges of RFC1918\n* or `0.0.0.0/0`.\n\nMust not overlap with\n* an existing ip_range in any subnets\n* or with any destinations in other routes\n* or with `172.31.1.1`.\n\n`172.31.1.1` is being used as a gateway for the public network interface of Servers.\n",
|
|
1305
|
+
"routing": {
|
|
1306
|
+
"send": {
|
|
1307
|
+
"property": "destination",
|
|
1308
|
+
"propertyInDotNotation": false,
|
|
1309
|
+
"type": "body",
|
|
1310
|
+
"value": "={{ $value }}"
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
"displayOptions": {
|
|
1314
|
+
"show": {
|
|
1315
|
+
"resource": [
|
|
1316
|
+
"Networks"
|
|
1317
|
+
],
|
|
1318
|
+
"operation": [
|
|
1319
|
+
"Delete Route From Network"
|
|
1320
|
+
]
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"required": true,
|
|
1326
|
+
"displayName": "Gateway",
|
|
1327
|
+
"name": "gateway",
|
|
1328
|
+
"type": "string",
|
|
1329
|
+
"default": "10.0.1.1",
|
|
1330
|
+
"description": "Gateway of the route.\n\nPackages addressed for the specified destination will be send to this IP address.\n\nCannot be\n* the first IP of the networks ip_range,\n* an IP behind a vSwitch or\n* `172.31.1.1`.\n\n`172.31.1.1` is being used as a gateway for the public network interface of Servers.\n",
|
|
1331
|
+
"routing": {
|
|
1332
|
+
"send": {
|
|
1333
|
+
"property": "gateway",
|
|
1334
|
+
"propertyInDotNotation": false,
|
|
1335
|
+
"type": "body",
|
|
1336
|
+
"value": "={{ $value }}"
|
|
1337
|
+
}
|
|
1338
|
+
},
|
|
1339
|
+
"displayOptions": {
|
|
1340
|
+
"show": {
|
|
1341
|
+
"resource": [
|
|
1342
|
+
"Networks"
|
|
1343
|
+
],
|
|
1344
|
+
"operation": [
|
|
1345
|
+
"Delete Route From Network"
|
|
1346
|
+
]
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"displayName": "POST /networks/{id}/actions/delete_subnet",
|
|
1352
|
+
"name": "operation",
|
|
1353
|
+
"type": "notice",
|
|
1354
|
+
"typeOptions": {
|
|
1355
|
+
"theme": "info"
|
|
1356
|
+
},
|
|
1357
|
+
"default": "",
|
|
1358
|
+
"displayOptions": {
|
|
1359
|
+
"show": {
|
|
1360
|
+
"resource": [
|
|
1361
|
+
"Networks"
|
|
1362
|
+
],
|
|
1363
|
+
"operation": [
|
|
1364
|
+
"Delete Subnet From Network"
|
|
1365
|
+
]
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"displayName": "Id",
|
|
1371
|
+
"name": "id",
|
|
1372
|
+
"required": true,
|
|
1373
|
+
"description": "ID of the Network.",
|
|
1374
|
+
"default": 42,
|
|
1375
|
+
"type": "number",
|
|
1376
|
+
"displayOptions": {
|
|
1377
|
+
"show": {
|
|
1378
|
+
"resource": [
|
|
1379
|
+
"Networks"
|
|
1380
|
+
],
|
|
1381
|
+
"operation": [
|
|
1382
|
+
"Delete Subnet From Network"
|
|
1383
|
+
]
|
|
1384
|
+
}
|
|
1385
|
+
}
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"required": true,
|
|
1389
|
+
"displayName": "Ip Range",
|
|
1390
|
+
"name": "ip_range",
|
|
1391
|
+
"type": "string",
|
|
1392
|
+
"default": "10.0.1.0/24",
|
|
1393
|
+
"description": "IP range in CIDR block notation of the subnet to delete.",
|
|
1394
|
+
"routing": {
|
|
1395
|
+
"send": {
|
|
1396
|
+
"property": "ip_range",
|
|
1397
|
+
"propertyInDotNotation": false,
|
|
1398
|
+
"type": "body",
|
|
1399
|
+
"value": "={{ $value }}"
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
"displayOptions": {
|
|
1403
|
+
"show": {
|
|
1404
|
+
"resource": [
|
|
1405
|
+
"Networks"
|
|
1406
|
+
],
|
|
1407
|
+
"operation": [
|
|
1408
|
+
"Delete Subnet From Network"
|
|
1409
|
+
]
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"displayName": "GET /networks/actions",
|
|
1415
|
+
"name": "operation",
|
|
1416
|
+
"type": "notice",
|
|
1417
|
+
"typeOptions": {
|
|
1418
|
+
"theme": "info"
|
|
1419
|
+
},
|
|
1420
|
+
"default": "",
|
|
1421
|
+
"displayOptions": {
|
|
1422
|
+
"show": {
|
|
1423
|
+
"resource": [
|
|
1424
|
+
"Networks"
|
|
1425
|
+
],
|
|
1426
|
+
"operation": [
|
|
1427
|
+
"List Network Actions"
|
|
1428
|
+
]
|
|
1429
|
+
}
|
|
1430
|
+
}
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"displayName": "Id",
|
|
1434
|
+
"name": "id",
|
|
1435
|
+
"description": "Filter the actions by ID. Can be used multiple times. The response will only contain\nactions matching the specified IDs.\n",
|
|
1436
|
+
"default": "[\n 42\n]",
|
|
1437
|
+
"type": "json",
|
|
1438
|
+
"routing": {
|
|
1439
|
+
"send": {
|
|
1440
|
+
"type": "query",
|
|
1441
|
+
"property": "id",
|
|
1442
|
+
"value": "={{ $value }}",
|
|
1443
|
+
"propertyInDotNotation": false
|
|
1444
|
+
}
|
|
1445
|
+
},
|
|
1446
|
+
"displayOptions": {
|
|
1447
|
+
"show": {
|
|
1448
|
+
"resource": [
|
|
1449
|
+
"Networks"
|
|
1450
|
+
],
|
|
1451
|
+
"operation": [
|
|
1452
|
+
"List Network Actions"
|
|
1453
|
+
]
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
"displayName": "Sort",
|
|
1459
|
+
"name": "sort",
|
|
1460
|
+
"description": "Sort actions by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
1461
|
+
"default": "[\n null\n]",
|
|
1462
|
+
"type": "json",
|
|
1463
|
+
"routing": {
|
|
1464
|
+
"send": {
|
|
1465
|
+
"type": "query",
|
|
1466
|
+
"property": "sort",
|
|
1467
|
+
"value": "={{ $value }}",
|
|
1468
|
+
"propertyInDotNotation": false
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"displayOptions": {
|
|
1472
|
+
"show": {
|
|
1473
|
+
"resource": [
|
|
1474
|
+
"Networks"
|
|
1475
|
+
],
|
|
1476
|
+
"operation": [
|
|
1477
|
+
"List Network Actions"
|
|
1478
|
+
]
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
"displayName": "Status",
|
|
1484
|
+
"name": "status",
|
|
1485
|
+
"description": "Filter the actions by status. Can be used multiple times. The response will only\ncontain actions matching the specified statuses.\n",
|
|
1486
|
+
"default": "[\n null\n]",
|
|
1487
|
+
"type": "json",
|
|
1488
|
+
"routing": {
|
|
1489
|
+
"send": {
|
|
1490
|
+
"type": "query",
|
|
1491
|
+
"property": "status",
|
|
1492
|
+
"value": "={{ $value }}",
|
|
1493
|
+
"propertyInDotNotation": false
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
"displayOptions": {
|
|
1497
|
+
"show": {
|
|
1498
|
+
"resource": [
|
|
1499
|
+
"Networks"
|
|
1500
|
+
],
|
|
1501
|
+
"operation": [
|
|
1502
|
+
"List Network Actions"
|
|
1503
|
+
]
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"displayName": "Page",
|
|
1509
|
+
"name": "page",
|
|
1510
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
1511
|
+
"default": 1,
|
|
1512
|
+
"type": "number",
|
|
1513
|
+
"routing": {
|
|
1514
|
+
"send": {
|
|
1515
|
+
"type": "query",
|
|
1516
|
+
"property": "page",
|
|
1517
|
+
"value": "={{ $value }}",
|
|
1518
|
+
"propertyInDotNotation": false
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"displayOptions": {
|
|
1522
|
+
"show": {
|
|
1523
|
+
"resource": [
|
|
1524
|
+
"Networks"
|
|
1525
|
+
],
|
|
1526
|
+
"operation": [
|
|
1527
|
+
"List Network Actions"
|
|
1528
|
+
]
|
|
1529
|
+
}
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"displayName": "Per Page",
|
|
1534
|
+
"name": "per_page",
|
|
1535
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
1536
|
+
"default": 25,
|
|
1537
|
+
"type": "number",
|
|
1538
|
+
"routing": {
|
|
1539
|
+
"send": {
|
|
1540
|
+
"type": "query",
|
|
1541
|
+
"property": "per_page",
|
|
1542
|
+
"value": "={{ $value }}",
|
|
1543
|
+
"propertyInDotNotation": false
|
|
1544
|
+
}
|
|
1545
|
+
},
|
|
1546
|
+
"displayOptions": {
|
|
1547
|
+
"show": {
|
|
1548
|
+
"resource": [
|
|
1549
|
+
"Networks"
|
|
1550
|
+
],
|
|
1551
|
+
"operation": [
|
|
1552
|
+
"List Network Actions"
|
|
1553
|
+
]
|
|
1554
|
+
}
|
|
1555
|
+
}
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"displayName": "GET /networks/actions/{id}",
|
|
1559
|
+
"name": "operation",
|
|
1560
|
+
"type": "notice",
|
|
1561
|
+
"typeOptions": {
|
|
1562
|
+
"theme": "info"
|
|
1563
|
+
},
|
|
1564
|
+
"default": "",
|
|
1565
|
+
"displayOptions": {
|
|
1566
|
+
"show": {
|
|
1567
|
+
"resource": [
|
|
1568
|
+
"Networks"
|
|
1569
|
+
],
|
|
1570
|
+
"operation": [
|
|
1571
|
+
"Get Network Action"
|
|
1572
|
+
]
|
|
1573
|
+
}
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"displayName": "Id",
|
|
1578
|
+
"name": "id",
|
|
1579
|
+
"required": true,
|
|
1580
|
+
"description": "ID of the Action.",
|
|
1581
|
+
"default": 42,
|
|
1582
|
+
"type": "number",
|
|
1583
|
+
"displayOptions": {
|
|
1584
|
+
"show": {
|
|
1585
|
+
"resource": [
|
|
1586
|
+
"Networks"
|
|
1587
|
+
],
|
|
1588
|
+
"operation": [
|
|
1589
|
+
"Get Network Action"
|
|
1590
|
+
]
|
|
1591
|
+
}
|
|
1592
|
+
}
|
|
1593
|
+
},
|
|
1594
|
+
];
|
|
1595
|
+
//# sourceMappingURL=index.js.map
|