@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,1313 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.floatingIpsDescription = void 0;
|
|
4
|
+
exports.floatingIpsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Floating Ips"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "List Floating Ips",
|
|
20
|
+
"value": "List Floating Ips",
|
|
21
|
+
"action": "List Floating IPs",
|
|
22
|
+
"description": "List multiple Floating IPs.\n\nUse the provided URI parameters to modify the result.\n",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/floating_ips"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Create Floating Ip",
|
|
32
|
+
"value": "Create Floating Ip",
|
|
33
|
+
"action": "Create a Floating IP",
|
|
34
|
+
"description": "Create a Floating IP.\n\nProvide the `server` attribute to assign the Floating IP to that server or provide a `home_location` to locate the Floating IP at. Note that the Floating IP can be assigned to a Server in any Location later on. For optimal routing it is advised to use the Floating IP in the same Location it was created in.\n",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "POST",
|
|
38
|
+
"url": "=/floating_ips"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Delete Floating Ip",
|
|
44
|
+
"value": "Delete Floating Ip",
|
|
45
|
+
"action": "Delete a Floating IP",
|
|
46
|
+
"description": "Deletes a Floating IP.\n\nIf assigned to a Server the Floating IP will be unassigned automatically until 1 May 2026. After this date, the Floating IP needs to be unassigned before it can be deleted.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `must_be_unassigned` | Error when IP is still assigned to a Resource. This error will appear as of 1 May 2026. |\n",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "DELETE",
|
|
50
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Get Floating Ip",
|
|
56
|
+
"value": "Get Floating Ip",
|
|
57
|
+
"action": "Get a Floating IP",
|
|
58
|
+
"description": "Returns a single Floating IP.\n",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Replace Floating Ip",
|
|
68
|
+
"value": "Replace Floating Ip",
|
|
69
|
+
"action": "Update a Floating IP",
|
|
70
|
+
"description": "Update a Floating IP.\n",
|
|
71
|
+
"routing": {
|
|
72
|
+
"request": {
|
|
73
|
+
"method": "PUT",
|
|
74
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "List Actions For Floating Ip",
|
|
80
|
+
"value": "List Actions For Floating Ip",
|
|
81
|
+
"action": "List Actions for a Floating IP",
|
|
82
|
+
"description": "Lists Actions for a Floating IP.\n\nUse the provided URI parameters to modify the result.\n",
|
|
83
|
+
"routing": {
|
|
84
|
+
"request": {
|
|
85
|
+
"method": "GET",
|
|
86
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}/actions"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "Get Action For Floating Ip",
|
|
92
|
+
"value": "Get Action For Floating Ip",
|
|
93
|
+
"action": "Get an Action for a Floating IP",
|
|
94
|
+
"description": "Returns a specific Action for a Floating IP.\n",
|
|
95
|
+
"routing": {
|
|
96
|
+
"request": {
|
|
97
|
+
"method": "GET",
|
|
98
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}/actions/{{$parameter[\"action_id\"]}}"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "Assign Floating Ip To Server",
|
|
104
|
+
"value": "Assign Floating Ip To Server",
|
|
105
|
+
"action": "Assign a Floating IP to a Server",
|
|
106
|
+
"description": "Assigns a Floating IP to a Server.\n\n#### Operation specific errors\n\n| Status | Code | Description |\n| --- | --- | --- |\n| `422` | `floating_ip_assigned` | The Floating IP is already assigned |\n",
|
|
107
|
+
"routing": {
|
|
108
|
+
"request": {
|
|
109
|
+
"method": "POST",
|
|
110
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}/actions/assign"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "Change Reverse Dns Records For Floating Ip",
|
|
116
|
+
"value": "Change Reverse Dns Records For Floating Ip",
|
|
117
|
+
"action": "Change reverse DNS records for a Floating IP",
|
|
118
|
+
"description": "Change the reverse DNS records for this Floating IP.\n\nAllows to modify the PTR records set for the IP address.\n",
|
|
119
|
+
"routing": {
|
|
120
|
+
"request": {
|
|
121
|
+
"method": "POST",
|
|
122
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}/actions/change_dns_ptr"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "Change Floating Ip Protection",
|
|
128
|
+
"value": "Change Floating Ip Protection",
|
|
129
|
+
"action": "Change Floating IP Protection",
|
|
130
|
+
"description": "Changes the protection settings configured for the Floating IP.\n",
|
|
131
|
+
"routing": {
|
|
132
|
+
"request": {
|
|
133
|
+
"method": "POST",
|
|
134
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}/actions/change_protection"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "Unassign Floating Ip",
|
|
140
|
+
"value": "Unassign Floating Ip",
|
|
141
|
+
"action": "Unassign a Floating IP",
|
|
142
|
+
"description": "Unassigns a Floating IP.\n\nResults in the IP being unreachable. Can be assigned to another resource again.\n",
|
|
143
|
+
"routing": {
|
|
144
|
+
"request": {
|
|
145
|
+
"method": "POST",
|
|
146
|
+
"url": "=/floating_ips/{{$parameter[\"id\"]}}/actions/unassign"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "List Floating Ip Actions",
|
|
152
|
+
"value": "List Floating Ip Actions",
|
|
153
|
+
"action": "List Actions",
|
|
154
|
+
"description": "Lists multiple Actions.\n\nUse the provided URI parameters to modify the result.\n",
|
|
155
|
+
"routing": {
|
|
156
|
+
"request": {
|
|
157
|
+
"method": "GET",
|
|
158
|
+
"url": "=/floating_ips/actions"
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "Get Floating Ip Action",
|
|
164
|
+
"value": "Get Floating Ip Action",
|
|
165
|
+
"action": "Get an Action",
|
|
166
|
+
"description": "Returns a single Action.\n",
|
|
167
|
+
"routing": {
|
|
168
|
+
"request": {
|
|
169
|
+
"method": "GET",
|
|
170
|
+
"url": "=/floating_ips/actions/{{$parameter[\"id\"]}}"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"default": ""
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"displayName": "GET /floating_ips",
|
|
179
|
+
"name": "operation",
|
|
180
|
+
"type": "notice",
|
|
181
|
+
"typeOptions": {
|
|
182
|
+
"theme": "info"
|
|
183
|
+
},
|
|
184
|
+
"default": "",
|
|
185
|
+
"displayOptions": {
|
|
186
|
+
"show": {
|
|
187
|
+
"resource": [
|
|
188
|
+
"Floating Ips"
|
|
189
|
+
],
|
|
190
|
+
"operation": [
|
|
191
|
+
"List Floating Ips"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"displayName": "Name",
|
|
198
|
+
"name": "name",
|
|
199
|
+
"description": "Filter resources by their name. The response will only contain the resources\nmatching exactly the specified name.\n",
|
|
200
|
+
"default": "",
|
|
201
|
+
"type": "string",
|
|
202
|
+
"routing": {
|
|
203
|
+
"send": {
|
|
204
|
+
"type": "query",
|
|
205
|
+
"property": "name",
|
|
206
|
+
"value": "={{ $value }}",
|
|
207
|
+
"propertyInDotNotation": false
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"displayOptions": {
|
|
211
|
+
"show": {
|
|
212
|
+
"resource": [
|
|
213
|
+
"Floating Ips"
|
|
214
|
+
],
|
|
215
|
+
"operation": [
|
|
216
|
+
"List Floating Ips"
|
|
217
|
+
]
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"displayName": "Label Selector",
|
|
223
|
+
"name": "label_selector",
|
|
224
|
+
"description": "Filter resources by labels. The response will only contain resources matching the\nlabel selector. For more information, see \"Label Selector\".\n",
|
|
225
|
+
"default": "",
|
|
226
|
+
"type": "string",
|
|
227
|
+
"routing": {
|
|
228
|
+
"send": {
|
|
229
|
+
"type": "query",
|
|
230
|
+
"property": "label_selector",
|
|
231
|
+
"value": "={{ $value }}",
|
|
232
|
+
"propertyInDotNotation": false
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"displayOptions": {
|
|
236
|
+
"show": {
|
|
237
|
+
"resource": [
|
|
238
|
+
"Floating Ips"
|
|
239
|
+
],
|
|
240
|
+
"operation": [
|
|
241
|
+
"List Floating Ips"
|
|
242
|
+
]
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"displayName": "Sort",
|
|
248
|
+
"name": "sort",
|
|
249
|
+
"description": "Sort resources by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
250
|
+
"default": "[\n null\n]",
|
|
251
|
+
"type": "json",
|
|
252
|
+
"routing": {
|
|
253
|
+
"send": {
|
|
254
|
+
"type": "query",
|
|
255
|
+
"property": "sort",
|
|
256
|
+
"value": "={{ $value }}",
|
|
257
|
+
"propertyInDotNotation": false
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"displayOptions": {
|
|
261
|
+
"show": {
|
|
262
|
+
"resource": [
|
|
263
|
+
"Floating Ips"
|
|
264
|
+
],
|
|
265
|
+
"operation": [
|
|
266
|
+
"List Floating Ips"
|
|
267
|
+
]
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"displayName": "Page",
|
|
273
|
+
"name": "page",
|
|
274
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
275
|
+
"default": 1,
|
|
276
|
+
"type": "number",
|
|
277
|
+
"routing": {
|
|
278
|
+
"send": {
|
|
279
|
+
"type": "query",
|
|
280
|
+
"property": "page",
|
|
281
|
+
"value": "={{ $value }}",
|
|
282
|
+
"propertyInDotNotation": false
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"displayOptions": {
|
|
286
|
+
"show": {
|
|
287
|
+
"resource": [
|
|
288
|
+
"Floating Ips"
|
|
289
|
+
],
|
|
290
|
+
"operation": [
|
|
291
|
+
"List Floating Ips"
|
|
292
|
+
]
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"displayName": "Per Page",
|
|
298
|
+
"name": "per_page",
|
|
299
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
300
|
+
"default": 25,
|
|
301
|
+
"type": "number",
|
|
302
|
+
"routing": {
|
|
303
|
+
"send": {
|
|
304
|
+
"type": "query",
|
|
305
|
+
"property": "per_page",
|
|
306
|
+
"value": "={{ $value }}",
|
|
307
|
+
"propertyInDotNotation": false
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
"displayOptions": {
|
|
311
|
+
"show": {
|
|
312
|
+
"resource": [
|
|
313
|
+
"Floating Ips"
|
|
314
|
+
],
|
|
315
|
+
"operation": [
|
|
316
|
+
"List Floating Ips"
|
|
317
|
+
]
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"displayName": "POST /floating_ips",
|
|
323
|
+
"name": "operation",
|
|
324
|
+
"type": "notice",
|
|
325
|
+
"typeOptions": {
|
|
326
|
+
"theme": "info"
|
|
327
|
+
},
|
|
328
|
+
"default": "",
|
|
329
|
+
"displayOptions": {
|
|
330
|
+
"show": {
|
|
331
|
+
"resource": [
|
|
332
|
+
"Floating Ips"
|
|
333
|
+
],
|
|
334
|
+
"operation": [
|
|
335
|
+
"Create Floating Ip"
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"displayName": "Description",
|
|
342
|
+
"name": "description",
|
|
343
|
+
"type": "string",
|
|
344
|
+
"default": "This describes my resource",
|
|
345
|
+
"description": "Description of the Resource.",
|
|
346
|
+
"routing": {
|
|
347
|
+
"send": {
|
|
348
|
+
"property": "description",
|
|
349
|
+
"propertyInDotNotation": false,
|
|
350
|
+
"type": "body",
|
|
351
|
+
"value": "={{ $value }}"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"displayOptions": {
|
|
355
|
+
"show": {
|
|
356
|
+
"resource": [
|
|
357
|
+
"Floating Ips"
|
|
358
|
+
],
|
|
359
|
+
"operation": [
|
|
360
|
+
"Create Floating Ip"
|
|
361
|
+
]
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"displayName": "Home Location",
|
|
367
|
+
"name": "home_location",
|
|
368
|
+
"type": "string",
|
|
369
|
+
"default": "fsn1",
|
|
370
|
+
"description": "Home Location for the Floating IP.\n\nEither the ID or the name of the Location.\n\nOnly optional if no Server is provided. Routing is optimized for this Locations.\n",
|
|
371
|
+
"routing": {
|
|
372
|
+
"send": {
|
|
373
|
+
"property": "home_location",
|
|
374
|
+
"propertyInDotNotation": false,
|
|
375
|
+
"type": "body",
|
|
376
|
+
"value": "={{ $value }}"
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
"displayOptions": {
|
|
380
|
+
"show": {
|
|
381
|
+
"resource": [
|
|
382
|
+
"Floating Ips"
|
|
383
|
+
],
|
|
384
|
+
"operation": [
|
|
385
|
+
"Create Floating Ip"
|
|
386
|
+
]
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"displayName": "Labels",
|
|
392
|
+
"name": "labels",
|
|
393
|
+
"type": "json",
|
|
394
|
+
"default": "{\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n}",
|
|
395
|
+
"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",
|
|
396
|
+
"routing": {
|
|
397
|
+
"send": {
|
|
398
|
+
"property": "labels",
|
|
399
|
+
"propertyInDotNotation": false,
|
|
400
|
+
"type": "body",
|
|
401
|
+
"value": "={{ JSON.parse($value) }}"
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"displayOptions": {
|
|
405
|
+
"show": {
|
|
406
|
+
"resource": [
|
|
407
|
+
"Floating Ips"
|
|
408
|
+
],
|
|
409
|
+
"operation": [
|
|
410
|
+
"Create Floating Ip"
|
|
411
|
+
]
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"displayName": "Name",
|
|
417
|
+
"name": "name",
|
|
418
|
+
"type": "string",
|
|
419
|
+
"default": "my-resource",
|
|
420
|
+
"description": "Name of the Resource. Must be unique per Project.",
|
|
421
|
+
"routing": {
|
|
422
|
+
"send": {
|
|
423
|
+
"property": "name",
|
|
424
|
+
"propertyInDotNotation": false,
|
|
425
|
+
"type": "body",
|
|
426
|
+
"value": "={{ $value }}"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"displayOptions": {
|
|
430
|
+
"show": {
|
|
431
|
+
"resource": [
|
|
432
|
+
"Floating Ips"
|
|
433
|
+
],
|
|
434
|
+
"operation": [
|
|
435
|
+
"Create Floating Ip"
|
|
436
|
+
]
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"displayName": "Server",
|
|
442
|
+
"name": "server",
|
|
443
|
+
"type": "number",
|
|
444
|
+
"default": 42,
|
|
445
|
+
"description": "Server the Floating IP is assigned to.\n\n`null` if not assigned.\n",
|
|
446
|
+
"routing": {
|
|
447
|
+
"send": {
|
|
448
|
+
"property": "server",
|
|
449
|
+
"propertyInDotNotation": false,
|
|
450
|
+
"type": "body",
|
|
451
|
+
"value": "={{ $value }}"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
"displayOptions": {
|
|
455
|
+
"show": {
|
|
456
|
+
"resource": [
|
|
457
|
+
"Floating Ips"
|
|
458
|
+
],
|
|
459
|
+
"operation": [
|
|
460
|
+
"Create Floating Ip"
|
|
461
|
+
]
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"required": true,
|
|
467
|
+
"displayName": "Type",
|
|
468
|
+
"name": "type",
|
|
469
|
+
"type": "options",
|
|
470
|
+
"default": "ipv6",
|
|
471
|
+
"description": "The Floating IP type. | Type of Primary IP the price is for. | Type of Floating IP the price is for. | Primary IP type.",
|
|
472
|
+
"options": [
|
|
473
|
+
{
|
|
474
|
+
"name": "Ipv 4",
|
|
475
|
+
"value": "ipv4"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"name": "Ipv 6",
|
|
479
|
+
"value": "ipv6"
|
|
480
|
+
}
|
|
481
|
+
],
|
|
482
|
+
"routing": {
|
|
483
|
+
"send": {
|
|
484
|
+
"property": "type",
|
|
485
|
+
"propertyInDotNotation": false,
|
|
486
|
+
"type": "body",
|
|
487
|
+
"value": "={{ $value }}"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
"displayOptions": {
|
|
491
|
+
"show": {
|
|
492
|
+
"resource": [
|
|
493
|
+
"Floating Ips"
|
|
494
|
+
],
|
|
495
|
+
"operation": [
|
|
496
|
+
"Create Floating Ip"
|
|
497
|
+
]
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"displayName": "DELETE /floating_ips/{id}",
|
|
503
|
+
"name": "operation",
|
|
504
|
+
"type": "notice",
|
|
505
|
+
"typeOptions": {
|
|
506
|
+
"theme": "info"
|
|
507
|
+
},
|
|
508
|
+
"default": "",
|
|
509
|
+
"displayOptions": {
|
|
510
|
+
"show": {
|
|
511
|
+
"resource": [
|
|
512
|
+
"Floating Ips"
|
|
513
|
+
],
|
|
514
|
+
"operation": [
|
|
515
|
+
"Delete Floating Ip"
|
|
516
|
+
]
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"displayName": "Id",
|
|
522
|
+
"name": "id",
|
|
523
|
+
"required": true,
|
|
524
|
+
"description": "ID of the Floating IP.",
|
|
525
|
+
"default": 42,
|
|
526
|
+
"type": "number",
|
|
527
|
+
"displayOptions": {
|
|
528
|
+
"show": {
|
|
529
|
+
"resource": [
|
|
530
|
+
"Floating Ips"
|
|
531
|
+
],
|
|
532
|
+
"operation": [
|
|
533
|
+
"Delete Floating Ip"
|
|
534
|
+
]
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"displayName": "GET /floating_ips/{id}",
|
|
540
|
+
"name": "operation",
|
|
541
|
+
"type": "notice",
|
|
542
|
+
"typeOptions": {
|
|
543
|
+
"theme": "info"
|
|
544
|
+
},
|
|
545
|
+
"default": "",
|
|
546
|
+
"displayOptions": {
|
|
547
|
+
"show": {
|
|
548
|
+
"resource": [
|
|
549
|
+
"Floating Ips"
|
|
550
|
+
],
|
|
551
|
+
"operation": [
|
|
552
|
+
"Get Floating Ip"
|
|
553
|
+
]
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"displayName": "Id",
|
|
559
|
+
"name": "id",
|
|
560
|
+
"required": true,
|
|
561
|
+
"description": "ID of the Floating IP.",
|
|
562
|
+
"default": 42,
|
|
563
|
+
"type": "number",
|
|
564
|
+
"displayOptions": {
|
|
565
|
+
"show": {
|
|
566
|
+
"resource": [
|
|
567
|
+
"Floating Ips"
|
|
568
|
+
],
|
|
569
|
+
"operation": [
|
|
570
|
+
"Get Floating Ip"
|
|
571
|
+
]
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"displayName": "PUT /floating_ips/{id}",
|
|
577
|
+
"name": "operation",
|
|
578
|
+
"type": "notice",
|
|
579
|
+
"typeOptions": {
|
|
580
|
+
"theme": "info"
|
|
581
|
+
},
|
|
582
|
+
"default": "",
|
|
583
|
+
"displayOptions": {
|
|
584
|
+
"show": {
|
|
585
|
+
"resource": [
|
|
586
|
+
"Floating Ips"
|
|
587
|
+
],
|
|
588
|
+
"operation": [
|
|
589
|
+
"Replace Floating Ip"
|
|
590
|
+
]
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"displayName": "Id",
|
|
596
|
+
"name": "id",
|
|
597
|
+
"required": true,
|
|
598
|
+
"description": "ID of the Floating IP.",
|
|
599
|
+
"default": 42,
|
|
600
|
+
"type": "number",
|
|
601
|
+
"displayOptions": {
|
|
602
|
+
"show": {
|
|
603
|
+
"resource": [
|
|
604
|
+
"Floating Ips"
|
|
605
|
+
],
|
|
606
|
+
"operation": [
|
|
607
|
+
"Replace Floating Ip"
|
|
608
|
+
]
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"displayName": "Description",
|
|
614
|
+
"name": "description",
|
|
615
|
+
"type": "string",
|
|
616
|
+
"default": "This describes my resource",
|
|
617
|
+
"description": "Description of the Resource.",
|
|
618
|
+
"routing": {
|
|
619
|
+
"send": {
|
|
620
|
+
"property": "description",
|
|
621
|
+
"propertyInDotNotation": false,
|
|
622
|
+
"type": "body",
|
|
623
|
+
"value": "={{ $value }}"
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
"displayOptions": {
|
|
627
|
+
"show": {
|
|
628
|
+
"resource": [
|
|
629
|
+
"Floating Ips"
|
|
630
|
+
],
|
|
631
|
+
"operation": [
|
|
632
|
+
"Replace Floating Ip"
|
|
633
|
+
]
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"displayName": "Labels",
|
|
639
|
+
"name": "labels",
|
|
640
|
+
"type": "json",
|
|
641
|
+
"default": "{\n \"environment\": \"prod\",\n \"example.com/my\": \"label\",\n \"just-a-key\": \"\"\n}",
|
|
642
|
+
"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",
|
|
643
|
+
"routing": {
|
|
644
|
+
"send": {
|
|
645
|
+
"property": "labels",
|
|
646
|
+
"propertyInDotNotation": false,
|
|
647
|
+
"type": "body",
|
|
648
|
+
"value": "={{ JSON.parse($value) }}"
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
"displayOptions": {
|
|
652
|
+
"show": {
|
|
653
|
+
"resource": [
|
|
654
|
+
"Floating Ips"
|
|
655
|
+
],
|
|
656
|
+
"operation": [
|
|
657
|
+
"Replace Floating Ip"
|
|
658
|
+
]
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"displayName": "Name",
|
|
664
|
+
"name": "name",
|
|
665
|
+
"type": "string",
|
|
666
|
+
"default": "my-resource",
|
|
667
|
+
"description": "Name of the Resource. Must be unique per Project.",
|
|
668
|
+
"routing": {
|
|
669
|
+
"send": {
|
|
670
|
+
"property": "name",
|
|
671
|
+
"propertyInDotNotation": false,
|
|
672
|
+
"type": "body",
|
|
673
|
+
"value": "={{ $value }}"
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
"displayOptions": {
|
|
677
|
+
"show": {
|
|
678
|
+
"resource": [
|
|
679
|
+
"Floating Ips"
|
|
680
|
+
],
|
|
681
|
+
"operation": [
|
|
682
|
+
"Replace Floating Ip"
|
|
683
|
+
]
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"displayName": "GET /floating_ips/{id}/actions",
|
|
689
|
+
"name": "operation",
|
|
690
|
+
"type": "notice",
|
|
691
|
+
"typeOptions": {
|
|
692
|
+
"theme": "info"
|
|
693
|
+
},
|
|
694
|
+
"default": "",
|
|
695
|
+
"displayOptions": {
|
|
696
|
+
"show": {
|
|
697
|
+
"resource": [
|
|
698
|
+
"Floating Ips"
|
|
699
|
+
],
|
|
700
|
+
"operation": [
|
|
701
|
+
"List Actions For Floating Ip"
|
|
702
|
+
]
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"displayName": "Id",
|
|
708
|
+
"name": "id",
|
|
709
|
+
"required": true,
|
|
710
|
+
"description": "ID of the Floating IP.",
|
|
711
|
+
"default": 42,
|
|
712
|
+
"type": "number",
|
|
713
|
+
"displayOptions": {
|
|
714
|
+
"show": {
|
|
715
|
+
"resource": [
|
|
716
|
+
"Floating Ips"
|
|
717
|
+
],
|
|
718
|
+
"operation": [
|
|
719
|
+
"List Actions For Floating Ip"
|
|
720
|
+
]
|
|
721
|
+
}
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"displayName": "Sort",
|
|
726
|
+
"name": "sort",
|
|
727
|
+
"description": "Sort actions by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
728
|
+
"default": "[\n null\n]",
|
|
729
|
+
"type": "json",
|
|
730
|
+
"routing": {
|
|
731
|
+
"send": {
|
|
732
|
+
"type": "query",
|
|
733
|
+
"property": "sort",
|
|
734
|
+
"value": "={{ $value }}",
|
|
735
|
+
"propertyInDotNotation": false
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
"displayOptions": {
|
|
739
|
+
"show": {
|
|
740
|
+
"resource": [
|
|
741
|
+
"Floating Ips"
|
|
742
|
+
],
|
|
743
|
+
"operation": [
|
|
744
|
+
"List Actions For Floating Ip"
|
|
745
|
+
]
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"displayName": "Status",
|
|
751
|
+
"name": "status",
|
|
752
|
+
"description": "Filter the actions by status. Can be used multiple times. The response will only\ncontain actions matching the specified statuses.\n",
|
|
753
|
+
"default": "[\n null\n]",
|
|
754
|
+
"type": "json",
|
|
755
|
+
"routing": {
|
|
756
|
+
"send": {
|
|
757
|
+
"type": "query",
|
|
758
|
+
"property": "status",
|
|
759
|
+
"value": "={{ $value }}",
|
|
760
|
+
"propertyInDotNotation": false
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"displayOptions": {
|
|
764
|
+
"show": {
|
|
765
|
+
"resource": [
|
|
766
|
+
"Floating Ips"
|
|
767
|
+
],
|
|
768
|
+
"operation": [
|
|
769
|
+
"List Actions For Floating Ip"
|
|
770
|
+
]
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"displayName": "Page",
|
|
776
|
+
"name": "page",
|
|
777
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
778
|
+
"default": 1,
|
|
779
|
+
"type": "number",
|
|
780
|
+
"routing": {
|
|
781
|
+
"send": {
|
|
782
|
+
"type": "query",
|
|
783
|
+
"property": "page",
|
|
784
|
+
"value": "={{ $value }}",
|
|
785
|
+
"propertyInDotNotation": false
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
"displayOptions": {
|
|
789
|
+
"show": {
|
|
790
|
+
"resource": [
|
|
791
|
+
"Floating Ips"
|
|
792
|
+
],
|
|
793
|
+
"operation": [
|
|
794
|
+
"List Actions For Floating Ip"
|
|
795
|
+
]
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"displayName": "Per Page",
|
|
801
|
+
"name": "per_page",
|
|
802
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
803
|
+
"default": 25,
|
|
804
|
+
"type": "number",
|
|
805
|
+
"routing": {
|
|
806
|
+
"send": {
|
|
807
|
+
"type": "query",
|
|
808
|
+
"property": "per_page",
|
|
809
|
+
"value": "={{ $value }}",
|
|
810
|
+
"propertyInDotNotation": false
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
"displayOptions": {
|
|
814
|
+
"show": {
|
|
815
|
+
"resource": [
|
|
816
|
+
"Floating Ips"
|
|
817
|
+
],
|
|
818
|
+
"operation": [
|
|
819
|
+
"List Actions For Floating Ip"
|
|
820
|
+
]
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"displayName": "GET /floating_ips/{id}/actions/{action_id}",
|
|
826
|
+
"name": "operation",
|
|
827
|
+
"type": "notice",
|
|
828
|
+
"typeOptions": {
|
|
829
|
+
"theme": "info"
|
|
830
|
+
},
|
|
831
|
+
"default": "",
|
|
832
|
+
"displayOptions": {
|
|
833
|
+
"show": {
|
|
834
|
+
"resource": [
|
|
835
|
+
"Floating Ips"
|
|
836
|
+
],
|
|
837
|
+
"operation": [
|
|
838
|
+
"Get Action For Floating Ip"
|
|
839
|
+
]
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"displayName": "Id",
|
|
845
|
+
"name": "id",
|
|
846
|
+
"required": true,
|
|
847
|
+
"description": "ID of the Floating IP.",
|
|
848
|
+
"default": 42,
|
|
849
|
+
"type": "number",
|
|
850
|
+
"displayOptions": {
|
|
851
|
+
"show": {
|
|
852
|
+
"resource": [
|
|
853
|
+
"Floating Ips"
|
|
854
|
+
],
|
|
855
|
+
"operation": [
|
|
856
|
+
"Get Action For Floating Ip"
|
|
857
|
+
]
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"displayName": "Action Id",
|
|
863
|
+
"name": "action_id",
|
|
864
|
+
"required": true,
|
|
865
|
+
"description": "ID of the Action.",
|
|
866
|
+
"default": 42,
|
|
867
|
+
"type": "number",
|
|
868
|
+
"displayOptions": {
|
|
869
|
+
"show": {
|
|
870
|
+
"resource": [
|
|
871
|
+
"Floating Ips"
|
|
872
|
+
],
|
|
873
|
+
"operation": [
|
|
874
|
+
"Get Action For Floating Ip"
|
|
875
|
+
]
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"displayName": "POST /floating_ips/{id}/actions/assign",
|
|
881
|
+
"name": "operation",
|
|
882
|
+
"type": "notice",
|
|
883
|
+
"typeOptions": {
|
|
884
|
+
"theme": "info"
|
|
885
|
+
},
|
|
886
|
+
"default": "",
|
|
887
|
+
"displayOptions": {
|
|
888
|
+
"show": {
|
|
889
|
+
"resource": [
|
|
890
|
+
"Floating Ips"
|
|
891
|
+
],
|
|
892
|
+
"operation": [
|
|
893
|
+
"Assign Floating Ip To Server"
|
|
894
|
+
]
|
|
895
|
+
}
|
|
896
|
+
}
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"displayName": "Id",
|
|
900
|
+
"name": "id",
|
|
901
|
+
"required": true,
|
|
902
|
+
"description": "ID of the Floating IP.",
|
|
903
|
+
"default": 42,
|
|
904
|
+
"type": "number",
|
|
905
|
+
"displayOptions": {
|
|
906
|
+
"show": {
|
|
907
|
+
"resource": [
|
|
908
|
+
"Floating Ips"
|
|
909
|
+
],
|
|
910
|
+
"operation": [
|
|
911
|
+
"Assign Floating Ip To Server"
|
|
912
|
+
]
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
"required": true,
|
|
918
|
+
"displayName": "Server",
|
|
919
|
+
"name": "server",
|
|
920
|
+
"type": "number",
|
|
921
|
+
"default": 42,
|
|
922
|
+
"description": "Server the Floating IP is assigned to.\n\n`null` if not assigned.\n",
|
|
923
|
+
"routing": {
|
|
924
|
+
"send": {
|
|
925
|
+
"property": "server",
|
|
926
|
+
"propertyInDotNotation": false,
|
|
927
|
+
"type": "body",
|
|
928
|
+
"value": "={{ $value }}"
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
"displayOptions": {
|
|
932
|
+
"show": {
|
|
933
|
+
"resource": [
|
|
934
|
+
"Floating Ips"
|
|
935
|
+
],
|
|
936
|
+
"operation": [
|
|
937
|
+
"Assign Floating Ip To Server"
|
|
938
|
+
]
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"displayName": "POST /floating_ips/{id}/actions/change_dns_ptr",
|
|
944
|
+
"name": "operation",
|
|
945
|
+
"type": "notice",
|
|
946
|
+
"typeOptions": {
|
|
947
|
+
"theme": "info"
|
|
948
|
+
},
|
|
949
|
+
"default": "",
|
|
950
|
+
"displayOptions": {
|
|
951
|
+
"show": {
|
|
952
|
+
"resource": [
|
|
953
|
+
"Floating Ips"
|
|
954
|
+
],
|
|
955
|
+
"operation": [
|
|
956
|
+
"Change Reverse Dns Records For Floating Ip"
|
|
957
|
+
]
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"displayName": "Id",
|
|
963
|
+
"name": "id",
|
|
964
|
+
"required": true,
|
|
965
|
+
"description": "ID of the Floating IP.",
|
|
966
|
+
"default": 42,
|
|
967
|
+
"type": "number",
|
|
968
|
+
"displayOptions": {
|
|
969
|
+
"show": {
|
|
970
|
+
"resource": [
|
|
971
|
+
"Floating Ips"
|
|
972
|
+
],
|
|
973
|
+
"operation": [
|
|
974
|
+
"Change Reverse Dns Records For Floating Ip"
|
|
975
|
+
]
|
|
976
|
+
}
|
|
977
|
+
}
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"required": true,
|
|
981
|
+
"displayName": "Dns Ptr",
|
|
982
|
+
"name": "dns_ptr",
|
|
983
|
+
"type": "string",
|
|
984
|
+
"default": "server.example.com",
|
|
985
|
+
"description": "Domain Name to point to.\n\nPTR record content used for reverse DNS.\n | DNS pointer for the specific IP address.",
|
|
986
|
+
"routing": {
|
|
987
|
+
"send": {
|
|
988
|
+
"property": "dns_ptr",
|
|
989
|
+
"propertyInDotNotation": false,
|
|
990
|
+
"type": "body",
|
|
991
|
+
"value": "={{ $value }}"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"displayOptions": {
|
|
995
|
+
"show": {
|
|
996
|
+
"resource": [
|
|
997
|
+
"Floating Ips"
|
|
998
|
+
],
|
|
999
|
+
"operation": [
|
|
1000
|
+
"Change Reverse Dns Records For Floating Ip"
|
|
1001
|
+
]
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"required": true,
|
|
1007
|
+
"displayName": "Ip",
|
|
1008
|
+
"name": "ip",
|
|
1009
|
+
"type": "string",
|
|
1010
|
+
"default": "2001:db8::1",
|
|
1011
|
+
"description": "Single IPv4 or IPv6 address to create pointer for.\n | Single IPv6 address of this Server for which the reverse DNS entry has been set up.",
|
|
1012
|
+
"routing": {
|
|
1013
|
+
"send": {
|
|
1014
|
+
"property": "ip",
|
|
1015
|
+
"propertyInDotNotation": false,
|
|
1016
|
+
"type": "body",
|
|
1017
|
+
"value": "={{ $value }}"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"displayOptions": {
|
|
1021
|
+
"show": {
|
|
1022
|
+
"resource": [
|
|
1023
|
+
"Floating Ips"
|
|
1024
|
+
],
|
|
1025
|
+
"operation": [
|
|
1026
|
+
"Change Reverse Dns Records For Floating Ip"
|
|
1027
|
+
]
|
|
1028
|
+
}
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"displayName": "POST /floating_ips/{id}/actions/change_protection",
|
|
1033
|
+
"name": "operation",
|
|
1034
|
+
"type": "notice",
|
|
1035
|
+
"typeOptions": {
|
|
1036
|
+
"theme": "info"
|
|
1037
|
+
},
|
|
1038
|
+
"default": "",
|
|
1039
|
+
"displayOptions": {
|
|
1040
|
+
"show": {
|
|
1041
|
+
"resource": [
|
|
1042
|
+
"Floating Ips"
|
|
1043
|
+
],
|
|
1044
|
+
"operation": [
|
|
1045
|
+
"Change Floating Ip Protection"
|
|
1046
|
+
]
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"displayName": "Id",
|
|
1052
|
+
"name": "id",
|
|
1053
|
+
"required": true,
|
|
1054
|
+
"description": "ID of the Floating IP.",
|
|
1055
|
+
"default": 42,
|
|
1056
|
+
"type": "number",
|
|
1057
|
+
"displayOptions": {
|
|
1058
|
+
"show": {
|
|
1059
|
+
"resource": [
|
|
1060
|
+
"Floating Ips"
|
|
1061
|
+
],
|
|
1062
|
+
"operation": [
|
|
1063
|
+
"Change Floating Ip Protection"
|
|
1064
|
+
]
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"required": true,
|
|
1070
|
+
"displayName": "Delete",
|
|
1071
|
+
"name": "delete",
|
|
1072
|
+
"type": "boolean",
|
|
1073
|
+
"default": false,
|
|
1074
|
+
"description": "Prevent the Resource from being deleted.",
|
|
1075
|
+
"routing": {
|
|
1076
|
+
"send": {
|
|
1077
|
+
"property": "delete",
|
|
1078
|
+
"propertyInDotNotation": false,
|
|
1079
|
+
"type": "body",
|
|
1080
|
+
"value": "={{ $value }}"
|
|
1081
|
+
}
|
|
1082
|
+
},
|
|
1083
|
+
"displayOptions": {
|
|
1084
|
+
"show": {
|
|
1085
|
+
"resource": [
|
|
1086
|
+
"Floating Ips"
|
|
1087
|
+
],
|
|
1088
|
+
"operation": [
|
|
1089
|
+
"Change Floating Ip Protection"
|
|
1090
|
+
]
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"displayName": "POST /floating_ips/{id}/actions/unassign",
|
|
1096
|
+
"name": "operation",
|
|
1097
|
+
"type": "notice",
|
|
1098
|
+
"typeOptions": {
|
|
1099
|
+
"theme": "info"
|
|
1100
|
+
},
|
|
1101
|
+
"default": "",
|
|
1102
|
+
"displayOptions": {
|
|
1103
|
+
"show": {
|
|
1104
|
+
"resource": [
|
|
1105
|
+
"Floating Ips"
|
|
1106
|
+
],
|
|
1107
|
+
"operation": [
|
|
1108
|
+
"Unassign Floating Ip"
|
|
1109
|
+
]
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"displayName": "Id",
|
|
1115
|
+
"name": "id",
|
|
1116
|
+
"required": true,
|
|
1117
|
+
"description": "ID of the Floating IP.",
|
|
1118
|
+
"default": 42,
|
|
1119
|
+
"type": "number",
|
|
1120
|
+
"displayOptions": {
|
|
1121
|
+
"show": {
|
|
1122
|
+
"resource": [
|
|
1123
|
+
"Floating Ips"
|
|
1124
|
+
],
|
|
1125
|
+
"operation": [
|
|
1126
|
+
"Unassign Floating Ip"
|
|
1127
|
+
]
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"displayName": "GET /floating_ips/actions",
|
|
1133
|
+
"name": "operation",
|
|
1134
|
+
"type": "notice",
|
|
1135
|
+
"typeOptions": {
|
|
1136
|
+
"theme": "info"
|
|
1137
|
+
},
|
|
1138
|
+
"default": "",
|
|
1139
|
+
"displayOptions": {
|
|
1140
|
+
"show": {
|
|
1141
|
+
"resource": [
|
|
1142
|
+
"Floating Ips"
|
|
1143
|
+
],
|
|
1144
|
+
"operation": [
|
|
1145
|
+
"List Floating Ip Actions"
|
|
1146
|
+
]
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"displayName": "Id",
|
|
1152
|
+
"name": "id",
|
|
1153
|
+
"description": "Filter the actions by ID. Can be used multiple times. The response will only contain\nactions matching the specified IDs.\n",
|
|
1154
|
+
"default": "[\n 42\n]",
|
|
1155
|
+
"type": "json",
|
|
1156
|
+
"routing": {
|
|
1157
|
+
"send": {
|
|
1158
|
+
"type": "query",
|
|
1159
|
+
"property": "id",
|
|
1160
|
+
"value": "={{ $value }}",
|
|
1161
|
+
"propertyInDotNotation": false
|
|
1162
|
+
}
|
|
1163
|
+
},
|
|
1164
|
+
"displayOptions": {
|
|
1165
|
+
"show": {
|
|
1166
|
+
"resource": [
|
|
1167
|
+
"Floating Ips"
|
|
1168
|
+
],
|
|
1169
|
+
"operation": [
|
|
1170
|
+
"List Floating Ip Actions"
|
|
1171
|
+
]
|
|
1172
|
+
}
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"displayName": "Sort",
|
|
1177
|
+
"name": "sort",
|
|
1178
|
+
"description": "Sort actions by field and direction. Can be used multiple times. For more\ninformation, see \"Sorting\".\n",
|
|
1179
|
+
"default": "[\n null\n]",
|
|
1180
|
+
"type": "json",
|
|
1181
|
+
"routing": {
|
|
1182
|
+
"send": {
|
|
1183
|
+
"type": "query",
|
|
1184
|
+
"property": "sort",
|
|
1185
|
+
"value": "={{ $value }}",
|
|
1186
|
+
"propertyInDotNotation": false
|
|
1187
|
+
}
|
|
1188
|
+
},
|
|
1189
|
+
"displayOptions": {
|
|
1190
|
+
"show": {
|
|
1191
|
+
"resource": [
|
|
1192
|
+
"Floating Ips"
|
|
1193
|
+
],
|
|
1194
|
+
"operation": [
|
|
1195
|
+
"List Floating Ip Actions"
|
|
1196
|
+
]
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"displayName": "Status",
|
|
1202
|
+
"name": "status",
|
|
1203
|
+
"description": "Filter the actions by status. Can be used multiple times. The response will only\ncontain actions matching the specified statuses.\n",
|
|
1204
|
+
"default": "[\n null\n]",
|
|
1205
|
+
"type": "json",
|
|
1206
|
+
"routing": {
|
|
1207
|
+
"send": {
|
|
1208
|
+
"type": "query",
|
|
1209
|
+
"property": "status",
|
|
1210
|
+
"value": "={{ $value }}",
|
|
1211
|
+
"propertyInDotNotation": false
|
|
1212
|
+
}
|
|
1213
|
+
},
|
|
1214
|
+
"displayOptions": {
|
|
1215
|
+
"show": {
|
|
1216
|
+
"resource": [
|
|
1217
|
+
"Floating Ips"
|
|
1218
|
+
],
|
|
1219
|
+
"operation": [
|
|
1220
|
+
"List Floating Ip Actions"
|
|
1221
|
+
]
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"displayName": "Page",
|
|
1227
|
+
"name": "page",
|
|
1228
|
+
"description": "Page number to return. For more information, see \"Pagination\".",
|
|
1229
|
+
"default": 1,
|
|
1230
|
+
"type": "number",
|
|
1231
|
+
"routing": {
|
|
1232
|
+
"send": {
|
|
1233
|
+
"type": "query",
|
|
1234
|
+
"property": "page",
|
|
1235
|
+
"value": "={{ $value }}",
|
|
1236
|
+
"propertyInDotNotation": false
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"displayOptions": {
|
|
1240
|
+
"show": {
|
|
1241
|
+
"resource": [
|
|
1242
|
+
"Floating Ips"
|
|
1243
|
+
],
|
|
1244
|
+
"operation": [
|
|
1245
|
+
"List Floating Ip Actions"
|
|
1246
|
+
]
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"displayName": "Per Page",
|
|
1252
|
+
"name": "per_page",
|
|
1253
|
+
"description": "Maximum number of entries returned per page. For more information, see \"Pagination\".",
|
|
1254
|
+
"default": 25,
|
|
1255
|
+
"type": "number",
|
|
1256
|
+
"routing": {
|
|
1257
|
+
"send": {
|
|
1258
|
+
"type": "query",
|
|
1259
|
+
"property": "per_page",
|
|
1260
|
+
"value": "={{ $value }}",
|
|
1261
|
+
"propertyInDotNotation": false
|
|
1262
|
+
}
|
|
1263
|
+
},
|
|
1264
|
+
"displayOptions": {
|
|
1265
|
+
"show": {
|
|
1266
|
+
"resource": [
|
|
1267
|
+
"Floating Ips"
|
|
1268
|
+
],
|
|
1269
|
+
"operation": [
|
|
1270
|
+
"List Floating Ip Actions"
|
|
1271
|
+
]
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"displayName": "GET /floating_ips/actions/{id}",
|
|
1277
|
+
"name": "operation",
|
|
1278
|
+
"type": "notice",
|
|
1279
|
+
"typeOptions": {
|
|
1280
|
+
"theme": "info"
|
|
1281
|
+
},
|
|
1282
|
+
"default": "",
|
|
1283
|
+
"displayOptions": {
|
|
1284
|
+
"show": {
|
|
1285
|
+
"resource": [
|
|
1286
|
+
"Floating Ips"
|
|
1287
|
+
],
|
|
1288
|
+
"operation": [
|
|
1289
|
+
"Get Floating Ip Action"
|
|
1290
|
+
]
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"displayName": "Id",
|
|
1296
|
+
"name": "id",
|
|
1297
|
+
"required": true,
|
|
1298
|
+
"description": "ID of the Action.",
|
|
1299
|
+
"default": 42,
|
|
1300
|
+
"type": "number",
|
|
1301
|
+
"displayOptions": {
|
|
1302
|
+
"show": {
|
|
1303
|
+
"resource": [
|
|
1304
|
+
"Floating Ips"
|
|
1305
|
+
],
|
|
1306
|
+
"operation": [
|
|
1307
|
+
"Get Floating Ip Action"
|
|
1308
|
+
]
|
|
1309
|
+
}
|
|
1310
|
+
}
|
|
1311
|
+
},
|
|
1312
|
+
];
|
|
1313
|
+
//# sourceMappingURL=index.js.map
|