@itentialopensource/adapter-amazon_route53 0.1.1
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/.eslintignore +5 -0
- package/.eslintrc.js +18 -0
- package/.jshintrc +3 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +48 -0
- package/CONTRIBUTING.md +158 -0
- package/LICENSE +201 -0
- package/README.md +687 -0
- package/adapter.js +7594 -0
- package/adapterBase.js +1028 -0
- package/entities/.generic/action.json +109 -0
- package/entities/.generic/schema.json +23 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/20130401/action.json +1318 -0
- package/entities/20130401/schema.json +247 -0
- package/error.json +184 -0
- package/package.json +86 -0
- package/pronghorn.json +3445 -0
- package/propertiesSchema.json +840 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/creationReport.json +492 -0
- package/report/route53-openapi.json-OpenApi3Json.json +15721 -0
- package/report/updateReport1646598657887.json +95 -0
- package/sampleProperties.json +106 -0
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +2453 -0
- package/test/unit/adapterBaseTestUnit.js +944 -0
- package/test/unit/adapterTestUnit.js +3446 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +224 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +27 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +169 -0
- package/utils/tbUtils.js +451 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +190 -0
- package/workflows/README.md +3 -0
package/pronghorn.json
ADDED
|
@@ -0,0 +1,3445 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "@itentialopensource/adapter-amazon_route53",
|
|
3
|
+
"type": "Adapter",
|
|
4
|
+
"export": "AmazonRoute53",
|
|
5
|
+
"title": "Amazon_route53",
|
|
6
|
+
"src": "adapter.js",
|
|
7
|
+
"roles": [
|
|
8
|
+
"admin"
|
|
9
|
+
],
|
|
10
|
+
"methods": [
|
|
11
|
+
{
|
|
12
|
+
"name": "updateAdapterConfiguration",
|
|
13
|
+
"summary": "Updates the adapter configuration",
|
|
14
|
+
"description": "Updates the adapter configuration file with the provided changes",
|
|
15
|
+
"input": [
|
|
16
|
+
{
|
|
17
|
+
"name": "configFile",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"info": "The name of the file to change",
|
|
20
|
+
"required": true,
|
|
21
|
+
"schema": {
|
|
22
|
+
"title": "configFile",
|
|
23
|
+
"type": "string"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "changes",
|
|
28
|
+
"type": "object",
|
|
29
|
+
"info": "JSON object containing the configuration changes",
|
|
30
|
+
"required": true,
|
|
31
|
+
"schema": {
|
|
32
|
+
"title": "changes",
|
|
33
|
+
"type": "object"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "entity",
|
|
38
|
+
"type": "string",
|
|
39
|
+
"info": "The entity in which the changes are being made",
|
|
40
|
+
"required": false,
|
|
41
|
+
"schema": {
|
|
42
|
+
"title": "entity",
|
|
43
|
+
"type": "string"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "type",
|
|
48
|
+
"type": "string",
|
|
49
|
+
"info": "The type of file to change - action, schema, or mock",
|
|
50
|
+
"required": false,
|
|
51
|
+
"schema": {
|
|
52
|
+
"title": "type",
|
|
53
|
+
"type": "string"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "action",
|
|
58
|
+
"type": "string",
|
|
59
|
+
"info": "The action to be changed",
|
|
60
|
+
"required": false,
|
|
61
|
+
"schema": {
|
|
62
|
+
"title": "action",
|
|
63
|
+
"type": "string"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"output": {
|
|
68
|
+
"name": "result",
|
|
69
|
+
"type": "object",
|
|
70
|
+
"description": "A JSON Object containing status, code and the result",
|
|
71
|
+
"schema": {
|
|
72
|
+
"title": "result",
|
|
73
|
+
"type": "object"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"roles": [
|
|
77
|
+
"admin"
|
|
78
|
+
],
|
|
79
|
+
"route": {
|
|
80
|
+
"verb": "POST",
|
|
81
|
+
"path": "/updateAdapterConfiguration"
|
|
82
|
+
},
|
|
83
|
+
"task": true
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "findPath",
|
|
87
|
+
"summary": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
88
|
+
"description": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
89
|
+
"input": [
|
|
90
|
+
{
|
|
91
|
+
"name": "apiPath",
|
|
92
|
+
"type": "string",
|
|
93
|
+
"info": "The API Path you want to check - make sure to not include base path and version",
|
|
94
|
+
"description": "The API Path you want to check - make sure to not include base path and version",
|
|
95
|
+
"schema": {
|
|
96
|
+
"title": "apiPath",
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
"required": true
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"output": {
|
|
103
|
+
"name": "result",
|
|
104
|
+
"type": "object",
|
|
105
|
+
"description": "A JSON Object containing the result",
|
|
106
|
+
"schema": {
|
|
107
|
+
"title": "result",
|
|
108
|
+
"type": "object"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"roles": [
|
|
112
|
+
"admin"
|
|
113
|
+
],
|
|
114
|
+
"route": {
|
|
115
|
+
"verb": "POST",
|
|
116
|
+
"path": "/findPath"
|
|
117
|
+
},
|
|
118
|
+
"task": true
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "troubleshoot",
|
|
122
|
+
"summary": "Runs troubleshoot script for adapter",
|
|
123
|
+
"description": "Runs troubleshoot script for adapter",
|
|
124
|
+
"input": [
|
|
125
|
+
{
|
|
126
|
+
"name": "props",
|
|
127
|
+
"type": "object",
|
|
128
|
+
"info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
|
|
129
|
+
"required": true,
|
|
130
|
+
"schema": {
|
|
131
|
+
"title": "props",
|
|
132
|
+
"type": "object"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "persistFlag",
|
|
137
|
+
"type": "boolean",
|
|
138
|
+
"info": "Whether the input properties should be saved",
|
|
139
|
+
"required": true
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"output": {
|
|
143
|
+
"name": "result",
|
|
144
|
+
"type": "object",
|
|
145
|
+
"description": "A JSON Object containing the test results",
|
|
146
|
+
"schema": {
|
|
147
|
+
"title": "result",
|
|
148
|
+
"type": "object"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"roles": [
|
|
152
|
+
"admin"
|
|
153
|
+
],
|
|
154
|
+
"route": {
|
|
155
|
+
"verb": "POST",
|
|
156
|
+
"path": "/troubleshoot"
|
|
157
|
+
},
|
|
158
|
+
"task": true
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "runHealthcheck",
|
|
162
|
+
"summary": "Runs healthcheck script for adapter",
|
|
163
|
+
"description": "Runs healthcheck script for adapter",
|
|
164
|
+
"input": [],
|
|
165
|
+
"output": {
|
|
166
|
+
"name": "result",
|
|
167
|
+
"type": "boolean",
|
|
168
|
+
"description": "Whether healthcheck passed or failed"
|
|
169
|
+
},
|
|
170
|
+
"roles": [
|
|
171
|
+
"admin"
|
|
172
|
+
],
|
|
173
|
+
"route": {
|
|
174
|
+
"verb": "POST",
|
|
175
|
+
"path": "/runHealthcheck"
|
|
176
|
+
},
|
|
177
|
+
"task": true
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"name": "runConnectivity",
|
|
181
|
+
"summary": "Runs connectivity check script for adapter",
|
|
182
|
+
"description": "Runs connectivity check script for adapter",
|
|
183
|
+
"input": [],
|
|
184
|
+
"output": {
|
|
185
|
+
"name": "result",
|
|
186
|
+
"type": "object",
|
|
187
|
+
"description": "A JSON Object containing the test results",
|
|
188
|
+
"schema": {
|
|
189
|
+
"title": "result",
|
|
190
|
+
"type": "object"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"roles": [
|
|
194
|
+
"admin"
|
|
195
|
+
],
|
|
196
|
+
"route": {
|
|
197
|
+
"verb": "POST",
|
|
198
|
+
"path": "/runConnectivity"
|
|
199
|
+
},
|
|
200
|
+
"task": true
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "runBasicGet",
|
|
204
|
+
"summary": "Runs basicGet script for adapter",
|
|
205
|
+
"description": "Runs basicGet script for adapter",
|
|
206
|
+
"input": [],
|
|
207
|
+
"output": {
|
|
208
|
+
"name": "result",
|
|
209
|
+
"type": "object",
|
|
210
|
+
"description": "A JSON Object containing the test results",
|
|
211
|
+
"schema": {
|
|
212
|
+
"title": "result",
|
|
213
|
+
"type": "object"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"roles": [
|
|
217
|
+
"admin"
|
|
218
|
+
],
|
|
219
|
+
"route": {
|
|
220
|
+
"verb": "POST",
|
|
221
|
+
"path": "/runBasicGet"
|
|
222
|
+
},
|
|
223
|
+
"task": true
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "suspend",
|
|
227
|
+
"summary": "Suspends the adapter",
|
|
228
|
+
"description": "Suspends the adapter",
|
|
229
|
+
"input": [
|
|
230
|
+
{
|
|
231
|
+
"name": "mode",
|
|
232
|
+
"type": "enum",
|
|
233
|
+
"enumerals": [
|
|
234
|
+
"pause",
|
|
235
|
+
"error"
|
|
236
|
+
],
|
|
237
|
+
"info": "How incoming requests are handled. Defaults to 'pause'",
|
|
238
|
+
"description": "How incoming requests are handled. Defaults to 'pause'",
|
|
239
|
+
"schema": {
|
|
240
|
+
"title": "mode",
|
|
241
|
+
"type": "string"
|
|
242
|
+
},
|
|
243
|
+
"required": false
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"output": {
|
|
247
|
+
"name": "result",
|
|
248
|
+
"type": "object",
|
|
249
|
+
"description": "A JSON Object containing the adapter suspended status",
|
|
250
|
+
"schema": {
|
|
251
|
+
"title": "result",
|
|
252
|
+
"type": "object"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"roles": [
|
|
256
|
+
"admin"
|
|
257
|
+
],
|
|
258
|
+
"route": {
|
|
259
|
+
"verb": "POST",
|
|
260
|
+
"path": "/suspend"
|
|
261
|
+
},
|
|
262
|
+
"task": true
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "unsuspend",
|
|
266
|
+
"summary": "Unsuspends the adapter",
|
|
267
|
+
"description": "Unsuspends the adapter",
|
|
268
|
+
"input": [],
|
|
269
|
+
"output": {
|
|
270
|
+
"name": "result",
|
|
271
|
+
"type": "object",
|
|
272
|
+
"description": "A JSON Object containing the adapter suspended status",
|
|
273
|
+
"schema": {
|
|
274
|
+
"title": "result",
|
|
275
|
+
"type": "object"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"roles": [
|
|
279
|
+
"admin"
|
|
280
|
+
],
|
|
281
|
+
"route": {
|
|
282
|
+
"verb": "POST",
|
|
283
|
+
"path": "/unsuspend"
|
|
284
|
+
},
|
|
285
|
+
"task": true
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "getQueue",
|
|
289
|
+
"summary": "Return the requests that are waiting in the queue if throttling is enabled",
|
|
290
|
+
"description": "Return the requests that are waiting in the queue if throttling is enabled",
|
|
291
|
+
"input": [],
|
|
292
|
+
"output": {
|
|
293
|
+
"name": "result",
|
|
294
|
+
"type": "object",
|
|
295
|
+
"description": "A JSON Object containing the adapter queue",
|
|
296
|
+
"schema": {
|
|
297
|
+
"title": "result",
|
|
298
|
+
"type": "object"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"roles": [
|
|
302
|
+
"admin"
|
|
303
|
+
],
|
|
304
|
+
"route": {
|
|
305
|
+
"verb": "POST",
|
|
306
|
+
"path": "/getQueue"
|
|
307
|
+
},
|
|
308
|
+
"task": true
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "genericAdapterRequest",
|
|
312
|
+
"summary": "Makes the requested generic call",
|
|
313
|
+
"description": "Makes the requested generic call",
|
|
314
|
+
"input": [
|
|
315
|
+
{
|
|
316
|
+
"name": "uriPath",
|
|
317
|
+
"type": "string",
|
|
318
|
+
"info": "the path of the api call - do not include the host, port, base path or version",
|
|
319
|
+
"description": "the path of the api call",
|
|
320
|
+
"schema": {
|
|
321
|
+
"title": "uriPath",
|
|
322
|
+
"type": "string"
|
|
323
|
+
},
|
|
324
|
+
"required": true
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"name": "restMethod",
|
|
328
|
+
"type": "string",
|
|
329
|
+
"info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
330
|
+
"description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
331
|
+
"schema": {
|
|
332
|
+
"title": "restMethod",
|
|
333
|
+
"type": "string"
|
|
334
|
+
},
|
|
335
|
+
"required": true
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"name": "queryData",
|
|
339
|
+
"type": "object",
|
|
340
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
341
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
342
|
+
"schema": {
|
|
343
|
+
"title": "queryData",
|
|
344
|
+
"type": "object"
|
|
345
|
+
},
|
|
346
|
+
"required": false
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"name": "requestBody",
|
|
350
|
+
"type": "object",
|
|
351
|
+
"info": "the payload to be sent with the request (optional)",
|
|
352
|
+
"description": "the payload to be sent with the request (optional)",
|
|
353
|
+
"schema": {
|
|
354
|
+
"title": "requestBody",
|
|
355
|
+
"type": "object"
|
|
356
|
+
},
|
|
357
|
+
"required": false
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"name": "addlHeaders",
|
|
361
|
+
"type": "object",
|
|
362
|
+
"info": "additional headers to be put on the call (optional)",
|
|
363
|
+
"description": "additional headers to be put on the call (optional)",
|
|
364
|
+
"schema": {
|
|
365
|
+
"title": "addlHeaders",
|
|
366
|
+
"type": "object"
|
|
367
|
+
},
|
|
368
|
+
"required": false
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"output": {
|
|
372
|
+
"name": "result",
|
|
373
|
+
"type": "object",
|
|
374
|
+
"description": "A JSON Object containing status, code and the result",
|
|
375
|
+
"schema": {
|
|
376
|
+
"title": "result",
|
|
377
|
+
"type": "object"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"roles": [
|
|
381
|
+
"admin"
|
|
382
|
+
],
|
|
383
|
+
"route": {
|
|
384
|
+
"verb": "POST",
|
|
385
|
+
"path": "/genericAdapterRequest"
|
|
386
|
+
},
|
|
387
|
+
"task": true
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "moveEntitiesToDB",
|
|
391
|
+
"summary": "Moves entities from an adapter into the IAP database",
|
|
392
|
+
"description": "Moves entities from an adapter into the IAP database",
|
|
393
|
+
"input": [],
|
|
394
|
+
"output": {
|
|
395
|
+
"name": "res",
|
|
396
|
+
"type": "object",
|
|
397
|
+
"description": "A JSON Object containing status, code and the response from the mongo transaction",
|
|
398
|
+
"schema": {
|
|
399
|
+
"title": "res",
|
|
400
|
+
"type": "object"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"roles": [
|
|
404
|
+
"admin"
|
|
405
|
+
],
|
|
406
|
+
"route": {
|
|
407
|
+
"verb": "POST",
|
|
408
|
+
"path": "/moveEntitiesToDB"
|
|
409
|
+
},
|
|
410
|
+
"task": true
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "getDevice",
|
|
414
|
+
"summary": "Get the Appliance",
|
|
415
|
+
"description": "Get the Appliance",
|
|
416
|
+
"input": [
|
|
417
|
+
{
|
|
418
|
+
"name": "deviceName",
|
|
419
|
+
"type": "string",
|
|
420
|
+
"info": "An Appliance Device Name",
|
|
421
|
+
"required": true,
|
|
422
|
+
"schema": {
|
|
423
|
+
"title": "deviceName",
|
|
424
|
+
"type": "string"
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
],
|
|
428
|
+
"output": {
|
|
429
|
+
"name": "result",
|
|
430
|
+
"type": "object",
|
|
431
|
+
"description": "A JSON Object containing status, code and the result",
|
|
432
|
+
"schema": {
|
|
433
|
+
"title": "result",
|
|
434
|
+
"type": "object"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"roles": [
|
|
438
|
+
"admin"
|
|
439
|
+
],
|
|
440
|
+
"route": {
|
|
441
|
+
"verb": "POST",
|
|
442
|
+
"path": "/getDevice"
|
|
443
|
+
},
|
|
444
|
+
"task": false
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "getDevicesFiltered",
|
|
448
|
+
"summary": "Get Appliances that match the filter",
|
|
449
|
+
"description": "Get Appliances that match the filter",
|
|
450
|
+
"input": [
|
|
451
|
+
{
|
|
452
|
+
"name": "options",
|
|
453
|
+
"type": "object",
|
|
454
|
+
"info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
|
|
455
|
+
"required": true,
|
|
456
|
+
"schema": {
|
|
457
|
+
"title": "options",
|
|
458
|
+
"type": "object"
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
],
|
|
462
|
+
"output": {
|
|
463
|
+
"name": "result",
|
|
464
|
+
"type": "array",
|
|
465
|
+
"description": "A JSON Object containing status, code and the result",
|
|
466
|
+
"schema": {
|
|
467
|
+
"title": "result",
|
|
468
|
+
"type": "array"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
"roles": [
|
|
472
|
+
"admin"
|
|
473
|
+
],
|
|
474
|
+
"route": {
|
|
475
|
+
"verb": "POST",
|
|
476
|
+
"path": "/getDevicesFiltered"
|
|
477
|
+
},
|
|
478
|
+
"task": false
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"name": "isAlive",
|
|
482
|
+
"summary": "Checks the status for the provided Appliance",
|
|
483
|
+
"description": "Checks the status for the provided Appliance",
|
|
484
|
+
"input": [
|
|
485
|
+
{
|
|
486
|
+
"name": "deviceName",
|
|
487
|
+
"type": "string",
|
|
488
|
+
"info": "An Appliance Device Name",
|
|
489
|
+
"required": true,
|
|
490
|
+
"schema": {
|
|
491
|
+
"title": "deviceName",
|
|
492
|
+
"type": "string"
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
],
|
|
496
|
+
"output": {
|
|
497
|
+
"name": "result",
|
|
498
|
+
"type": "boolean",
|
|
499
|
+
"description": "A JSON Object containing status, code and the result",
|
|
500
|
+
"schema": {
|
|
501
|
+
"title": "result",
|
|
502
|
+
"type": "boolean"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"roles": [
|
|
506
|
+
"admin"
|
|
507
|
+
],
|
|
508
|
+
"route": {
|
|
509
|
+
"verb": "POST",
|
|
510
|
+
"path": "/isAlive"
|
|
511
|
+
},
|
|
512
|
+
"task": false
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"name": "getConfig",
|
|
516
|
+
"summary": "Gets a config for the provided Appliance",
|
|
517
|
+
"description": "Gets a config for the provided Appliance",
|
|
518
|
+
"input": [
|
|
519
|
+
{
|
|
520
|
+
"name": "deviceName",
|
|
521
|
+
"type": "string",
|
|
522
|
+
"info": "An Appliance Device Name",
|
|
523
|
+
"required": true,
|
|
524
|
+
"schema": {
|
|
525
|
+
"title": "deviceName",
|
|
526
|
+
"type": "string"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"name": "format",
|
|
531
|
+
"type": "string",
|
|
532
|
+
"info": "The format to be returned - this is ignored as we always return json",
|
|
533
|
+
"required": false,
|
|
534
|
+
"schema": {
|
|
535
|
+
"title": "format",
|
|
536
|
+
"type": "string"
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
],
|
|
540
|
+
"output": {
|
|
541
|
+
"name": "result",
|
|
542
|
+
"type": "object",
|
|
543
|
+
"description": "A JSON Object containing status, code and the result",
|
|
544
|
+
"schema": {
|
|
545
|
+
"title": "result",
|
|
546
|
+
"type": "object"
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
"roles": [
|
|
550
|
+
"admin"
|
|
551
|
+
],
|
|
552
|
+
"route": {
|
|
553
|
+
"verb": "POST",
|
|
554
|
+
"path": "/getConfig"
|
|
555
|
+
},
|
|
556
|
+
"task": false
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"name": "getCount",
|
|
560
|
+
"summary": "Gets a device count from the system",
|
|
561
|
+
"description": "Gets a device count from the system",
|
|
562
|
+
"input": [],
|
|
563
|
+
"output": {
|
|
564
|
+
"name": "result",
|
|
565
|
+
"type": "object",
|
|
566
|
+
"description": "A JSON Object containing status, code and the result",
|
|
567
|
+
"schema": {
|
|
568
|
+
"title": "result",
|
|
569
|
+
"type": "object"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"roles": [
|
|
573
|
+
"admin"
|
|
574
|
+
],
|
|
575
|
+
"route": {
|
|
576
|
+
"verb": "POST",
|
|
577
|
+
"path": "/getCount"
|
|
578
|
+
},
|
|
579
|
+
"task": false
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"name": "activateKeySigningKey",
|
|
583
|
+
"summary": "ActivateKeySigningKey",
|
|
584
|
+
"description": "Activates a key-signing key (KSK) so that it can be used for signing by DNSSEC. This operation changes the KSK status to ACTIVE .",
|
|
585
|
+
"input": [
|
|
586
|
+
{
|
|
587
|
+
"name": "hostedZoneId",
|
|
588
|
+
"type": "string",
|
|
589
|
+
"info": "A unique string used to identify a hosted zone.: string",
|
|
590
|
+
"required": true,
|
|
591
|
+
"schema": {
|
|
592
|
+
"title": "hostedZoneId",
|
|
593
|
+
"type": "string"
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"name": "name",
|
|
598
|
+
"type": "string",
|
|
599
|
+
"info": "A string used to identify a key-signing key (KSK). Name can include numbers, letters, and underscores (_). Name must be unique for each key-signing key in the same ho...(description truncated): string",
|
|
600
|
+
"required": true,
|
|
601
|
+
"schema": {
|
|
602
|
+
"title": "name",
|
|
603
|
+
"type": "string"
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
],
|
|
607
|
+
"output": {
|
|
608
|
+
"name": "result",
|
|
609
|
+
"type": "object",
|
|
610
|
+
"description": "A JSON Object containing status, code and the result",
|
|
611
|
+
"schema": {
|
|
612
|
+
"title": "result",
|
|
613
|
+
"type": "object"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
"roles": [
|
|
617
|
+
"admin"
|
|
618
|
+
],
|
|
619
|
+
"route": {
|
|
620
|
+
"verb": "POST",
|
|
621
|
+
"path": "/activateKeySigningKey"
|
|
622
|
+
},
|
|
623
|
+
"task": true
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"name": "associateVPCWithHostedZone",
|
|
627
|
+
"summary": "AssociateVPCWithHostedZone",
|
|
628
|
+
"description": "Associates an Amazon VPC with a private hosted zone. To perform the association, the VPC and the private hosted zone must already exist. You can't convert a public hosted zone into a private hosted zone. If you want to associate a VPC that was created by using one Amazon Web Services account with a private hosted zone that was created by using a different account, the Amazon Web Services account that created the private hosted zone must first submit a CreateVPCAssociationAuthorizati...(description truncated)",
|
|
629
|
+
"input": [
|
|
630
|
+
{
|
|
631
|
+
"name": "id",
|
|
632
|
+
"type": "string",
|
|
633
|
+
"info": "The ID of the private hosted zone that you want to associate an Amazon VPC with. Note that you can't associate a VPC with a hosted zone that doesn't have an existing V...(description truncated): string",
|
|
634
|
+
"required": true,
|
|
635
|
+
"schema": {
|
|
636
|
+
"title": "id",
|
|
637
|
+
"type": "string"
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"name": "body",
|
|
642
|
+
"type": "string",
|
|
643
|
+
"info": ": {\"VPC\": {\"VPCRegion\": \"Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1]\", \"VPCId\": \"string\"}, \"Comment\": \"string\"}",
|
|
644
|
+
"required": true,
|
|
645
|
+
"schema": {
|
|
646
|
+
"title": "body",
|
|
647
|
+
"type": "string"
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
],
|
|
651
|
+
"output": {
|
|
652
|
+
"name": "result",
|
|
653
|
+
"type": "object",
|
|
654
|
+
"description": "A JSON Object containing status, code and the result",
|
|
655
|
+
"schema": {
|
|
656
|
+
"title": "result",
|
|
657
|
+
"type": "object"
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
"roles": [
|
|
661
|
+
"admin"
|
|
662
|
+
],
|
|
663
|
+
"route": {
|
|
664
|
+
"verb": "POST",
|
|
665
|
+
"path": "/associateVPCWithHostedZone"
|
|
666
|
+
},
|
|
667
|
+
"task": true
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"name": "changeResourceRecordSets",
|
|
671
|
+
"summary": "ChangeResourceRecordSets",
|
|
672
|
+
"description": "Creates, changes, or deletes a resource record set, which contains authoritative DNS information for a specified domain name or subdomain name. For example, you can use ChangeResourceRecordSets to create a resource record set that routes traffic for test.example.com to a web server that has an IP address of 192.0.2.44. Deleting Resource Record Sets To delete a resource record set, you must specify all the same values that you specified when you created it. Change Batches and Trans...(description truncated)",
|
|
673
|
+
"input": [
|
|
674
|
+
{
|
|
675
|
+
"name": "id",
|
|
676
|
+
"type": "string",
|
|
677
|
+
"info": "The ID of the hosted zone that contains the resource record sets that you want to change.: string",
|
|
678
|
+
"required": true,
|
|
679
|
+
"schema": {
|
|
680
|
+
"title": "id",
|
|
681
|
+
"type": "string"
|
|
682
|
+
}
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "body",
|
|
686
|
+
"type": "string",
|
|
687
|
+
"info": ": {\"ChangeBatch\": {\"Comment\": \"string\", \"Changes\": [{\"Action\": \"Must be one of [CREATE, DELETE, UPSERT]\", \"ResourceRecordSet\": {\"Name\": \"string\", \"Type\": \"Must be one of [SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS]\", \"SetIdentifier\": \"string\", \"Weight\": 123, \"Region\": \"Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1]\", \"GeoLocation\": {\"ContinentCode\": \"string\", \"CountryCode\": \"string\", \"SubdivisionCode\": \"string\"}, \"Failover\": \"Must be one of [PRIMARY, SECONDARY]\", \"MultiValueAnswer\": \"boolean\", \"TTL\": 123, \"ResourceRecords\": [{\"Value\": \"string\"}], \"AliasTarget\": {\"HostedZoneId\": \"string\", \"DNSName\": \"string\", \"EvaluateTargetHealth\": \"boolean\"}, \"HealthCheckId\": \"string\", \"TrafficPolicyInstanceId\": \"string\"}}]}}",
|
|
688
|
+
"required": true,
|
|
689
|
+
"schema": {
|
|
690
|
+
"title": "body",
|
|
691
|
+
"type": "string"
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
],
|
|
695
|
+
"output": {
|
|
696
|
+
"name": "result",
|
|
697
|
+
"type": "object",
|
|
698
|
+
"description": "A JSON Object containing status, code and the result",
|
|
699
|
+
"schema": {
|
|
700
|
+
"title": "result",
|
|
701
|
+
"type": "object"
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"roles": [
|
|
705
|
+
"admin"
|
|
706
|
+
],
|
|
707
|
+
"route": {
|
|
708
|
+
"verb": "POST",
|
|
709
|
+
"path": "/changeResourceRecordSets"
|
|
710
|
+
},
|
|
711
|
+
"task": true
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"name": "changeTagsForResource",
|
|
715
|
+
"summary": "ChangeTagsForResource",
|
|
716
|
+
"description": "Adds, edits, or deletes tags for a health check or a hosted zone. For information about using tags for cost allocation, see Using Cost Allocation Tags in the Billing and Cost Management User Guide .",
|
|
717
|
+
"input": [
|
|
718
|
+
{
|
|
719
|
+
"name": "resourceType",
|
|
720
|
+
"type": "string",
|
|
721
|
+
"info": "The type of the resource. The resource type for health checks is healthcheck . The resource type for hosted zones is hostedzone .: Must be one of [healthcheck, hostedzone]",
|
|
722
|
+
"required": true,
|
|
723
|
+
"schema": {
|
|
724
|
+
"title": "resourceType",
|
|
725
|
+
"type": "string"
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"name": "resourceId",
|
|
730
|
+
"type": "string",
|
|
731
|
+
"info": "The ID of the resource for which you want to add, change, or delete tags.: string",
|
|
732
|
+
"required": true,
|
|
733
|
+
"schema": {
|
|
734
|
+
"title": "resourceId",
|
|
735
|
+
"type": "string"
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"name": "body",
|
|
740
|
+
"type": "string",
|
|
741
|
+
"info": ": {\"AddTags\": [{\"Key\": \"string\", \"Value\": \"string\"}], \"RemoveTagKeys\": \"array\"}",
|
|
742
|
+
"required": true,
|
|
743
|
+
"schema": {
|
|
744
|
+
"title": "body",
|
|
745
|
+
"type": "string"
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
],
|
|
749
|
+
"output": {
|
|
750
|
+
"name": "result",
|
|
751
|
+
"type": "object",
|
|
752
|
+
"description": "A JSON Object containing status, code and the result",
|
|
753
|
+
"schema": {
|
|
754
|
+
"title": "result",
|
|
755
|
+
"type": "object"
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"roles": [
|
|
759
|
+
"admin"
|
|
760
|
+
],
|
|
761
|
+
"route": {
|
|
762
|
+
"verb": "POST",
|
|
763
|
+
"path": "/changeTagsForResource"
|
|
764
|
+
},
|
|
765
|
+
"task": true
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"name": "listTagsForResource",
|
|
769
|
+
"summary": "ListTagsForResource",
|
|
770
|
+
"description": "Lists tags for one health check or hosted zone. For information about using tags for cost allocation, see Using Cost Allocation Tags in the Billing and Cost Management User Guide .",
|
|
771
|
+
"input": [
|
|
772
|
+
{
|
|
773
|
+
"name": "resourceType",
|
|
774
|
+
"type": "string",
|
|
775
|
+
"info": "The type of the resource. The resource type for health checks is healthcheck . The resource type for hosted zones is hostedzone .: Must be one of [healthcheck, hostedzone]",
|
|
776
|
+
"required": true,
|
|
777
|
+
"schema": {
|
|
778
|
+
"title": "resourceType",
|
|
779
|
+
"type": "string"
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"name": "resourceId",
|
|
784
|
+
"type": "string",
|
|
785
|
+
"info": "The ID of the resource for which you want to retrieve tags.: string",
|
|
786
|
+
"required": true,
|
|
787
|
+
"schema": {
|
|
788
|
+
"title": "resourceId",
|
|
789
|
+
"type": "string"
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
],
|
|
793
|
+
"output": {
|
|
794
|
+
"name": "result",
|
|
795
|
+
"type": "object",
|
|
796
|
+
"description": "A JSON Object containing status, code and the result",
|
|
797
|
+
"schema": {
|
|
798
|
+
"title": "result",
|
|
799
|
+
"type": "object"
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
"roles": [
|
|
803
|
+
"admin"
|
|
804
|
+
],
|
|
805
|
+
"route": {
|
|
806
|
+
"verb": "POST",
|
|
807
|
+
"path": "/listTagsForResource"
|
|
808
|
+
},
|
|
809
|
+
"task": true
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"name": "createHealthCheck",
|
|
813
|
+
"summary": "CreateHealthCheck",
|
|
814
|
+
"description": "Creates a new health check. For information about adding health checks to resource record sets, see HealthCheckId in ChangeResourceRecordSets . ELB Load Balancers If you're registering EC2 instances with an Elastic Load Balancing (ELB) load balancer, do not create Amazon Route 53 health checks for the EC2 instances. When you register an EC2 instance with a load balancer, you configure settings for an ELB health check, which performs a similar function to a Route 53 health check. ...(description truncated)",
|
|
815
|
+
"input": [
|
|
816
|
+
{
|
|
817
|
+
"name": "body",
|
|
818
|
+
"type": "string",
|
|
819
|
+
"info": ": {\"CallerReference\": \"string\", \"HealthCheckConfig\": {\"IPAddress\": \"string\", \"Port\": 123, \"Type\": \"Must be one of [HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, TCP, CALCULATED, CLOUDWATCH_METRIC, RECOVERY_CONTROL]\", \"ResourcePath\": \"string\", \"FullyQualifiedDomainName\": \"string\", \"SearchString\": \"string\", \"RequestInterval\": 123, \"FailureThreshold\": 123, \"MeasureLatency\": \"boolean\", \"Inverted\": \"boolean\", \"Disabled\": \"boolean\", \"HealthThreshold\": 123, \"ChildHealthChecks\": \"array\", \"EnableSNI\": \"boolean\", \"Regions\": \"array\", \"AlarmIdentifier\": {\"Region\": \"Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1]\", \"Name\": \"string\"}, \"InsufficientDataHealthStatus\": \"Must be one of [Healthy, Unhealthy, LastKnownStatus]\", \"RoutingControlArn\": \"string\"}}",
|
|
820
|
+
"required": true,
|
|
821
|
+
"schema": {
|
|
822
|
+
"title": "body",
|
|
823
|
+
"type": "string"
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
],
|
|
827
|
+
"output": {
|
|
828
|
+
"name": "result",
|
|
829
|
+
"type": "object",
|
|
830
|
+
"description": "A JSON Object containing status, code and the result",
|
|
831
|
+
"schema": {
|
|
832
|
+
"title": "result",
|
|
833
|
+
"type": "object"
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
"roles": [
|
|
837
|
+
"admin"
|
|
838
|
+
],
|
|
839
|
+
"route": {
|
|
840
|
+
"verb": "POST",
|
|
841
|
+
"path": "/createHealthCheck"
|
|
842
|
+
},
|
|
843
|
+
"task": true
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"name": "listHealthChecks",
|
|
847
|
+
"summary": "ListHealthChecks",
|
|
848
|
+
"description": "Retrieve a list of the health checks that are associated with the current Amazon Web Services account.",
|
|
849
|
+
"input": [
|
|
850
|
+
{
|
|
851
|
+
"name": "marker",
|
|
852
|
+
"type": "string",
|
|
853
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more health checks. To get another group, submit another ListHealthChecks request. For t...(description truncated): string",
|
|
854
|
+
"required": false,
|
|
855
|
+
"schema": {
|
|
856
|
+
"title": "marker",
|
|
857
|
+
"type": "string"
|
|
858
|
+
}
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "maxitems",
|
|
862
|
+
"type": "string",
|
|
863
|
+
"info": "The maximum number of health checks that you want ListHealthChecks to return in response to the current request. Amazon Route 53 returns a maximum of 100 items. If you ...(description truncated): string",
|
|
864
|
+
"required": false,
|
|
865
|
+
"schema": {
|
|
866
|
+
"title": "maxitems",
|
|
867
|
+
"type": "string"
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"name": "maxItems",
|
|
872
|
+
"type": "string",
|
|
873
|
+
"info": "Pagination limit: string",
|
|
874
|
+
"required": false,
|
|
875
|
+
"schema": {
|
|
876
|
+
"title": "maxItems",
|
|
877
|
+
"type": "string"
|
|
878
|
+
}
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"name": "markerQuery",
|
|
882
|
+
"type": "string",
|
|
883
|
+
"info": "Pagination token: string",
|
|
884
|
+
"required": false,
|
|
885
|
+
"schema": {
|
|
886
|
+
"title": "markerQuery",
|
|
887
|
+
"type": "string"
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
],
|
|
891
|
+
"output": {
|
|
892
|
+
"name": "result",
|
|
893
|
+
"type": "object",
|
|
894
|
+
"description": "A JSON Object containing status, code and the result",
|
|
895
|
+
"schema": {
|
|
896
|
+
"title": "result",
|
|
897
|
+
"type": "object"
|
|
898
|
+
}
|
|
899
|
+
},
|
|
900
|
+
"roles": [
|
|
901
|
+
"admin"
|
|
902
|
+
],
|
|
903
|
+
"route": {
|
|
904
|
+
"verb": "POST",
|
|
905
|
+
"path": "/listHealthChecks"
|
|
906
|
+
},
|
|
907
|
+
"task": true
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"name": "createHostedZone",
|
|
911
|
+
"summary": "CreateHostedZone",
|
|
912
|
+
"description": "Creates a new public or private hosted zone. You create records in a public hosted zone to define how you want to route traffic on the internet for a domain, such as example.com, and its subdomains (apex.example.com, acme.example.com). You create records in a private hosted zone to define how you want to route traffic for a domain and its subdomains within one or more Amazon Virtual Private Clouds (Amazon VPCs). You can't convert a public hosted zone to a private hosted zone or vice versa....(description truncated)",
|
|
913
|
+
"input": [
|
|
914
|
+
{
|
|
915
|
+
"name": "body",
|
|
916
|
+
"type": "string",
|
|
917
|
+
"info": ": {\"Name\": \"string\", \"VPC\": {\"VPCRegion\": \"Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1]\", \"VPCId\": \"string\"}, \"CallerReference\": \"string\", \"HostedZoneConfig\": {\"Comment\": \"string\", \"PrivateZone\": \"boolean\"}, \"DelegationSetId\": \"string\"}",
|
|
918
|
+
"required": true,
|
|
919
|
+
"schema": {
|
|
920
|
+
"title": "body",
|
|
921
|
+
"type": "string"
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
],
|
|
925
|
+
"output": {
|
|
926
|
+
"name": "result",
|
|
927
|
+
"type": "object",
|
|
928
|
+
"description": "A JSON Object containing status, code and the result",
|
|
929
|
+
"schema": {
|
|
930
|
+
"title": "result",
|
|
931
|
+
"type": "object"
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
"roles": [
|
|
935
|
+
"admin"
|
|
936
|
+
],
|
|
937
|
+
"route": {
|
|
938
|
+
"verb": "POST",
|
|
939
|
+
"path": "/createHostedZone"
|
|
940
|
+
},
|
|
941
|
+
"task": true
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"name": "listHostedZones",
|
|
945
|
+
"summary": "ListHostedZones",
|
|
946
|
+
"description": "Retrieves a list of the public and private hosted zones that are associated with the current Amazon Web Services account. The response includes a HostedZones child element for each hosted zone. Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of hosted zones, you can use the maxitems parameter to list them in groups of up to 100.",
|
|
947
|
+
"input": [
|
|
948
|
+
{
|
|
949
|
+
"name": "marker",
|
|
950
|
+
"type": "string",
|
|
951
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more hosted zones. To get more hosted zones, submit another ListHostedZones request. For...(description truncated): string",
|
|
952
|
+
"required": false,
|
|
953
|
+
"schema": {
|
|
954
|
+
"title": "marker",
|
|
955
|
+
"type": "string"
|
|
956
|
+
}
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
"name": "maxitems",
|
|
960
|
+
"type": "string",
|
|
961
|
+
"info": "(Optional) The maximum number of hosted zones that you want Amazon Route 53 to return. If you have more than maxitems hosted zones, the value of IsTruncated in the re...(description truncated): string",
|
|
962
|
+
"required": false,
|
|
963
|
+
"schema": {
|
|
964
|
+
"title": "maxitems",
|
|
965
|
+
"type": "string"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"name": "delegationsetid",
|
|
970
|
+
"type": "string",
|
|
971
|
+
"info": "If you're using reusable delegation sets and you want to list all of the hosted zones that are associated with a reusable delegation set, specify the ID of that reusable ...(description truncated): string",
|
|
972
|
+
"required": false,
|
|
973
|
+
"schema": {
|
|
974
|
+
"title": "delegationsetid",
|
|
975
|
+
"type": "string"
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"name": "maxItems",
|
|
980
|
+
"type": "string",
|
|
981
|
+
"info": "Pagination limit: string",
|
|
982
|
+
"required": false,
|
|
983
|
+
"schema": {
|
|
984
|
+
"title": "maxItems",
|
|
985
|
+
"type": "string"
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"name": "markerQuery",
|
|
990
|
+
"type": "string",
|
|
991
|
+
"info": "Pagination token: string",
|
|
992
|
+
"required": false,
|
|
993
|
+
"schema": {
|
|
994
|
+
"title": "markerQuery",
|
|
995
|
+
"type": "string"
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
],
|
|
999
|
+
"output": {
|
|
1000
|
+
"name": "result",
|
|
1001
|
+
"type": "object",
|
|
1002
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1003
|
+
"schema": {
|
|
1004
|
+
"title": "result",
|
|
1005
|
+
"type": "object"
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
1008
|
+
"roles": [
|
|
1009
|
+
"admin"
|
|
1010
|
+
],
|
|
1011
|
+
"route": {
|
|
1012
|
+
"verb": "POST",
|
|
1013
|
+
"path": "/listHostedZones"
|
|
1014
|
+
},
|
|
1015
|
+
"task": true
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"name": "createKeySigningKey",
|
|
1019
|
+
"summary": "CreateKeySigningKey",
|
|
1020
|
+
"description": "Creates a new key-signing key (KSK) associated with a hosted zone. You can only have two KSKs per hosted zone.",
|
|
1021
|
+
"input": [
|
|
1022
|
+
{
|
|
1023
|
+
"name": "body",
|
|
1024
|
+
"type": "string",
|
|
1025
|
+
"info": ": {\"CallerReference\": \"string\", \"HostedZoneId\": \"string\", \"KeyManagementServiceArn\": \"string\", \"Name\": \"string\", \"Status\": \"string\"}",
|
|
1026
|
+
"required": true,
|
|
1027
|
+
"schema": {
|
|
1028
|
+
"title": "body",
|
|
1029
|
+
"type": "string"
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
],
|
|
1033
|
+
"output": {
|
|
1034
|
+
"name": "result",
|
|
1035
|
+
"type": "object",
|
|
1036
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1037
|
+
"schema": {
|
|
1038
|
+
"title": "result",
|
|
1039
|
+
"type": "object"
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
"roles": [
|
|
1043
|
+
"admin"
|
|
1044
|
+
],
|
|
1045
|
+
"route": {
|
|
1046
|
+
"verb": "POST",
|
|
1047
|
+
"path": "/createKeySigningKey"
|
|
1048
|
+
},
|
|
1049
|
+
"task": true
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"name": "createQueryLoggingConfig",
|
|
1053
|
+
"summary": "CreateQueryLoggingConfig",
|
|
1054
|
+
"description": "Creates a configuration for DNS query logging. After you create a query logging configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs log group. DNS query logs contain information about the queries that Route 53 receives for a specified public hosted zone, such as the following: Route 53 edge location that responded to the DNS query Domain or subdomain that was requested DNS record type, such as A or AAAA DNS response code, such as NoE...(description truncated)",
|
|
1055
|
+
"input": [
|
|
1056
|
+
{
|
|
1057
|
+
"name": "body",
|
|
1058
|
+
"type": "string",
|
|
1059
|
+
"info": ": {\"HostedZoneId\": \"string\", \"CloudWatchLogsLogGroupArn\": \"string\"}",
|
|
1060
|
+
"required": true,
|
|
1061
|
+
"schema": {
|
|
1062
|
+
"title": "body",
|
|
1063
|
+
"type": "string"
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
],
|
|
1067
|
+
"output": {
|
|
1068
|
+
"name": "result",
|
|
1069
|
+
"type": "object",
|
|
1070
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1071
|
+
"schema": {
|
|
1072
|
+
"title": "result",
|
|
1073
|
+
"type": "object"
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"roles": [
|
|
1077
|
+
"admin"
|
|
1078
|
+
],
|
|
1079
|
+
"route": {
|
|
1080
|
+
"verb": "POST",
|
|
1081
|
+
"path": "/createQueryLoggingConfig"
|
|
1082
|
+
},
|
|
1083
|
+
"task": true
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"name": "listQueryLoggingConfigs",
|
|
1087
|
+
"summary": "ListQueryLoggingConfigs",
|
|
1088
|
+
"description": "Lists the configurations for DNS query logging that are associated with the current Amazon Web Services account or the configuration that is associated with a specified hosted zone. For more information about DNS query logs, see CreateQueryLoggingConfig . Additional information, including the format of DNS query logs, appears in Logging DNS Queries in the Amazon Route 53 Developer Guide .",
|
|
1089
|
+
"input": [
|
|
1090
|
+
{
|
|
1091
|
+
"name": "hostedzoneid",
|
|
1092
|
+
"type": "string",
|
|
1093
|
+
"info": "(Optional) If you want to list the query logging configuration that is associated with a hosted zone, specify the ID in HostedZoneId . If you don't specify a hosted ...(description truncated): string",
|
|
1094
|
+
"required": false,
|
|
1095
|
+
"schema": {
|
|
1096
|
+
"title": "hostedzoneid",
|
|
1097
|
+
"type": "string"
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "nexttoken",
|
|
1102
|
+
"type": "string",
|
|
1103
|
+
"info": "(Optional) If the current Amazon Web Services account has more than MaxResults query logging configurations, use NextToken to get the second and subsequent pages of ...(description truncated): string",
|
|
1104
|
+
"required": false,
|
|
1105
|
+
"schema": {
|
|
1106
|
+
"title": "nexttoken",
|
|
1107
|
+
"type": "string"
|
|
1108
|
+
}
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"name": "maxresults",
|
|
1112
|
+
"type": "string",
|
|
1113
|
+
"info": "(Optional) The maximum number of query logging configurations that you want Amazon Route 53 to return in response to the current request. If the current Amazon Web Servi...(description truncated): string",
|
|
1114
|
+
"required": false,
|
|
1115
|
+
"schema": {
|
|
1116
|
+
"title": "maxresults",
|
|
1117
|
+
"type": "string"
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"name": "maxResults",
|
|
1122
|
+
"type": "string",
|
|
1123
|
+
"info": "Pagination limit: string",
|
|
1124
|
+
"required": false,
|
|
1125
|
+
"schema": {
|
|
1126
|
+
"title": "maxResults",
|
|
1127
|
+
"type": "string"
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"name": "nextToken",
|
|
1132
|
+
"type": "string",
|
|
1133
|
+
"info": "Pagination token: string",
|
|
1134
|
+
"required": false,
|
|
1135
|
+
"schema": {
|
|
1136
|
+
"title": "nextToken",
|
|
1137
|
+
"type": "string"
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
],
|
|
1141
|
+
"output": {
|
|
1142
|
+
"name": "result",
|
|
1143
|
+
"type": "object",
|
|
1144
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1145
|
+
"schema": {
|
|
1146
|
+
"title": "result",
|
|
1147
|
+
"type": "object"
|
|
1148
|
+
}
|
|
1149
|
+
},
|
|
1150
|
+
"roles": [
|
|
1151
|
+
"admin"
|
|
1152
|
+
],
|
|
1153
|
+
"route": {
|
|
1154
|
+
"verb": "POST",
|
|
1155
|
+
"path": "/listQueryLoggingConfigs"
|
|
1156
|
+
},
|
|
1157
|
+
"task": true
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"name": "createReusableDelegationSet",
|
|
1161
|
+
"summary": "CreateReusableDelegationSet",
|
|
1162
|
+
"description": "Creates a delegation set (a group of four name servers) that can be reused by multiple hosted zones that were created by the same Amazon Web Services account. You can also create a reusable delegation set that uses the four name servers that are associated with an existing hosted zone. Specify the hosted zone ID in the CreateReusableDelegationSet request. You can't associate a reusable delegation set with a private hosted zone. For information about using a reusable delegation set ...(description truncated)",
|
|
1163
|
+
"input": [
|
|
1164
|
+
{
|
|
1165
|
+
"name": "body",
|
|
1166
|
+
"type": "string",
|
|
1167
|
+
"info": ": {\"CallerReference\": \"string\", \"HostedZoneId\": \"string\"}",
|
|
1168
|
+
"required": true,
|
|
1169
|
+
"schema": {
|
|
1170
|
+
"title": "body",
|
|
1171
|
+
"type": "string"
|
|
1172
|
+
}
|
|
1173
|
+
}
|
|
1174
|
+
],
|
|
1175
|
+
"output": {
|
|
1176
|
+
"name": "result",
|
|
1177
|
+
"type": "object",
|
|
1178
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1179
|
+
"schema": {
|
|
1180
|
+
"title": "result",
|
|
1181
|
+
"type": "object"
|
|
1182
|
+
}
|
|
1183
|
+
},
|
|
1184
|
+
"roles": [
|
|
1185
|
+
"admin"
|
|
1186
|
+
],
|
|
1187
|
+
"route": {
|
|
1188
|
+
"verb": "POST",
|
|
1189
|
+
"path": "/createReusableDelegationSet"
|
|
1190
|
+
},
|
|
1191
|
+
"task": true
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
"name": "listReusableDelegationSets",
|
|
1195
|
+
"summary": "ListReusableDelegationSets",
|
|
1196
|
+
"description": "Retrieves a list of the reusable delegation sets that are associated with the current Amazon Web Services account.",
|
|
1197
|
+
"input": [
|
|
1198
|
+
{
|
|
1199
|
+
"name": "marker",
|
|
1200
|
+
"type": "string",
|
|
1201
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more reusable delegation sets. To get another group, submit another ListReusableDelegationSe...(description truncated): string",
|
|
1202
|
+
"required": false,
|
|
1203
|
+
"schema": {
|
|
1204
|
+
"title": "marker",
|
|
1205
|
+
"type": "string"
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"name": "maxitems",
|
|
1210
|
+
"type": "string",
|
|
1211
|
+
"info": "The number of reusable delegation sets that you want Amazon Route 53 to return in the response to this request. If you specify a value greater than 100, Route 53 returns ...(description truncated): string",
|
|
1212
|
+
"required": false,
|
|
1213
|
+
"schema": {
|
|
1214
|
+
"title": "maxitems",
|
|
1215
|
+
"type": "string"
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
],
|
|
1219
|
+
"output": {
|
|
1220
|
+
"name": "result",
|
|
1221
|
+
"type": "object",
|
|
1222
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1223
|
+
"schema": {
|
|
1224
|
+
"title": "result",
|
|
1225
|
+
"type": "object"
|
|
1226
|
+
}
|
|
1227
|
+
},
|
|
1228
|
+
"roles": [
|
|
1229
|
+
"admin"
|
|
1230
|
+
],
|
|
1231
|
+
"route": {
|
|
1232
|
+
"verb": "POST",
|
|
1233
|
+
"path": "/listReusableDelegationSets"
|
|
1234
|
+
},
|
|
1235
|
+
"task": true
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"name": "createTrafficPolicy",
|
|
1239
|
+
"summary": "CreateTrafficPolicy",
|
|
1240
|
+
"description": "Creates a traffic policy, which you use to create multiple DNS resource record sets for one domain name (such as example.com) or one subdomain name (such as www.example.com).",
|
|
1241
|
+
"input": [
|
|
1242
|
+
{
|
|
1243
|
+
"name": "body",
|
|
1244
|
+
"type": "string",
|
|
1245
|
+
"info": ": {\"Name\": \"string\", \"Document\": \"string\", \"Comment\": \"string\"}",
|
|
1246
|
+
"required": true,
|
|
1247
|
+
"schema": {
|
|
1248
|
+
"title": "body",
|
|
1249
|
+
"type": "string"
|
|
1250
|
+
}
|
|
1251
|
+
}
|
|
1252
|
+
],
|
|
1253
|
+
"output": {
|
|
1254
|
+
"name": "result",
|
|
1255
|
+
"type": "object",
|
|
1256
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1257
|
+
"schema": {
|
|
1258
|
+
"title": "result",
|
|
1259
|
+
"type": "object"
|
|
1260
|
+
}
|
|
1261
|
+
},
|
|
1262
|
+
"roles": [
|
|
1263
|
+
"admin"
|
|
1264
|
+
],
|
|
1265
|
+
"route": {
|
|
1266
|
+
"verb": "POST",
|
|
1267
|
+
"path": "/createTrafficPolicy"
|
|
1268
|
+
},
|
|
1269
|
+
"task": true
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"name": "createTrafficPolicyInstance",
|
|
1273
|
+
"summary": "CreateTrafficPolicyInstance",
|
|
1274
|
+
"description": "Creates resource record sets in a specified hosted zone based on the settings in a specified traffic policy version. In addition, CreateTrafficPolicyInstance associates the resource record sets with a specified domain name (such as example.com) or subdomain name (such as www.example.com). Amazon Route 53 responds to DNS queries for the domain or subdomain name by using the resource record sets that CreateTrafficPolicyInstance created.",
|
|
1275
|
+
"input": [
|
|
1276
|
+
{
|
|
1277
|
+
"name": "body",
|
|
1278
|
+
"type": "string",
|
|
1279
|
+
"info": ": {\"HostedZoneId\": \"string\", \"Name\": \"string\", \"TTL\": 123, \"TrafficPolicyId\": \"string\", \"TrafficPolicyVersion\": 123}",
|
|
1280
|
+
"required": true,
|
|
1281
|
+
"schema": {
|
|
1282
|
+
"title": "body",
|
|
1283
|
+
"type": "string"
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
],
|
|
1287
|
+
"output": {
|
|
1288
|
+
"name": "result",
|
|
1289
|
+
"type": "object",
|
|
1290
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1291
|
+
"schema": {
|
|
1292
|
+
"title": "result",
|
|
1293
|
+
"type": "object"
|
|
1294
|
+
}
|
|
1295
|
+
},
|
|
1296
|
+
"roles": [
|
|
1297
|
+
"admin"
|
|
1298
|
+
],
|
|
1299
|
+
"route": {
|
|
1300
|
+
"verb": "POST",
|
|
1301
|
+
"path": "/createTrafficPolicyInstance"
|
|
1302
|
+
},
|
|
1303
|
+
"task": true
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"name": "createTrafficPolicyVersion",
|
|
1307
|
+
"summary": "CreateTrafficPolicyVersion",
|
|
1308
|
+
"description": "Creates a new version of an existing traffic policy. When you create a new version of a traffic policy, you specify the ID of the traffic policy that you want to update and a JSON-formatted document that describes the new version. You use traffic policies to create multiple DNS resource record sets for one domain name (such as example.com) or one subdomain name (such as www.example.com). You can create a maximum of 1000 versions of a traffic policy. If you reach the limit and need to create anot...(description truncated)",
|
|
1309
|
+
"input": [
|
|
1310
|
+
{
|
|
1311
|
+
"name": "id",
|
|
1312
|
+
"type": "string",
|
|
1313
|
+
"info": "The ID of the traffic policy for which you want to create a new version.: string",
|
|
1314
|
+
"required": true,
|
|
1315
|
+
"schema": {
|
|
1316
|
+
"title": "id",
|
|
1317
|
+
"type": "string"
|
|
1318
|
+
}
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"name": "body",
|
|
1322
|
+
"type": "string",
|
|
1323
|
+
"info": ": {\"Document\": \"string\", \"Comment\": \"string\"}",
|
|
1324
|
+
"required": true,
|
|
1325
|
+
"schema": {
|
|
1326
|
+
"title": "body",
|
|
1327
|
+
"type": "string"
|
|
1328
|
+
}
|
|
1329
|
+
}
|
|
1330
|
+
],
|
|
1331
|
+
"output": {
|
|
1332
|
+
"name": "result",
|
|
1333
|
+
"type": "object",
|
|
1334
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1335
|
+
"schema": {
|
|
1336
|
+
"title": "result",
|
|
1337
|
+
"type": "object"
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
"roles": [
|
|
1341
|
+
"admin"
|
|
1342
|
+
],
|
|
1343
|
+
"route": {
|
|
1344
|
+
"verb": "POST",
|
|
1345
|
+
"path": "/createTrafficPolicyVersion"
|
|
1346
|
+
},
|
|
1347
|
+
"task": true
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"name": "createVPCAssociationAuthorization",
|
|
1351
|
+
"summary": "CreateVPCAssociationAuthorization",
|
|
1352
|
+
"description": "Authorizes the Amazon Web Services account that created a specified VPC to submit an AssociateVPCWithHostedZone request to associate the VPC with a specified hosted zone that was created by a different account. To submit a CreateVPCAssociationAuthorization request, you must use the account that created the hosted zone. After you authorize the association, use the account that created the VPC to submit an AssociateVPCWithHostedZone request. If you want to associate multiple VPCs that y...(description truncated)",
|
|
1353
|
+
"input": [
|
|
1354
|
+
{
|
|
1355
|
+
"name": "id",
|
|
1356
|
+
"type": "string",
|
|
1357
|
+
"info": "The ID of the private hosted zone that you want to authorize associating a VPC with.: string",
|
|
1358
|
+
"required": true,
|
|
1359
|
+
"schema": {
|
|
1360
|
+
"title": "id",
|
|
1361
|
+
"type": "string"
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"name": "body",
|
|
1366
|
+
"type": "string",
|
|
1367
|
+
"info": ": {\"VPC\": {\"VPCRegion\": \"Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1]\", \"VPCId\": \"string\"}}",
|
|
1368
|
+
"required": true,
|
|
1369
|
+
"schema": {
|
|
1370
|
+
"title": "body",
|
|
1371
|
+
"type": "string"
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
],
|
|
1375
|
+
"output": {
|
|
1376
|
+
"name": "result",
|
|
1377
|
+
"type": "object",
|
|
1378
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1379
|
+
"schema": {
|
|
1380
|
+
"title": "result",
|
|
1381
|
+
"type": "object"
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
"roles": [
|
|
1385
|
+
"admin"
|
|
1386
|
+
],
|
|
1387
|
+
"route": {
|
|
1388
|
+
"verb": "POST",
|
|
1389
|
+
"path": "/createVPCAssociationAuthorization"
|
|
1390
|
+
},
|
|
1391
|
+
"task": true
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"name": "listVPCAssociationAuthorizations",
|
|
1395
|
+
"summary": "ListVPCAssociationAuthorizations",
|
|
1396
|
+
"description": "Gets a list of the VPCs that were created by other accounts and that can be associated with a specified hosted zone because you've submitted one or more CreateVPCAssociationAuthorization requests. The response includes a VPCs element with a VPC child element for each VPC that can be associated with the hosted zone.",
|
|
1397
|
+
"input": [
|
|
1398
|
+
{
|
|
1399
|
+
"name": "id",
|
|
1400
|
+
"type": "string",
|
|
1401
|
+
"info": "The ID of the hosted zone for which you want a list of VPCs that can be associated with the hosted zone.: string",
|
|
1402
|
+
"required": true,
|
|
1403
|
+
"schema": {
|
|
1404
|
+
"title": "id",
|
|
1405
|
+
"type": "string"
|
|
1406
|
+
}
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"name": "nexttoken",
|
|
1410
|
+
"type": "string",
|
|
1411
|
+
"info": "Optional : If a response includes a NextToken element, there are more VPCs that can be associated with the specified hosted zone. To get the next page of results, subm...(description truncated): string",
|
|
1412
|
+
"required": false,
|
|
1413
|
+
"schema": {
|
|
1414
|
+
"title": "nexttoken",
|
|
1415
|
+
"type": "string"
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
"name": "maxresults",
|
|
1420
|
+
"type": "string",
|
|
1421
|
+
"info": "Optional : An integer that specifies the maximum number of VPCs that you want Amazon Route 53 to return. If you don't specify a value for MaxResults , Route 53 returns ...(description truncated): string",
|
|
1422
|
+
"required": false,
|
|
1423
|
+
"schema": {
|
|
1424
|
+
"title": "maxresults",
|
|
1425
|
+
"type": "string"
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
],
|
|
1429
|
+
"output": {
|
|
1430
|
+
"name": "result",
|
|
1431
|
+
"type": "object",
|
|
1432
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1433
|
+
"schema": {
|
|
1434
|
+
"title": "result",
|
|
1435
|
+
"type": "object"
|
|
1436
|
+
}
|
|
1437
|
+
},
|
|
1438
|
+
"roles": [
|
|
1439
|
+
"admin"
|
|
1440
|
+
],
|
|
1441
|
+
"route": {
|
|
1442
|
+
"verb": "POST",
|
|
1443
|
+
"path": "/listVPCAssociationAuthorizations"
|
|
1444
|
+
},
|
|
1445
|
+
"task": true
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
"name": "deactivateKeySigningKey",
|
|
1449
|
+
"summary": "DeactivateKeySigningKey",
|
|
1450
|
+
"description": "Deactivates a key-signing key (KSK) so that it will not be used for signing by DNSSEC. This operation changes the KSK status to INACTIVE .",
|
|
1451
|
+
"input": [
|
|
1452
|
+
{
|
|
1453
|
+
"name": "hostedZoneId",
|
|
1454
|
+
"type": "string",
|
|
1455
|
+
"info": "A unique string used to identify a hosted zone.: string",
|
|
1456
|
+
"required": true,
|
|
1457
|
+
"schema": {
|
|
1458
|
+
"title": "hostedZoneId",
|
|
1459
|
+
"type": "string"
|
|
1460
|
+
}
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
"name": "name",
|
|
1464
|
+
"type": "string",
|
|
1465
|
+
"info": "A string used to identify a key-signing key (KSK).: string",
|
|
1466
|
+
"required": true,
|
|
1467
|
+
"schema": {
|
|
1468
|
+
"title": "name",
|
|
1469
|
+
"type": "string"
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
],
|
|
1473
|
+
"output": {
|
|
1474
|
+
"name": "result",
|
|
1475
|
+
"type": "object",
|
|
1476
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1477
|
+
"schema": {
|
|
1478
|
+
"title": "result",
|
|
1479
|
+
"type": "object"
|
|
1480
|
+
}
|
|
1481
|
+
},
|
|
1482
|
+
"roles": [
|
|
1483
|
+
"admin"
|
|
1484
|
+
],
|
|
1485
|
+
"route": {
|
|
1486
|
+
"verb": "POST",
|
|
1487
|
+
"path": "/deactivateKeySigningKey"
|
|
1488
|
+
},
|
|
1489
|
+
"task": true
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"name": "deleteHealthCheck",
|
|
1493
|
+
"summary": "DeleteHealthCheck",
|
|
1494
|
+
"description": "Deletes a health check. Amazon Route 53 does not prevent you from deleting a health check even if the health check is associated with one or more resource record sets. If you delete a health check and you don't update the associated resource record sets, the future status of the health check can't be predicted and may change. This will affect the routing of DNS queries for your DNS failover configuration. For more information, see Replacing and Deleting Health Checks in the Amazon Route ...(description truncated)",
|
|
1495
|
+
"input": [
|
|
1496
|
+
{
|
|
1497
|
+
"name": "healthCheckId",
|
|
1498
|
+
"type": "string",
|
|
1499
|
+
"info": "The ID of the health check that you want to delete.: string",
|
|
1500
|
+
"required": true,
|
|
1501
|
+
"schema": {
|
|
1502
|
+
"title": "healthCheckId",
|
|
1503
|
+
"type": "string"
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1506
|
+
],
|
|
1507
|
+
"output": {
|
|
1508
|
+
"name": "result",
|
|
1509
|
+
"type": "object",
|
|
1510
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1511
|
+
"schema": {
|
|
1512
|
+
"title": "result",
|
|
1513
|
+
"type": "object"
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
"roles": [
|
|
1517
|
+
"admin"
|
|
1518
|
+
],
|
|
1519
|
+
"route": {
|
|
1520
|
+
"verb": "POST",
|
|
1521
|
+
"path": "/deleteHealthCheck"
|
|
1522
|
+
},
|
|
1523
|
+
"task": true
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"name": "getHealthCheck",
|
|
1527
|
+
"summary": "GetHealthCheck",
|
|
1528
|
+
"description": "Gets information about a specified health check.",
|
|
1529
|
+
"input": [
|
|
1530
|
+
{
|
|
1531
|
+
"name": "healthCheckId",
|
|
1532
|
+
"type": "string",
|
|
1533
|
+
"info": "The identifier that Amazon Route 53 assigned to the health check when you created it. When you add or update a resource record set, you use this value to specify which he...(description truncated): string",
|
|
1534
|
+
"required": true,
|
|
1535
|
+
"schema": {
|
|
1536
|
+
"title": "healthCheckId",
|
|
1537
|
+
"type": "string"
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
],
|
|
1541
|
+
"output": {
|
|
1542
|
+
"name": "result",
|
|
1543
|
+
"type": "object",
|
|
1544
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1545
|
+
"schema": {
|
|
1546
|
+
"title": "result",
|
|
1547
|
+
"type": "object"
|
|
1548
|
+
}
|
|
1549
|
+
},
|
|
1550
|
+
"roles": [
|
|
1551
|
+
"admin"
|
|
1552
|
+
],
|
|
1553
|
+
"route": {
|
|
1554
|
+
"verb": "POST",
|
|
1555
|
+
"path": "/getHealthCheck"
|
|
1556
|
+
},
|
|
1557
|
+
"task": true
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
"name": "updateHealthCheck",
|
|
1561
|
+
"summary": "UpdateHealthCheck",
|
|
1562
|
+
"description": "Updates an existing health check. Note that some values can't be updated. For more information about updating health checks, see Creating, Updating, and Deleting Health Checks in the Amazon Route 53 Developer Guide .",
|
|
1563
|
+
"input": [
|
|
1564
|
+
{
|
|
1565
|
+
"name": "healthCheckId",
|
|
1566
|
+
"type": "string",
|
|
1567
|
+
"info": "The ID for the health check for which you want detailed information. When you created the health check, CreateHealthCheck returned the ID in the response, in the Healt...(description truncated): string",
|
|
1568
|
+
"required": true,
|
|
1569
|
+
"schema": {
|
|
1570
|
+
"title": "healthCheckId",
|
|
1571
|
+
"type": "string"
|
|
1572
|
+
}
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"name": "body",
|
|
1576
|
+
"type": "string",
|
|
1577
|
+
"info": ": {\"HealthCheckVersion\": 123, \"IPAddress\": \"string\", \"Port\": 123, \"ResourcePath\": \"string\", \"FullyQualifiedDomainName\": \"string\", \"SearchString\": \"string\", \"FailureThreshold\": 123, \"Inverted\": \"boolean\", \"Disabled\": \"boolean\", \"HealthThreshold\": 123, \"ChildHealthChecks\": \"array\", \"EnableSNI\": \"boolean\", \"Regions\": \"array\", \"AlarmIdentifier\": {\"Region\": \"Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1]\", \"Name\": \"string\"}, \"InsufficientDataHealthStatus\": \"Must be one of [Healthy, Unhealthy, LastKnownStatus]\", \"ResetElements\": \"array\"}",
|
|
1578
|
+
"required": true,
|
|
1579
|
+
"schema": {
|
|
1580
|
+
"title": "body",
|
|
1581
|
+
"type": "string"
|
|
1582
|
+
}
|
|
1583
|
+
}
|
|
1584
|
+
],
|
|
1585
|
+
"output": {
|
|
1586
|
+
"name": "result",
|
|
1587
|
+
"type": "object",
|
|
1588
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1589
|
+
"schema": {
|
|
1590
|
+
"title": "result",
|
|
1591
|
+
"type": "object"
|
|
1592
|
+
}
|
|
1593
|
+
},
|
|
1594
|
+
"roles": [
|
|
1595
|
+
"admin"
|
|
1596
|
+
],
|
|
1597
|
+
"route": {
|
|
1598
|
+
"verb": "POST",
|
|
1599
|
+
"path": "/updateHealthCheck"
|
|
1600
|
+
},
|
|
1601
|
+
"task": true
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"name": "deleteHostedZone",
|
|
1605
|
+
"summary": "DeleteHostedZone",
|
|
1606
|
+
"description": "Deletes a hosted zone. If the hosted zone was created by another service, such as Cloud Map, see Deleting Public Hosted Zones That Were Created by Another Service in the Amazon Route 53 Developer Guide for information about how to delete it. (The process is the same for public and private hosted zones that were created by another service.) If you want to keep your domain registration but you want to stop routing internet traffic to your website or web application, we recommend that you ...(description truncated)",
|
|
1607
|
+
"input": [
|
|
1608
|
+
{
|
|
1609
|
+
"name": "id",
|
|
1610
|
+
"type": "string",
|
|
1611
|
+
"info": "The ID of the hosted zone you want to delete.: string",
|
|
1612
|
+
"required": true,
|
|
1613
|
+
"schema": {
|
|
1614
|
+
"title": "id",
|
|
1615
|
+
"type": "string"
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
],
|
|
1619
|
+
"output": {
|
|
1620
|
+
"name": "result",
|
|
1621
|
+
"type": "object",
|
|
1622
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1623
|
+
"schema": {
|
|
1624
|
+
"title": "result",
|
|
1625
|
+
"type": "object"
|
|
1626
|
+
}
|
|
1627
|
+
},
|
|
1628
|
+
"roles": [
|
|
1629
|
+
"admin"
|
|
1630
|
+
],
|
|
1631
|
+
"route": {
|
|
1632
|
+
"verb": "POST",
|
|
1633
|
+
"path": "/deleteHostedZone"
|
|
1634
|
+
},
|
|
1635
|
+
"task": true
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"name": "getHostedZone",
|
|
1639
|
+
"summary": "GetHostedZone",
|
|
1640
|
+
"description": "Gets information about a specified hosted zone including the four name servers assigned to the hosted zone.",
|
|
1641
|
+
"input": [
|
|
1642
|
+
{
|
|
1643
|
+
"name": "id",
|
|
1644
|
+
"type": "string",
|
|
1645
|
+
"info": "The ID of the hosted zone that you want to get information about.: string",
|
|
1646
|
+
"required": true,
|
|
1647
|
+
"schema": {
|
|
1648
|
+
"title": "id",
|
|
1649
|
+
"type": "string"
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
],
|
|
1653
|
+
"output": {
|
|
1654
|
+
"name": "result",
|
|
1655
|
+
"type": "object",
|
|
1656
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1657
|
+
"schema": {
|
|
1658
|
+
"title": "result",
|
|
1659
|
+
"type": "object"
|
|
1660
|
+
}
|
|
1661
|
+
},
|
|
1662
|
+
"roles": [
|
|
1663
|
+
"admin"
|
|
1664
|
+
],
|
|
1665
|
+
"route": {
|
|
1666
|
+
"verb": "POST",
|
|
1667
|
+
"path": "/getHostedZone"
|
|
1668
|
+
},
|
|
1669
|
+
"task": true
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"name": "updateHostedZoneComment",
|
|
1673
|
+
"summary": "UpdateHostedZoneComment",
|
|
1674
|
+
"description": "Updates the comment for a specified hosted zone.",
|
|
1675
|
+
"input": [
|
|
1676
|
+
{
|
|
1677
|
+
"name": "id",
|
|
1678
|
+
"type": "string",
|
|
1679
|
+
"info": "The ID for the hosted zone that you want to update the comment for.: string",
|
|
1680
|
+
"required": true,
|
|
1681
|
+
"schema": {
|
|
1682
|
+
"title": "id",
|
|
1683
|
+
"type": "string"
|
|
1684
|
+
}
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
"name": "body",
|
|
1688
|
+
"type": "string",
|
|
1689
|
+
"info": ": {\"Comment\": \"string\"}",
|
|
1690
|
+
"required": true,
|
|
1691
|
+
"schema": {
|
|
1692
|
+
"title": "body",
|
|
1693
|
+
"type": "string"
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1696
|
+
],
|
|
1697
|
+
"output": {
|
|
1698
|
+
"name": "result",
|
|
1699
|
+
"type": "object",
|
|
1700
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1701
|
+
"schema": {
|
|
1702
|
+
"title": "result",
|
|
1703
|
+
"type": "object"
|
|
1704
|
+
}
|
|
1705
|
+
},
|
|
1706
|
+
"roles": [
|
|
1707
|
+
"admin"
|
|
1708
|
+
],
|
|
1709
|
+
"route": {
|
|
1710
|
+
"verb": "POST",
|
|
1711
|
+
"path": "/updateHostedZoneComment"
|
|
1712
|
+
},
|
|
1713
|
+
"task": true
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"name": "deleteKeySigningKey",
|
|
1717
|
+
"summary": "DeleteKeySigningKey",
|
|
1718
|
+
"description": "Deletes a key-signing key (KSK). Before you can delete a KSK, you must deactivate it. The KSK must be deactivated before you can delete it regardless of whether the hosted zone is enabled for DNSSEC signing.",
|
|
1719
|
+
"input": [
|
|
1720
|
+
{
|
|
1721
|
+
"name": "hostedZoneId",
|
|
1722
|
+
"type": "string",
|
|
1723
|
+
"info": "A unique string used to identify a hosted zone.: string",
|
|
1724
|
+
"required": true,
|
|
1725
|
+
"schema": {
|
|
1726
|
+
"title": "hostedZoneId",
|
|
1727
|
+
"type": "string"
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"name": "name",
|
|
1732
|
+
"type": "string",
|
|
1733
|
+
"info": "A string used to identify a key-signing key (KSK).: string",
|
|
1734
|
+
"required": true,
|
|
1735
|
+
"schema": {
|
|
1736
|
+
"title": "name",
|
|
1737
|
+
"type": "string"
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
],
|
|
1741
|
+
"output": {
|
|
1742
|
+
"name": "result",
|
|
1743
|
+
"type": "object",
|
|
1744
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1745
|
+
"schema": {
|
|
1746
|
+
"title": "result",
|
|
1747
|
+
"type": "object"
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
"roles": [
|
|
1751
|
+
"admin"
|
|
1752
|
+
],
|
|
1753
|
+
"route": {
|
|
1754
|
+
"verb": "POST",
|
|
1755
|
+
"path": "/deleteKeySigningKey"
|
|
1756
|
+
},
|
|
1757
|
+
"task": true
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"name": "deleteQueryLoggingConfig",
|
|
1761
|
+
"summary": "DeleteQueryLoggingConfig",
|
|
1762
|
+
"description": "Deletes a configuration for DNS query logging. If you delete a configuration, Amazon Route 53 stops sending query logs to CloudWatch Logs. Route 53 doesn't delete any logs that are already in CloudWatch Logs. For more information about DNS query logs, see CreateQueryLoggingConfig .",
|
|
1763
|
+
"input": [
|
|
1764
|
+
{
|
|
1765
|
+
"name": "id",
|
|
1766
|
+
"type": "string",
|
|
1767
|
+
"info": "The ID of the configuration that you want to delete.: string",
|
|
1768
|
+
"required": true,
|
|
1769
|
+
"schema": {
|
|
1770
|
+
"title": "id",
|
|
1771
|
+
"type": "string"
|
|
1772
|
+
}
|
|
1773
|
+
}
|
|
1774
|
+
],
|
|
1775
|
+
"output": {
|
|
1776
|
+
"name": "result",
|
|
1777
|
+
"type": "object",
|
|
1778
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1779
|
+
"schema": {
|
|
1780
|
+
"title": "result",
|
|
1781
|
+
"type": "object"
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1784
|
+
"roles": [
|
|
1785
|
+
"admin"
|
|
1786
|
+
],
|
|
1787
|
+
"route": {
|
|
1788
|
+
"verb": "POST",
|
|
1789
|
+
"path": "/deleteQueryLoggingConfig"
|
|
1790
|
+
},
|
|
1791
|
+
"task": true
|
|
1792
|
+
},
|
|
1793
|
+
{
|
|
1794
|
+
"name": "getQueryLoggingConfig",
|
|
1795
|
+
"summary": "GetQueryLoggingConfig",
|
|
1796
|
+
"description": "Gets information about a specified configuration for DNS query logging. For more information about DNS query logs, see CreateQueryLoggingConfig and Logging DNS Queries .",
|
|
1797
|
+
"input": [
|
|
1798
|
+
{
|
|
1799
|
+
"name": "id",
|
|
1800
|
+
"type": "string",
|
|
1801
|
+
"info": "The ID of the configuration for DNS query logging that you want to get information about.: string",
|
|
1802
|
+
"required": true,
|
|
1803
|
+
"schema": {
|
|
1804
|
+
"title": "id",
|
|
1805
|
+
"type": "string"
|
|
1806
|
+
}
|
|
1807
|
+
}
|
|
1808
|
+
],
|
|
1809
|
+
"output": {
|
|
1810
|
+
"name": "result",
|
|
1811
|
+
"type": "object",
|
|
1812
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1813
|
+
"schema": {
|
|
1814
|
+
"title": "result",
|
|
1815
|
+
"type": "object"
|
|
1816
|
+
}
|
|
1817
|
+
},
|
|
1818
|
+
"roles": [
|
|
1819
|
+
"admin"
|
|
1820
|
+
],
|
|
1821
|
+
"route": {
|
|
1822
|
+
"verb": "POST",
|
|
1823
|
+
"path": "/getQueryLoggingConfig"
|
|
1824
|
+
},
|
|
1825
|
+
"task": true
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"name": "deleteReusableDelegationSet",
|
|
1829
|
+
"summary": "DeleteReusableDelegationSet",
|
|
1830
|
+
"description": "Deletes a reusable delegation set. You can delete a reusable delegation set only if it isn't associated with any hosted zones. To verify that the reusable delegation set is not associated with any hosted zones, submit a GetReusableDelegationSet request and specify the ID of the reusable delegation set that you want to delete.",
|
|
1831
|
+
"input": [
|
|
1832
|
+
{
|
|
1833
|
+
"name": "id",
|
|
1834
|
+
"type": "string",
|
|
1835
|
+
"info": "The ID of the reusable delegation set that you want to delete.: string",
|
|
1836
|
+
"required": true,
|
|
1837
|
+
"schema": {
|
|
1838
|
+
"title": "id",
|
|
1839
|
+
"type": "string"
|
|
1840
|
+
}
|
|
1841
|
+
}
|
|
1842
|
+
],
|
|
1843
|
+
"output": {
|
|
1844
|
+
"name": "result",
|
|
1845
|
+
"type": "object",
|
|
1846
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1847
|
+
"schema": {
|
|
1848
|
+
"title": "result",
|
|
1849
|
+
"type": "object"
|
|
1850
|
+
}
|
|
1851
|
+
},
|
|
1852
|
+
"roles": [
|
|
1853
|
+
"admin"
|
|
1854
|
+
],
|
|
1855
|
+
"route": {
|
|
1856
|
+
"verb": "POST",
|
|
1857
|
+
"path": "/deleteReusableDelegationSet"
|
|
1858
|
+
},
|
|
1859
|
+
"task": true
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"name": "getReusableDelegationSet",
|
|
1863
|
+
"summary": "GetReusableDelegationSet",
|
|
1864
|
+
"description": "Retrieves information about a specified reusable delegation set, including the four name servers that are assigned to the delegation set.",
|
|
1865
|
+
"input": [
|
|
1866
|
+
{
|
|
1867
|
+
"name": "id",
|
|
1868
|
+
"type": "string",
|
|
1869
|
+
"info": "The ID of the reusable delegation set that you want to get a list of name servers for.: string",
|
|
1870
|
+
"required": true,
|
|
1871
|
+
"schema": {
|
|
1872
|
+
"title": "id",
|
|
1873
|
+
"type": "string"
|
|
1874
|
+
}
|
|
1875
|
+
}
|
|
1876
|
+
],
|
|
1877
|
+
"output": {
|
|
1878
|
+
"name": "result",
|
|
1879
|
+
"type": "object",
|
|
1880
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1881
|
+
"schema": {
|
|
1882
|
+
"title": "result",
|
|
1883
|
+
"type": "object"
|
|
1884
|
+
}
|
|
1885
|
+
},
|
|
1886
|
+
"roles": [
|
|
1887
|
+
"admin"
|
|
1888
|
+
],
|
|
1889
|
+
"route": {
|
|
1890
|
+
"verb": "POST",
|
|
1891
|
+
"path": "/getReusableDelegationSet"
|
|
1892
|
+
},
|
|
1893
|
+
"task": true
|
|
1894
|
+
},
|
|
1895
|
+
{
|
|
1896
|
+
"name": "deleteTrafficPolicy",
|
|
1897
|
+
"summary": "DeleteTrafficPolicy",
|
|
1898
|
+
"description": "Deletes a traffic policy. When you delete a traffic policy, Route 53 sets a flag on the policy to indicate that it has been deleted. However, Route 53 never fully deletes the traffic policy. Note the following: Deleted traffic policies aren't listed if you run ListTrafficPolicies . There's no way to get a list of deleted policies. If you retain the ID of the policy, you can get information about the policy, including the traffic policy document, by running GetTrafficPolic...(description truncated)",
|
|
1899
|
+
"input": [
|
|
1900
|
+
{
|
|
1901
|
+
"name": "id",
|
|
1902
|
+
"type": "string",
|
|
1903
|
+
"info": "The ID of the traffic policy that you want to delete.: string",
|
|
1904
|
+
"required": true,
|
|
1905
|
+
"schema": {
|
|
1906
|
+
"title": "id",
|
|
1907
|
+
"type": "string"
|
|
1908
|
+
}
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"name": "version",
|
|
1912
|
+
"type": "number",
|
|
1913
|
+
"info": "The version number of the traffic policy that you want to delete.: 123",
|
|
1914
|
+
"required": true,
|
|
1915
|
+
"schema": {
|
|
1916
|
+
"title": "version",
|
|
1917
|
+
"type": "number"
|
|
1918
|
+
}
|
|
1919
|
+
}
|
|
1920
|
+
],
|
|
1921
|
+
"output": {
|
|
1922
|
+
"name": "result",
|
|
1923
|
+
"type": "object",
|
|
1924
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1925
|
+
"schema": {
|
|
1926
|
+
"title": "result",
|
|
1927
|
+
"type": "object"
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
"roles": [
|
|
1931
|
+
"admin"
|
|
1932
|
+
],
|
|
1933
|
+
"route": {
|
|
1934
|
+
"verb": "POST",
|
|
1935
|
+
"path": "/deleteTrafficPolicy"
|
|
1936
|
+
},
|
|
1937
|
+
"task": true
|
|
1938
|
+
},
|
|
1939
|
+
{
|
|
1940
|
+
"name": "getTrafficPolicy",
|
|
1941
|
+
"summary": "GetTrafficPolicy",
|
|
1942
|
+
"description": "Gets information about a specific traffic policy version. For information about how of deleting a traffic policy affects the response from GetTrafficPolicy , see DeleteTrafficPolicy .",
|
|
1943
|
+
"input": [
|
|
1944
|
+
{
|
|
1945
|
+
"name": "id",
|
|
1946
|
+
"type": "string",
|
|
1947
|
+
"info": "The ID of the traffic policy that you want to get information about.: string",
|
|
1948
|
+
"required": true,
|
|
1949
|
+
"schema": {
|
|
1950
|
+
"title": "id",
|
|
1951
|
+
"type": "string"
|
|
1952
|
+
}
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
"name": "version",
|
|
1956
|
+
"type": "number",
|
|
1957
|
+
"info": "The version number of the traffic policy that you want to get information about.: 123",
|
|
1958
|
+
"required": true,
|
|
1959
|
+
"schema": {
|
|
1960
|
+
"title": "version",
|
|
1961
|
+
"type": "number"
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
],
|
|
1965
|
+
"output": {
|
|
1966
|
+
"name": "result",
|
|
1967
|
+
"type": "object",
|
|
1968
|
+
"description": "A JSON Object containing status, code and the result",
|
|
1969
|
+
"schema": {
|
|
1970
|
+
"title": "result",
|
|
1971
|
+
"type": "object"
|
|
1972
|
+
}
|
|
1973
|
+
},
|
|
1974
|
+
"roles": [
|
|
1975
|
+
"admin"
|
|
1976
|
+
],
|
|
1977
|
+
"route": {
|
|
1978
|
+
"verb": "POST",
|
|
1979
|
+
"path": "/getTrafficPolicy"
|
|
1980
|
+
},
|
|
1981
|
+
"task": true
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"name": "updateTrafficPolicyComment",
|
|
1985
|
+
"summary": "UpdateTrafficPolicyComment",
|
|
1986
|
+
"description": "Updates the comment for a specified traffic policy version.",
|
|
1987
|
+
"input": [
|
|
1988
|
+
{
|
|
1989
|
+
"name": "id",
|
|
1990
|
+
"type": "string",
|
|
1991
|
+
"info": "The value of Id for the traffic policy that you want to update the comment for.: string",
|
|
1992
|
+
"required": true,
|
|
1993
|
+
"schema": {
|
|
1994
|
+
"title": "id",
|
|
1995
|
+
"type": "string"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
"name": "version",
|
|
2000
|
+
"type": "number",
|
|
2001
|
+
"info": "The value of Version for the traffic policy that you want to update the comment for.: 123",
|
|
2002
|
+
"required": true,
|
|
2003
|
+
"schema": {
|
|
2004
|
+
"title": "version",
|
|
2005
|
+
"type": "number"
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"name": "body",
|
|
2010
|
+
"type": "string",
|
|
2011
|
+
"info": ": {\"Comment\": \"string\"}",
|
|
2012
|
+
"required": true,
|
|
2013
|
+
"schema": {
|
|
2014
|
+
"title": "body",
|
|
2015
|
+
"type": "string"
|
|
2016
|
+
}
|
|
2017
|
+
}
|
|
2018
|
+
],
|
|
2019
|
+
"output": {
|
|
2020
|
+
"name": "result",
|
|
2021
|
+
"type": "object",
|
|
2022
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2023
|
+
"schema": {
|
|
2024
|
+
"title": "result",
|
|
2025
|
+
"type": "object"
|
|
2026
|
+
}
|
|
2027
|
+
},
|
|
2028
|
+
"roles": [
|
|
2029
|
+
"admin"
|
|
2030
|
+
],
|
|
2031
|
+
"route": {
|
|
2032
|
+
"verb": "POST",
|
|
2033
|
+
"path": "/updateTrafficPolicyComment"
|
|
2034
|
+
},
|
|
2035
|
+
"task": true
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"name": "deleteTrafficPolicyInstance",
|
|
2039
|
+
"summary": "DeleteTrafficPolicyInstance",
|
|
2040
|
+
"description": "Deletes a traffic policy instance and all of the resource record sets that Amazon Route 53 created when you created the instance. In the Route 53 console, traffic policy instances are known as policy records.",
|
|
2041
|
+
"input": [
|
|
2042
|
+
{
|
|
2043
|
+
"name": "id",
|
|
2044
|
+
"type": "string",
|
|
2045
|
+
"info": "The ID of the traffic policy instance that you want to delete. When you delete a traffic policy instance, Amazon Route 53 also deletes all of the resource record se...(description truncated): string",
|
|
2046
|
+
"required": true,
|
|
2047
|
+
"schema": {
|
|
2048
|
+
"title": "id",
|
|
2049
|
+
"type": "string"
|
|
2050
|
+
}
|
|
2051
|
+
}
|
|
2052
|
+
],
|
|
2053
|
+
"output": {
|
|
2054
|
+
"name": "result",
|
|
2055
|
+
"type": "object",
|
|
2056
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2057
|
+
"schema": {
|
|
2058
|
+
"title": "result",
|
|
2059
|
+
"type": "object"
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
"roles": [
|
|
2063
|
+
"admin"
|
|
2064
|
+
],
|
|
2065
|
+
"route": {
|
|
2066
|
+
"verb": "POST",
|
|
2067
|
+
"path": "/deleteTrafficPolicyInstance"
|
|
2068
|
+
},
|
|
2069
|
+
"task": true
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
"name": "getTrafficPolicyInstance",
|
|
2073
|
+
"summary": "GetTrafficPolicyInstance",
|
|
2074
|
+
"description": "Gets information about a specified traffic policy instance. After you submit a CreateTrafficPolicyInstance or an UpdateTrafficPolicyInstance request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the State response element. In the Route 53 console, traffic policy instances are known as policy records.",
|
|
2075
|
+
"input": [
|
|
2076
|
+
{
|
|
2077
|
+
"name": "id",
|
|
2078
|
+
"type": "string",
|
|
2079
|
+
"info": "The ID of the traffic policy instance that you want to get information about.: string",
|
|
2080
|
+
"required": true,
|
|
2081
|
+
"schema": {
|
|
2082
|
+
"title": "id",
|
|
2083
|
+
"type": "string"
|
|
2084
|
+
}
|
|
2085
|
+
}
|
|
2086
|
+
],
|
|
2087
|
+
"output": {
|
|
2088
|
+
"name": "result",
|
|
2089
|
+
"type": "object",
|
|
2090
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2091
|
+
"schema": {
|
|
2092
|
+
"title": "result",
|
|
2093
|
+
"type": "object"
|
|
2094
|
+
}
|
|
2095
|
+
},
|
|
2096
|
+
"roles": [
|
|
2097
|
+
"admin"
|
|
2098
|
+
],
|
|
2099
|
+
"route": {
|
|
2100
|
+
"verb": "POST",
|
|
2101
|
+
"path": "/getTrafficPolicyInstance"
|
|
2102
|
+
},
|
|
2103
|
+
"task": true
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
"name": "updateTrafficPolicyInstance",
|
|
2107
|
+
"summary": "UpdateTrafficPolicyInstance",
|
|
2108
|
+
"description": "Updates the resource record sets in a specified hosted zone that were created based on the settings in a specified traffic policy version. When you update a traffic policy instance, Amazon Route 53 continues to respond to DNS queries for the root resource record set name (such as example.com) while it replaces one group of resource record sets with another. Route 53 performs the following operations: Route 53 creates a new group of resource record sets based on the specified traffic pol...(description truncated)",
|
|
2109
|
+
"input": [
|
|
2110
|
+
{
|
|
2111
|
+
"name": "id",
|
|
2112
|
+
"type": "string",
|
|
2113
|
+
"info": "The ID of the traffic policy instance that you want to update.: string",
|
|
2114
|
+
"required": true,
|
|
2115
|
+
"schema": {
|
|
2116
|
+
"title": "id",
|
|
2117
|
+
"type": "string"
|
|
2118
|
+
}
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"name": "body",
|
|
2122
|
+
"type": "string",
|
|
2123
|
+
"info": ": {\"TTL\": 123, \"TrafficPolicyId\": \"string\", \"TrafficPolicyVersion\": 123}",
|
|
2124
|
+
"required": true,
|
|
2125
|
+
"schema": {
|
|
2126
|
+
"title": "body",
|
|
2127
|
+
"type": "string"
|
|
2128
|
+
}
|
|
2129
|
+
}
|
|
2130
|
+
],
|
|
2131
|
+
"output": {
|
|
2132
|
+
"name": "result",
|
|
2133
|
+
"type": "object",
|
|
2134
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2135
|
+
"schema": {
|
|
2136
|
+
"title": "result",
|
|
2137
|
+
"type": "object"
|
|
2138
|
+
}
|
|
2139
|
+
},
|
|
2140
|
+
"roles": [
|
|
2141
|
+
"admin"
|
|
2142
|
+
],
|
|
2143
|
+
"route": {
|
|
2144
|
+
"verb": "POST",
|
|
2145
|
+
"path": "/updateTrafficPolicyInstance"
|
|
2146
|
+
},
|
|
2147
|
+
"task": true
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
"name": "deleteVPCAssociationAuthorization",
|
|
2151
|
+
"summary": "DeleteVPCAssociationAuthorization",
|
|
2152
|
+
"description": "Removes authorization to submit an AssociateVPCWithHostedZone request to associate a specified VPC with a hosted zone that was created by a different account. You must use the account that created the hosted zone to submit a DeleteVPCAssociationAuthorization request. Sending this request only prevents the Amazon Web Services account that created the VPC from associating the VPC with the Amazon Route 53 hosted zone in the future. If the VPC is already associated with the hosted zone, De...(description truncated)",
|
|
2153
|
+
"input": [
|
|
2154
|
+
{
|
|
2155
|
+
"name": "id",
|
|
2156
|
+
"type": "string",
|
|
2157
|
+
"info": "When removing authorization to associate a VPC that was created by one Amazon Web Services account with a hosted zone that was created with a different Amazon Web Service...(description truncated): string",
|
|
2158
|
+
"required": true,
|
|
2159
|
+
"schema": {
|
|
2160
|
+
"title": "id",
|
|
2161
|
+
"type": "string"
|
|
2162
|
+
}
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
"name": "body",
|
|
2166
|
+
"type": "string",
|
|
2167
|
+
"info": ": {\"VPC\": {\"VPCRegion\": \"Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1]\", \"VPCId\": \"string\"}}",
|
|
2168
|
+
"required": true,
|
|
2169
|
+
"schema": {
|
|
2170
|
+
"title": "body",
|
|
2171
|
+
"type": "string"
|
|
2172
|
+
}
|
|
2173
|
+
}
|
|
2174
|
+
],
|
|
2175
|
+
"output": {
|
|
2176
|
+
"name": "result",
|
|
2177
|
+
"type": "object",
|
|
2178
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2179
|
+
"schema": {
|
|
2180
|
+
"title": "result",
|
|
2181
|
+
"type": "object"
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
2184
|
+
"roles": [
|
|
2185
|
+
"admin"
|
|
2186
|
+
],
|
|
2187
|
+
"route": {
|
|
2188
|
+
"verb": "POST",
|
|
2189
|
+
"path": "/deleteVPCAssociationAuthorization"
|
|
2190
|
+
},
|
|
2191
|
+
"task": true
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"name": "disableHostedZoneDNSSEC",
|
|
2195
|
+
"summary": "DisableHostedZoneDNSSEC",
|
|
2196
|
+
"description": "Disables DNSSEC signing in a specific hosted zone. This action does not deactivate any key-signing keys (KSKs) that are active in the hosted zone.",
|
|
2197
|
+
"input": [
|
|
2198
|
+
{
|
|
2199
|
+
"name": "id",
|
|
2200
|
+
"type": "string",
|
|
2201
|
+
"info": "A unique string used to identify a hosted zone.: string",
|
|
2202
|
+
"required": true,
|
|
2203
|
+
"schema": {
|
|
2204
|
+
"title": "id",
|
|
2205
|
+
"type": "string"
|
|
2206
|
+
}
|
|
2207
|
+
}
|
|
2208
|
+
],
|
|
2209
|
+
"output": {
|
|
2210
|
+
"name": "result",
|
|
2211
|
+
"type": "object",
|
|
2212
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2213
|
+
"schema": {
|
|
2214
|
+
"title": "result",
|
|
2215
|
+
"type": "object"
|
|
2216
|
+
}
|
|
2217
|
+
},
|
|
2218
|
+
"roles": [
|
|
2219
|
+
"admin"
|
|
2220
|
+
],
|
|
2221
|
+
"route": {
|
|
2222
|
+
"verb": "POST",
|
|
2223
|
+
"path": "/disableHostedZoneDNSSEC"
|
|
2224
|
+
},
|
|
2225
|
+
"task": true
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"name": "disassociateVPCFromHostedZone",
|
|
2229
|
+
"summary": "DisassociateVPCFromHostedZone",
|
|
2230
|
+
"description": "Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an Amazon Route 53 private hosted zone. Note the following: You can't disassociate the last Amazon VPC from a private hosted zone. You can't convert a private hosted zone into a public hosted zone. You can submit a DisassociateVPCFromHostedZone request using either the account that created the hosted zone or the account that created the Amazon VPC. Some services, such as Cloud Map and Amazon Elastic File S...(description truncated)",
|
|
2231
|
+
"input": [
|
|
2232
|
+
{
|
|
2233
|
+
"name": "id",
|
|
2234
|
+
"type": "string",
|
|
2235
|
+
"info": "The ID of the private hosted zone that you want to disassociate a VPC from.: string",
|
|
2236
|
+
"required": true,
|
|
2237
|
+
"schema": {
|
|
2238
|
+
"title": "id",
|
|
2239
|
+
"type": "string"
|
|
2240
|
+
}
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
"name": "body",
|
|
2244
|
+
"type": "string",
|
|
2245
|
+
"info": ": {\"VPC\": {\"VPCRegion\": \"Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1]\", \"VPCId\": \"string\"}, \"Comment\": \"string\"}",
|
|
2246
|
+
"required": true,
|
|
2247
|
+
"schema": {
|
|
2248
|
+
"title": "body",
|
|
2249
|
+
"type": "string"
|
|
2250
|
+
}
|
|
2251
|
+
}
|
|
2252
|
+
],
|
|
2253
|
+
"output": {
|
|
2254
|
+
"name": "result",
|
|
2255
|
+
"type": "object",
|
|
2256
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2257
|
+
"schema": {
|
|
2258
|
+
"title": "result",
|
|
2259
|
+
"type": "object"
|
|
2260
|
+
}
|
|
2261
|
+
},
|
|
2262
|
+
"roles": [
|
|
2263
|
+
"admin"
|
|
2264
|
+
],
|
|
2265
|
+
"route": {
|
|
2266
|
+
"verb": "POST",
|
|
2267
|
+
"path": "/disassociateVPCFromHostedZone"
|
|
2268
|
+
},
|
|
2269
|
+
"task": true
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
"name": "enableHostedZoneDNSSEC",
|
|
2273
|
+
"summary": "EnableHostedZoneDNSSEC",
|
|
2274
|
+
"description": "Enables DNSSEC signing in a specific hosted zone.",
|
|
2275
|
+
"input": [
|
|
2276
|
+
{
|
|
2277
|
+
"name": "id",
|
|
2278
|
+
"type": "string",
|
|
2279
|
+
"info": "A unique string used to identify a hosted zone.: string",
|
|
2280
|
+
"required": true,
|
|
2281
|
+
"schema": {
|
|
2282
|
+
"title": "id",
|
|
2283
|
+
"type": "string"
|
|
2284
|
+
}
|
|
2285
|
+
}
|
|
2286
|
+
],
|
|
2287
|
+
"output": {
|
|
2288
|
+
"name": "result",
|
|
2289
|
+
"type": "object",
|
|
2290
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2291
|
+
"schema": {
|
|
2292
|
+
"title": "result",
|
|
2293
|
+
"type": "object"
|
|
2294
|
+
}
|
|
2295
|
+
},
|
|
2296
|
+
"roles": [
|
|
2297
|
+
"admin"
|
|
2298
|
+
],
|
|
2299
|
+
"route": {
|
|
2300
|
+
"verb": "POST",
|
|
2301
|
+
"path": "/enableHostedZoneDNSSEC"
|
|
2302
|
+
},
|
|
2303
|
+
"task": true
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
"name": "getAccountLimit",
|
|
2307
|
+
"summary": "GetAccountLimit",
|
|
2308
|
+
"description": "Gets the specified limit for the current account, for example, the maximum number of health checks that you can create using the account. For the default limit, see Limits in the Amazon Route 53 Developer Guide . To request a higher limit, open a case . You can also view account limits in Amazon Web Services Trusted Advisor. Sign in to the Amazon Web Services Management Console and open the Trusted Advisor console at https://console.aws.amazon.com/trustedadvisor/ . Then choose Servi...(description truncated)",
|
|
2309
|
+
"input": [
|
|
2310
|
+
{
|
|
2311
|
+
"name": "type",
|
|
2312
|
+
"type": "string",
|
|
2313
|
+
"info": "The limit that you want to get. Valid values include the following: MAX_HEALTH_CHECKS_BY_OWNER : The maximum number of health checks that you can create using th...(description truncated): Must be one of [MAX_HEALTH_CHECKS_BY_OWNER, MAX_HOSTED_ZONES_BY_OWNER, MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER, MAX_REUSABLE_DELEGATION_SETS_BY_OWNER, MAX_TRAFFIC_POLICIES_BY_OWNER]",
|
|
2314
|
+
"required": true,
|
|
2315
|
+
"schema": {
|
|
2316
|
+
"title": "type",
|
|
2317
|
+
"type": "string"
|
|
2318
|
+
}
|
|
2319
|
+
}
|
|
2320
|
+
],
|
|
2321
|
+
"output": {
|
|
2322
|
+
"name": "result",
|
|
2323
|
+
"type": "object",
|
|
2324
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2325
|
+
"schema": {
|
|
2326
|
+
"title": "result",
|
|
2327
|
+
"type": "object"
|
|
2328
|
+
}
|
|
2329
|
+
},
|
|
2330
|
+
"roles": [
|
|
2331
|
+
"admin"
|
|
2332
|
+
],
|
|
2333
|
+
"route": {
|
|
2334
|
+
"verb": "POST",
|
|
2335
|
+
"path": "/getAccountLimit"
|
|
2336
|
+
},
|
|
2337
|
+
"task": true
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"name": "getChange",
|
|
2341
|
+
"summary": "GetChange",
|
|
2342
|
+
"description": "Returns the current status of a change batch request. The status is one of the following values: PENDING indicates that the changes in this request have not propagated to all Amazon Route 53 DNS servers. This is the initial status of all change batch requests. INSYNC indicates that the changes have propagated to all Route 53 DNS servers.",
|
|
2343
|
+
"input": [
|
|
2344
|
+
{
|
|
2345
|
+
"name": "id",
|
|
2346
|
+
"type": "string",
|
|
2347
|
+
"info": "The ID of the change batch request. The value that you specify here is the value that ChangeResourceRecordSets returned in the Id element when you submitted the reque...(description truncated): string",
|
|
2348
|
+
"required": true,
|
|
2349
|
+
"schema": {
|
|
2350
|
+
"title": "id",
|
|
2351
|
+
"type": "string"
|
|
2352
|
+
}
|
|
2353
|
+
}
|
|
2354
|
+
],
|
|
2355
|
+
"output": {
|
|
2356
|
+
"name": "result",
|
|
2357
|
+
"type": "object",
|
|
2358
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2359
|
+
"schema": {
|
|
2360
|
+
"title": "result",
|
|
2361
|
+
"type": "object"
|
|
2362
|
+
}
|
|
2363
|
+
},
|
|
2364
|
+
"roles": [
|
|
2365
|
+
"admin"
|
|
2366
|
+
],
|
|
2367
|
+
"route": {
|
|
2368
|
+
"verb": "POST",
|
|
2369
|
+
"path": "/getChange"
|
|
2370
|
+
},
|
|
2371
|
+
"task": true
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"name": "getCheckerIpRanges",
|
|
2375
|
+
"summary": "GetCheckerIpRanges",
|
|
2376
|
+
"description": "Route 53 does not perform authorization for this API because it retrieves information that is already available to the public. GetCheckerIpRanges still works, but we recommend that you download ip-ranges.json, which includes IP address ranges for all Amazon Web Services services. For more information, see IP Address Ranges of Amazon Route 53 Servers in the Amazon Route 53 Developer Guide .",
|
|
2377
|
+
"input": [],
|
|
2378
|
+
"output": {
|
|
2379
|
+
"name": "result",
|
|
2380
|
+
"type": "object",
|
|
2381
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2382
|
+
"schema": {
|
|
2383
|
+
"title": "result",
|
|
2384
|
+
"type": "object"
|
|
2385
|
+
}
|
|
2386
|
+
},
|
|
2387
|
+
"roles": [
|
|
2388
|
+
"admin"
|
|
2389
|
+
],
|
|
2390
|
+
"route": {
|
|
2391
|
+
"verb": "GET",
|
|
2392
|
+
"path": "/getCheckerIpRanges"
|
|
2393
|
+
},
|
|
2394
|
+
"task": true
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"name": "getDNSSEC",
|
|
2398
|
+
"summary": "GetDNSSEC",
|
|
2399
|
+
"description": "Returns information about DNSSEC for a specific hosted zone, including the key-signing keys (KSKs) in the hosted zone.",
|
|
2400
|
+
"input": [
|
|
2401
|
+
{
|
|
2402
|
+
"name": "id",
|
|
2403
|
+
"type": "string",
|
|
2404
|
+
"info": "A unique string used to identify a hosted zone.: string",
|
|
2405
|
+
"required": true,
|
|
2406
|
+
"schema": {
|
|
2407
|
+
"title": "id",
|
|
2408
|
+
"type": "string"
|
|
2409
|
+
}
|
|
2410
|
+
}
|
|
2411
|
+
],
|
|
2412
|
+
"output": {
|
|
2413
|
+
"name": "result",
|
|
2414
|
+
"type": "object",
|
|
2415
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2416
|
+
"schema": {
|
|
2417
|
+
"title": "result",
|
|
2418
|
+
"type": "object"
|
|
2419
|
+
}
|
|
2420
|
+
},
|
|
2421
|
+
"roles": [
|
|
2422
|
+
"admin"
|
|
2423
|
+
],
|
|
2424
|
+
"route": {
|
|
2425
|
+
"verb": "POST",
|
|
2426
|
+
"path": "/getDNSSEC"
|
|
2427
|
+
},
|
|
2428
|
+
"task": true
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"name": "getGeoLocation",
|
|
2432
|
+
"summary": "GetGeoLocation",
|
|
2433
|
+
"description": "Gets information about whether a specified geographic location is supported for Amazon Route 53 geolocation resource record sets. Route 53 does not perform authorization for this API because it retrieves information that is already available to the public. Use the following syntax to determine whether a continent is supported for geolocation: GET /2013-04-01/geolocation?continentcode= two-letter abbreviation for a continent Use the following syntax to determine whether a country i...(description truncated)",
|
|
2434
|
+
"input": [
|
|
2435
|
+
{
|
|
2436
|
+
"name": "continentcode",
|
|
2437
|
+
"type": "string",
|
|
2438
|
+
"info": "For geolocation resource record sets, a two-letter abbreviation that identifies a continent. Amazon Route 53 supports the following continent codes: AF : Africa ...(description truncated): string",
|
|
2439
|
+
"required": false,
|
|
2440
|
+
"schema": {
|
|
2441
|
+
"title": "continentcode",
|
|
2442
|
+
"type": "string"
|
|
2443
|
+
}
|
|
2444
|
+
},
|
|
2445
|
+
{
|
|
2446
|
+
"name": "countrycode",
|
|
2447
|
+
"type": "string",
|
|
2448
|
+
"info": "Amazon Route 53 uses the two-letter country codes that are specified in ISO standard 3166-1 alpha-2 .: string",
|
|
2449
|
+
"required": false,
|
|
2450
|
+
"schema": {
|
|
2451
|
+
"title": "countrycode",
|
|
2452
|
+
"type": "string"
|
|
2453
|
+
}
|
|
2454
|
+
},
|
|
2455
|
+
{
|
|
2456
|
+
"name": "subdivisioncode",
|
|
2457
|
+
"type": "string",
|
|
2458
|
+
"info": "The code for the subdivision, such as a particular state within the United States. For a list of US state abbreviations, see Appendix B: Two–Letter State and Possession ...(description truncated): string",
|
|
2459
|
+
"required": false,
|
|
2460
|
+
"schema": {
|
|
2461
|
+
"title": "subdivisioncode",
|
|
2462
|
+
"type": "string"
|
|
2463
|
+
}
|
|
2464
|
+
}
|
|
2465
|
+
],
|
|
2466
|
+
"output": {
|
|
2467
|
+
"name": "result",
|
|
2468
|
+
"type": "object",
|
|
2469
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2470
|
+
"schema": {
|
|
2471
|
+
"title": "result",
|
|
2472
|
+
"type": "object"
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2475
|
+
"roles": [
|
|
2476
|
+
"admin"
|
|
2477
|
+
],
|
|
2478
|
+
"route": {
|
|
2479
|
+
"verb": "POST",
|
|
2480
|
+
"path": "/getGeoLocation"
|
|
2481
|
+
},
|
|
2482
|
+
"task": true
|
|
2483
|
+
},
|
|
2484
|
+
{
|
|
2485
|
+
"name": "getHealthCheckCount",
|
|
2486
|
+
"summary": "GetHealthCheckCount",
|
|
2487
|
+
"description": "Retrieves the number of health checks that are associated with the current Amazon Web Services account.",
|
|
2488
|
+
"input": [],
|
|
2489
|
+
"output": {
|
|
2490
|
+
"name": "result",
|
|
2491
|
+
"type": "object",
|
|
2492
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2493
|
+
"schema": {
|
|
2494
|
+
"title": "result",
|
|
2495
|
+
"type": "object"
|
|
2496
|
+
}
|
|
2497
|
+
},
|
|
2498
|
+
"roles": [
|
|
2499
|
+
"admin"
|
|
2500
|
+
],
|
|
2501
|
+
"route": {
|
|
2502
|
+
"verb": "GET",
|
|
2503
|
+
"path": "/getHealthCheckCount"
|
|
2504
|
+
},
|
|
2505
|
+
"task": true
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
"name": "getHealthCheckLastFailureReason",
|
|
2509
|
+
"summary": "GetHealthCheckLastFailureReason",
|
|
2510
|
+
"description": "Gets the reason that a specified health check failed most recently.",
|
|
2511
|
+
"input": [
|
|
2512
|
+
{
|
|
2513
|
+
"name": "healthCheckId",
|
|
2514
|
+
"type": "string",
|
|
2515
|
+
"info": "The ID for the health check for which you want the last failure reason. When you created the health check, CreateHealthCheck returned the ID in the response, in the H...(description truncated): string",
|
|
2516
|
+
"required": true,
|
|
2517
|
+
"schema": {
|
|
2518
|
+
"title": "healthCheckId",
|
|
2519
|
+
"type": "string"
|
|
2520
|
+
}
|
|
2521
|
+
}
|
|
2522
|
+
],
|
|
2523
|
+
"output": {
|
|
2524
|
+
"name": "result",
|
|
2525
|
+
"type": "object",
|
|
2526
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2527
|
+
"schema": {
|
|
2528
|
+
"title": "result",
|
|
2529
|
+
"type": "object"
|
|
2530
|
+
}
|
|
2531
|
+
},
|
|
2532
|
+
"roles": [
|
|
2533
|
+
"admin"
|
|
2534
|
+
],
|
|
2535
|
+
"route": {
|
|
2536
|
+
"verb": "POST",
|
|
2537
|
+
"path": "/getHealthCheckLastFailureReason"
|
|
2538
|
+
},
|
|
2539
|
+
"task": true
|
|
2540
|
+
},
|
|
2541
|
+
{
|
|
2542
|
+
"name": "getHealthCheckStatus",
|
|
2543
|
+
"summary": "GetHealthCheckStatus",
|
|
2544
|
+
"description": "Gets status of a specified health check. This API is intended for use during development to diagnose behavior. It doesn’t support production use-cases with high query rates that require immediate and actionable responses.",
|
|
2545
|
+
"input": [
|
|
2546
|
+
{
|
|
2547
|
+
"name": "healthCheckId",
|
|
2548
|
+
"type": "string",
|
|
2549
|
+
"info": "The ID for the health check that you want the current status for. When you created the health check, CreateHealthCheck returned the ID in the response, in the HealthC...(description truncated): string",
|
|
2550
|
+
"required": true,
|
|
2551
|
+
"schema": {
|
|
2552
|
+
"title": "healthCheckId",
|
|
2553
|
+
"type": "string"
|
|
2554
|
+
}
|
|
2555
|
+
}
|
|
2556
|
+
],
|
|
2557
|
+
"output": {
|
|
2558
|
+
"name": "result",
|
|
2559
|
+
"type": "object",
|
|
2560
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2561
|
+
"schema": {
|
|
2562
|
+
"title": "result",
|
|
2563
|
+
"type": "object"
|
|
2564
|
+
}
|
|
2565
|
+
},
|
|
2566
|
+
"roles": [
|
|
2567
|
+
"admin"
|
|
2568
|
+
],
|
|
2569
|
+
"route": {
|
|
2570
|
+
"verb": "POST",
|
|
2571
|
+
"path": "/getHealthCheckStatus"
|
|
2572
|
+
},
|
|
2573
|
+
"task": true
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
"name": "getHostedZoneCount",
|
|
2577
|
+
"summary": "GetHostedZoneCount",
|
|
2578
|
+
"description": "Retrieves the number of hosted zones that are associated with the current Amazon Web Services account.",
|
|
2579
|
+
"input": [],
|
|
2580
|
+
"output": {
|
|
2581
|
+
"name": "result",
|
|
2582
|
+
"type": "object",
|
|
2583
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2584
|
+
"schema": {
|
|
2585
|
+
"title": "result",
|
|
2586
|
+
"type": "object"
|
|
2587
|
+
}
|
|
2588
|
+
},
|
|
2589
|
+
"roles": [
|
|
2590
|
+
"admin"
|
|
2591
|
+
],
|
|
2592
|
+
"route": {
|
|
2593
|
+
"verb": "GET",
|
|
2594
|
+
"path": "/getHostedZoneCount"
|
|
2595
|
+
},
|
|
2596
|
+
"task": true
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
"name": "getHostedZoneLimit",
|
|
2600
|
+
"summary": "GetHostedZoneLimit",
|
|
2601
|
+
"description": "Gets the specified limit for a specified hosted zone, for example, the maximum number of records that you can create in the hosted zone. For the default limit, see Limits in the Amazon Route 53 Developer Guide . To request a higher limit, open a case .",
|
|
2602
|
+
"input": [
|
|
2603
|
+
{
|
|
2604
|
+
"name": "type",
|
|
2605
|
+
"type": "string",
|
|
2606
|
+
"info": "The limit that you want to get. Valid values include the following: MAX_RRSETS_BY_ZONE : The maximum number of records that you can create in the specified hoste...(description truncated): Must be one of [MAX_RRSETS_BY_ZONE, MAX_VPCS_ASSOCIATED_BY_ZONE]",
|
|
2607
|
+
"required": true,
|
|
2608
|
+
"schema": {
|
|
2609
|
+
"title": "type",
|
|
2610
|
+
"type": "string"
|
|
2611
|
+
}
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"name": "id",
|
|
2615
|
+
"type": "string",
|
|
2616
|
+
"info": "The ID of the hosted zone that you want to get a limit for.: string",
|
|
2617
|
+
"required": true,
|
|
2618
|
+
"schema": {
|
|
2619
|
+
"title": "id",
|
|
2620
|
+
"type": "string"
|
|
2621
|
+
}
|
|
2622
|
+
}
|
|
2623
|
+
],
|
|
2624
|
+
"output": {
|
|
2625
|
+
"name": "result",
|
|
2626
|
+
"type": "object",
|
|
2627
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2628
|
+
"schema": {
|
|
2629
|
+
"title": "result",
|
|
2630
|
+
"type": "object"
|
|
2631
|
+
}
|
|
2632
|
+
},
|
|
2633
|
+
"roles": [
|
|
2634
|
+
"admin"
|
|
2635
|
+
],
|
|
2636
|
+
"route": {
|
|
2637
|
+
"verb": "POST",
|
|
2638
|
+
"path": "/getHostedZoneLimit"
|
|
2639
|
+
},
|
|
2640
|
+
"task": true
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
"name": "getReusableDelegationSetLimit",
|
|
2644
|
+
"summary": "GetReusableDelegationSetLimit",
|
|
2645
|
+
"description": "Gets the maximum number of hosted zones that you can associate with the specified reusable delegation set. For the default limit, see Limits in the Amazon Route 53 Developer Guide . To request a higher limit, open a case .",
|
|
2646
|
+
"input": [
|
|
2647
|
+
{
|
|
2648
|
+
"name": "type",
|
|
2649
|
+
"type": "string",
|
|
2650
|
+
"info": "Specify MAX_ZONES_BY_REUSABLE_DELEGATION_SET to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.: Must be one of [MAX_ZONES_BY_REUSABLE_DELEGATION_SET]",
|
|
2651
|
+
"required": true,
|
|
2652
|
+
"schema": {
|
|
2653
|
+
"title": "type",
|
|
2654
|
+
"type": "string"
|
|
2655
|
+
}
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
"name": "id",
|
|
2659
|
+
"type": "string",
|
|
2660
|
+
"info": "The ID of the delegation set that you want to get the limit for.: string",
|
|
2661
|
+
"required": true,
|
|
2662
|
+
"schema": {
|
|
2663
|
+
"title": "id",
|
|
2664
|
+
"type": "string"
|
|
2665
|
+
}
|
|
2666
|
+
}
|
|
2667
|
+
],
|
|
2668
|
+
"output": {
|
|
2669
|
+
"name": "result",
|
|
2670
|
+
"type": "object",
|
|
2671
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2672
|
+
"schema": {
|
|
2673
|
+
"title": "result",
|
|
2674
|
+
"type": "object"
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2677
|
+
"roles": [
|
|
2678
|
+
"admin"
|
|
2679
|
+
],
|
|
2680
|
+
"route": {
|
|
2681
|
+
"verb": "POST",
|
|
2682
|
+
"path": "/getReusableDelegationSetLimit"
|
|
2683
|
+
},
|
|
2684
|
+
"task": true
|
|
2685
|
+
},
|
|
2686
|
+
{
|
|
2687
|
+
"name": "getTrafficPolicyInstanceCount",
|
|
2688
|
+
"summary": "GetTrafficPolicyInstanceCount",
|
|
2689
|
+
"description": "Gets the number of traffic policy instances that are associated with the current Amazon Web Services account.",
|
|
2690
|
+
"input": [],
|
|
2691
|
+
"output": {
|
|
2692
|
+
"name": "result",
|
|
2693
|
+
"type": "object",
|
|
2694
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2695
|
+
"schema": {
|
|
2696
|
+
"title": "result",
|
|
2697
|
+
"type": "object"
|
|
2698
|
+
}
|
|
2699
|
+
},
|
|
2700
|
+
"roles": [
|
|
2701
|
+
"admin"
|
|
2702
|
+
],
|
|
2703
|
+
"route": {
|
|
2704
|
+
"verb": "GET",
|
|
2705
|
+
"path": "/getTrafficPolicyInstanceCount"
|
|
2706
|
+
},
|
|
2707
|
+
"task": true
|
|
2708
|
+
},
|
|
2709
|
+
{
|
|
2710
|
+
"name": "listGeoLocations",
|
|
2711
|
+
"summary": "ListGeoLocations",
|
|
2712
|
+
"description": "Retrieves a list of supported geographic locations. Countries are listed first, and continents are listed last. If Amazon Route 53 supports subdivisions for a country (for example, states or provinces), the subdivisions for that country are listed in alphabetical order immediately after the corresponding country. Route 53 does not perform authorization for this API because it retrieves information that is already available to the public. For a list of supported geolocation codes, see the ...(description truncated)",
|
|
2713
|
+
"input": [
|
|
2714
|
+
{
|
|
2715
|
+
"name": "startcontinentcode",
|
|
2716
|
+
"type": "string",
|
|
2717
|
+
"info": "The code for the continent with which you want to start listing locations that Amazon Route 53 supports for geolocation. If Route 53 has already returned a page or more ...(description truncated): string",
|
|
2718
|
+
"required": false,
|
|
2719
|
+
"schema": {
|
|
2720
|
+
"title": "startcontinentcode",
|
|
2721
|
+
"type": "string"
|
|
2722
|
+
}
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"name": "startcountrycode",
|
|
2726
|
+
"type": "string",
|
|
2727
|
+
"info": "The code for the country with which you want to start listing locations that Amazon Route 53 supports for geolocation. If Route 53 has already returned a page or more of ...(description truncated): string",
|
|
2728
|
+
"required": false,
|
|
2729
|
+
"schema": {
|
|
2730
|
+
"title": "startcountrycode",
|
|
2731
|
+
"type": "string"
|
|
2732
|
+
}
|
|
2733
|
+
},
|
|
2734
|
+
{
|
|
2735
|
+
"name": "startsubdivisioncode",
|
|
2736
|
+
"type": "string",
|
|
2737
|
+
"info": "The code for the state of the United States with which you want to start listing locations that Amazon Route 53 supports for geolocation. If Route 53 has already returne...(description truncated): string",
|
|
2738
|
+
"required": false,
|
|
2739
|
+
"schema": {
|
|
2740
|
+
"title": "startsubdivisioncode",
|
|
2741
|
+
"type": "string"
|
|
2742
|
+
}
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"name": "maxitems",
|
|
2746
|
+
"type": "string",
|
|
2747
|
+
"info": "(Optional) The maximum number of geolocations to be included in the response body for this request. If more than maxitems geolocations remain to be listed, then the val...(description truncated): string",
|
|
2748
|
+
"required": false,
|
|
2749
|
+
"schema": {
|
|
2750
|
+
"title": "maxitems",
|
|
2751
|
+
"type": "string"
|
|
2752
|
+
}
|
|
2753
|
+
}
|
|
2754
|
+
],
|
|
2755
|
+
"output": {
|
|
2756
|
+
"name": "result",
|
|
2757
|
+
"type": "object",
|
|
2758
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2759
|
+
"schema": {
|
|
2760
|
+
"title": "result",
|
|
2761
|
+
"type": "object"
|
|
2762
|
+
}
|
|
2763
|
+
},
|
|
2764
|
+
"roles": [
|
|
2765
|
+
"admin"
|
|
2766
|
+
],
|
|
2767
|
+
"route": {
|
|
2768
|
+
"verb": "POST",
|
|
2769
|
+
"path": "/listGeoLocations"
|
|
2770
|
+
},
|
|
2771
|
+
"task": true
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"name": "listHostedZonesByName",
|
|
2775
|
+
"summary": "ListHostedZonesByName",
|
|
2776
|
+
"description": "Retrieves a list of your hosted zones in lexicographic order. The response includes a HostedZones child element for each hosted zone created by the current Amazon Web Services account. ListHostedZonesByName sorts hosted zones by name with the labels reversed. For example: com.example.www. Note the trailing dot, which can change the sort order in some circumstances. If the domain name includes escape characters or Punycode, ListHostedZonesByName alphabetizes the domain name u...(description truncated)",
|
|
2777
|
+
"input": [
|
|
2778
|
+
{
|
|
2779
|
+
"name": "dnsname",
|
|
2780
|
+
"type": "string",
|
|
2781
|
+
"info": "(Optional) For your first request to ListHostedZonesByName , include the dnsname parameter only if you want to specify the name of the first hosted zone in the respons...(description truncated): string",
|
|
2782
|
+
"required": false,
|
|
2783
|
+
"schema": {
|
|
2784
|
+
"title": "dnsname",
|
|
2785
|
+
"type": "string"
|
|
2786
|
+
}
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"name": "hostedzoneid",
|
|
2790
|
+
"type": "string",
|
|
2791
|
+
"info": "(Optional) For your first request to ListHostedZonesByName , do not include the hostedzoneid parameter. If you have more hosted zones than the value of maxitems , ...(description truncated): string",
|
|
2792
|
+
"required": false,
|
|
2793
|
+
"schema": {
|
|
2794
|
+
"title": "hostedzoneid",
|
|
2795
|
+
"type": "string"
|
|
2796
|
+
}
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
"name": "maxitems",
|
|
2800
|
+
"type": "string",
|
|
2801
|
+
"info": "The maximum number of hosted zones to be included in the response body for this request. If you have more than maxitems hosted zones, then the value of the IsTruncated...(description truncated): string",
|
|
2802
|
+
"required": false,
|
|
2803
|
+
"schema": {
|
|
2804
|
+
"title": "maxitems",
|
|
2805
|
+
"type": "string"
|
|
2806
|
+
}
|
|
2807
|
+
}
|
|
2808
|
+
],
|
|
2809
|
+
"output": {
|
|
2810
|
+
"name": "result",
|
|
2811
|
+
"type": "object",
|
|
2812
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2813
|
+
"schema": {
|
|
2814
|
+
"title": "result",
|
|
2815
|
+
"type": "object"
|
|
2816
|
+
}
|
|
2817
|
+
},
|
|
2818
|
+
"roles": [
|
|
2819
|
+
"admin"
|
|
2820
|
+
],
|
|
2821
|
+
"route": {
|
|
2822
|
+
"verb": "POST",
|
|
2823
|
+
"path": "/listHostedZonesByName"
|
|
2824
|
+
},
|
|
2825
|
+
"task": true
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"name": "listHostedZonesByVPC",
|
|
2829
|
+
"summary": "ListHostedZonesByVPC",
|
|
2830
|
+
"description": "Lists all the private hosted zones that a specified VPC is associated with, regardless of which Amazon Web Services account or Amazon Web Services service owns the hosted zones. The HostedZoneOwner structure in the response contains one of the following values: An OwningAccount element, which contains the account number of either the current Amazon Web Services account or another Amazon Web Services account. Some services, such as Cloud Map, create hosted zones using the current accou...(description truncated)",
|
|
2831
|
+
"input": [
|
|
2832
|
+
{
|
|
2833
|
+
"name": "vpcid",
|
|
2834
|
+
"type": "string",
|
|
2835
|
+
"info": "The ID of the Amazon VPC that you want to list hosted zones for.: string",
|
|
2836
|
+
"required": true,
|
|
2837
|
+
"schema": {
|
|
2838
|
+
"title": "vpcid",
|
|
2839
|
+
"type": "string"
|
|
2840
|
+
}
|
|
2841
|
+
},
|
|
2842
|
+
{
|
|
2843
|
+
"name": "vpcregion",
|
|
2844
|
+
"type": "string",
|
|
2845
|
+
"info": "For the Amazon VPC that you specified for VPCId , the Amazon Web Services Region that you created the VPC in.: Must be one of [us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1]",
|
|
2846
|
+
"required": true,
|
|
2847
|
+
"schema": {
|
|
2848
|
+
"title": "vpcregion",
|
|
2849
|
+
"type": "string"
|
|
2850
|
+
}
|
|
2851
|
+
},
|
|
2852
|
+
{
|
|
2853
|
+
"name": "maxitems",
|
|
2854
|
+
"type": "string",
|
|
2855
|
+
"info": "(Optional) The maximum number of hosted zones that you want Amazon Route 53 to return. If the specified VPC is associated with more than MaxItems hosted zones, the resp...(description truncated): string",
|
|
2856
|
+
"required": false,
|
|
2857
|
+
"schema": {
|
|
2858
|
+
"title": "maxitems",
|
|
2859
|
+
"type": "string"
|
|
2860
|
+
}
|
|
2861
|
+
},
|
|
2862
|
+
{
|
|
2863
|
+
"name": "nexttoken",
|
|
2864
|
+
"type": "string",
|
|
2865
|
+
"info": "If the previous response included a NextToken element, the specified VPC is associated with more hosted zones. To get more hosted zones, submit another ListHostedZone...(description truncated): string",
|
|
2866
|
+
"required": false,
|
|
2867
|
+
"schema": {
|
|
2868
|
+
"title": "nexttoken",
|
|
2869
|
+
"type": "string"
|
|
2870
|
+
}
|
|
2871
|
+
}
|
|
2872
|
+
],
|
|
2873
|
+
"output": {
|
|
2874
|
+
"name": "result",
|
|
2875
|
+
"type": "object",
|
|
2876
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2877
|
+
"schema": {
|
|
2878
|
+
"title": "result",
|
|
2879
|
+
"type": "object"
|
|
2880
|
+
}
|
|
2881
|
+
},
|
|
2882
|
+
"roles": [
|
|
2883
|
+
"admin"
|
|
2884
|
+
],
|
|
2885
|
+
"route": {
|
|
2886
|
+
"verb": "POST",
|
|
2887
|
+
"path": "/listHostedZonesByVPC"
|
|
2888
|
+
},
|
|
2889
|
+
"task": true
|
|
2890
|
+
},
|
|
2891
|
+
{
|
|
2892
|
+
"name": "listResourceRecordSets",
|
|
2893
|
+
"summary": "ListResourceRecordSets",
|
|
2894
|
+
"description": "Lists the resource record sets in a specified hosted zone. ListResourceRecordSets returns up to 300 resource record sets at a time in ASCII order, beginning at a position specified by the name and type elements. Sort order ListResourceRecordSets sorts results first by DNS name with the labels reversed, for example: com.example.www. Note the trailing dot, which can change the sort order when the record name contains characters that appear before . (decimal 46) in th...(description truncated)",
|
|
2895
|
+
"input": [
|
|
2896
|
+
{
|
|
2897
|
+
"name": "id",
|
|
2898
|
+
"type": "string",
|
|
2899
|
+
"info": "The ID of the hosted zone that contains the resource record sets that you want to list.: string",
|
|
2900
|
+
"required": true,
|
|
2901
|
+
"schema": {
|
|
2902
|
+
"title": "id",
|
|
2903
|
+
"type": "string"
|
|
2904
|
+
}
|
|
2905
|
+
},
|
|
2906
|
+
{
|
|
2907
|
+
"name": "name",
|
|
2908
|
+
"type": "string",
|
|
2909
|
+
"info": "The first name in the lexicographic ordering of resource record sets that you want to list. If the specified record name doesn't exist, the results begin with the first r...(description truncated): string",
|
|
2910
|
+
"required": false,
|
|
2911
|
+
"schema": {
|
|
2912
|
+
"title": "name",
|
|
2913
|
+
"type": "string"
|
|
2914
|
+
}
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
"name": "type",
|
|
2918
|
+
"type": "string",
|
|
2919
|
+
"info": "The type of resource record set to begin the record listing from. Valid values for basic resource record sets: A | AAAA | CAA | CNAME | MX | NAPTR | NS |...(description truncated): Must be one of [SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS]",
|
|
2920
|
+
"required": false,
|
|
2921
|
+
"schema": {
|
|
2922
|
+
"title": "type",
|
|
2923
|
+
"type": "string"
|
|
2924
|
+
}
|
|
2925
|
+
},
|
|
2926
|
+
{
|
|
2927
|
+
"name": "identifier",
|
|
2928
|
+
"type": "string",
|
|
2929
|
+
"info": "Resource record sets that have a routing policy other than simple: If results were truncated for a given DNS name and type, specify the value of NextRecordIdentifier ...(description truncated): string",
|
|
2930
|
+
"required": false,
|
|
2931
|
+
"schema": {
|
|
2932
|
+
"title": "identifier",
|
|
2933
|
+
"type": "string"
|
|
2934
|
+
}
|
|
2935
|
+
},
|
|
2936
|
+
{
|
|
2937
|
+
"name": "maxitems",
|
|
2938
|
+
"type": "string",
|
|
2939
|
+
"info": "(Optional) The maximum number of resource records sets to include in the response body for this request. If the response includes more than maxitems resource record set...(description truncated): string",
|
|
2940
|
+
"required": false,
|
|
2941
|
+
"schema": {
|
|
2942
|
+
"title": "maxitems",
|
|
2943
|
+
"type": "string"
|
|
2944
|
+
}
|
|
2945
|
+
},
|
|
2946
|
+
{
|
|
2947
|
+
"name": "maxItems",
|
|
2948
|
+
"type": "string",
|
|
2949
|
+
"info": "Pagination limit: string",
|
|
2950
|
+
"required": false,
|
|
2951
|
+
"schema": {
|
|
2952
|
+
"title": "maxItems",
|
|
2953
|
+
"type": "string"
|
|
2954
|
+
}
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
"name": "startRecordName",
|
|
2958
|
+
"type": "string",
|
|
2959
|
+
"info": "Pagination token: string",
|
|
2960
|
+
"required": false,
|
|
2961
|
+
"schema": {
|
|
2962
|
+
"title": "startRecordName",
|
|
2963
|
+
"type": "string"
|
|
2964
|
+
}
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"name": "startRecordType",
|
|
2968
|
+
"type": "string",
|
|
2969
|
+
"info": "Pagination token: string",
|
|
2970
|
+
"required": false,
|
|
2971
|
+
"schema": {
|
|
2972
|
+
"title": "startRecordType",
|
|
2973
|
+
"type": "string"
|
|
2974
|
+
}
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
"name": "startRecordIdentifier",
|
|
2978
|
+
"type": "string",
|
|
2979
|
+
"info": "Pagination token: string",
|
|
2980
|
+
"required": false,
|
|
2981
|
+
"schema": {
|
|
2982
|
+
"title": "startRecordIdentifier",
|
|
2983
|
+
"type": "string"
|
|
2984
|
+
}
|
|
2985
|
+
}
|
|
2986
|
+
],
|
|
2987
|
+
"output": {
|
|
2988
|
+
"name": "result",
|
|
2989
|
+
"type": "object",
|
|
2990
|
+
"description": "A JSON Object containing status, code and the result",
|
|
2991
|
+
"schema": {
|
|
2992
|
+
"title": "result",
|
|
2993
|
+
"type": "object"
|
|
2994
|
+
}
|
|
2995
|
+
},
|
|
2996
|
+
"roles": [
|
|
2997
|
+
"admin"
|
|
2998
|
+
],
|
|
2999
|
+
"route": {
|
|
3000
|
+
"verb": "POST",
|
|
3001
|
+
"path": "/listResourceRecordSets"
|
|
3002
|
+
},
|
|
3003
|
+
"task": true
|
|
3004
|
+
},
|
|
3005
|
+
{
|
|
3006
|
+
"name": "listTagsForResources",
|
|
3007
|
+
"summary": "ListTagsForResources",
|
|
3008
|
+
"description": "Lists tags for up to 10 health checks or hosted zones. For information about using tags for cost allocation, see Using Cost Allocation Tags in the Billing and Cost Management User Guide .",
|
|
3009
|
+
"input": [
|
|
3010
|
+
{
|
|
3011
|
+
"name": "resourceType",
|
|
3012
|
+
"type": "string",
|
|
3013
|
+
"info": "The type of the resources. The resource type for health checks is healthcheck . The resource type for hosted zones is hostedzone .: Must be one of [healthcheck, hostedzone]",
|
|
3014
|
+
"required": true,
|
|
3015
|
+
"schema": {
|
|
3016
|
+
"title": "resourceType",
|
|
3017
|
+
"type": "string"
|
|
3018
|
+
}
|
|
3019
|
+
},
|
|
3020
|
+
{
|
|
3021
|
+
"name": "body",
|
|
3022
|
+
"type": "string",
|
|
3023
|
+
"info": ": {\"ResourceIds\": \"array\"}",
|
|
3024
|
+
"required": true,
|
|
3025
|
+
"schema": {
|
|
3026
|
+
"title": "body",
|
|
3027
|
+
"type": "string"
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3030
|
+
],
|
|
3031
|
+
"output": {
|
|
3032
|
+
"name": "result",
|
|
3033
|
+
"type": "object",
|
|
3034
|
+
"description": "A JSON Object containing status, code and the result",
|
|
3035
|
+
"schema": {
|
|
3036
|
+
"title": "result",
|
|
3037
|
+
"type": "object"
|
|
3038
|
+
}
|
|
3039
|
+
},
|
|
3040
|
+
"roles": [
|
|
3041
|
+
"admin"
|
|
3042
|
+
],
|
|
3043
|
+
"route": {
|
|
3044
|
+
"verb": "POST",
|
|
3045
|
+
"path": "/listTagsForResources"
|
|
3046
|
+
},
|
|
3047
|
+
"task": true
|
|
3048
|
+
},
|
|
3049
|
+
{
|
|
3050
|
+
"name": "listTrafficPolicies",
|
|
3051
|
+
"summary": "ListTrafficPolicies",
|
|
3052
|
+
"description": "Gets information about the latest version for every traffic policy that is associated with the current Amazon Web Services account. Policies are listed in the order that they were created in. For information about how of deleting a traffic policy affects the response from ListTrafficPolicies , see DeleteTrafficPolicy .",
|
|
3053
|
+
"input": [
|
|
3054
|
+
{
|
|
3055
|
+
"name": "trafficpolicyid",
|
|
3056
|
+
"type": "string",
|
|
3057
|
+
"info": "(Conditional) For your first request to ListTrafficPolicies , don't include the TrafficPolicyIdMarker parameter. If you have more traffic policies than the value of...(description truncated): string",
|
|
3058
|
+
"required": false,
|
|
3059
|
+
"schema": {
|
|
3060
|
+
"title": "trafficpolicyid",
|
|
3061
|
+
"type": "string"
|
|
3062
|
+
}
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
"name": "maxitems",
|
|
3066
|
+
"type": "string",
|
|
3067
|
+
"info": "(Optional) The maximum number of traffic policies that you want Amazon Route 53 to return in response to this request. If you have more than MaxItems traffic policies, ...(description truncated): string",
|
|
3068
|
+
"required": false,
|
|
3069
|
+
"schema": {
|
|
3070
|
+
"title": "maxitems",
|
|
3071
|
+
"type": "string"
|
|
3072
|
+
}
|
|
3073
|
+
}
|
|
3074
|
+
],
|
|
3075
|
+
"output": {
|
|
3076
|
+
"name": "result",
|
|
3077
|
+
"type": "object",
|
|
3078
|
+
"description": "A JSON Object containing status, code and the result",
|
|
3079
|
+
"schema": {
|
|
3080
|
+
"title": "result",
|
|
3081
|
+
"type": "object"
|
|
3082
|
+
}
|
|
3083
|
+
},
|
|
3084
|
+
"roles": [
|
|
3085
|
+
"admin"
|
|
3086
|
+
],
|
|
3087
|
+
"route": {
|
|
3088
|
+
"verb": "POST",
|
|
3089
|
+
"path": "/listTrafficPolicies"
|
|
3090
|
+
},
|
|
3091
|
+
"task": true
|
|
3092
|
+
},
|
|
3093
|
+
{
|
|
3094
|
+
"name": "listTrafficPolicyInstances",
|
|
3095
|
+
"summary": "ListTrafficPolicyInstances",
|
|
3096
|
+
"description": "Gets information about the traffic policy instances that you created by using the current Amazon Web Services account. After you submit an UpdateTrafficPolicyInstance request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the State response element. Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy instances, you can use the MaxIt...(description truncated)",
|
|
3097
|
+
"input": [
|
|
3098
|
+
{
|
|
3099
|
+
"name": "hostedzoneid",
|
|
3100
|
+
"type": "string",
|
|
3101
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more traffic policy instances. To get more traffic policy instances, submit another ListTraf...(description truncated): string",
|
|
3102
|
+
"required": false,
|
|
3103
|
+
"schema": {
|
|
3104
|
+
"title": "hostedzoneid",
|
|
3105
|
+
"type": "string"
|
|
3106
|
+
}
|
|
3107
|
+
},
|
|
3108
|
+
{
|
|
3109
|
+
"name": "trafficpolicyinstancename",
|
|
3110
|
+
"type": "string",
|
|
3111
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more traffic policy instances. To get more traffic policy instances, submit another ListTraf...(description truncated): string",
|
|
3112
|
+
"required": false,
|
|
3113
|
+
"schema": {
|
|
3114
|
+
"title": "trafficpolicyinstancename",
|
|
3115
|
+
"type": "string"
|
|
3116
|
+
}
|
|
3117
|
+
},
|
|
3118
|
+
{
|
|
3119
|
+
"name": "trafficpolicyinstancetype",
|
|
3120
|
+
"type": "string",
|
|
3121
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more traffic policy instances. To get more traffic policy instances, submit another ListTraf...(description truncated): Must be one of [SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS]",
|
|
3122
|
+
"required": false,
|
|
3123
|
+
"schema": {
|
|
3124
|
+
"title": "trafficpolicyinstancetype",
|
|
3125
|
+
"type": "string"
|
|
3126
|
+
}
|
|
3127
|
+
},
|
|
3128
|
+
{
|
|
3129
|
+
"name": "maxitems",
|
|
3130
|
+
"type": "string",
|
|
3131
|
+
"info": "The maximum number of traffic policy instances that you want Amazon Route 53 to return in response to a ListTrafficPolicyInstances request. If you have more than MaxIt...(description truncated): string",
|
|
3132
|
+
"required": false,
|
|
3133
|
+
"schema": {
|
|
3134
|
+
"title": "maxitems",
|
|
3135
|
+
"type": "string"
|
|
3136
|
+
}
|
|
3137
|
+
}
|
|
3138
|
+
],
|
|
3139
|
+
"output": {
|
|
3140
|
+
"name": "result",
|
|
3141
|
+
"type": "object",
|
|
3142
|
+
"description": "A JSON Object containing status, code and the result",
|
|
3143
|
+
"schema": {
|
|
3144
|
+
"title": "result",
|
|
3145
|
+
"type": "object"
|
|
3146
|
+
}
|
|
3147
|
+
},
|
|
3148
|
+
"roles": [
|
|
3149
|
+
"admin"
|
|
3150
|
+
],
|
|
3151
|
+
"route": {
|
|
3152
|
+
"verb": "POST",
|
|
3153
|
+
"path": "/listTrafficPolicyInstances"
|
|
3154
|
+
},
|
|
3155
|
+
"task": true
|
|
3156
|
+
},
|
|
3157
|
+
{
|
|
3158
|
+
"name": "listTrafficPolicyInstancesByHostedZone",
|
|
3159
|
+
"summary": "ListTrafficPolicyInstancesByHostedZone",
|
|
3160
|
+
"description": "Gets information about the traffic policy instances that you created in a specified hosted zone. After you submit a CreateTrafficPolicyInstance or an UpdateTrafficPolicyInstance request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the State response element. Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy instances, you can u...(description truncated)",
|
|
3161
|
+
"input": [
|
|
3162
|
+
{
|
|
3163
|
+
"name": "id",
|
|
3164
|
+
"type": "string",
|
|
3165
|
+
"info": "The ID of the hosted zone that you want to list traffic policy instances for.: string",
|
|
3166
|
+
"required": true,
|
|
3167
|
+
"schema": {
|
|
3168
|
+
"title": "id",
|
|
3169
|
+
"type": "string"
|
|
3170
|
+
}
|
|
3171
|
+
},
|
|
3172
|
+
{
|
|
3173
|
+
"name": "trafficpolicyinstancename",
|
|
3174
|
+
"type": "string",
|
|
3175
|
+
"info": "If the value of IsTruncated in the previous response is true, you have more traffic policy instances. To get more traffic policy instances, submit another ListTraffic...(description truncated): string",
|
|
3176
|
+
"required": false,
|
|
3177
|
+
"schema": {
|
|
3178
|
+
"title": "trafficpolicyinstancename",
|
|
3179
|
+
"type": "string"
|
|
3180
|
+
}
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
"name": "trafficpolicyinstancetype",
|
|
3184
|
+
"type": "string",
|
|
3185
|
+
"info": "If the value of IsTruncated in the previous response is true, you have more traffic policy instances. To get more traffic policy instances, submit another ListTraffic...(description truncated): Must be one of [SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS]",
|
|
3186
|
+
"required": false,
|
|
3187
|
+
"schema": {
|
|
3188
|
+
"title": "trafficpolicyinstancetype",
|
|
3189
|
+
"type": "string"
|
|
3190
|
+
}
|
|
3191
|
+
},
|
|
3192
|
+
{
|
|
3193
|
+
"name": "maxitems",
|
|
3194
|
+
"type": "string",
|
|
3195
|
+
"info": "The maximum number of traffic policy instances to be included in the response body for this request. If you have more than MaxItems traffic policy instances, the value ...(description truncated): string",
|
|
3196
|
+
"required": false,
|
|
3197
|
+
"schema": {
|
|
3198
|
+
"title": "maxitems",
|
|
3199
|
+
"type": "string"
|
|
3200
|
+
}
|
|
3201
|
+
}
|
|
3202
|
+
],
|
|
3203
|
+
"output": {
|
|
3204
|
+
"name": "result",
|
|
3205
|
+
"type": "object",
|
|
3206
|
+
"description": "A JSON Object containing status, code and the result",
|
|
3207
|
+
"schema": {
|
|
3208
|
+
"title": "result",
|
|
3209
|
+
"type": "object"
|
|
3210
|
+
}
|
|
3211
|
+
},
|
|
3212
|
+
"roles": [
|
|
3213
|
+
"admin"
|
|
3214
|
+
],
|
|
3215
|
+
"route": {
|
|
3216
|
+
"verb": "POST",
|
|
3217
|
+
"path": "/listTrafficPolicyInstancesByHostedZone"
|
|
3218
|
+
},
|
|
3219
|
+
"task": true
|
|
3220
|
+
},
|
|
3221
|
+
{
|
|
3222
|
+
"name": "listTrafficPolicyInstancesByPolicy",
|
|
3223
|
+
"summary": "ListTrafficPolicyInstancesByPolicy",
|
|
3224
|
+
"description": "Gets information about the traffic policy instances that you created by using a specify traffic policy version. After you submit a CreateTrafficPolicyInstance or an UpdateTrafficPolicyInstance request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the State response element. Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy insta...(description truncated)",
|
|
3225
|
+
"input": [
|
|
3226
|
+
{
|
|
3227
|
+
"name": "id",
|
|
3228
|
+
"type": "string",
|
|
3229
|
+
"info": "The ID of the traffic policy for which you want to list traffic policy instances.: string",
|
|
3230
|
+
"required": true,
|
|
3231
|
+
"schema": {
|
|
3232
|
+
"title": "id",
|
|
3233
|
+
"type": "string"
|
|
3234
|
+
}
|
|
3235
|
+
},
|
|
3236
|
+
{
|
|
3237
|
+
"name": "version",
|
|
3238
|
+
"type": "number",
|
|
3239
|
+
"info": "The version of the traffic policy for which you want to list traffic policy instances. The version must be associated with the traffic policy that is specified by Traffi...(description truncated): 123",
|
|
3240
|
+
"required": true,
|
|
3241
|
+
"schema": {
|
|
3242
|
+
"title": "version",
|
|
3243
|
+
"type": "number"
|
|
3244
|
+
}
|
|
3245
|
+
},
|
|
3246
|
+
{
|
|
3247
|
+
"name": "hostedzoneid",
|
|
3248
|
+
"type": "string",
|
|
3249
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more traffic policy instances. To get more traffic policy instances, submit another ListTraf...(description truncated): string",
|
|
3250
|
+
"required": false,
|
|
3251
|
+
"schema": {
|
|
3252
|
+
"title": "hostedzoneid",
|
|
3253
|
+
"type": "string"
|
|
3254
|
+
}
|
|
3255
|
+
},
|
|
3256
|
+
{
|
|
3257
|
+
"name": "trafficpolicyinstancename",
|
|
3258
|
+
"type": "string",
|
|
3259
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more traffic policy instances. To get more traffic policy instances, submit another ListTraf...(description truncated): string",
|
|
3260
|
+
"required": false,
|
|
3261
|
+
"schema": {
|
|
3262
|
+
"title": "trafficpolicyinstancename",
|
|
3263
|
+
"type": "string"
|
|
3264
|
+
}
|
|
3265
|
+
},
|
|
3266
|
+
{
|
|
3267
|
+
"name": "trafficpolicyinstancetype",
|
|
3268
|
+
"type": "string",
|
|
3269
|
+
"info": "If the value of IsTruncated in the previous response was true , you have more traffic policy instances. To get more traffic policy instances, submit another ListTraf...(description truncated): Must be one of [SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS]",
|
|
3270
|
+
"required": false,
|
|
3271
|
+
"schema": {
|
|
3272
|
+
"title": "trafficpolicyinstancetype",
|
|
3273
|
+
"type": "string"
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
{
|
|
3277
|
+
"name": "maxitems",
|
|
3278
|
+
"type": "string",
|
|
3279
|
+
"info": "The maximum number of traffic policy instances to be included in the response body for this request. If you have more than MaxItems traffic policy instances, the value ...(description truncated): string",
|
|
3280
|
+
"required": false,
|
|
3281
|
+
"schema": {
|
|
3282
|
+
"title": "maxitems",
|
|
3283
|
+
"type": "string"
|
|
3284
|
+
}
|
|
3285
|
+
}
|
|
3286
|
+
],
|
|
3287
|
+
"output": {
|
|
3288
|
+
"name": "result",
|
|
3289
|
+
"type": "object",
|
|
3290
|
+
"description": "A JSON Object containing status, code and the result",
|
|
3291
|
+
"schema": {
|
|
3292
|
+
"title": "result",
|
|
3293
|
+
"type": "object"
|
|
3294
|
+
}
|
|
3295
|
+
},
|
|
3296
|
+
"roles": [
|
|
3297
|
+
"admin"
|
|
3298
|
+
],
|
|
3299
|
+
"route": {
|
|
3300
|
+
"verb": "POST",
|
|
3301
|
+
"path": "/listTrafficPolicyInstancesByPolicy"
|
|
3302
|
+
},
|
|
3303
|
+
"task": true
|
|
3304
|
+
},
|
|
3305
|
+
{
|
|
3306
|
+
"name": "listTrafficPolicyVersions",
|
|
3307
|
+
"summary": "ListTrafficPolicyVersions",
|
|
3308
|
+
"description": "Gets information about all of the versions for a specified traffic policy. Traffic policy versions are listed in numerical order by VersionNumber .",
|
|
3309
|
+
"input": [
|
|
3310
|
+
{
|
|
3311
|
+
"name": "id",
|
|
3312
|
+
"type": "string",
|
|
3313
|
+
"info": "Specify the value of Id of the traffic policy for which you want to list all versions.: string",
|
|
3314
|
+
"required": true,
|
|
3315
|
+
"schema": {
|
|
3316
|
+
"title": "id",
|
|
3317
|
+
"type": "string"
|
|
3318
|
+
}
|
|
3319
|
+
},
|
|
3320
|
+
{
|
|
3321
|
+
"name": "trafficpolicyversion",
|
|
3322
|
+
"type": "string",
|
|
3323
|
+
"info": "For your first request to ListTrafficPolicyVersions , don't include the TrafficPolicyVersionMarker parameter. If you have more traffic policy versions than the valu...(description truncated): string",
|
|
3324
|
+
"required": false,
|
|
3325
|
+
"schema": {
|
|
3326
|
+
"title": "trafficpolicyversion",
|
|
3327
|
+
"type": "string"
|
|
3328
|
+
}
|
|
3329
|
+
},
|
|
3330
|
+
{
|
|
3331
|
+
"name": "maxitems",
|
|
3332
|
+
"type": "string",
|
|
3333
|
+
"info": "The maximum number of traffic policy versions that you want Amazon Route 53 to include in the response body for this request. If the specified traffic policy has more tha...(description truncated): string",
|
|
3334
|
+
"required": false,
|
|
3335
|
+
"schema": {
|
|
3336
|
+
"title": "maxitems",
|
|
3337
|
+
"type": "string"
|
|
3338
|
+
}
|
|
3339
|
+
}
|
|
3340
|
+
],
|
|
3341
|
+
"output": {
|
|
3342
|
+
"name": "result",
|
|
3343
|
+
"type": "object",
|
|
3344
|
+
"description": "A JSON Object containing status, code and the result",
|
|
3345
|
+
"schema": {
|
|
3346
|
+
"title": "result",
|
|
3347
|
+
"type": "object"
|
|
3348
|
+
}
|
|
3349
|
+
},
|
|
3350
|
+
"roles": [
|
|
3351
|
+
"admin"
|
|
3352
|
+
],
|
|
3353
|
+
"route": {
|
|
3354
|
+
"verb": "POST",
|
|
3355
|
+
"path": "/listTrafficPolicyVersions"
|
|
3356
|
+
},
|
|
3357
|
+
"task": true
|
|
3358
|
+
},
|
|
3359
|
+
{
|
|
3360
|
+
"name": "testDNSAnswer",
|
|
3361
|
+
"summary": "TestDNSAnswer",
|
|
3362
|
+
"description": "Gets the value that Amazon Route 53 returns in response to a DNS request for a specified record name and type. You can optionally specify the IP address of a DNS resolver, an EDNS0 client subnet IP address, and a subnet mask. This call only supports querying public hosted zones.",
|
|
3363
|
+
"input": [
|
|
3364
|
+
{
|
|
3365
|
+
"name": "hostedzoneid",
|
|
3366
|
+
"type": "string",
|
|
3367
|
+
"info": "The ID of the hosted zone that you want Amazon Route 53 to simulate a query for.: string",
|
|
3368
|
+
"required": true,
|
|
3369
|
+
"schema": {
|
|
3370
|
+
"title": "hostedzoneid",
|
|
3371
|
+
"type": "string"
|
|
3372
|
+
}
|
|
3373
|
+
},
|
|
3374
|
+
{
|
|
3375
|
+
"name": "recordname",
|
|
3376
|
+
"type": "string",
|
|
3377
|
+
"info": "The name of the resource record set that you want Amazon Route 53 to simulate a query for.: string",
|
|
3378
|
+
"required": true,
|
|
3379
|
+
"schema": {
|
|
3380
|
+
"title": "recordname",
|
|
3381
|
+
"type": "string"
|
|
3382
|
+
}
|
|
3383
|
+
},
|
|
3384
|
+
{
|
|
3385
|
+
"name": "recordtype",
|
|
3386
|
+
"type": "string",
|
|
3387
|
+
"info": "The type of the resource record set.: Must be one of [SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS]",
|
|
3388
|
+
"required": true,
|
|
3389
|
+
"schema": {
|
|
3390
|
+
"title": "recordtype",
|
|
3391
|
+
"type": "string"
|
|
3392
|
+
}
|
|
3393
|
+
},
|
|
3394
|
+
{
|
|
3395
|
+
"name": "resolverip",
|
|
3396
|
+
"type": "string",
|
|
3397
|
+
"info": "If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. If you omit this value, TestDnsAnswer uses the IP address of a...(description truncated): string",
|
|
3398
|
+
"required": false,
|
|
3399
|
+
"schema": {
|
|
3400
|
+
"title": "resolverip",
|
|
3401
|
+
"type": "string"
|
|
3402
|
+
}
|
|
3403
|
+
},
|
|
3404
|
+
{
|
|
3405
|
+
"name": "edns0clientsubnetip",
|
|
3406
|
+
"type": "string",
|
|
3407
|
+
"info": "If the resolver that you specified for resolverip supports EDNS0, specify the IPv4 or IPv6 address of a client in the applicable location, for example, 192.0.2.44 or 2...(description truncated): string",
|
|
3408
|
+
"required": false,
|
|
3409
|
+
"schema": {
|
|
3410
|
+
"title": "edns0clientsubnetip",
|
|
3411
|
+
"type": "string"
|
|
3412
|
+
}
|
|
3413
|
+
},
|
|
3414
|
+
{
|
|
3415
|
+
"name": "edns0clientsubnetmask",
|
|
3416
|
+
"type": "string",
|
|
3417
|
+
"info": "If you specify an IP address for edns0clientsubnetip , you can optionally specify the number of bits of the IP address that you want the checking tool to include in the...(description truncated): string",
|
|
3418
|
+
"required": false,
|
|
3419
|
+
"schema": {
|
|
3420
|
+
"title": "edns0clientsubnetmask",
|
|
3421
|
+
"type": "string"
|
|
3422
|
+
}
|
|
3423
|
+
}
|
|
3424
|
+
],
|
|
3425
|
+
"output": {
|
|
3426
|
+
"name": "result",
|
|
3427
|
+
"type": "object",
|
|
3428
|
+
"description": "A JSON Object containing status, code and the result",
|
|
3429
|
+
"schema": {
|
|
3430
|
+
"title": "result",
|
|
3431
|
+
"type": "object"
|
|
3432
|
+
}
|
|
3433
|
+
},
|
|
3434
|
+
"roles": [
|
|
3435
|
+
"admin"
|
|
3436
|
+
],
|
|
3437
|
+
"route": {
|
|
3438
|
+
"verb": "POST",
|
|
3439
|
+
"path": "/testDNSAnswer"
|
|
3440
|
+
},
|
|
3441
|
+
"task": true
|
|
3442
|
+
}
|
|
3443
|
+
],
|
|
3444
|
+
"views": []
|
|
3445
|
+
}
|