@itentialopensource/adapter-amazon_route53 0.2.2 → 0.3.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/AUTH.md +25 -22
- package/CALLS.md +59 -22
- package/CHANGELOG.md +16 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +32 -23
- package/SYSTEMINFO.md +15 -5
- package/adapter.js +600 -1783
- package/adapterBase.js +549 -879
- package/changelogs/changelog.md +54 -0
- package/entities/.system/action.json +2 -2
- package/entities/Rest/action.json +109 -109
- package/metadata.json +70 -0
- package/package.json +24 -28
- package/pronghorn.json +981 -642
- package/propertiesSchema.json +439 -39
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +15721 -0
- package/report/adapter-openapi.yaml +11633 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691507399893.json +120 -0
- package/report/updateReport1692202434448.json +120 -0
- package/report/updateReport1694460669097.json +120 -0
- package/report/updateReport1698420502742.json +120 -0
- package/sampleProperties.json +68 -5
- package/test/integration/adapterTestBasicGet.js +2 -4
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +338 -112
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +2 -2
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/pre-commit.sh +2 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +89 -34
- package/utils/tbUtils.js +41 -21
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"name": "activateKeySigningKey",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "POST",
|
|
7
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
7
|
+
"entitypath": "{base_path}/{version}/keysigningkey/{pathv1}/{pathv2}/activate/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
11
11
|
"sendEmpty": false,
|
|
12
|
-
"requestDatatype": "
|
|
12
|
+
"requestDatatype": "",
|
|
13
13
|
"responseDatatype": "XML2JSON",
|
|
14
14
|
"headers": {},
|
|
15
15
|
"responseObjects": [
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"name": "associateVPCWithHostedZone",
|
|
25
25
|
"protocol": "REST",
|
|
26
26
|
"method": "POST",
|
|
27
|
-
"entitypath": "{base_path}/{version}/
|
|
27
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/associatevpc/?{query}",
|
|
28
28
|
"requestSchema": "schema.json",
|
|
29
29
|
"responseSchema": "schema.json",
|
|
30
30
|
"timeout": 0,
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"name": "changeResourceRecordSets",
|
|
45
45
|
"protocol": "REST",
|
|
46
46
|
"method": "POST",
|
|
47
|
-
"entitypath": "{base_path}/{version}/
|
|
47
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/rrset/?{query}",
|
|
48
48
|
"requestSchema": "schema.json",
|
|
49
49
|
"responseSchema": "schema.json",
|
|
50
50
|
"timeout": 0,
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"name": "changeTagsForResource",
|
|
65
65
|
"protocol": "REST",
|
|
66
66
|
"method": "POST",
|
|
67
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
67
|
+
"entitypath": "{base_path}/{version}/tags/{pathv1}/{pathv2}/?{query}",
|
|
68
68
|
"requestSchema": "schema.json",
|
|
69
69
|
"responseSchema": "schema.json",
|
|
70
70
|
"timeout": 0,
|
|
@@ -84,13 +84,13 @@
|
|
|
84
84
|
"name": "listTagsForResource",
|
|
85
85
|
"protocol": "REST",
|
|
86
86
|
"method": "GET",
|
|
87
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
87
|
+
"entitypath": "{base_path}/{version}/tags/{pathv1}/{pathv2}/?{query}",
|
|
88
88
|
"requestSchema": "schema.json",
|
|
89
89
|
"responseSchema": "schema.json",
|
|
90
90
|
"timeout": 0,
|
|
91
91
|
"sendEmpty": false,
|
|
92
92
|
"sendGetBody": false,
|
|
93
|
-
"requestDatatype": "
|
|
93
|
+
"requestDatatype": "",
|
|
94
94
|
"responseDatatype": "XML2JSON",
|
|
95
95
|
"headers": {},
|
|
96
96
|
"responseObjects": [
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"name": "createHealthCheck",
|
|
106
106
|
"protocol": "REST",
|
|
107
107
|
"method": "POST",
|
|
108
|
-
"entitypath": "{base_path}/{version}/
|
|
108
|
+
"entitypath": "{base_path}/{version}/healthcheck/?{query}",
|
|
109
109
|
"requestSchema": "schema.json",
|
|
110
110
|
"responseSchema": "schema.json",
|
|
111
111
|
"timeout": 0,
|
|
@@ -125,13 +125,13 @@
|
|
|
125
125
|
"name": "listHealthChecks",
|
|
126
126
|
"protocol": "REST",
|
|
127
127
|
"method": "GET",
|
|
128
|
-
"entitypath": "{base_path}/{version}/
|
|
128
|
+
"entitypath": "{base_path}/{version}/healthcheck/?{query}",
|
|
129
129
|
"requestSchema": "schema.json",
|
|
130
130
|
"responseSchema": "schema.json",
|
|
131
131
|
"timeout": 0,
|
|
132
132
|
"sendEmpty": false,
|
|
133
133
|
"sendGetBody": false,
|
|
134
|
-
"requestDatatype": "
|
|
134
|
+
"requestDatatype": "",
|
|
135
135
|
"responseDatatype": "XML2JSON",
|
|
136
136
|
"headers": {},
|
|
137
137
|
"responseObjects": [
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
"name": "createHostedZone",
|
|
147
147
|
"protocol": "REST",
|
|
148
148
|
"method": "POST",
|
|
149
|
-
"entitypath": "{base_path}/{version}/
|
|
149
|
+
"entitypath": "{base_path}/{version}/hostedzone/?{query}",
|
|
150
150
|
"requestSchema": "schema.json",
|
|
151
151
|
"responseSchema": "schema.json",
|
|
152
152
|
"timeout": 0,
|
|
@@ -166,13 +166,13 @@
|
|
|
166
166
|
"name": "listHostedZones",
|
|
167
167
|
"protocol": "REST",
|
|
168
168
|
"method": "GET",
|
|
169
|
-
"entitypath": "{base_path}/{version}/
|
|
169
|
+
"entitypath": "{base_path}/{version}/hostedzone/?{query}",
|
|
170
170
|
"requestSchema": "schema.json",
|
|
171
171
|
"responseSchema": "schema.json",
|
|
172
172
|
"timeout": 0,
|
|
173
173
|
"sendEmpty": false,
|
|
174
174
|
"sendGetBody": false,
|
|
175
|
-
"requestDatatype": "
|
|
175
|
+
"requestDatatype": "",
|
|
176
176
|
"responseDatatype": "XML2JSON",
|
|
177
177
|
"headers": {},
|
|
178
178
|
"responseObjects": [
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
"name": "createKeySigningKey",
|
|
188
188
|
"protocol": "REST",
|
|
189
189
|
"method": "POST",
|
|
190
|
-
"entitypath": "{base_path}/{version}/
|
|
190
|
+
"entitypath": "{base_path}/{version}/keysigningkey/?{query}",
|
|
191
191
|
"requestSchema": "schema.json",
|
|
192
192
|
"responseSchema": "schema.json",
|
|
193
193
|
"timeout": 0,
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
"name": "createQueryLoggingConfig",
|
|
208
208
|
"protocol": "REST",
|
|
209
209
|
"method": "POST",
|
|
210
|
-
"entitypath": "{base_path}/{version}/
|
|
210
|
+
"entitypath": "{base_path}/{version}/queryloggingconfig/?{query}",
|
|
211
211
|
"requestSchema": "schema.json",
|
|
212
212
|
"responseSchema": "schema.json",
|
|
213
213
|
"timeout": 0,
|
|
@@ -227,13 +227,13 @@
|
|
|
227
227
|
"name": "listQueryLoggingConfigs",
|
|
228
228
|
"protocol": "REST",
|
|
229
229
|
"method": "GET",
|
|
230
|
-
"entitypath": "{base_path}/{version}/
|
|
230
|
+
"entitypath": "{base_path}/{version}/queryloggingconfig/?{query}",
|
|
231
231
|
"requestSchema": "schema.json",
|
|
232
232
|
"responseSchema": "schema.json",
|
|
233
233
|
"timeout": 0,
|
|
234
234
|
"sendEmpty": false,
|
|
235
235
|
"sendGetBody": false,
|
|
236
|
-
"requestDatatype": "
|
|
236
|
+
"requestDatatype": "",
|
|
237
237
|
"responseDatatype": "XML2JSON",
|
|
238
238
|
"headers": {},
|
|
239
239
|
"responseObjects": [
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"name": "createReusableDelegationSet",
|
|
249
249
|
"protocol": "REST",
|
|
250
250
|
"method": "POST",
|
|
251
|
-
"entitypath": "{base_path}/{version}/
|
|
251
|
+
"entitypath": "{base_path}/{version}/delegationset/?{query}",
|
|
252
252
|
"requestSchema": "schema.json",
|
|
253
253
|
"responseSchema": "schema.json",
|
|
254
254
|
"timeout": 0,
|
|
@@ -268,13 +268,13 @@
|
|
|
268
268
|
"name": "listReusableDelegationSets",
|
|
269
269
|
"protocol": "REST",
|
|
270
270
|
"method": "GET",
|
|
271
|
-
"entitypath": "{base_path}/{version}/
|
|
271
|
+
"entitypath": "{base_path}/{version}/delegationset/?{query}",
|
|
272
272
|
"requestSchema": "schema.json",
|
|
273
273
|
"responseSchema": "schema.json",
|
|
274
274
|
"timeout": 0,
|
|
275
275
|
"sendEmpty": false,
|
|
276
276
|
"sendGetBody": false,
|
|
277
|
-
"requestDatatype": "
|
|
277
|
+
"requestDatatype": "",
|
|
278
278
|
"responseDatatype": "XML2JSON",
|
|
279
279
|
"headers": {},
|
|
280
280
|
"responseObjects": [
|
|
@@ -289,7 +289,7 @@
|
|
|
289
289
|
"name": "createTrafficPolicy",
|
|
290
290
|
"protocol": "REST",
|
|
291
291
|
"method": "POST",
|
|
292
|
-
"entitypath": "{base_path}/{version}/
|
|
292
|
+
"entitypath": "{base_path}/{version}/trafficpolicy/?{query}",
|
|
293
293
|
"requestSchema": "schema.json",
|
|
294
294
|
"responseSchema": "schema.json",
|
|
295
295
|
"timeout": 0,
|
|
@@ -309,7 +309,7 @@
|
|
|
309
309
|
"name": "createTrafficPolicyInstance",
|
|
310
310
|
"protocol": "REST",
|
|
311
311
|
"method": "POST",
|
|
312
|
-
"entitypath": "{base_path}/{version}/
|
|
312
|
+
"entitypath": "{base_path}/{version}/trafficpolicyinstance/?{query}",
|
|
313
313
|
"requestSchema": "schema.json",
|
|
314
314
|
"responseSchema": "schema.json",
|
|
315
315
|
"timeout": 0,
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"name": "createTrafficPolicyVersion",
|
|
330
330
|
"protocol": "REST",
|
|
331
331
|
"method": "POST",
|
|
332
|
-
"entitypath": "{base_path}/{version}/
|
|
332
|
+
"entitypath": "{base_path}/{version}/trafficpolicy/{pathv1}/?{query}",
|
|
333
333
|
"requestSchema": "schema.json",
|
|
334
334
|
"responseSchema": "schema.json",
|
|
335
335
|
"timeout": 0,
|
|
@@ -349,7 +349,7 @@
|
|
|
349
349
|
"name": "createVPCAssociationAuthorization",
|
|
350
350
|
"protocol": "REST",
|
|
351
351
|
"method": "POST",
|
|
352
|
-
"entitypath": "{base_path}/{version}/
|
|
352
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/authorizevpcassociation/?{query}",
|
|
353
353
|
"requestSchema": "schema.json",
|
|
354
354
|
"responseSchema": "schema.json",
|
|
355
355
|
"timeout": 0,
|
|
@@ -369,13 +369,13 @@
|
|
|
369
369
|
"name": "listVPCAssociationAuthorizations",
|
|
370
370
|
"protocol": "REST",
|
|
371
371
|
"method": "GET",
|
|
372
|
-
"entitypath": "{base_path}/{version}/
|
|
372
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/authorizevpcassociation/?{query}",
|
|
373
373
|
"requestSchema": "schema.json",
|
|
374
374
|
"responseSchema": "schema.json",
|
|
375
375
|
"timeout": 0,
|
|
376
376
|
"sendEmpty": false,
|
|
377
377
|
"sendGetBody": false,
|
|
378
|
-
"requestDatatype": "
|
|
378
|
+
"requestDatatype": "",
|
|
379
379
|
"responseDatatype": "XML2JSON",
|
|
380
380
|
"headers": {},
|
|
381
381
|
"responseObjects": [
|
|
@@ -390,12 +390,12 @@
|
|
|
390
390
|
"name": "deactivateKeySigningKey",
|
|
391
391
|
"protocol": "REST",
|
|
392
392
|
"method": "POST",
|
|
393
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
393
|
+
"entitypath": "{base_path}/{version}/keysigningkey/{pathv1}/{pathv2}/deactivate/?{query}",
|
|
394
394
|
"requestSchema": "schema.json",
|
|
395
395
|
"responseSchema": "schema.json",
|
|
396
396
|
"timeout": 0,
|
|
397
397
|
"sendEmpty": false,
|
|
398
|
-
"requestDatatype": "
|
|
398
|
+
"requestDatatype": "",
|
|
399
399
|
"responseDatatype": "XML2JSON",
|
|
400
400
|
"headers": {},
|
|
401
401
|
"responseObjects": [
|
|
@@ -410,12 +410,12 @@
|
|
|
410
410
|
"name": "deleteHealthCheck",
|
|
411
411
|
"protocol": "REST",
|
|
412
412
|
"method": "DELETE",
|
|
413
|
-
"entitypath": "{base_path}/{version}/
|
|
413
|
+
"entitypath": "{base_path}/{version}/healthcheck/{pathv1}/?{query}",
|
|
414
414
|
"requestSchema": "schema.json",
|
|
415
415
|
"responseSchema": "schema.json",
|
|
416
416
|
"timeout": 0,
|
|
417
417
|
"sendEmpty": false,
|
|
418
|
-
"requestDatatype": "
|
|
418
|
+
"requestDatatype": "",
|
|
419
419
|
"responseDatatype": "XML2JSON",
|
|
420
420
|
"headers": {},
|
|
421
421
|
"responseObjects": [
|
|
@@ -430,13 +430,13 @@
|
|
|
430
430
|
"name": "getHealthCheck",
|
|
431
431
|
"protocol": "REST",
|
|
432
432
|
"method": "GET",
|
|
433
|
-
"entitypath": "{base_path}/{version}/
|
|
433
|
+
"entitypath": "{base_path}/{version}/healthcheck/{pathv1}/?{query}",
|
|
434
434
|
"requestSchema": "schema.json",
|
|
435
435
|
"responseSchema": "schema.json",
|
|
436
436
|
"timeout": 0,
|
|
437
437
|
"sendEmpty": false,
|
|
438
438
|
"sendGetBody": false,
|
|
439
|
-
"requestDatatype": "
|
|
439
|
+
"requestDatatype": "",
|
|
440
440
|
"responseDatatype": "XML2JSON",
|
|
441
441
|
"headers": {},
|
|
442
442
|
"responseObjects": [
|
|
@@ -451,7 +451,7 @@
|
|
|
451
451
|
"name": "updateHealthCheck",
|
|
452
452
|
"protocol": "REST",
|
|
453
453
|
"method": "POST",
|
|
454
|
-
"entitypath": "{base_path}/{version}/
|
|
454
|
+
"entitypath": "{base_path}/{version}/healthcheck/{pathv1}/?{query}",
|
|
455
455
|
"requestSchema": "schema.json",
|
|
456
456
|
"responseSchema": "schema.json",
|
|
457
457
|
"timeout": 0,
|
|
@@ -471,12 +471,12 @@
|
|
|
471
471
|
"name": "deleteHostedZone",
|
|
472
472
|
"protocol": "REST",
|
|
473
473
|
"method": "DELETE",
|
|
474
|
-
"entitypath": "{base_path}/{version}/
|
|
474
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/?{query}",
|
|
475
475
|
"requestSchema": "schema.json",
|
|
476
476
|
"responseSchema": "schema.json",
|
|
477
477
|
"timeout": 0,
|
|
478
478
|
"sendEmpty": false,
|
|
479
|
-
"requestDatatype": "
|
|
479
|
+
"requestDatatype": "",
|
|
480
480
|
"responseDatatype": "XML2JSON",
|
|
481
481
|
"headers": {},
|
|
482
482
|
"responseObjects": [
|
|
@@ -491,13 +491,13 @@
|
|
|
491
491
|
"name": "getHostedZone",
|
|
492
492
|
"protocol": "REST",
|
|
493
493
|
"method": "GET",
|
|
494
|
-
"entitypath": "{base_path}/{version}/
|
|
494
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/?{query}",
|
|
495
495
|
"requestSchema": "schema.json",
|
|
496
496
|
"responseSchema": "schema.json",
|
|
497
497
|
"timeout": 0,
|
|
498
498
|
"sendEmpty": false,
|
|
499
499
|
"sendGetBody": false,
|
|
500
|
-
"requestDatatype": "
|
|
500
|
+
"requestDatatype": "",
|
|
501
501
|
"responseDatatype": "XML2JSON",
|
|
502
502
|
"headers": {},
|
|
503
503
|
"responseObjects": [
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
"name": "updateHostedZoneComment",
|
|
513
513
|
"protocol": "REST",
|
|
514
514
|
"method": "POST",
|
|
515
|
-
"entitypath": "{base_path}/{version}/
|
|
515
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/?{query}",
|
|
516
516
|
"requestSchema": "schema.json",
|
|
517
517
|
"responseSchema": "schema.json",
|
|
518
518
|
"timeout": 0,
|
|
@@ -532,12 +532,12 @@
|
|
|
532
532
|
"name": "deleteKeySigningKey",
|
|
533
533
|
"protocol": "REST",
|
|
534
534
|
"method": "DELETE",
|
|
535
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
535
|
+
"entitypath": "{base_path}/{version}/keysigningkey/{pathv1}/{pathv2}/?{query}",
|
|
536
536
|
"requestSchema": "schema.json",
|
|
537
537
|
"responseSchema": "schema.json",
|
|
538
538
|
"timeout": 0,
|
|
539
539
|
"sendEmpty": false,
|
|
540
|
-
"requestDatatype": "
|
|
540
|
+
"requestDatatype": "",
|
|
541
541
|
"responseDatatype": "XML2JSON",
|
|
542
542
|
"headers": {},
|
|
543
543
|
"responseObjects": [
|
|
@@ -552,12 +552,12 @@
|
|
|
552
552
|
"name": "deleteQueryLoggingConfig",
|
|
553
553
|
"protocol": "REST",
|
|
554
554
|
"method": "DELETE",
|
|
555
|
-
"entitypath": "{base_path}/{version}/
|
|
555
|
+
"entitypath": "{base_path}/{version}/queryloggingconfig/{pathv1}/?{query}",
|
|
556
556
|
"requestSchema": "schema.json",
|
|
557
557
|
"responseSchema": "schema.json",
|
|
558
558
|
"timeout": 0,
|
|
559
559
|
"sendEmpty": false,
|
|
560
|
-
"requestDatatype": "
|
|
560
|
+
"requestDatatype": "",
|
|
561
561
|
"responseDatatype": "XML2JSON",
|
|
562
562
|
"headers": {},
|
|
563
563
|
"responseObjects": [
|
|
@@ -572,13 +572,13 @@
|
|
|
572
572
|
"name": "getQueryLoggingConfig",
|
|
573
573
|
"protocol": "REST",
|
|
574
574
|
"method": "GET",
|
|
575
|
-
"entitypath": "{base_path}/{version}/
|
|
575
|
+
"entitypath": "{base_path}/{version}/queryloggingconfig/{pathv1}/?{query}",
|
|
576
576
|
"requestSchema": "schema.json",
|
|
577
577
|
"responseSchema": "schema.json",
|
|
578
578
|
"timeout": 0,
|
|
579
579
|
"sendEmpty": false,
|
|
580
580
|
"sendGetBody": false,
|
|
581
|
-
"requestDatatype": "
|
|
581
|
+
"requestDatatype": "",
|
|
582
582
|
"responseDatatype": "XML2JSON",
|
|
583
583
|
"headers": {},
|
|
584
584
|
"responseObjects": [
|
|
@@ -593,12 +593,12 @@
|
|
|
593
593
|
"name": "deleteReusableDelegationSet",
|
|
594
594
|
"protocol": "REST",
|
|
595
595
|
"method": "DELETE",
|
|
596
|
-
"entitypath": "{base_path}/{version}/
|
|
596
|
+
"entitypath": "{base_path}/{version}/delegationset/{pathv1}/?{query}",
|
|
597
597
|
"requestSchema": "schema.json",
|
|
598
598
|
"responseSchema": "schema.json",
|
|
599
599
|
"timeout": 0,
|
|
600
600
|
"sendEmpty": false,
|
|
601
|
-
"requestDatatype": "
|
|
601
|
+
"requestDatatype": "",
|
|
602
602
|
"responseDatatype": "XML2JSON",
|
|
603
603
|
"headers": {},
|
|
604
604
|
"responseObjects": [
|
|
@@ -613,13 +613,13 @@
|
|
|
613
613
|
"name": "getReusableDelegationSet",
|
|
614
614
|
"protocol": "REST",
|
|
615
615
|
"method": "GET",
|
|
616
|
-
"entitypath": "{base_path}/{version}/
|
|
616
|
+
"entitypath": "{base_path}/{version}/delegationset/{pathv1}/?{query}",
|
|
617
617
|
"requestSchema": "schema.json",
|
|
618
618
|
"responseSchema": "schema.json",
|
|
619
619
|
"timeout": 0,
|
|
620
620
|
"sendEmpty": false,
|
|
621
621
|
"sendGetBody": false,
|
|
622
|
-
"requestDatatype": "
|
|
622
|
+
"requestDatatype": "",
|
|
623
623
|
"responseDatatype": "XML2JSON",
|
|
624
624
|
"headers": {},
|
|
625
625
|
"responseObjects": [
|
|
@@ -634,12 +634,12 @@
|
|
|
634
634
|
"name": "deleteTrafficPolicy",
|
|
635
635
|
"protocol": "REST",
|
|
636
636
|
"method": "DELETE",
|
|
637
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
637
|
+
"entitypath": "{base_path}/{version}/trafficpolicy/{pathv1}/{pathv2}/?{query}",
|
|
638
638
|
"requestSchema": "schema.json",
|
|
639
639
|
"responseSchema": "schema.json",
|
|
640
640
|
"timeout": 0,
|
|
641
641
|
"sendEmpty": false,
|
|
642
|
-
"requestDatatype": "
|
|
642
|
+
"requestDatatype": "",
|
|
643
643
|
"responseDatatype": "XML2JSON",
|
|
644
644
|
"headers": {},
|
|
645
645
|
"responseObjects": [
|
|
@@ -654,13 +654,13 @@
|
|
|
654
654
|
"name": "getTrafficPolicy",
|
|
655
655
|
"protocol": "REST",
|
|
656
656
|
"method": "GET",
|
|
657
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
657
|
+
"entitypath": "{base_path}/{version}/trafficpolicy/{pathv1}/{pathv2}/?{query}",
|
|
658
658
|
"requestSchema": "schema.json",
|
|
659
659
|
"responseSchema": "schema.json",
|
|
660
660
|
"timeout": 0,
|
|
661
661
|
"sendEmpty": false,
|
|
662
662
|
"sendGetBody": false,
|
|
663
|
-
"requestDatatype": "
|
|
663
|
+
"requestDatatype": "",
|
|
664
664
|
"responseDatatype": "XML2JSON",
|
|
665
665
|
"headers": {},
|
|
666
666
|
"responseObjects": [
|
|
@@ -675,7 +675,7 @@
|
|
|
675
675
|
"name": "updateTrafficPolicyComment",
|
|
676
676
|
"protocol": "REST",
|
|
677
677
|
"method": "POST",
|
|
678
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
678
|
+
"entitypath": "{base_path}/{version}/trafficpolicy/{pathv1}/{pathv2}/?{query}",
|
|
679
679
|
"requestSchema": "schema.json",
|
|
680
680
|
"responseSchema": "schema.json",
|
|
681
681
|
"timeout": 0,
|
|
@@ -695,12 +695,12 @@
|
|
|
695
695
|
"name": "deleteTrafficPolicyInstance",
|
|
696
696
|
"protocol": "REST",
|
|
697
697
|
"method": "DELETE",
|
|
698
|
-
"entitypath": "{base_path}/{version}/
|
|
698
|
+
"entitypath": "{base_path}/{version}/trafficpolicyinstance/{pathv1}/?{query}",
|
|
699
699
|
"requestSchema": "schema.json",
|
|
700
700
|
"responseSchema": "schema.json",
|
|
701
701
|
"timeout": 0,
|
|
702
702
|
"sendEmpty": false,
|
|
703
|
-
"requestDatatype": "
|
|
703
|
+
"requestDatatype": "",
|
|
704
704
|
"responseDatatype": "XML2JSON",
|
|
705
705
|
"headers": {},
|
|
706
706
|
"responseObjects": [
|
|
@@ -715,13 +715,13 @@
|
|
|
715
715
|
"name": "getTrafficPolicyInstance",
|
|
716
716
|
"protocol": "REST",
|
|
717
717
|
"method": "GET",
|
|
718
|
-
"entitypath": "{base_path}/{version}/
|
|
718
|
+
"entitypath": "{base_path}/{version}/trafficpolicyinstance/{pathv1}/?{query}",
|
|
719
719
|
"requestSchema": "schema.json",
|
|
720
720
|
"responseSchema": "schema.json",
|
|
721
721
|
"timeout": 0,
|
|
722
722
|
"sendEmpty": false,
|
|
723
723
|
"sendGetBody": false,
|
|
724
|
-
"requestDatatype": "
|
|
724
|
+
"requestDatatype": "",
|
|
725
725
|
"responseDatatype": "XML2JSON",
|
|
726
726
|
"headers": {},
|
|
727
727
|
"responseObjects": [
|
|
@@ -736,7 +736,7 @@
|
|
|
736
736
|
"name": "updateTrafficPolicyInstance",
|
|
737
737
|
"protocol": "REST",
|
|
738
738
|
"method": "POST",
|
|
739
|
-
"entitypath": "{base_path}/{version}/
|
|
739
|
+
"entitypath": "{base_path}/{version}/trafficpolicyinstance/{pathv1}/?{query}",
|
|
740
740
|
"requestSchema": "schema.json",
|
|
741
741
|
"responseSchema": "schema.json",
|
|
742
742
|
"timeout": 0,
|
|
@@ -756,7 +756,7 @@
|
|
|
756
756
|
"name": "deleteVPCAssociationAuthorization",
|
|
757
757
|
"protocol": "REST",
|
|
758
758
|
"method": "POST",
|
|
759
|
-
"entitypath": "{base_path}/{version}/
|
|
759
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/deauthorizevpcassociation/?{query}",
|
|
760
760
|
"requestSchema": "schema.json",
|
|
761
761
|
"responseSchema": "schema.json",
|
|
762
762
|
"timeout": 0,
|
|
@@ -776,12 +776,12 @@
|
|
|
776
776
|
"name": "disableHostedZoneDNSSEC",
|
|
777
777
|
"protocol": "REST",
|
|
778
778
|
"method": "POST",
|
|
779
|
-
"entitypath": "{base_path}/{version}/
|
|
779
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/disable-dnssec/?{query}",
|
|
780
780
|
"requestSchema": "schema.json",
|
|
781
781
|
"responseSchema": "schema.json",
|
|
782
782
|
"timeout": 0,
|
|
783
783
|
"sendEmpty": false,
|
|
784
|
-
"requestDatatype": "
|
|
784
|
+
"requestDatatype": "",
|
|
785
785
|
"responseDatatype": "XML2JSON",
|
|
786
786
|
"headers": {},
|
|
787
787
|
"responseObjects": [
|
|
@@ -796,7 +796,7 @@
|
|
|
796
796
|
"name": "disassociateVPCFromHostedZone",
|
|
797
797
|
"protocol": "REST",
|
|
798
798
|
"method": "POST",
|
|
799
|
-
"entitypath": "{base_path}/{version}/
|
|
799
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/disassociatevpc/?{query}",
|
|
800
800
|
"requestSchema": "schema.json",
|
|
801
801
|
"responseSchema": "schema.json",
|
|
802
802
|
"timeout": 0,
|
|
@@ -816,12 +816,12 @@
|
|
|
816
816
|
"name": "enableHostedZoneDNSSEC",
|
|
817
817
|
"protocol": "REST",
|
|
818
818
|
"method": "POST",
|
|
819
|
-
"entitypath": "{base_path}/{version}/
|
|
819
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/enable-dnssec/?{query}",
|
|
820
820
|
"requestSchema": "schema.json",
|
|
821
821
|
"responseSchema": "schema.json",
|
|
822
822
|
"timeout": 0,
|
|
823
823
|
"sendEmpty": false,
|
|
824
|
-
"requestDatatype": "
|
|
824
|
+
"requestDatatype": "",
|
|
825
825
|
"responseDatatype": "XML2JSON",
|
|
826
826
|
"headers": {},
|
|
827
827
|
"responseObjects": [
|
|
@@ -836,13 +836,13 @@
|
|
|
836
836
|
"name": "getAccountLimit",
|
|
837
837
|
"protocol": "REST",
|
|
838
838
|
"method": "GET",
|
|
839
|
-
"entitypath": "{base_path}/{version}/
|
|
839
|
+
"entitypath": "{base_path}/{version}/accountlimit/{pathv1}/?{query}",
|
|
840
840
|
"requestSchema": "schema.json",
|
|
841
841
|
"responseSchema": "schema.json",
|
|
842
842
|
"timeout": 0,
|
|
843
843
|
"sendEmpty": false,
|
|
844
844
|
"sendGetBody": false,
|
|
845
|
-
"requestDatatype": "
|
|
845
|
+
"requestDatatype": "",
|
|
846
846
|
"responseDatatype": "XML2JSON",
|
|
847
847
|
"headers": {},
|
|
848
848
|
"responseObjects": [
|
|
@@ -857,13 +857,13 @@
|
|
|
857
857
|
"name": "getChange",
|
|
858
858
|
"protocol": "REST",
|
|
859
859
|
"method": "GET",
|
|
860
|
-
"entitypath": "{base_path}/{version}/
|
|
860
|
+
"entitypath": "{base_path}/{version}/change/{pathv1}/?{query}",
|
|
861
861
|
"requestSchema": "schema.json",
|
|
862
862
|
"responseSchema": "schema.json",
|
|
863
863
|
"timeout": 0,
|
|
864
864
|
"sendEmpty": false,
|
|
865
865
|
"sendGetBody": false,
|
|
866
|
-
"requestDatatype": "
|
|
866
|
+
"requestDatatype": "",
|
|
867
867
|
"responseDatatype": "XML2JSON",
|
|
868
868
|
"headers": {},
|
|
869
869
|
"responseObjects": [
|
|
@@ -878,13 +878,13 @@
|
|
|
878
878
|
"name": "getCheckerIpRanges",
|
|
879
879
|
"protocol": "REST",
|
|
880
880
|
"method": "GET",
|
|
881
|
-
"entitypath": "{base_path}/{version}/
|
|
881
|
+
"entitypath": "{base_path}/{version}/checkeripranges/?{query}",
|
|
882
882
|
"requestSchema": "schema.json",
|
|
883
883
|
"responseSchema": "schema.json",
|
|
884
884
|
"timeout": 0,
|
|
885
885
|
"sendEmpty": false,
|
|
886
886
|
"sendGetBody": false,
|
|
887
|
-
"requestDatatype": "
|
|
887
|
+
"requestDatatype": "",
|
|
888
888
|
"responseDatatype": "XML2JSON",
|
|
889
889
|
"headers": {},
|
|
890
890
|
"responseObjects": [
|
|
@@ -899,13 +899,13 @@
|
|
|
899
899
|
"name": "getDNSSEC",
|
|
900
900
|
"protocol": "REST",
|
|
901
901
|
"method": "GET",
|
|
902
|
-
"entitypath": "{base_path}/{version}/
|
|
902
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/dnssec/?{query}",
|
|
903
903
|
"requestSchema": "schema.json",
|
|
904
904
|
"responseSchema": "schema.json",
|
|
905
905
|
"timeout": 0,
|
|
906
906
|
"sendEmpty": false,
|
|
907
907
|
"sendGetBody": false,
|
|
908
|
-
"requestDatatype": "
|
|
908
|
+
"requestDatatype": "",
|
|
909
909
|
"responseDatatype": "XML2JSON",
|
|
910
910
|
"headers": {},
|
|
911
911
|
"responseObjects": [
|
|
@@ -920,13 +920,13 @@
|
|
|
920
920
|
"name": "getGeoLocation",
|
|
921
921
|
"protocol": "REST",
|
|
922
922
|
"method": "GET",
|
|
923
|
-
"entitypath": "{base_path}/{version}/
|
|
923
|
+
"entitypath": "{base_path}/{version}/geolocation/?{query}",
|
|
924
924
|
"requestSchema": "schema.json",
|
|
925
925
|
"responseSchema": "schema.json",
|
|
926
926
|
"timeout": 0,
|
|
927
927
|
"sendEmpty": false,
|
|
928
928
|
"sendGetBody": false,
|
|
929
|
-
"requestDatatype": "
|
|
929
|
+
"requestDatatype": "",
|
|
930
930
|
"responseDatatype": "XML2JSON",
|
|
931
931
|
"headers": {},
|
|
932
932
|
"responseObjects": [
|
|
@@ -941,13 +941,13 @@
|
|
|
941
941
|
"name": "getHealthCheckCount",
|
|
942
942
|
"protocol": "REST",
|
|
943
943
|
"method": "GET",
|
|
944
|
-
"entitypath": "{base_path}/{version}/
|
|
944
|
+
"entitypath": "{base_path}/{version}/healthcheckcount/?{query}",
|
|
945
945
|
"requestSchema": "schema.json",
|
|
946
946
|
"responseSchema": "schema.json",
|
|
947
947
|
"timeout": 0,
|
|
948
948
|
"sendEmpty": false,
|
|
949
949
|
"sendGetBody": false,
|
|
950
|
-
"requestDatatype": "
|
|
950
|
+
"requestDatatype": "",
|
|
951
951
|
"responseDatatype": "XML2JSON",
|
|
952
952
|
"headers": {},
|
|
953
953
|
"responseObjects": [
|
|
@@ -962,13 +962,13 @@
|
|
|
962
962
|
"name": "getHealthCheckLastFailureReason",
|
|
963
963
|
"protocol": "REST",
|
|
964
964
|
"method": "GET",
|
|
965
|
-
"entitypath": "{base_path}/{version}/
|
|
965
|
+
"entitypath": "{base_path}/{version}/healthcheck/{pathv1}/lastfailurereason/?{query}",
|
|
966
966
|
"requestSchema": "schema.json",
|
|
967
967
|
"responseSchema": "schema.json",
|
|
968
968
|
"timeout": 0,
|
|
969
969
|
"sendEmpty": false,
|
|
970
970
|
"sendGetBody": false,
|
|
971
|
-
"requestDatatype": "
|
|
971
|
+
"requestDatatype": "",
|
|
972
972
|
"responseDatatype": "XML2JSON",
|
|
973
973
|
"headers": {},
|
|
974
974
|
"responseObjects": [
|
|
@@ -983,13 +983,13 @@
|
|
|
983
983
|
"name": "getHealthCheckStatus",
|
|
984
984
|
"protocol": "REST",
|
|
985
985
|
"method": "GET",
|
|
986
|
-
"entitypath": "{base_path}/{version}/
|
|
986
|
+
"entitypath": "{base_path}/{version}/healthcheck/{pathv1}/status/?{query}",
|
|
987
987
|
"requestSchema": "schema.json",
|
|
988
988
|
"responseSchema": "schema.json",
|
|
989
989
|
"timeout": 0,
|
|
990
990
|
"sendEmpty": false,
|
|
991
991
|
"sendGetBody": false,
|
|
992
|
-
"requestDatatype": "
|
|
992
|
+
"requestDatatype": "",
|
|
993
993
|
"responseDatatype": "XML2JSON",
|
|
994
994
|
"headers": {},
|
|
995
995
|
"responseObjects": [
|
|
@@ -1004,13 +1004,13 @@
|
|
|
1004
1004
|
"name": "getHostedZoneCount",
|
|
1005
1005
|
"protocol": "REST",
|
|
1006
1006
|
"method": "GET",
|
|
1007
|
-
"entitypath": "{base_path}/{version}/
|
|
1007
|
+
"entitypath": "{base_path}/{version}/hostedzonecount?{query}",
|
|
1008
1008
|
"requestSchema": "schema.json",
|
|
1009
1009
|
"responseSchema": "schema.json",
|
|
1010
1010
|
"timeout": 0,
|
|
1011
1011
|
"sendEmpty": false,
|
|
1012
1012
|
"sendGetBody": false,
|
|
1013
|
-
"requestDatatype": "
|
|
1013
|
+
"requestDatatype": "",
|
|
1014
1014
|
"responseDatatype": "XML2JSON",
|
|
1015
1015
|
"headers": {},
|
|
1016
1016
|
"responseObjects": [
|
|
@@ -1025,13 +1025,13 @@
|
|
|
1025
1025
|
"name": "getHostedZoneLimit",
|
|
1026
1026
|
"protocol": "REST",
|
|
1027
1027
|
"method": "GET",
|
|
1028
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
1028
|
+
"entitypath": "{base_path}/{version}/hostedzonelimit/{pathv1}/{pathv2}/?{query}",
|
|
1029
1029
|
"requestSchema": "schema.json",
|
|
1030
1030
|
"responseSchema": "schema.json",
|
|
1031
1031
|
"timeout": 0,
|
|
1032
1032
|
"sendEmpty": false,
|
|
1033
1033
|
"sendGetBody": false,
|
|
1034
|
-
"requestDatatype": "
|
|
1034
|
+
"requestDatatype": "",
|
|
1035
1035
|
"responseDatatype": "XML2JSON",
|
|
1036
1036
|
"headers": {},
|
|
1037
1037
|
"responseObjects": [
|
|
@@ -1046,13 +1046,13 @@
|
|
|
1046
1046
|
"name": "getReusableDelegationSetLimit",
|
|
1047
1047
|
"protocol": "REST",
|
|
1048
1048
|
"method": "GET",
|
|
1049
|
-
"entitypath": "{base_path}/{version}/{pathv1}/
|
|
1049
|
+
"entitypath": "{base_path}/{version}/reusabledelegationsetlimit/{pathv1}/{pathv2}/?{query}",
|
|
1050
1050
|
"requestSchema": "schema.json",
|
|
1051
1051
|
"responseSchema": "schema.json",
|
|
1052
1052
|
"timeout": 0,
|
|
1053
1053
|
"sendEmpty": false,
|
|
1054
1054
|
"sendGetBody": false,
|
|
1055
|
-
"requestDatatype": "
|
|
1055
|
+
"requestDatatype": "",
|
|
1056
1056
|
"responseDatatype": "XML2JSON",
|
|
1057
1057
|
"headers": {},
|
|
1058
1058
|
"responseObjects": [
|
|
@@ -1067,13 +1067,13 @@
|
|
|
1067
1067
|
"name": "getTrafficPolicyInstanceCount",
|
|
1068
1068
|
"protocol": "REST",
|
|
1069
1069
|
"method": "GET",
|
|
1070
|
-
"entitypath": "{base_path}/{version}/
|
|
1070
|
+
"entitypath": "{base_path}/{version}/trafficpolicyinstancecount/?{query}",
|
|
1071
1071
|
"requestSchema": "schema.json",
|
|
1072
1072
|
"responseSchema": "schema.json",
|
|
1073
1073
|
"timeout": 0,
|
|
1074
1074
|
"sendEmpty": false,
|
|
1075
1075
|
"sendGetBody": false,
|
|
1076
|
-
"requestDatatype": "
|
|
1076
|
+
"requestDatatype": "",
|
|
1077
1077
|
"responseDatatype": "XML2JSON",
|
|
1078
1078
|
"headers": {},
|
|
1079
1079
|
"responseObjects": [
|
|
@@ -1088,13 +1088,13 @@
|
|
|
1088
1088
|
"name": "listGeoLocations",
|
|
1089
1089
|
"protocol": "REST",
|
|
1090
1090
|
"method": "GET",
|
|
1091
|
-
"entitypath": "{base_path}/{version}/
|
|
1091
|
+
"entitypath": "{base_path}/{version}/geolocations/?{query}",
|
|
1092
1092
|
"requestSchema": "schema.json",
|
|
1093
1093
|
"responseSchema": "schema.json",
|
|
1094
1094
|
"timeout": 0,
|
|
1095
1095
|
"sendEmpty": false,
|
|
1096
1096
|
"sendGetBody": false,
|
|
1097
|
-
"requestDatatype": "
|
|
1097
|
+
"requestDatatype": "",
|
|
1098
1098
|
"responseDatatype": "XML2JSON",
|
|
1099
1099
|
"headers": {},
|
|
1100
1100
|
"responseObjects": [
|
|
@@ -1109,13 +1109,13 @@
|
|
|
1109
1109
|
"name": "listHostedZonesByName",
|
|
1110
1110
|
"protocol": "REST",
|
|
1111
1111
|
"method": "GET",
|
|
1112
|
-
"entitypath": "{base_path}/{version}/
|
|
1112
|
+
"entitypath": "{base_path}/{version}/hostedzonesbyname/?{query}",
|
|
1113
1113
|
"requestSchema": "schema.json",
|
|
1114
1114
|
"responseSchema": "schema.json",
|
|
1115
1115
|
"timeout": 0,
|
|
1116
1116
|
"sendEmpty": false,
|
|
1117
1117
|
"sendGetBody": false,
|
|
1118
|
-
"requestDatatype": "
|
|
1118
|
+
"requestDatatype": "",
|
|
1119
1119
|
"responseDatatype": "XML2JSON",
|
|
1120
1120
|
"headers": {},
|
|
1121
1121
|
"responseObjects": [
|
|
@@ -1130,13 +1130,13 @@
|
|
|
1130
1130
|
"name": "listHostedZonesByVPC",
|
|
1131
1131
|
"protocol": "REST",
|
|
1132
1132
|
"method": "GET",
|
|
1133
|
-
"entitypath": "{base_path}/{version}/
|
|
1133
|
+
"entitypath": "{base_path}/{version}/hostedzonesbyvpc/?{query}",
|
|
1134
1134
|
"requestSchema": "schema.json",
|
|
1135
1135
|
"responseSchema": "schema.json",
|
|
1136
1136
|
"timeout": 0,
|
|
1137
1137
|
"sendEmpty": false,
|
|
1138
1138
|
"sendGetBody": false,
|
|
1139
|
-
"requestDatatype": "
|
|
1139
|
+
"requestDatatype": "",
|
|
1140
1140
|
"responseDatatype": "XML2JSON",
|
|
1141
1141
|
"headers": {},
|
|
1142
1142
|
"responseObjects": [
|
|
@@ -1151,13 +1151,13 @@
|
|
|
1151
1151
|
"name": "listResourceRecordSets",
|
|
1152
1152
|
"protocol": "REST",
|
|
1153
1153
|
"method": "GET",
|
|
1154
|
-
"entitypath": "{base_path}/{version}/
|
|
1154
|
+
"entitypath": "{base_path}/{version}/hostedzone/{pathv1}/rrset/?{query}",
|
|
1155
1155
|
"requestSchema": "schema.json",
|
|
1156
1156
|
"responseSchema": "schema.json",
|
|
1157
1157
|
"timeout": 0,
|
|
1158
1158
|
"sendEmpty": false,
|
|
1159
1159
|
"sendGetBody": false,
|
|
1160
|
-
"requestDatatype": "
|
|
1160
|
+
"requestDatatype": "",
|
|
1161
1161
|
"responseDatatype": "XML2JSON",
|
|
1162
1162
|
"headers": {},
|
|
1163
1163
|
"responseObjects": [
|
|
@@ -1172,7 +1172,7 @@
|
|
|
1172
1172
|
"name": "listTagsForResources",
|
|
1173
1173
|
"protocol": "REST",
|
|
1174
1174
|
"method": "POST",
|
|
1175
|
-
"entitypath": "{base_path}/{version}/
|
|
1175
|
+
"entitypath": "{base_path}/{version}/tags/{pathv1}/?{query}",
|
|
1176
1176
|
"requestSchema": "schema.json",
|
|
1177
1177
|
"responseSchema": "schema.json",
|
|
1178
1178
|
"timeout": 0,
|
|
@@ -1192,13 +1192,13 @@
|
|
|
1192
1192
|
"name": "listTrafficPolicies",
|
|
1193
1193
|
"protocol": "REST",
|
|
1194
1194
|
"method": "GET",
|
|
1195
|
-
"entitypath": "{base_path}/{version}/
|
|
1195
|
+
"entitypath": "{base_path}/{version}/trafficpolicies/?{query}",
|
|
1196
1196
|
"requestSchema": "schema.json",
|
|
1197
1197
|
"responseSchema": "schema.json",
|
|
1198
1198
|
"timeout": 0,
|
|
1199
1199
|
"sendEmpty": false,
|
|
1200
1200
|
"sendGetBody": false,
|
|
1201
|
-
"requestDatatype": "
|
|
1201
|
+
"requestDatatype": "",
|
|
1202
1202
|
"responseDatatype": "XML2JSON",
|
|
1203
1203
|
"headers": {},
|
|
1204
1204
|
"responseObjects": [
|
|
@@ -1213,13 +1213,13 @@
|
|
|
1213
1213
|
"name": "listTrafficPolicyInstances",
|
|
1214
1214
|
"protocol": "REST",
|
|
1215
1215
|
"method": "GET",
|
|
1216
|
-
"entitypath": "{base_path}/{version}/
|
|
1216
|
+
"entitypath": "{base_path}/{version}/trafficpolicyinstances/?{query}",
|
|
1217
1217
|
"requestSchema": "schema.json",
|
|
1218
1218
|
"responseSchema": "schema.json",
|
|
1219
1219
|
"timeout": 0,
|
|
1220
1220
|
"sendEmpty": false,
|
|
1221
1221
|
"sendGetBody": false,
|
|
1222
|
-
"requestDatatype": "
|
|
1222
|
+
"requestDatatype": "",
|
|
1223
1223
|
"responseDatatype": "XML2JSON",
|
|
1224
1224
|
"headers": {},
|
|
1225
1225
|
"responseObjects": [
|
|
@@ -1234,13 +1234,13 @@
|
|
|
1234
1234
|
"name": "listTrafficPolicyInstancesByHostedZone",
|
|
1235
1235
|
"protocol": "REST",
|
|
1236
1236
|
"method": "GET",
|
|
1237
|
-
"entitypath": "{base_path}/{version}/
|
|
1237
|
+
"entitypath": "{base_path}/{version}/trafficpolicyinstances/hostedzone/?{query}",
|
|
1238
1238
|
"requestSchema": "schema.json",
|
|
1239
1239
|
"responseSchema": "schema.json",
|
|
1240
1240
|
"timeout": 0,
|
|
1241
1241
|
"sendEmpty": false,
|
|
1242
1242
|
"sendGetBody": false,
|
|
1243
|
-
"requestDatatype": "
|
|
1243
|
+
"requestDatatype": "",
|
|
1244
1244
|
"responseDatatype": "XML2JSON",
|
|
1245
1245
|
"headers": {},
|
|
1246
1246
|
"responseObjects": [
|
|
@@ -1255,13 +1255,13 @@
|
|
|
1255
1255
|
"name": "listTrafficPolicyInstancesByPolicy",
|
|
1256
1256
|
"protocol": "REST",
|
|
1257
1257
|
"method": "GET",
|
|
1258
|
-
"entitypath": "{base_path}/{version}/
|
|
1258
|
+
"entitypath": "{base_path}/{version}/trafficpolicyinstances/trafficpolicy/?{query}",
|
|
1259
1259
|
"requestSchema": "schema.json",
|
|
1260
1260
|
"responseSchema": "schema.json",
|
|
1261
1261
|
"timeout": 0,
|
|
1262
1262
|
"sendEmpty": false,
|
|
1263
1263
|
"sendGetBody": false,
|
|
1264
|
-
"requestDatatype": "
|
|
1264
|
+
"requestDatatype": "",
|
|
1265
1265
|
"responseDatatype": "XML2JSON",
|
|
1266
1266
|
"headers": {},
|
|
1267
1267
|
"responseObjects": [
|
|
@@ -1276,13 +1276,13 @@
|
|
|
1276
1276
|
"name": "listTrafficPolicyVersions",
|
|
1277
1277
|
"protocol": "REST",
|
|
1278
1278
|
"method": "GET",
|
|
1279
|
-
"entitypath": "{base_path}/{version}/
|
|
1279
|
+
"entitypath": "{base_path}/{version}/trafficpolicies/{pathv1}/versions/?{query}",
|
|
1280
1280
|
"requestSchema": "schema.json",
|
|
1281
1281
|
"responseSchema": "schema.json",
|
|
1282
1282
|
"timeout": 0,
|
|
1283
1283
|
"sendEmpty": false,
|
|
1284
1284
|
"sendGetBody": false,
|
|
1285
|
-
"requestDatatype": "
|
|
1285
|
+
"requestDatatype": "",
|
|
1286
1286
|
"responseDatatype": "XML2JSON",
|
|
1287
1287
|
"headers": {},
|
|
1288
1288
|
"responseObjects": [
|
|
@@ -1297,13 +1297,13 @@
|
|
|
1297
1297
|
"name": "testDNSAnswer",
|
|
1298
1298
|
"protocol": "REST",
|
|
1299
1299
|
"method": "GET",
|
|
1300
|
-
"entitypath": "{base_path}/{version}/
|
|
1300
|
+
"entitypath": "{base_path}/{version}/testdnsanswer/?{query}",
|
|
1301
1301
|
"requestSchema": "schema.json",
|
|
1302
1302
|
"responseSchema": "schema.json",
|
|
1303
1303
|
"timeout": 0,
|
|
1304
1304
|
"sendEmpty": false,
|
|
1305
1305
|
"sendGetBody": false,
|
|
1306
|
-
"requestDatatype": "
|
|
1306
|
+
"requestDatatype": "",
|
|
1307
1307
|
"responseDatatype": "XML2JSON",
|
|
1308
1308
|
"headers": {},
|
|
1309
1309
|
"responseObjects": [
|