This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
swagger.yaml
5137 lines (5137 loc) · 160 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"
host: api.riskmanager.fugue.co
basePath: /v0
info:
title: Fugue API
version: 0.0.1
tags:
- name: environments
- name: scans
- name: events
- name: metadata
- name: rule_bundles
securityDefinitions:
CustomerApiAuthorizer:
type: apiKey
in: header
name: Authorization
x-amazon-apigateway-authtype: custom
x-amazon-apigateway-authorizer:
type: request
authorizerUri:
Fn::Sub:
- arn:aws:apigateway:${Region}:lambda:path/2015-03-31/functions/${Arn}/invocations
- Region:
Ref: AWS::Region
Arn:
Fn::ImportValue: customer-api-auth:CustomerApiAuthorizerFunction
authorizerCredentials:
Fn::Sub: ${ApiGatewayAccountRole.Arn}
authorizerResultTtlInSeconds: 300
identitySource: method.request.header.Authorization
schemes:
- https
consumes:
- application/json
produces:
- application/json
x-amazon-apigateway-gateway-responses:
DEFAULT_4XX:
responseParameters:
gatewayresponse.header.Access-Control-Allow-Headers: '''Content-Type,X-Amz-Date,Authorization,X-Api-Key'''
gatewayresponse.header.Access-Control-Allow-Methods: '''*'''
gatewayresponse.header.Access-Control-Allow-Origin: '''*'''
responseTemplates:
application/json: '{"type": "BadRequest", "code": 400, "message": "Unable to
process request" }'
UNAUTHORIZED:
responseParameters:
gatewayresponse.header.Access-Control-Allow-Headers: '''Content-Type,X-Amz-Date,Authorization,X-Api-Key'''
gatewayresponse.header.Access-Control-Allow-Methods: '''*'''
gatewayresponse.header.Access-Control-Allow-Origin: '''*'''
responseTemplates:
application/json: '{"type": "AuthenticationError", "code": 401, "message": "Invalid
or missing authentication token"}'
ACCESS_DENIED:
responseParameters:
gatewayresponse.header.Access-Control-Allow-Headers: '''Content-Type,X-Amz-Date,Authorization,X-Api-Key'''
gatewayresponse.header.Access-Control-Allow-Methods: '''*'''
gatewayresponse.header.Access-Control-Allow-Origin: '''*'''
responseTemplates:
application/json: '{"type": "AuthenticationError", "code": 401, "message": "Invalid
or missing authentication token"}'
DEFAULT_5XX:
responseParameters:
gatewayresponse.header.Access-Control-Allow-Headers: '''Content-Type,X-Amz-Date,Authorization,X-Api-Key'''
gatewayresponse.header.Access-Control-Allow-Methods: '''*'''
gatewayresponse.header.Access-Control-Allow-Origin: '''*'''
responseTemplates:
application/json: '{"type": "InternalServerError", "code": 500, "message": "Error
while processing request" }'
x-amazon-apigateway-request-validators:
all:
validateRequestBody: true
validateRequestParameters: true
paramsOnly:
validateRequestBody: false
validateRequestParameters: true
x-amazon-apigateway-request-validator: paramsOnly
paths:
/swagger:
get:
summary: Returns the OpenAPI 2.0 specification for this API.
description: Returns the OpenAPI 2.0 specification for this API.
operationId: getSwagger
produces:
- application/json
- application/yaml
tags:
- metadata
responses:
"200":
description: OpenAPI 2.0 specification.
schema:
type: object
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: DomainServiceVpcLink
responses:
default:
statusCode: "200"
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/swagger
passthroughBehavior: when_no_match
httpMethod: GET
type: http_proxy
/swagger/ui:
get:
operationId: getSwaggerUI
summary: Returns a friendly user interface for the OpenAPI 2.0 specification
for this API.
description: Returns a friendly user interface for the OpenAPI 2.0 specification
for this API.
security: []
produces:
- text/html
tags:
- metadata
responses:
"200":
description: The Swagger UI
headers:
Access-Control-Allow-Headers:
type: string
Access-Control-Allow-Methods:
type: string
Access-Control-Allow-Origin:
type: string
Content-Type:
type: string
x-amazon-apigateway-integration:
credentials:
Fn::Sub: ${CustomerApiGatewayS3Role.Arn}
responses:
default:
statusCode: "200"
responseParameters:
method.response.header.Content-Type: '''text/html'''
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:s3:path/fugue-risk-manager-${AWS::Region}-${AWS::AccountId}/swagger/customer_api_swagger_ui.html
passthroughBehavior: when_no_match
httpMethod: GET
type: aws
/environments:
get:
summary: Lists details for all environments.
description: Lists details for all environments.
operationId: listEnvironments
security:
- CustomerApiAuthorizer: []
tags:
- environments
parameters:
- name: offset
in: query
required: false
description: Number of items to skip before returning. This parameter is used
when the number of items spans multiple pages.
type: integer
default: 0
minimum: 0
- name: max_items
in: query
required: false
description: Maximum number of items to return.
type: integer
default: 100
minimum: 1
maximum: 100
- name: order_by
in: query
required: false
description: Field to sort the items by.
type: string
enum:
- created_at
- name
- last_scan_at
default: created_at
- name: order_direction
in: query
required: false
description: Direction to sort the items in.
type: string
enum:
- asc
- desc
default: desc
- name: query
in: query
required: false
description: A stringified JSON array of search parameters.
type: string
minLength: 2
maxLength: 1800
responses:
"200":
description: List of environments and details.
schema:
$ref: '#/definitions/Environments'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: DomainServiceVpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/environments
passthroughBehavior: when_no_match
httpMethod: GET
type: http_proxy
post:
summary: Creates a new environment.
description: Creates a new environment.
operationId: createEnvironment
security:
- CustomerApiAuthorizer: []
tags:
- environments
parameters:
- in: body
name: environment
required: true
description: Configuration options for the new environment.
schema:
$ref: '#/definitions/CreateEnvironmentInput'
responses:
"201":
description: New environment details.
schema:
$ref: '#/definitions/Environment'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"404":
description: NotFoundError
schema:
$ref: '#/definitions/NotFoundError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: DomainServiceVpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/environments
passthroughBehavior: when_no_match
httpMethod: POST
type: http_proxy
/environments/{environment_id}:
get:
summary: Retrieves details and resource summary for an environment.
description: Retrieves details and resource summary for an environment.
operationId: getEnvironment
security:
- CustomerApiAuthorizer: []
tags:
- environments
parameters:
- name: environment_id
in: path
required: true
description: Environment ID.
type: string
responses:
"200":
description: Environment details.
schema:
$ref: '#/definitions/EnvironmentWithSummary'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"404":
description: NotFoundError
schema:
$ref: '#/definitions/NotFoundError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: DomainServiceVpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
integration.request.path.environment_id: method.request.path.environment_id
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/environments/{environment_id}
passthroughBehavior: when_no_match
httpMethod: GET
type: http_proxy
patch:
summary: Updates an environment.
description: Updates an environment.
operationId: updateEnvironment
security:
- CustomerApiAuthorizer: []
tags:
- environments
parameters:
- name: environment_id
in: path
required: true
description: Environment ID.
type: string
- in: body
name: environment
description: Environment details to update.
schema:
$ref: '#/definitions/UpdateEnvironmentInput'
responses:
"200":
description: Updated environment details.
schema:
$ref: '#/definitions/Environment'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"404":
description: NotFoundError
schema:
$ref: '#/definitions/NotFoundError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: DomainServiceVpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
integration.request.path.environment_id: method.request.path.environment_id
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/environments/{environment_id}
passthroughBehavior: when_no_match
httpMethod: PATCH
type: http_proxy
delete:
summary: Deletes an environment.
description: Deletes an environment.
operationId: deleteEnvironment
security:
- CustomerApiAuthorizer: []
tags:
- environments
parameters:
- name: environment_id
in: path
required: true
description: Environment ID.
type: string
responses:
"204":
description: Environment deleted.
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"404":
description: NotFoundError
schema:
$ref: '#/definitions/NotFoundError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: DomainServiceVpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
integration.request.path.environment_id: method.request.path.environment_id
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/environments/{environment_id}
passthroughBehavior: when_no_match
httpMethod: DELETE
type: http_proxy
/environments/{environment_id}/rules:
get:
summary: Retrieves active rules for an environment.
description: Returns the rules that would be applied to this environment according
to its current environment settings.
operationId: getEnvironmentRules
security:
- CustomerApiAuthorizer: []
tags:
- environments
parameters:
- name: environment_id
in: path
required: true
description: Environment ID.
type: string
responses:
"200":
description: Environment rules.
schema:
$ref: '#/definitions/EnvironmentRules'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"404":
description: NotFoundError
schema:
$ref: '#/definitions/NotFoundError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: DomainServiceVpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
integration.request.path.environment_id: method.request.path.environment_id
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/environments/{environment_id}/rules
passthroughBehavior: when_no_match
httpMethod: GET
type: http_proxy
/metadata/{provider}/permissions:
post:
summary: Returns the permissions required to survey and remediate resources.
description: Returns the permissions required to survey and remediate resources.
operationId: createPolicy
security:
- CustomerApiAuthorizer: []
tags:
- metadata
parameters:
- name: provider
in: path
required: true
description: Name of the cloud provider.
type: string
enum:
- aws
- aws_govcloud
- name: input
in: body
required: true
description: List of resource types to be able to survey and remediate.
schema:
$ref: '#/definitions/CreatePolicyInput'
responses:
"201":
description: Permissions for surveying and remediating the specified resource
types.
schema:
$ref: '#/definitions/Permissions'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: VpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
integration.request.path.provider: method.request.path.provider
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/metadata/{provider}/permissions
passthroughBehavior: when_no_match
httpMethod: POST
type: http_proxy
/metadata/{provider}/resource_types:
get:
summary: Lists the resource types supported by Fugue.
description: Lists the resource types supported by Fugue.
operationId: getResourceTypes
security:
- CustomerApiAuthorizer: []
tags:
- metadata
parameters:
- name: provider
in: path
required: true
description: Name of the cloud provider.
type: string
enum:
- aws
- aws_govcloud
- azure
- google
- name: region
in: query
required: false
description: The AWS region for which to return resource types. Required
if provider is aws or aws_govcloud.
type: string
- name: beta_resources
in: query
required: false
description: Indicates whether resource types in beta will be returned.
type: boolean
responses:
"200":
description: List of supported resource types.
schema:
$ref: '#/definitions/ResourceTypeMetadata'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: DomainServiceVpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.path.provider: method.request.path.provider
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Request-Id: context.requestId
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/metadata/{provider}/resource_types
passthroughBehavior: when_no_match
httpMethod: GET
type: http_proxy
/scans:
get:
summary: Lists scans for an environment.
description: Lists scans for an environment.
operationId: listScans
security:
- CustomerApiAuthorizer: []
tags:
- scans
parameters:
- name: environment_id
in: query
required: true
description: ID of the environment to retrieve scans for.
type: string
- name: offset
in: query
required: false
description: Number of items to skip before returning. This parameter is used
when the number of items spans multiple pages.
type: integer
default: 0
minimum: 0
- name: max_items
in: query
required: false
description: Maximum number of items to return.
type: integer
default: 100
minimum: 1
maximum: 100
- name: order_by
in: query
required: false
description: Field to sort the items by.
type: string
enum:
- created_at
- finished_at
- updated_at
default: created_at
- name: order_direction
in: query
required: false
description: Direction to sort the items in.
type: string
enum:
- asc
- desc
default: desc
- name: status
in: query
required: false
collectionFormat: multi
description: Status to filter by. When not specified, all statuses will be
returned.
type: array
items:
type: string
enum:
- CREATED
- QUEUED
- IN_PROGRESS
- ERROR
- SUCCESS
- CANCELED
- name: range_from
in: query
required: false
description: Earliest created_at time to return scans from.
type: integer
minimum: 0
- name: range_to
in: query
required: false
description: Latest created_at time to return scans from.
type: integer
minimum: 0
responses:
"200":
description: List of scans.
schema:
$ref: '#/definitions/Scans'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: VpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/scans
passthroughBehavior: when_no_match
httpMethod: GET
type: http_proxy
post:
summary: Creates and triggers a new environment scan.
description: Creates and triggers a new environment scan.
operationId: createScan
security:
- CustomerApiAuthorizer: []
tags:
- scans
parameters:
- name: environment_id
in: query
required: true
description: ID of the environment to scan.
type: string
responses:
"201":
description: Scan details.
schema:
$ref: '#/definitions/Scan'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: VpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/scans
passthroughBehavior: when_no_match
httpMethod: POST
type: http_proxy
/scans/{scan_id}:
get:
summary: Retrieves details for a scan.
description: Retrieves details for a scan.
operationId: getScan
security:
- CustomerApiAuthorizer: []
tags:
- scans
parameters:
- name: scan_id
in: path
required: true
description: Scan ID.
type: string
responses:
"200":
description: Scan details.
schema:
$ref: '#/definitions/ScanWithSummary'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"404":
description: NotFoundError
schema:
$ref: '#/definitions/NotFoundError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: VpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
integration.request.path.scan_id: method.request.path.scan_id
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/scans/{scan_id}
passthroughBehavior: when_no_match
httpMethod: GET
type: http_proxy
/scans/{scan_id}/compliance_by_rules:
get:
summary: Lists compliance results by rule for a scan.
description: Lists compliance results by rule for a scan.
operationId: getComplianceByRules
security:
- CustomerApiAuthorizer: []
tags:
- scans
parameters:
- name: scan_id
in: path
required: true
description: Scan ID.
type: string
- name: offset
in: query
required: false
description: Number of items to skip before returning. This parameter is used
when the number of items spans multiple pages.
type: integer
default: 0
minimum: 0
- name: max_items
in: query
required: false
description: Maximum number of items to return.
type: integer
default: 100
minimum: 1
maximum: 100
- name: family
in: query
required: false
collectionFormat: multi
description: Compliance family to filter by. When not specified, all compliance
families will be returned.
type: array
items:
type: string
- name: result
in: query
required: false
collectionFormat: multi
description: Rule result to filter by. When not specified, all results will
be returned.
type: array
items:
type: string
enum:
- PASS
- FAIL
- UNKNOWN
responses:
"200":
description: List of compliance results from a scan grouped by rule.
schema:
$ref: '#/definitions/ComplianceByRules'
"400":
description: BadRequestError
schema:
$ref: '#/definitions/BadRequestError'
"401":
description: AuthenticationError
schema:
$ref: '#/definitions/AuthenticationError'
"403":
description: AuthorizationError
schema:
$ref: '#/definitions/AuthorizationError'
"404":
description: NotFoundError
schema:
$ref: '#/definitions/NotFoundError'
"500":
description: InternalServerError
schema:
$ref: '#/definitions/InternalServerError'
x-amazon-apigateway-integration:
connectionType: VPC_LINK
connectionId:
Ref: VpcLink
responses:
default:
statusCode: "200"
requestParameters:
integration.request.header.X-Fugue-Principal-Name: context.authorizer.name
integration.request.header.X-Fugue-Principal-Id: context.authorizer.principalId
integration.request.header.X-Fugue-Tenant-Id: context.authorizer.tenantId
integration.request.header.X-Fugue-Request-Id: context.requestId
integration.request.path.scan_id: method.request.path.scan_id
uri:
Fn::Sub: http://customer-api.fugueriskmanager.com:${ApiServicePort}/scans/{scan_id}/compliance_by_rules
passthroughBehavior: when_no_match
httpMethod: GET
type: http_proxy
/scans/{scan_id}/compliance_by_resource_types:
get:
summary: Lists compliance results by resource type for a scan.
description: Lists compliance results by resource type for a scan.
operationId: getComplianceByResourceTypes
security:
- CustomerApiAuthorizer: []
tags:
- scans
parameters:
- name: scan_id
in: path
required: true
description: Scan ID.
type: string
- name: offset