Skip to content

Commit a2d7c9d

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated API models and rebuilt service gems.
1 parent 969dc13 commit a2d7c9d

File tree

1,752 files changed

+4355
-1307
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,752 files changed

+4355
-1307
lines changed

apis/auditmanager/2017-07-25/api-2.json

Lines changed: 72 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@
9999
{"shape":"ResourceNotFoundException"},
100100
{"shape":"AccessDeniedException"},
101101
{"shape":"ValidationException"},
102-
{"shape":"InternalServerException"}
102+
{"shape":"InternalServerException"},
103+
{"shape":"ThrottlingException"}
103104
]
104105
},
105106
"CreateAssessment":{
@@ -416,6 +417,21 @@
416417
{"shape":"InternalServerException"}
417418
]
418419
},
420+
"GetEvidenceFileUploadUrl":{
421+
"name":"GetEvidenceFileUploadUrl",
422+
"http":{
423+
"method":"GET",
424+
"requestUri":"/evidenceFileUploadUrl"
425+
},
426+
"input":{"shape":"GetEvidenceFileUploadUrlRequest"},
427+
"output":{"shape":"GetEvidenceFileUploadUrlResponse"},
428+
"errors":[
429+
{"shape":"ValidationException"},
430+
{"shape":"AccessDeniedException"},
431+
{"shape":"InternalServerException"},
432+
{"shape":"ThrottlingException"}
433+
]
434+
},
419435
"GetEvidenceFolder":{
420436
"name":"GetEvidenceFolder",
421437
"http":{
@@ -1806,6 +1822,13 @@
18061822
"min":1,
18071823
"pattern":"^[a-zA-Z0-9\\s-_()\\[\\]]+$"
18081824
},
1825+
"DefaultExportDestination":{
1826+
"type":"structure",
1827+
"members":{
1828+
"destinationType":{"shape":"ExportDestinationType"},
1829+
"destination":{"shape":"S3Url"}
1830+
}
1831+
},
18091832
"Delegation":{
18101833
"type":"structure",
18111834
"members":{
@@ -2117,6 +2140,10 @@
21172140
"type":"list",
21182141
"member":{"shape":"NonEmptyString"}
21192142
},
2143+
"ExportDestinationType":{
2144+
"type":"string",
2145+
"enum":["S3"]
2146+
},
21202147
"Filename":{
21212148
"type":"string",
21222149
"max":255,
@@ -2370,6 +2397,24 @@
23702397
"nextToken":{"shape":"Token"}
23712398
}
23722399
},
2400+
"GetEvidenceFileUploadUrlRequest":{
2401+
"type":"structure",
2402+
"required":["fileName"],
2403+
"members":{
2404+
"fileName":{
2405+
"shape":"ManualEvidenceLocalFileName",
2406+
"location":"querystring",
2407+
"locationName":"fileName"
2408+
}
2409+
}
2410+
},
2411+
"GetEvidenceFileUploadUrlResponse":{
2412+
"type":"structure",
2413+
"members":{
2414+
"evidenceFileName":{"shape":"NonEmptyString"},
2415+
"uploadUrl":{"shape":"NonEmptyString"}
2416+
}
2417+
},
23732418
"GetEvidenceFolderRequest":{
23742419
"type":"structure",
23752420
"required":[
@@ -2624,7 +2669,11 @@
26242669
},
26252670
"KeywordInputType":{
26262671
"type":"string",
2627-
"enum":["SELECT_FROM_LIST"]
2672+
"enum":[
2673+
"SELECT_FROM_LIST",
2674+
"UPLOAD_FILE",
2675+
"INPUT_TEXT"
2676+
]
26282677
},
26292678
"KeywordValue":{
26302679
"type":"string",
@@ -2969,7 +3018,9 @@
29693018
"ManualEvidence":{
29703019
"type":"structure",
29713020
"members":{
2972-
"s3ResourcePath":{"shape":"S3Url"}
3021+
"s3ResourcePath":{"shape":"S3Url"},
3022+
"textResponse":{"shape":"ManualEvidenceTextResponse"},
3023+
"evidenceFileName":{"shape":"ManualEvidenceLocalFileName"}
29733024
}
29743025
},
29753026
"ManualEvidenceList":{
@@ -2978,6 +3029,18 @@
29783029
"max":50,
29793030
"min":1
29803031
},
3032+
"ManualEvidenceLocalFileName":{
3033+
"type":"string",
3034+
"max":300,
3035+
"min":1,
3036+
"pattern":"[^\\/]*"
3037+
},
3038+
"ManualEvidenceTextResponse":{
3039+
"type":"string",
3040+
"max":1000,
3041+
"min":1,
3042+
"pattern":"^[\\w\\W\\s\\S]*$"
3043+
},
29813044
"MaxResults":{
29823045
"type":"integer",
29833046
"max":1000,
@@ -3153,7 +3216,8 @@
31533216
"DEFAULT_ASSESSMENT_REPORTS_DESTINATION",
31543217
"DEFAULT_PROCESS_OWNERS",
31553218
"EVIDENCE_FINDER_ENABLEMENT",
3156-
"DEREGISTRATION_POLICY"
3219+
"DEREGISTRATION_POLICY",
3220+
"DEFAULT_EXPORT_DESTINATION"
31573221
]
31583222
},
31593223
"Settings":{
@@ -3165,7 +3229,8 @@
31653229
"defaultProcessOwners":{"shape":"Roles"},
31663230
"kmsKey":{"shape":"KmsKey"},
31673231
"evidenceFinderEnablement":{"shape":"EvidenceFinderEnablement"},
3168-
"deregistrationPolicy":{"shape":"DeregistrationPolicy"}
3232+
"deregistrationPolicy":{"shape":"DeregistrationPolicy"},
3233+
"defaultExportDestination":{"shape":"DefaultExportDestination"}
31693234
}
31703235
},
31713236
"ShareRequestAction":{
@@ -3601,7 +3666,8 @@
36013666
"defaultProcessOwners":{"shape":"Roles"},
36023667
"kmsKey":{"shape":"KmsKey"},
36033668
"evidenceFinderEnabled":{"shape":"Boolean"},
3604-
"deregistrationPolicy":{"shape":"DeregistrationPolicy"}
3669+
"deregistrationPolicy":{"shape":"DeregistrationPolicy"},
3670+
"defaultExportDestination":{"shape":"DefaultExportDestination"}
36053671
}
36063672
},
36073673
"UpdateSettingsResponse":{

apis/auditmanager/2017-07-25/docs-2.json

Lines changed: 75 additions & 35 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)