forked from aws/aws-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodecommit-2015-04-13.normal.json
1489 lines (1489 loc) · 59.3 KB
/
codecommit-2015-04-13.normal.json
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
{
"version":"2.0",
"metadata":{
"apiVersion":"2015-04-13",
"endpointPrefix":"codecommit",
"jsonVersion":"1.1",
"protocol":"json",
"serviceAbbreviation":"CodeCommit",
"serviceFullName":"AWS CodeCommit",
"signatureVersion":"v4",
"targetPrefix":"CodeCommit_20150413",
"uid":"codecommit-2015-04-13"
},
"operations":{
"BatchGetRepositories":{
"name":"BatchGetRepositories",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"BatchGetRepositoriesInput"},
"output":{"shape":"BatchGetRepositoriesOutput"},
"errors":[
{"shape":"RepositoryNamesRequiredException"},
{"shape":"MaximumRepositoryNamesExceededException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Returns information about one or more repositories.</p> <note> <p>The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.</p> </note>"
},
"CreateBranch":{
"name":"CreateBranch",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateBranchInput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"BranchNameRequiredException"},
{"shape":"BranchNameExistsException"},
{"shape":"InvalidBranchNameException"},
{"shape":"CommitIdRequiredException"},
{"shape":"CommitDoesNotExistException"},
{"shape":"InvalidCommitIdException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Creates a new branch in a repository and points the branch to a commit.</p> <note> <p>Calling the create branch operation does not set a repository's default branch. To do this, call the update default branch operation.</p> </note>"
},
"CreateRepository":{
"name":"CreateRepository",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateRepositoryInput"},
"output":{"shape":"CreateRepositoryOutput"},
"errors":[
{"shape":"RepositoryNameExistsException"},
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"InvalidRepositoryDescriptionException"},
{"shape":"RepositoryLimitExceededException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Creates a new, empty repository.</p>"
},
"DeleteRepository":{
"name":"DeleteRepository",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteRepositoryInput"},
"output":{"shape":"DeleteRepositoryOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Deletes a repository. If a specified repository was already deleted, a null repository ID will be returned.</p> <important><p>Deleting a repository also deletes all associated objects and metadata. After a repository is deleted, all future push calls to the deleted repository will fail.</p> </important>"
},
"GetBlob":{
"name":"GetBlob",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetBlobInput"},
"output":{"shape":"GetBlobOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"BlobIdRequiredException"},
{"shape":"InvalidBlobIdException"},
{"shape":"BlobIdDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"},
{"shape":"FileTooLargeException"}
],
"documentation":"<p>Returns the base-64 encoded content of an individual blob within a repository.</p>"
},
"GetBranch":{
"name":"GetBranch",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetBranchInput"},
"output":{"shape":"GetBranchOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"BranchNameRequiredException"},
{"shape":"InvalidBranchNameException"},
{"shape":"BranchDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Returns information about a repository branch, including its name and the last commit ID.</p>"
},
"GetCommit":{
"name":"GetCommit",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetCommitInput"},
"output":{"shape":"GetCommitOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"CommitIdRequiredException"},
{"shape":"InvalidCommitIdException"},
{"shape":"CommitIdDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Returns information about a commit, including commit message and committer information.</p>"
},
"GetDifferences":{
"name":"GetDifferences",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetDifferencesInput"},
"output":{"shape":"GetDifferencesOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"InvalidContinuationTokenException"},
{"shape":"InvalidMaxResultsException"},
{"shape":"InvalidCommitIdException"},
{"shape":"CommitRequiredException"},
{"shape":"InvalidCommitException"},
{"shape":"CommitDoesNotExistException"},
{"shape":"InvalidPathException"},
{"shape":"PathDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Returns information about the differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID or other fully qualified reference). Results can be limited to a specified path.</p>"
},
"GetRepository":{
"name":"GetRepository",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetRepositoryInput"},
"output":{"shape":"GetRepositoryOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Returns information about a repository.</p> <note> <p>The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.</p> </note>"
},
"GetRepositoryTriggers":{
"name":"GetRepositoryTriggers",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetRepositoryTriggersInput"},
"output":{"shape":"GetRepositoryTriggersOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Gets information about triggers configured for a repository.</p>"
},
"ListBranches":{
"name":"ListBranches",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListBranchesInput"},
"output":{"shape":"ListBranchesOutput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"},
{"shape":"InvalidContinuationTokenException"}
],
"documentation":"<p>Gets information about one or more branches in a repository.</p>"
},
"ListRepositories":{
"name":"ListRepositories",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListRepositoriesInput"},
"output":{"shape":"ListRepositoriesOutput"},
"errors":[
{"shape":"InvalidSortByException"},
{"shape":"InvalidOrderException"},
{"shape":"InvalidContinuationTokenException"}
],
"documentation":"<p>Gets information about one or more repositories.</p>"
},
"PutRepositoryTriggers":{
"name":"PutRepositoryTriggers",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutRepositoryTriggersInput"},
"output":{"shape":"PutRepositoryTriggersOutput"},
"errors":[
{"shape":"RepositoryDoesNotExistException"},
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryTriggersListRequiredException"},
{"shape":"MaximumRepositoryTriggersExceededException"},
{"shape":"InvalidRepositoryTriggerNameException"},
{"shape":"InvalidRepositoryTriggerDestinationArnException"},
{"shape":"InvalidRepositoryTriggerRegionException"},
{"shape":"InvalidRepositoryTriggerCustomDataException"},
{"shape":"MaximumBranchesExceededException"},
{"shape":"InvalidRepositoryTriggerBranchNameException"},
{"shape":"InvalidRepositoryTriggerEventsException"},
{"shape":"RepositoryTriggerNameRequiredException"},
{"shape":"RepositoryTriggerDestinationArnRequiredException"},
{"shape":"RepositoryTriggerBranchNameListRequiredException"},
{"shape":"RepositoryTriggerEventsListRequiredException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Replaces all triggers for a repository. This can be used to create or delete triggers.</p>"
},
"TestRepositoryTriggers":{
"name":"TestRepositoryTriggers",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TestRepositoryTriggersInput"},
"output":{"shape":"TestRepositoryTriggersOutput"},
"errors":[
{"shape":"RepositoryDoesNotExistException"},
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryTriggersListRequiredException"},
{"shape":"MaximumRepositoryTriggersExceededException"},
{"shape":"InvalidRepositoryTriggerNameException"},
{"shape":"InvalidRepositoryTriggerDestinationArnException"},
{"shape":"InvalidRepositoryTriggerRegionException"},
{"shape":"InvalidRepositoryTriggerCustomDataException"},
{"shape":"MaximumBranchesExceededException"},
{"shape":"InvalidRepositoryTriggerBranchNameException"},
{"shape":"InvalidRepositoryTriggerEventsException"},
{"shape":"RepositoryTriggerNameRequiredException"},
{"shape":"RepositoryTriggerDestinationArnRequiredException"},
{"shape":"RepositoryTriggerBranchNameListRequiredException"},
{"shape":"RepositoryTriggerEventsListRequiredException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Tests the functionality of repository triggers by sending information to the trigger target. If real data is available in the repository, the test will send data from the last commit. If no data is available, sample data will be generated.</p>"
},
"UpdateDefaultBranch":{
"name":"UpdateDefaultBranch",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateDefaultBranchInput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"BranchNameRequiredException"},
{"shape":"InvalidBranchNameException"},
{"shape":"BranchDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Sets or changes the default branch name for the specified repository.</p> <note> <p>If you use this operation to change the default branch name to the current default branch name, a success message is returned even though the default branch did not change.</p> </note>"
},
"UpdateRepositoryDescription":{
"name":"UpdateRepositoryDescription",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateRepositoryDescriptionInput"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"InvalidRepositoryDescriptionException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
],
"documentation":"<p>Sets or changes the comment or description for a repository.</p> <note> <p>The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.</p> </note>"
},
"UpdateRepositoryName":{
"name":"UpdateRepositoryName",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateRepositoryNameInput"},
"errors":[
{"shape":"RepositoryDoesNotExistException"},
{"shape":"RepositoryNameExistsException"},
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"}
],
"documentation":"<p>Renames a repository. The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. The suffix \".git\" is prohibited. For a full description of the limits on repository names, see <a href=\"http://docs.aws.amazon.com/codecommit/latest/userguide/limits.html\">Limits</a> in the AWS CodeCommit User Guide.</p>"
}
},
"shapes":{
"AccountId":{"type":"string"},
"AdditionalData":{"type":"string"},
"Arn":{"type":"string"},
"BatchGetRepositoriesInput":{
"type":"structure",
"required":["repositoryNames"],
"members":{
"repositoryNames":{
"shape":"RepositoryNameList",
"documentation":"<p>The names of the repositories to get information about.</p>"
}
},
"documentation":"<p>Represents the input of a batch get repositories operation.</p>"
},
"BatchGetRepositoriesOutput":{
"type":"structure",
"members":{
"repositories":{
"shape":"RepositoryMetadataList",
"documentation":"<p>A list of repositories returned by the batch get repositories operation.</p>"
},
"repositoriesNotFound":{
"shape":"RepositoryNotFoundList",
"documentation":"<p>Returns a list of repository names for which information could not be found.</p>"
}
},
"documentation":"<p>Represents the output of a batch get repositories operation.</p>"
},
"BlobIdDoesNotExistException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified blob does not exist.</p>",
"exception":true
},
"BlobIdRequiredException":{
"type":"structure",
"members":{
},
"documentation":"<p>A blob ID is required but was not specified.</p>",
"exception":true
},
"BlobMetadata":{
"type":"structure",
"members":{
"blobId":{
"shape":"ObjectId",
"documentation":"<p>The full ID of the blob.</p>"
},
"path":{
"shape":"Path",
"documentation":"<p>The path to the blob and any associated file name, if any.</p>"
},
"mode":{
"shape":"Mode",
"documentation":"<p>The file mode permissions of the blob. File mode permission codes include:</p> <ul> <li> <p> <code>100644</code> indicates read/write</p> </li> <li> <p> <code>100755</code> indicates read/write/execute</p> </li> <li> <p> <code>160000</code> indicates a submodule</p> </li> <li> <p> <code>120000</code> indicates a symlink</p> </li> </ul>"
}
},
"documentation":"<p>Returns information about a specific Git blob object.</p>"
},
"BranchDoesNotExistException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified branch does not exist.</p>",
"exception":true
},
"BranchInfo":{
"type":"structure",
"members":{
"branchName":{
"shape":"BranchName",
"documentation":"<p>The name of the branch.</p>"
},
"commitId":{
"shape":"CommitId",
"documentation":"<p>The ID of the last commit made to the branch.</p>"
}
},
"documentation":"<p>Returns information about a branch.</p>"
},
"BranchName":{
"type":"string",
"max":100,
"min":1
},
"BranchNameExistsException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified branch name already exists.</p>",
"exception":true
},
"BranchNameList":{
"type":"list",
"member":{"shape":"BranchName"}
},
"BranchNameRequiredException":{
"type":"structure",
"members":{
},
"documentation":"<p>A branch name is required but was not specified.</p>",
"exception":true
},
"ChangeTypeEnum":{
"type":"string",
"enum":[
"A",
"M",
"D"
]
},
"CloneUrlHttp":{"type":"string"},
"CloneUrlSsh":{"type":"string"},
"Commit":{
"type":"structure",
"members":{
"treeId":{
"shape":"ObjectId",
"documentation":"<p>Tree information for the specified commit.</p>"
},
"parents":{
"shape":"ParentList",
"documentation":"<p>The parent list for the specified commit.</p>"
},
"message":{
"shape":"Message",
"documentation":"<p>The commit message associated with the specified commit.</p>"
},
"author":{
"shape":"UserInfo",
"documentation":"<p>Information about the author of the specified commit. Information includes the date in timestamp format with GMT offset, the name of the author, and the email address for the author, as configured in Git.</p>"
},
"committer":{
"shape":"UserInfo",
"documentation":"<p>Information about the person who committed the specified commit, also known as the committer. Information includes the date in timestamp format with GMT offset, the name of the committer, and the email address for the committer, as configured in Git.</p> <p>For more information about the difference between an author and a committer in Git, see <a href=\"http://git-scm.com/book/ch2-3.html\">Viewing the Commit History</a> in Pro Git by Scott Chacon and Ben Straub.</p>"
},
"additionalData":{
"shape":"AdditionalData",
"documentation":"<p>Any additional data associated with the specified commit.</p>"
}
},
"documentation":"<p>Returns information about a specific commit.</p>"
},
"CommitDoesNotExistException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified commit does not exist or no commit was specified, and the specified repository has no default branch.</p>",
"exception":true
},
"CommitId":{"type":"string"},
"CommitIdDoesNotExistException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified commit ID does not exist.</p>",
"exception":true
},
"CommitIdRequiredException":{
"type":"structure",
"members":{
},
"documentation":"<p>A commit ID was not specified.</p>",
"exception":true
},
"CommitName":{"type":"string"},
"CommitRequiredException":{
"type":"structure",
"members":{
},
"documentation":"<p>A commit was not specified.</p>",
"exception":true
},
"CreateBranchInput":{
"type":"structure",
"required":[
"repositoryName",
"branchName",
"commitId"
],
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository in which you want to create the new branch.</p>"
},
"branchName":{
"shape":"BranchName",
"documentation":"<p>The name of the new branch to create.</p>"
},
"commitId":{
"shape":"CommitId",
"documentation":"<p>The ID of the commit to point the new branch to.</p>"
}
},
"documentation":"<p>Represents the input of a create branch operation.</p>"
},
"CreateRepositoryInput":{
"type":"structure",
"required":["repositoryName"],
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the new repository to be created.</p> <note> <p>The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see <a href=\"http://docs.aws.amazon.com/codecommit/latest/userguide/limits.html\">Limits</a> in the AWS CodeCommit User Guide. The suffix \".git\" is prohibited.</p> </note>"
},
"repositoryDescription":{
"shape":"RepositoryDescription",
"documentation":"<p>A comment or description about the new repository.</p> <note> <p>The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page.</p> </note>"
}
},
"documentation":"<p>Represents the input of a create repository operation.</p>"
},
"CreateRepositoryOutput":{
"type":"structure",
"members":{
"repositoryMetadata":{
"shape":"RepositoryMetadata",
"documentation":"<p>Information about the newly created repository.</p>"
}
},
"documentation":"<p>Represents the output of a create repository operation.</p>"
},
"CreationDate":{"type":"timestamp"},
"Date":{"type":"string"},
"DeleteRepositoryInput":{
"type":"structure",
"required":["repositoryName"],
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository to delete.</p>"
}
},
"documentation":"<p>Represents the input of a delete repository operation.</p>"
},
"DeleteRepositoryOutput":{
"type":"structure",
"members":{
"repositoryId":{
"shape":"RepositoryId",
"documentation":"<p>The ID of the repository that was deleted.</p>"
}
},
"documentation":"<p>Represents the output of a delete repository operation.</p>"
},
"Difference":{
"type":"structure",
"members":{
"beforeBlob":{
"shape":"BlobMetadata",
"documentation":"<p>Information about a <code>beforeBlob</code> data type object, including the ID, the file mode permission code, and the path.</p>"
},
"afterBlob":{
"shape":"BlobMetadata",
"documentation":"<p>Information about an <code>afterBlob</code> data type object, including the ID, the file mode permission code, and the path.</p>"
},
"changeType":{
"shape":"ChangeTypeEnum",
"documentation":"<p>Whether the change type of the difference is an addition (A), deletion (D), or modification (M).</p>"
}
},
"documentation":"<p>Returns information about a set of differences for a commit specifier.</p>"
},
"DifferenceList":{
"type":"list",
"member":{"shape":"Difference"}
},
"Email":{"type":"string"},
"EncryptionIntegrityChecksFailedException":{
"type":"structure",
"members":{
},
"documentation":"<p>An encryption integrity check failed.</p>",
"exception":true,
"fault":true
},
"EncryptionKeyAccessDeniedException":{
"type":"structure",
"members":{
},
"documentation":"<p>An encryption key could not be accessed.</p>",
"exception":true
},
"EncryptionKeyDisabledException":{
"type":"structure",
"members":{
},
"documentation":"<p>The encryption key is disabled.</p>",
"exception":true
},
"EncryptionKeyNotFoundException":{
"type":"structure",
"members":{
},
"documentation":"<p>No encryption key was found.</p>",
"exception":true
},
"EncryptionKeyUnavailableException":{
"type":"structure",
"members":{
},
"documentation":"<p>The encryption key is not available.</p>",
"exception":true
},
"FileTooLargeException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified file exceeds the file size limit for AWS CodeCommit. For more information about limits in AWS CodeCommit, see <a href=\"http://docs.aws.amazon.com/codecommit/latest/userguide/limits.html\">AWS CodeCommit User Guide</a>.</p>",
"exception":true
},
"GetBlobInput":{
"type":"structure",
"required":[
"repositoryName",
"blobId"
],
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository that contains the blob.</p>"
},
"blobId":{
"shape":"ObjectId",
"documentation":"<p>The ID of the blob, which is its SHA-1 pointer.</p>"
}
},
"documentation":"<p>Represents the input of a get blob operation.</p>"
},
"GetBlobOutput":{
"type":"structure",
"required":["content"],
"members":{
"content":{
"shape":"blob",
"documentation":"<p>The content of the blob, usually a file.</p>"
}
},
"documentation":"<p>Represents the output of a get blob operation.</p>"
},
"GetBranchInput":{
"type":"structure",
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository that contains the branch for which you want to retrieve information.</p>"
},
"branchName":{
"shape":"BranchName",
"documentation":"<p>The name of the branch for which you want to retrieve information.</p>"
}
},
"documentation":"<p>Represents the input of a get branch operation.</p>"
},
"GetBranchOutput":{
"type":"structure",
"members":{
"branch":{
"shape":"BranchInfo",
"documentation":"<p>The name of the branch.</p>"
}
},
"documentation":"<p>Represents the output of a get branch operation.</p>"
},
"GetCommitInput":{
"type":"structure",
"required":[
"repositoryName",
"commitId"
],
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository to which the commit was made.</p>"
},
"commitId":{
"shape":"ObjectId",
"documentation":"<p>The commit ID.</p>"
}
},
"documentation":"<p>Represents the input of a get commit operation.</p>"
},
"GetCommitOutput":{
"type":"structure",
"required":["commit"],
"members":{
"commit":{
"shape":"Commit",
"documentation":"<p>A commit data type object that contains information about the specified commit.</p>"
}
},
"documentation":"<p>Represents the output of a get commit operation.</p>"
},
"GetDifferencesInput":{
"type":"structure",
"required":[
"repositoryName",
"afterCommitSpecifier"
],
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository where you want to get differences.</p>"
},
"beforeCommitSpecifier":{
"shape":"CommitName",
"documentation":"<p>The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, the full commit ID. Optional. If not specified, all changes prior to the <code>afterCommitSpecifier</code> value will be shown. If you do not use <code>beforeCommitSpecifier</code> in your request, consider limiting the results with <code>maxResults</code>.</p>"
},
"afterCommitSpecifier":{
"shape":"CommitName",
"documentation":"<p>The branch, tag, HEAD, or other fully qualified reference used to identify a commit.</p>"
},
"beforePath":{
"shape":"Path",
"documentation":"<p>The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If <code>beforePath</code> and <code>afterPath</code> are not specified, differences will be shown for all paths.</p>"
},
"afterPath":{
"shape":"Path",
"documentation":"<p>The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences will be shown for all paths.</p>"
},
"MaxResults":{
"shape":"Limit",
"documentation":"<p>A non-negative integer used to limit the number of returned results.</p>"
},
"NextToken":{
"shape":"NextToken",
"documentation":"<p>An enumeration token that when provided in a request, returns the next batch of the results.</p>"
}
}
},
"GetDifferencesOutput":{
"type":"structure",
"members":{
"differences":{
"shape":"DifferenceList",
"documentation":"<p>A differences data type object that contains information about the differences, including whether the difference is added, modified, or deleted (A, D, M).</p>"
},
"NextToken":{
"shape":"NextToken",
"documentation":"<p>An enumeration token that can be used in a request to return the next batch of the results.</p>"
}
}
},
"GetRepositoryInput":{
"type":"structure",
"required":["repositoryName"],
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository to get information about.</p>"
}
},
"documentation":"<p>Represents the input of a get repository operation.</p>"
},
"GetRepositoryOutput":{
"type":"structure",
"members":{
"repositoryMetadata":{
"shape":"RepositoryMetadata",
"documentation":"<p>Information about the repository.</p>"
}
},
"documentation":"<p>Represents the output of a get repository operation.</p>"
},
"GetRepositoryTriggersInput":{
"type":"structure",
"required":["repositoryName"],
"members":{
"repositoryName":{
"shape":"RepositoryName",
"documentation":"<p>The name of the repository for which the trigger is configured.</p>"
}
},
"documentation":"<p>Represents the input of a get repository triggers operation.</p>"
},
"GetRepositoryTriggersOutput":{
"type":"structure",
"members":{
"configurationId":{
"shape":"RepositoryTriggersConfigurationId",
"documentation":"<p>The system-generated unique ID for the trigger.</p>"
},
"triggers":{
"shape":"RepositoryTriggersList",
"documentation":"<p>The JSON block of configuration information for each trigger.</p>"
}
},
"documentation":"<p>Represents the output of a get repository triggers operation.</p>"
},
"InvalidBlobIdException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified blob is not valid.</p>",
"exception":true
},
"InvalidBranchNameException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified branch name is not valid.</p>",
"exception":true
},
"InvalidCommitException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified commit is not valid.</p>",
"exception":true
},
"InvalidCommitIdException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified commit ID is not valid.</p>",
"exception":true
},
"InvalidContinuationTokenException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified continuation token is not valid.</p>",
"exception":true
},
"InvalidMaxResultsException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified number of maximum results is not valid.</p>",
"exception":true
},
"InvalidOrderException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified sort order is not valid.</p>",
"exception":true
},
"InvalidPathException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified path is not valid.</p>",
"exception":true
},
"InvalidRepositoryDescriptionException":{
"type":"structure",
"members":{
},
"documentation":"<p>The specified repository description is not valid.</p>",
"exception":true
},
"InvalidRepositoryNameException":{
"type":"structure",
"members":{
},
"documentation":"<p>At least one specified repository name is not valid.</p> <note> <p>This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.</p> </note>",
"exception":true
},
"InvalidRepositoryTriggerBranchNameException":{
"type":"structure",
"members":{
},
"documentation":"<p>One or more branch names specified for the trigger is not valid.</p>",
"exception":true
},
"InvalidRepositoryTriggerCustomDataException":{
"type":"structure",
"members":{
},
"documentation":"<p>The custom data provided for the trigger is not valid.</p>",
"exception":true
},
"InvalidRepositoryTriggerDestinationArnException":{
"type":"structure",
"members":{
},
"documentation":"<p>The Amazon Resource Name (ARN) for the trigger is not valid for the specified destination. The most common reason for this error is that the ARN does not meet the requirements for the service type.</p>",
"exception":true
},
"InvalidRepositoryTriggerEventsException":{
"type":"structure",
"members":{
},
"documentation":"<p>One or more events specified for the trigger is not valid. Check to make sure that all events specified match the requirements for allowed events.</p>",
"exception":true
},
"InvalidRepositoryTriggerNameException":{
"type":"structure",
"members":{
},
"documentation":"<p>The name of the trigger is not valid.</p>",
"exception":true
},
"InvalidRepositoryTriggerRegionException":{
"type":"structure",
"members":{
},
"documentation":"<p>The region for the trigger target does not match the region for the repository. Triggers must be created in the same region as the target for the trigger.</p>",
"exception":true
},