Skip to content

Commit

Permalink
Release v1.44.283 (2023-06-15) (#4884)
Browse files Browse the repository at this point in the history
Release v1.44.283 (2023-06-15)
===

### Service Client Updates
* `service/auditmanager`: Updates service API and documentation
* `service/elasticfilesystem`: Updates service documentation
  * Documentation updates for EFS.
* `service/guardduty`: Updates service documentation
  * Updated descriptions for some APIs.
* `service/location`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Jun 15, 2023
1 parent 8962904 commit efb91b5
Show file tree
Hide file tree
Showing 16 changed files with 1,271 additions and 208 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.44.283 (2023-06-15)
===

### Service Client Updates
* `service/auditmanager`: Updates service API and documentation
* `service/elasticfilesystem`: Updates service documentation
* Documentation updates for EFS.
* `service/guardduty`: Updates service documentation
* Updated descriptions for some APIs.
* `service/location`: Updates service API and documentation

Release v1.44.282 (2023-06-13)
===

Expand Down
128 changes: 126 additions & 2 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.282"
const SDKVersion = "1.44.283"
78 changes: 72 additions & 6 deletions models/apis/auditmanager/2017-07-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
{"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"},
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
{"shape":"InternalServerException"},
{"shape":"ThrottlingException"}
]
},
"CreateAssessment":{
Expand Down Expand Up @@ -416,6 +417,21 @@
{"shape":"InternalServerException"}
]
},
"GetEvidenceFileUploadUrl":{
"name":"GetEvidenceFileUploadUrl",
"http":{
"method":"GET",
"requestUri":"/evidenceFileUploadUrl"
},
"input":{"shape":"GetEvidenceFileUploadUrlRequest"},
"output":{"shape":"GetEvidenceFileUploadUrlResponse"},
"errors":[
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
{"shape":"InternalServerException"},
{"shape":"ThrottlingException"}
]
},
"GetEvidenceFolder":{
"name":"GetEvidenceFolder",
"http":{
Expand Down Expand Up @@ -1806,6 +1822,13 @@
"min":1,
"pattern":"^[a-zA-Z0-9\\s-_()\\[\\]]+$"
},
"DefaultExportDestination":{
"type":"structure",
"members":{
"destinationType":{"shape":"ExportDestinationType"},
"destination":{"shape":"S3Url"}
}
},
"Delegation":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2117,6 +2140,10 @@
"type":"list",
"member":{"shape":"NonEmptyString"}
},
"ExportDestinationType":{
"type":"string",
"enum":["S3"]
},
"Filename":{
"type":"string",
"max":255,
Expand Down Expand Up @@ -2370,6 +2397,24 @@
"nextToken":{"shape":"Token"}
}
},
"GetEvidenceFileUploadUrlRequest":{
"type":"structure",
"required":["fileName"],
"members":{
"fileName":{
"shape":"ManualEvidenceLocalFileName",
"location":"querystring",
"locationName":"fileName"
}
}
},
"GetEvidenceFileUploadUrlResponse":{
"type":"structure",
"members":{
"evidenceFileName":{"shape":"NonEmptyString"},
"uploadUrl":{"shape":"NonEmptyString"}
}
},
"GetEvidenceFolderRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2624,7 +2669,11 @@
},
"KeywordInputType":{
"type":"string",
"enum":["SELECT_FROM_LIST"]
"enum":[
"SELECT_FROM_LIST",
"UPLOAD_FILE",
"INPUT_TEXT"
]
},
"KeywordValue":{
"type":"string",
Expand Down Expand Up @@ -2969,7 +3018,9 @@
"ManualEvidence":{
"type":"structure",
"members":{
"s3ResourcePath":{"shape":"S3Url"}
"s3ResourcePath":{"shape":"S3Url"},
"textResponse":{"shape":"ManualEvidenceTextResponse"},
"evidenceFileName":{"shape":"ManualEvidenceLocalFileName"}
}
},
"ManualEvidenceList":{
Expand All @@ -2978,6 +3029,18 @@
"max":50,
"min":1
},
"ManualEvidenceLocalFileName":{
"type":"string",
"max":300,
"min":1,
"pattern":"[^\\/]*"
},
"ManualEvidenceTextResponse":{
"type":"string",
"max":1000,
"min":1,
"pattern":"^[\\w\\W\\s\\S]*$"
},
"MaxResults":{
"type":"integer",
"max":1000,
Expand Down Expand Up @@ -3153,7 +3216,8 @@
"DEFAULT_ASSESSMENT_REPORTS_DESTINATION",
"DEFAULT_PROCESS_OWNERS",
"EVIDENCE_FINDER_ENABLEMENT",
"DEREGISTRATION_POLICY"
"DEREGISTRATION_POLICY",
"DEFAULT_EXPORT_DESTINATION"
]
},
"Settings":{
Expand All @@ -3165,7 +3229,8 @@
"defaultProcessOwners":{"shape":"Roles"},
"kmsKey":{"shape":"KmsKey"},
"evidenceFinderEnablement":{"shape":"EvidenceFinderEnablement"},
"deregistrationPolicy":{"shape":"DeregistrationPolicy"}
"deregistrationPolicy":{"shape":"DeregistrationPolicy"},
"defaultExportDestination":{"shape":"DefaultExportDestination"}
}
},
"ShareRequestAction":{
Expand Down Expand Up @@ -3601,7 +3666,8 @@
"defaultProcessOwners":{"shape":"Roles"},
"kmsKey":{"shape":"KmsKey"},
"evidenceFinderEnabled":{"shape":"Boolean"},
"deregistrationPolicy":{"shape":"DeregistrationPolicy"}
"deregistrationPolicy":{"shape":"DeregistrationPolicy"},
"defaultExportDestination":{"shape":"DefaultExportDestination"}
}
},
"UpdateSettingsResponse":{
Expand Down
Loading

0 comments on commit efb91b5

Please sign in to comment.