Skip to content

Commit 34bcbba

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent c357d4f commit 34bcbba

File tree

8 files changed

+419
-25
lines changed

8 files changed

+419
-25
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::CodeCommit - Updated the API, and documentation for AWS CodeCommit.
5+
6+
* Feature - Aws::DirectConnect - Updated the API, and documentation for AWS Direct Connect.
7+
8+
* Feature - Aws::MediaLive - Updated the API, and documentation for AWS Elemental MediaLive.
9+
410
2.11.224 (2019-02-19)
511
------------------
612

aws-sdk-core/apis/codecommit/2015-04-13/api-2.json

Lines changed: 193 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,55 @@
5656
{"shape":"EncryptionKeyUnavailableException"}
5757
]
5858
},
59+
"CreateCommit":{
60+
"name":"CreateCommit",
61+
"http":{
62+
"method":"POST",
63+
"requestUri":"/"
64+
},
65+
"input":{"shape":"CreateCommitInput"},
66+
"output":{"shape":"CreateCommitOutput"},
67+
"errors":[
68+
{"shape":"RepositoryNameRequiredException"},
69+
{"shape":"InvalidRepositoryNameException"},
70+
{"shape":"RepositoryDoesNotExistException"},
71+
{"shape":"ParentCommitIdRequiredException"},
72+
{"shape":"InvalidParentCommitIdException"},
73+
{"shape":"ParentCommitDoesNotExistException"},
74+
{"shape":"ParentCommitIdOutdatedException"},
75+
{"shape":"BranchNameRequiredException"},
76+
{"shape":"InvalidBranchNameException"},
77+
{"shape":"BranchDoesNotExistException"},
78+
{"shape":"BranchNameIsTagNameException"},
79+
{"shape":"FileEntryRequiredException"},
80+
{"shape":"MaximumFileEntriesExceededException"},
81+
{"shape":"PutFileEntryConflictException"},
82+
{"shape":"SourceFileOrContentRequiredException"},
83+
{"shape":"FileContentAndSourceFileSpecifiedException"},
84+
{"shape":"PathRequiredException"},
85+
{"shape":"InvalidPathException"},
86+
{"shape":"SamePathRequestException"},
87+
{"shape":"FileDoesNotExistException"},
88+
{"shape":"FileContentSizeLimitExceededException"},
89+
{"shape":"FolderContentSizeLimitExceededException"},
90+
{"shape":"InvalidDeletionParameterException"},
91+
{"shape":"RestrictedSourceFileException"},
92+
{"shape":"FileModeRequiredException"},
93+
{"shape":"InvalidFileModeException"},
94+
{"shape":"NameLengthExceededException"},
95+
{"shape":"InvalidEmailException"},
96+
{"shape":"CommitMessageLengthExceededException"},
97+
{"shape":"EncryptionIntegrityChecksFailedException"},
98+
{"shape":"EncryptionKeyAccessDeniedException"},
99+
{"shape":"EncryptionKeyDisabledException"},
100+
{"shape":"EncryptionKeyNotFoundException"},
101+
{"shape":"EncryptionKeyUnavailableException"},
102+
{"shape":"NoChangeException"},
103+
{"shape":"FileNameConflictsWithDirectoryNameException"},
104+
{"shape":"DirectoryNameConflictsWithFileNameException"},
105+
{"shape":"FilePathConflictsWithSubmodulePathException"}
106+
]
107+
},
59108
"CreatePullRequest":{
60109
"name":"CreatePullRequest",
61110
"http":{
@@ -594,7 +643,6 @@
594643
{"shape":"TipOfSourceReferenceIsDifferentException"},
595644
{"shape":"ReferenceDoesNotExistException"},
596645
{"shape":"InvalidCommitIdException"},
597-
{"shape":"RepositoryNotAssociatedWithPullRequestException"},
598646
{"shape":"RepositoryNameRequiredException"},
599647
{"shape":"InvalidRepositoryNameException"},
600648
{"shape":"RepositoryDoesNotExistException"},
@@ -1191,6 +1239,35 @@
11911239
"commitId":{"shape":"CommitId"}
11921240
}
11931241
},
1242+
"CreateCommitInput":{
1243+
"type":"structure",
1244+
"required":[
1245+
"repositoryName",
1246+
"branchName"
1247+
],
1248+
"members":{
1249+
"repositoryName":{"shape":"RepositoryName"},
1250+
"branchName":{"shape":"BranchName"},
1251+
"parentCommitId":{"shape":"CommitId"},
1252+
"authorName":{"shape":"Name"},
1253+
"email":{"shape":"Email"},
1254+
"commitMessage":{"shape":"Message"},
1255+
"keepEmptyFolders":{"shape":"KeepEmptyFolders"},
1256+
"putFiles":{"shape":"PutFileEntries"},
1257+
"deleteFiles":{"shape":"DeleteFileEntries"},
1258+
"setFileModes":{"shape":"SetFileModeEntries"}
1259+
}
1260+
},
1261+
"CreateCommitOutput":{
1262+
"type":"structure",
1263+
"members":{
1264+
"commitId":{"shape":"ObjectId"},
1265+
"treeId":{"shape":"ObjectId"},
1266+
"filesAdded":{"shape":"FilesMetadata"},
1267+
"filesUpdated":{"shape":"FilesMetadata"},
1268+
"filesDeleted":{"shape":"FilesMetadata"}
1269+
}
1270+
},
11941271
"CreatePullRequestInput":{
11951272
"type":"structure",
11961273
"required":[
@@ -1266,6 +1343,17 @@
12661343
"comment":{"shape":"Comment"}
12671344
}
12681345
},
1346+
"DeleteFileEntries":{
1347+
"type":"list",
1348+
"member":{"shape":"DeleteFileEntry"}
1349+
},
1350+
"DeleteFileEntry":{
1351+
"type":"structure",
1352+
"required":["filePath"],
1353+
"members":{
1354+
"filePath":{"shape":"Path"}
1355+
}
1356+
},
12691357
"DeleteFileInput":{
12701358
"type":"structure",
12711359
"required":[
@@ -1400,6 +1488,12 @@
14001488
"type":"blob",
14011489
"max":6291456
14021490
},
1491+
"FileContentAndSourceFileSpecifiedException":{
1492+
"type":"structure",
1493+
"members":{
1494+
},
1495+
"exception":true
1496+
},
14031497
"FileContentRequiredException":{
14041498
"type":"structure",
14051499
"members":{
@@ -1418,10 +1512,30 @@
14181512
},
14191513
"exception":true
14201514
},
1515+
"FileEntryRequiredException":{
1516+
"type":"structure",
1517+
"members":{
1518+
},
1519+
"exception":true
1520+
},
14211521
"FileList":{
14221522
"type":"list",
14231523
"member":{"shape":"File"}
14241524
},
1525+
"FileMetadata":{
1526+
"type":"structure",
1527+
"members":{
1528+
"absolutePath":{"shape":"Path"},
1529+
"blobId":{"shape":"ObjectId"},
1530+
"fileMode":{"shape":"FileModeTypeEnum"}
1531+
}
1532+
},
1533+
"FileModeRequiredException":{
1534+
"type":"structure",
1535+
"members":{
1536+
},
1537+
"exception":true
1538+
},
14251539
"FileModeTypeEnum":{
14261540
"type":"string",
14271541
"enum":[
@@ -1448,6 +1562,10 @@
14481562
},
14491563
"exception":true
14501564
},
1565+
"FilesMetadata":{
1566+
"type":"list",
1567+
"member":{"shape":"FileMetadata"}
1568+
},
14511569
"Folder":{
14521570
"type":"structure",
14531571
"members":{
@@ -1974,6 +2092,7 @@
19742092
"IsCommentDeleted":{"type":"boolean"},
19752093
"IsMergeable":{"type":"boolean"},
19762094
"IsMerged":{"type":"boolean"},
2095+
"IsMove":{"type":"boolean"},
19772096
"KeepEmptyFolders":{"type":"boolean"},
19782097
"LastModifiedDate":{"type":"timestamp"},
19792098
"Limit":{
@@ -2050,6 +2169,12 @@
20502169
},
20512170
"exception":true
20522171
},
2172+
"MaximumFileEntriesExceededException":{
2173+
"type":"structure",
2174+
"members":{
2175+
},
2176+
"exception":true
2177+
},
20532178
"MaximumOpenPullRequestsExceededException":{
20542179
"type":"structure",
20552180
"members":{
@@ -2119,6 +2244,12 @@
21192244
"exception":true
21202245
},
21212246
"NextToken":{"type":"string"},
2247+
"NoChangeException":{
2248+
"type":"structure",
2249+
"members":{
2250+
},
2251+
"exception":true
2252+
},
21222253
"ObjectId":{"type":"string"},
21232254
"ObjectSize":{"type":"long"},
21242255
"OrderEnum":{
@@ -2375,6 +2506,26 @@
23752506
"type":"list",
23762507
"member":{"shape":"PullRequestTarget"}
23772508
},
2509+
"PutFileEntries":{
2510+
"type":"list",
2511+
"member":{"shape":"PutFileEntry"}
2512+
},
2513+
"PutFileEntry":{
2514+
"type":"structure",
2515+
"required":["filePath"],
2516+
"members":{
2517+
"filePath":{"shape":"Path"},
2518+
"fileMode":{"shape":"FileModeTypeEnum"},
2519+
"fileContent":{"shape":"FileContent"},
2520+
"sourceFile":{"shape":"SourceFileSpecifier"}
2521+
}
2522+
},
2523+
"PutFileEntryConflictException":{
2524+
"type":"structure",
2525+
"members":{
2526+
},
2527+
"exception":true
2528+
},
23782529
"PutFileInput":{
23792530
"type":"structure",
23802531
"required":[
@@ -2617,12 +2768,39 @@
26172768
},
26182769
"exception":true
26192770
},
2771+
"RestrictedSourceFileException":{
2772+
"type":"structure",
2773+
"members":{
2774+
},
2775+
"exception":true
2776+
},
26202777
"SameFileContentException":{
26212778
"type":"structure",
26222779
"members":{
26232780
},
26242781
"exception":true
26252782
},
2783+
"SamePathRequestException":{
2784+
"type":"structure",
2785+
"members":{
2786+
},
2787+
"exception":true
2788+
},
2789+
"SetFileModeEntries":{
2790+
"type":"list",
2791+
"member":{"shape":"SetFileModeEntry"}
2792+
},
2793+
"SetFileModeEntry":{
2794+
"type":"structure",
2795+
"required":[
2796+
"filePath",
2797+
"fileMode"
2798+
],
2799+
"members":{
2800+
"filePath":{"shape":"Path"},
2801+
"fileMode":{"shape":"FileModeTypeEnum"}
2802+
}
2803+
},
26262804
"SortByEnum":{
26272805
"type":"string",
26282806
"enum":[
@@ -2636,6 +2814,20 @@
26362814
},
26372815
"exception":true
26382816
},
2817+
"SourceFileOrContentRequiredException":{
2818+
"type":"structure",
2819+
"members":{
2820+
},
2821+
"exception":true
2822+
},
2823+
"SourceFileSpecifier":{
2824+
"type":"structure",
2825+
"required":["filePath"],
2826+
"members":{
2827+
"filePath":{"shape":"Path"},
2828+
"isMove":{"shape":"IsMove"}
2829+
}
2830+
},
26392831
"SubModule":{
26402832
"type":"structure",
26412833
"members":{

0 commit comments

Comments
 (0)