-
Notifications
You must be signed in to change notification settings - Fork 3
/
swagger.yaml
5494 lines (5494 loc) · 135 KB
/
swagger.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
swagger: '2.0'
info:
version: '1.0'
title: Habitat Commissioner
description: Express REST API for moving data between orgs and environments in apigee
license:
name: MIT
url: http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
host: localhost:8080
basePath: /
tags:
- name: authorization
description: Authenticate with the HC API
- name: user
description: Operations about user
- name: misc
description: Miscellaneous operations
- name: api products
description: Everything about API products
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api/api-products-1'
- name: api proxies
description: Everything about API proxies
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api/apis-0'
- name: caches
description: Everything about caches
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api/caches'
- name: companies
description: Everything about companies
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api/companies-0'
- name: developers
description: Everything about developers
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api/developers-0'
- name: kvms
description: Everything about KVMs
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api-services/content/environment-keyvalue-maps'
- name: monetization currencies
description: Everything about supported currencies
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api-reference/content/monetization-apis#currency'
- name: monetization packages
description: Everything about packages and rate plans
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api-reference/content/monetization-apis#api-packages'
- name: notification email templates
description: Everything about notification email templates
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api-reference/content/monetization-apis#event-notifications'
- name: reports
description: Everything about reports
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api/reports'
- name: shared flows
description: Everything about shared flows
externalDocs:
description: Apigee docs
url: 'https://docs-apis.apigee.io/apis/shared-flows-management-api-reference/index'
- name: target servers
description: Everything about target servers
externalDocs:
description: Apigee docs
url: 'https://docs.apigee.com/api/api_resources/51-targetservers'
schemes:
- http
consumes:
- application/json
produces:
- application/json
paths:
/auth/login:
post:
description: Login to the Habitat Commissioner and receive a token
summary: login
tags:
- authorization
operationId: login
produces:
- application/json
consumes:
- application/x-www-form-urlencoded
parameters:
- name: username
in: formData
required: true
type: string
description: 'Apigee username'
- name: password
in: formData
required: true
type: string
description: 'Apigee password'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/LoginResponse'
examples:
application/json:
code: 200
message: Hello, username
data:
token: token
/user:
get:
description: Get all information for the logged in user
summary: Get the logged in user
tags:
- user
operationId: getUser
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/UserResponse'
put:
description: Update the user settings for Apigee API hostname, repo parent directory path and which orgs to hit in Apigee
summary: Update user configuration
tags:
- user
operationId: updateConfig
produces:
- application/json
consumes:
- application/json
parameters:
- in: body
name: user config
description: Basic user configuration
schema:
type: object
properties:
apiHostName:
type: string
repoParentDirectory:
type: string
orgs:
type: array
items:
type: string
- in: header
name: token
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/UserResponse'
delete:
description: Delete the logged in user
summary: Delete the logged in user
tags:
- user
operationId: deleteUser
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
/user/repos:
get:
description: Get the names of each directory in the repo parent directory
summary: Get repo directories
tags:
- user
operationId: getRepos
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
type: object
properties:
code:
description: ''
example: 200
type: integer
format: int32
message:
description: ''
example: Repo directories
type: string
data:
type: array
items:
type: string
/user/proxy:
put:
description: Update proxy settings for the user
summary: Update proxy settings
tags:
- user
operationId: updateProxySettings
produces:
- application/json
parameters:
- in: body
name: proxy config
description: Proxy configuration
schema:
type: object
properties:
enable:
type: boolean
username:
type: string
password:
type: string
scheme:
type: string
host:
type: string
port:
type: string
- in: header
name: token
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/UserResponse'
/user/ssl:
post:
description: Enable SSL for the user so they can use the Apigee management API using an SSL key and cert
summary: Enable SSL
tags:
- user
operationId: enableSSL
produces:
- application/json
consumes:
- application/x-www-form-urlencoded
parameters:
- name: passphrase
in: formData
type: string
description: 'SSL passphrase'
- name: key
in: formData
required: true
type: string
description: 'SSL key. Must be a .pem file'
- name: cert
in: formData
required: true
type: string
description: 'SSL cert. Must be a .pem file'
- name: token
in: header
required: true
type: string
description: 'access_token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/UserResponse'
delete:
description: Disable SSL for the user. This will also delete any previously uploaded key and cert files from the server
summary: Disable SSL
tags:
- user
operationId: disableSSL
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/UserResponse'
/user/tests:
post:
description: Upload a postman collection and environment
summary: Upload Postman tests
tags:
- user
operationId: uploadPostmanTest
produces:
- application/json
consumes:
- application/x-www-form-urlencoded
parameters:
- name: name
in: formData
required: true
type: string
description: 'Name for the test suite'
- name: collection
in: formData
required: true
type: string
description: 'Postman collection. Must be a .json file'
- name: environment
in: formData
required: true
type: string
description: 'Postman environment. Must be a .json file'
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/UserResponse'
/user/tests/{test_id}:
get:
description: Get the details of an uploaded postman collection and environment by ID
summary: Get postman test
tags:
- user
operationId: getTest
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
- name: test_id
in: path
required: true
type: string
description: 'Postman test id'
responses:
200:
description: 'OK'
schema:
type: object
properties:
code:
description: ''
example: 200
type: integer
format: int32
message:
description: ''
example: Details for test test_id
type: string
data:
type: object
properties:
collection:
type: object
description: 'Postman test collection'
environment:
type: object
description: 'Postman test environment'
put:
description: Update the collection and/ or environment files for an existing upload
summary: Update existing postman test
tags:
- user
operationId: updatePostmanTest
produces:
- application/json
consumes:
- application/x-www-form-urlencoded
parameters:
- name: name
in: formData
required: true
type: string
description: 'Name for the test suite'
- name: collection
in: formData
required: true
type: string
description: 'Postman collection. Must be a .json file'
- name: environment
in: formData
required: true
type: string
description: 'Postman environment. Must be a .json file'
- name: token
in: header
required: true
type: string
description: 'access token'
- name: test_id
in: path
required: true
type: string
description: 'The Postman test ID'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/UserResponse'
delete:
description: Delete a postman collection and environment
summary: Delete a Postman test
tags:
- user
operationId: deletePostmanTest
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
- name: test_id
in: path
required: true
type: string
description: 'The Postman test ID'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/UserResponse'
/api:
get:
description: Get the base name of all Habitat Commissioner API endpoints
summary: Get endpoints
tags:
- misc
operationId: getEndpoints
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
type: object
properties:
code:
description: ''
example: 200
type: integer
format: int32
message:
description: ''
example: All HC base endpoints
type: string
data:
type: array
items:
type: string
/api/envs:
get:
description: Get the environments for each org set in the user configuration
summary: Get environments
tags:
- misc
operationId: getEnvs
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
type: object
properties:
code:
description: ''
example: 200
type: integer
format: int32
message:
description: ''
example: Org and envs from apigee
type: string
data:
type: array
items:
type: object
properties:
org:
type: string
env:
type: array
items:
type: string
/api/env/{org}:
get:
description: Get the environments for a single org
summary: Get environments in an organization
tags:
- misc
operationId: getOrgEnvs
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
- name: org
in: path
required: true
type: string
description: 'organization name'
responses:
200:
description: 'OK'
schema:
type: object
properties:
code:
description: ''
example: 200
type: integer
format: int32
message:
description: ''
example: Environments for org
type: string
data:
type: array
items:
type: string
/api/postman_test/{test_id}:
get:
description: Run a postman test
summary: Run a Postman test
tags:
- misc
operationId: runPostmanTest
produces:
- application/json
parameters:
- name: token
in: header
required: true
type: string
description: 'access token'
- name: test_id
in: path
required: true
type: string
description: 'Postman test ID'
responses:
200:
description: 'OK'
/apiProducts/apigee/list:
get:
description: List all of the API products in Apigee at the specified org
summary: List API products
tags:
- api products
operationId: listProducts
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: ''
- name: token
in: header
required: true
type: string
description: ''
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
examples:
application/json:
code: 200
message: Message
data:
apigeeData: apigeeData
security: []
x-unitTests:
- request:
method: GET
uri: /apiProducts/apigee/list?org={{org}}
headers:
token: '{{token}}'
expectedResponse:
x-allowExtraHeaders: true
x-bodyMatchMode: RAW
x-arrayOrderedMatching: false
x-arrayCheckCount: false
x-matchResponseSchema: true
headers:
Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept
Access-Control-Allow-Methods: POST, GET, PATCH, DELETE, OPTIONS
Access-Control-Allow-Origin: '*'
Connection: keep-alive
Content-Length: 1269
Content-Type: application/json; charset=utf-8
Date: Tue, 19 Dec 2017 02:08:08 GMT
ETag: W/"4f5-lJJJZcAEIH8jiJcI6DR0v6Wu20k"
X-Powered-By: Express
body: >-
{
"code": 200,
"message": "Message",
"data": {
"apigeeData": "apigeeData"
}
}
x-testShouldPass: true
x-testEnabled: true
x-testName: listProducts
x-testDescription: List all of the API products in Apigee at the specified org
x-operation-settings:
CollectParameters: false
AllowDynamicQueryParameters: false
AllowDynamicFormParameters: false
IsMultiContentStreaming: false
/apiProducts/apigee/details/{product_name}:
get:
description: Details of single API product from Apigee
summary: Get an API product
tags:
- api products
operationId: getProduct
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: product_name
in: path
required: true
type: string
description: 'product name'
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/apiProducts/repo/list:
get:
description: List of all API products in the specified repo under the specified org
summary: List API products in the repo
tags:
- api products
operationId: listRepoProducts
produces:
- application/json
parameters:
- name: repo
in: query
required: true
type: string
description: 'repo name'
- name: org
in: query
required: true
type: string
description: 'org name'
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/apiProducts/repo/details/{product_name}:
get:
description: Details of a single API product from the repo
summary: Get API product from repo
tags:
- api products
operationId: getRepoProduct
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: repo
in: query
required: true
type: string
description: 'repo name'
- name: token
in: header
required: true
type: string
description: 'access token'
- name: product_name
in: path
required: true
type: string
description: 'product name'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/apiProducts/repo:
post:
description: Export API products from the specified org to the specified repo
summary: Export API Products
tags:
- api products
operationId: exportProducts
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: repo
in: query
required: true
type: string
description: 'repo name'
- name: Body
in: body
required: true
description: ''
schema:
$ref: '#/definitions/ApigeeRequest'
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/apiProducts/apigee:
put:
description: Updates existing API products in Apigee with data from the repo
summary: Update API products
tags:
- api products
operationId: updateProducts
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: repo
in: query
required: true
type: string
description: 'repo name'
- name: Body
in: body
required: true
description: ''
schema:
$ref: '#/definitions/ApigeeRequest'
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
post:
description: Import API products from the specified repo to the specified org in Apigee
summary: Import API products
tags:
- api products
operationId: importProducts
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: repo
in: query
required: true
type: string
description: 'repo name'
- name: Body
in: body
required: true
description: ''
schema:
$ref: '#/definitions/ApigeeRequest'
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/apiProducts/{product_name}:
delete:
description: Delete an API product from Apigee
summary: Delete API product
tags:
- api products
operationId: deleteProduct
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: token
in: header
required: true
type: string
description: 'access token'
- name: product_name
in: path
required: true
type: string
description: 'product name'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/proxies/apigee/list:
get:
description: List all of the proxies in the specified org in Apigee
summary: List proxies
tags:
- api proxies
operationId: listProxies
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: token
in: header
required: true
type: string
description: 'access token'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/proxies/apigee/details/{proxy_name}:
get:
description: Details of a proxy in the specified org in Apigee
summary: Get proxy
tags:
- api proxies
operationId: getProxy
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: token
in: header
required: true
type: string
description: 'access token'
- name: proxy_name
in: path
required: true
type: string
description: 'proxy name'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/proxies/apigee/list/{proxy_name}:
get:
description: List the revisions of an proxy in Apigee
summary: List proxy revisions
tags:
- api proxies
operationId: listProxyRevisions
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'
- name: token
in: header
required: true
type: string
description: 'access token'
- name: proxy_name
in: path
required: true
type: string
description: 'proxy name'
responses:
200:
description: 'OK'
schema:
$ref: '#/definitions/ApigeeResponse'
/proxies/apigee/details/{proxy_name}/{revision_number}:
get:
description: Details of a single proxy revision in the specified org in Apigee
summary: Get proxy revision
tags:
- api proxies
operationId: getProxyRevision
produces:
- application/json
parameters:
- name: org
in: query
required: true
type: string
description: 'org name'