Skip to content

Commit

Permalink
Release v1.15.44
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Sep 27, 2018
1 parent 2b2f47f commit a5158a8
Show file tree
Hide file tree
Showing 13 changed files with 2,070 additions and 425 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
Release v1.15.44 (2018-09-27)
===

### Service Client Updates
* `service/apigateway`: Updates service documentation
* Adding support for OpenAPI 3.0 import and export.
* `service/codecommit`: Updates service API and documentation
* This release adds API support for getting the contents of a file, getting the contents of a folder, and for deleting a file in an AWS CodeCommit repository.
* `service/mq`: Updates service API and documentation
* Amazon MQ supports ActiveMQ 5.15.6, in addition to 5.15.0. Automatic minor version upgrades can be toggled. Updated the documentation.

Release v1.15.43 (2018-09-26)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.15.43"
const SDKVersion = "1.15.44"
156 changes: 78 additions & 78 deletions models/apis/apigateway/2015-07-09/docs-2.json

Large diffs are not rendered by default.

248 changes: 247 additions & 1 deletion models/apis/codecommit/2015-04-13/api-2.json
Expand Up @@ -150,6 +150,39 @@
{"shape":"CommentDeletedException"}
]
},
"DeleteFile":{
"name":"DeleteFile",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteFileInput"},
"output":{"shape":"DeleteFileOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"ParentCommitIdRequiredException"},
{"shape":"InvalidParentCommitIdException"},
{"shape":"ParentCommitDoesNotExistException"},
{"shape":"ParentCommitIdOutdatedException"},
{"shape":"PathRequiredException"},
{"shape":"InvalidPathException"},
{"shape":"FileDoesNotExistException"},
{"shape":"BranchNameRequiredException"},
{"shape":"InvalidBranchNameException"},
{"shape":"BranchDoesNotExistException"},
{"shape":"BranchNameIsTagNameException"},
{"shape":"NameLengthExceededException"},
{"shape":"InvalidEmailException"},
{"shape":"CommitMessageLengthExceededException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
]
},
"DeleteRepository":{
"name":"DeleteRepository",
"http":{
Expand Down Expand Up @@ -353,6 +386,55 @@
{"shape":"EncryptionKeyUnavailableException"}
]
},
"GetFile":{
"name":"GetFile",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetFileInput"},
"output":{"shape":"GetFileOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidCommitException"},
{"shape":"CommitDoesNotExistException"},
{"shape":"PathRequiredException"},
{"shape":"InvalidPathException"},
{"shape":"FileDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"},
{"shape":"FileTooLargeException"}
]
},
"GetFolder":{
"name":"GetFolder",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetFolderInput"},
"output":{"shape":"GetFolderOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidCommitException"},
{"shape":"CommitDoesNotExistException"},
{"shape":"PathRequiredException"},
{"shape":"InvalidPathException"},
{"shape":"FolderDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
]
},
"GetMergeConflicts":{
"name":"GetMergeConflicts",
"http":{
Expand Down Expand Up @@ -645,6 +727,7 @@
{"shape":"NameLengthExceededException"},
{"shape":"InvalidEmailException"},
{"shape":"CommitMessageLengthExceededException"},
{"shape":"InvalidDeletionParameterException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
Expand Down Expand Up @@ -1180,6 +1263,40 @@
"comment":{"shape":"Comment"}
}
},
"DeleteFileInput":{
"type":"structure",
"required":[
"repositoryName",
"branchName",
"filePath",
"parentCommitId"
],
"members":{
"repositoryName":{"shape":"RepositoryName"},
"branchName":{"shape":"BranchName"},
"filePath":{"shape":"Path"},
"parentCommitId":{"shape":"CommitId"},
"keepEmptyFolders":{"shape":"KeepEmptyFolders"},
"commitMessage":{"shape":"Message"},
"name":{"shape":"Name"},
"email":{"shape":"Email"}
}
},
"DeleteFileOutput":{
"type":"structure",
"required":[
"commitId",
"blobId",
"treeId",
"filePath"
],
"members":{
"commitId":{"shape":"ObjectId"},
"blobId":{"shape":"ObjectId"},
"treeId":{"shape":"ObjectId"},
"filePath":{"shape":"Path"}
}
},
"DeleteRepositoryInput":{
"type":"structure",
"required":["repositoryName"],
Expand Down Expand Up @@ -1267,6 +1384,15 @@
"exception":true
},
"EventDate":{"type":"timestamp"},
"File":{
"type":"structure",
"members":{
"blobId":{"shape":"ObjectId"},
"absolutePath":{"shape":"Path"},
"relativePath":{"shape":"Path"},
"fileMode":{"shape":"FileModeTypeEnum"}
}
},
"FileContent":{
"type":"blob",
"max":6291456
Expand All @@ -1283,6 +1409,16 @@
},
"exception":true
},
"FileDoesNotExistException":{
"type":"structure",
"members":{
},
"exception":true
},
"FileList":{
"type":"list",
"member":{"shape":"File"}
},
"FileModeTypeEnum":{
"type":"string",
"enum":[
Expand All @@ -1303,6 +1439,24 @@
},
"exception":true
},
"Folder":{
"type":"structure",
"members":{
"treeId":{"shape":"ObjectId"},
"absolutePath":{"shape":"Path"},
"relativePath":{"shape":"Path"}
}
},
"FolderDoesNotExistException":{
"type":"structure",
"members":{
},
"exception":true
},
"FolderList":{
"type":"list",
"member":{"shape":"Folder"}
},
"GetBlobInput":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1428,6 +1582,65 @@
"NextToken":{"shape":"NextToken"}
}
},
"GetFileInput":{
"type":"structure",
"required":[
"repositoryName",
"filePath"
],
"members":{
"repositoryName":{"shape":"RepositoryName"},
"commitSpecifier":{"shape":"CommitName"},
"filePath":{"shape":"Path"}
}
},
"GetFileOutput":{
"type":"structure",
"required":[
"commitId",
"blobId",
"filePath",
"fileMode",
"fileSize",
"fileContent"
],
"members":{
"commitId":{"shape":"ObjectId"},
"blobId":{"shape":"ObjectId"},
"filePath":{"shape":"Path"},
"fileMode":{"shape":"FileModeTypeEnum"},
"fileSize":{"shape":"ObjectSize"},
"fileContent":{"shape":"FileContent"}
}
},
"GetFolderInput":{
"type":"structure",
"required":[
"repositoryName",
"folderPath"
],
"members":{
"repositoryName":{"shape":"RepositoryName"},
"commitSpecifier":{"shape":"CommitName"},
"folderPath":{"shape":"Path"}
}
},
"GetFolderOutput":{
"type":"structure",
"required":[
"commitId",
"folderPath"
],
"members":{
"commitId":{"shape":"ObjectId"},
"folderPath":{"shape":"Path"},
"treeId":{"shape":"ObjectId"},
"subFolders":{"shape":"FolderList"},
"files":{"shape":"FileList"},
"symbolicLinks":{"shape":"SymbolicLinkList"},
"subModules":{"shape":"SubModuleList"}
}
},
"GetMergeConflictsInput":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1557,6 +1770,12 @@
},
"exception":true
},
"InvalidDeletionParameterException":{
"type":"structure",
"members":{
},
"exception":true
},
"InvalidDescriptionException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1740,6 +1959,7 @@
"IsCommentDeleted":{"type":"boolean"},
"IsMergeable":{"type":"boolean"},
"IsMerged":{"type":"boolean"},
"KeepEmptyFolders":{"type":"boolean"},
"LastModifiedDate":{"type":"timestamp"},
"Limit":{
"type":"integer",
Expand Down Expand Up @@ -1885,6 +2105,7 @@
},
"NextToken":{"type":"string"},
"ObjectId":{"type":"string"},
"ObjectSize":{"type":"long"},
"OrderEnum":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2130,8 +2351,8 @@
"sourceReference":{"shape":"ReferenceName"},
"destinationReference":{"shape":"ReferenceName"},
"destinationCommit":{"shape":"CommitId"},
"mergeBase":{"shape":"CommitId"},
"sourceCommit":{"shape":"CommitId"},
"mergeBase":{"shape":"CommitId"},
"mergeMetadata":{"shape":"MergeMetadata"}
}
},
Expand Down Expand Up @@ -2400,6 +2621,31 @@
},
"exception":true
},
"SubModule":{
"type":"structure",
"members":{
"commitId":{"shape":"ObjectId"},
"absolutePath":{"shape":"Path"},
"relativePath":{"shape":"Path"}
}
},
"SubModuleList":{
"type":"list",
"member":{"shape":"SubModule"}
},
"SymbolicLink":{
"type":"structure",
"members":{
"blobId":{"shape":"ObjectId"},
"absolutePath":{"shape":"Path"},
"relativePath":{"shape":"Path"},
"fileMode":{"shape":"FileModeTypeEnum"}
}
},
"SymbolicLinkList":{
"type":"list",
"member":{"shape":"SymbolicLink"}
},
"Target":{
"type":"structure",
"required":[
Expand Down

0 comments on commit a5158a8

Please sign in to comment.