aws-sdk-codecommit 1.32.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-codecommit.rb +3 -1
- data/lib/aws-sdk-codecommit/client.rb +151 -6
- data/lib/aws-sdk-codecommit/client_api.rb +107 -2
- data/lib/aws-sdk-codecommit/customizations.rb +1 -0
- data/lib/aws-sdk-codecommit/errors.rb +46 -0
- data/lib/aws-sdk-codecommit/resource.rb +2 -0
- data/lib/aws-sdk-codecommit/types.rb +392 -5
- metadata +4 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -117,6 +119,8 @@ module Aws::CodeCommit
|
|
117
119
|
# * {InvalidPullRequestIdException}
|
118
120
|
# * {InvalidPullRequestStatusException}
|
119
121
|
# * {InvalidPullRequestStatusUpdateException}
|
122
|
+
# * {InvalidReactionUserArnException}
|
123
|
+
# * {InvalidReactionValueException}
|
120
124
|
# * {InvalidReferenceNameException}
|
121
125
|
# * {InvalidRelativeFileVersionEnumException}
|
122
126
|
# * {InvalidReplacementContentException}
|
@@ -173,6 +177,8 @@ module Aws::CodeCommit
|
|
173
177
|
# * {PullRequestIdRequiredException}
|
174
178
|
# * {PullRequestStatusRequiredException}
|
175
179
|
# * {PutFileEntryConflictException}
|
180
|
+
# * {ReactionLimitExceededException}
|
181
|
+
# * {ReactionValueRequiredException}
|
176
182
|
# * {ReferenceDoesNotExistException}
|
177
183
|
# * {ReferenceNameRequiredException}
|
178
184
|
# * {ReferenceTypeNotSupportedException}
|
@@ -1133,6 +1139,26 @@ module Aws::CodeCommit
|
|
1133
1139
|
end
|
1134
1140
|
end
|
1135
1141
|
|
1142
|
+
class InvalidReactionUserArnException < ServiceError
|
1143
|
+
|
1144
|
+
# @param [Seahorse::Client::RequestContext] context
|
1145
|
+
# @param [String] message
|
1146
|
+
# @param [Aws::CodeCommit::Types::InvalidReactionUserArnException] data
|
1147
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1148
|
+
super(context, message, data)
|
1149
|
+
end
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class InvalidReactionValueException < ServiceError
|
1153
|
+
|
1154
|
+
# @param [Seahorse::Client::RequestContext] context
|
1155
|
+
# @param [String] message
|
1156
|
+
# @param [Aws::CodeCommit::Types::InvalidReactionValueException] data
|
1157
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1158
|
+
super(context, message, data)
|
1159
|
+
end
|
1160
|
+
end
|
1161
|
+
|
1136
1162
|
class InvalidReferenceNameException < ServiceError
|
1137
1163
|
|
1138
1164
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1693,6 +1719,26 @@ module Aws::CodeCommit
|
|
1693
1719
|
end
|
1694
1720
|
end
|
1695
1721
|
|
1722
|
+
class ReactionLimitExceededException < ServiceError
|
1723
|
+
|
1724
|
+
# @param [Seahorse::Client::RequestContext] context
|
1725
|
+
# @param [String] message
|
1726
|
+
# @param [Aws::CodeCommit::Types::ReactionLimitExceededException] data
|
1727
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1728
|
+
super(context, message, data)
|
1729
|
+
end
|
1730
|
+
end
|
1731
|
+
|
1732
|
+
class ReactionValueRequiredException < ServiceError
|
1733
|
+
|
1734
|
+
# @param [Seahorse::Client::RequestContext] context
|
1735
|
+
# @param [String] message
|
1736
|
+
# @param [Aws::CodeCommit::Types::ReactionValueRequiredException] data
|
1737
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1738
|
+
super(context, message, data)
|
1739
|
+
end
|
1740
|
+
end
|
1741
|
+
|
1696
1742
|
class ReferenceDoesNotExistException < ServiceError
|
1697
1743
|
|
1698
1744
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -31,6 +33,7 @@ module Aws::CodeCommit
|
|
31
33
|
class Approval < Struct.new(
|
32
34
|
:user_arn,
|
33
35
|
:approval_state)
|
36
|
+
SENSITIVE = []
|
34
37
|
include Aws::Structure
|
35
38
|
end
|
36
39
|
|
@@ -81,6 +84,7 @@ module Aws::CodeCommit
|
|
81
84
|
:creation_date,
|
82
85
|
:last_modified_user,
|
83
86
|
:origin_approval_rule_template)
|
87
|
+
SENSITIVE = []
|
84
88
|
include Aws::Structure
|
85
89
|
end
|
86
90
|
|
@@ -117,6 +121,7 @@ module Aws::CodeCommit
|
|
117
121
|
:approval_rule_name,
|
118
122
|
:approval_rule_id,
|
119
123
|
:approval_rule_content)
|
124
|
+
SENSITIVE = []
|
120
125
|
include Aws::Structure
|
121
126
|
end
|
122
127
|
|
@@ -150,6 +155,7 @@ module Aws::CodeCommit
|
|
150
155
|
class ApprovalRuleOverriddenEventMetadata < Struct.new(
|
151
156
|
:revision_id,
|
152
157
|
:override_status)
|
158
|
+
SENSITIVE = []
|
153
159
|
include Aws::Structure
|
154
160
|
end
|
155
161
|
|
@@ -202,6 +208,7 @@ module Aws::CodeCommit
|
|
202
208
|
:last_modified_date,
|
203
209
|
:creation_date,
|
204
210
|
:last_modified_user)
|
211
|
+
SENSITIVE = []
|
205
212
|
include Aws::Structure
|
206
213
|
end
|
207
214
|
|
@@ -259,6 +266,7 @@ module Aws::CodeCommit
|
|
259
266
|
class ApprovalStateChangedEventMetadata < Struct.new(
|
260
267
|
:revision_id,
|
261
268
|
:approval_status)
|
269
|
+
SENSITIVE = []
|
262
270
|
include Aws::Structure
|
263
271
|
end
|
264
272
|
|
@@ -290,6 +298,7 @@ module Aws::CodeCommit
|
|
290
298
|
class AssociateApprovalRuleTemplateWithRepositoryInput < Struct.new(
|
291
299
|
:approval_rule_template_name,
|
292
300
|
:repository_name)
|
301
|
+
SENSITIVE = []
|
293
302
|
include Aws::Structure
|
294
303
|
end
|
295
304
|
|
@@ -323,6 +332,7 @@ module Aws::CodeCommit
|
|
323
332
|
:repository_name,
|
324
333
|
:error_code,
|
325
334
|
:error_message)
|
335
|
+
SENSITIVE = []
|
326
336
|
include Aws::Structure
|
327
337
|
end
|
328
338
|
|
@@ -354,6 +364,7 @@ module Aws::CodeCommit
|
|
354
364
|
class BatchAssociateApprovalRuleTemplateWithRepositoriesInput < Struct.new(
|
355
365
|
:approval_rule_template_name,
|
356
366
|
:repository_names)
|
367
|
+
SENSITIVE = []
|
357
368
|
include Aws::Structure
|
358
369
|
end
|
359
370
|
|
@@ -372,6 +383,7 @@ module Aws::CodeCommit
|
|
372
383
|
class BatchAssociateApprovalRuleTemplateWithRepositoriesOutput < Struct.new(
|
373
384
|
:associated_repository_names,
|
374
385
|
:errors)
|
386
|
+
SENSITIVE = []
|
375
387
|
include Aws::Structure
|
376
388
|
end
|
377
389
|
|
@@ -396,6 +408,7 @@ module Aws::CodeCommit
|
|
396
408
|
:file_path,
|
397
409
|
:exception_name,
|
398
410
|
:message)
|
411
|
+
SENSITIVE = []
|
399
412
|
include Aws::Structure
|
400
413
|
end
|
401
414
|
|
@@ -480,6 +493,7 @@ module Aws::CodeCommit
|
|
480
493
|
:conflict_detail_level,
|
481
494
|
:conflict_resolution_strategy,
|
482
495
|
:next_token)
|
496
|
+
SENSITIVE = []
|
483
497
|
include Aws::Structure
|
484
498
|
end
|
485
499
|
|
@@ -521,6 +535,7 @@ module Aws::CodeCommit
|
|
521
535
|
:destination_commit_id,
|
522
536
|
:source_commit_id,
|
523
537
|
:base_commit_id)
|
538
|
+
SENSITIVE = []
|
524
539
|
include Aws::Structure
|
525
540
|
end
|
526
541
|
|
@@ -548,6 +563,7 @@ module Aws::CodeCommit
|
|
548
563
|
:repository_name,
|
549
564
|
:error_code,
|
550
565
|
:error_message)
|
566
|
+
SENSITIVE = []
|
551
567
|
include Aws::Structure
|
552
568
|
end
|
553
569
|
|
@@ -579,6 +595,7 @@ module Aws::CodeCommit
|
|
579
595
|
class BatchDisassociateApprovalRuleTemplateFromRepositoriesInput < Struct.new(
|
580
596
|
:approval_rule_template_name,
|
581
597
|
:repository_names)
|
598
|
+
SENSITIVE = []
|
582
599
|
include Aws::Structure
|
583
600
|
end
|
584
601
|
|
@@ -597,6 +614,7 @@ module Aws::CodeCommit
|
|
597
614
|
class BatchDisassociateApprovalRuleTemplateFromRepositoriesOutput < Struct.new(
|
598
615
|
:disassociated_repository_names,
|
599
616
|
:errors)
|
617
|
+
SENSITIVE = []
|
600
618
|
include Aws::Structure
|
601
619
|
end
|
602
620
|
|
@@ -623,6 +641,7 @@ module Aws::CodeCommit
|
|
623
641
|
:commit_id,
|
624
642
|
:error_code,
|
625
643
|
:error_message)
|
644
|
+
SENSITIVE = []
|
626
645
|
include Aws::Structure
|
627
646
|
end
|
628
647
|
|
@@ -652,6 +671,7 @@ module Aws::CodeCommit
|
|
652
671
|
class BatchGetCommitsInput < Struct.new(
|
653
672
|
:commit_ids,
|
654
673
|
:repository_name)
|
674
|
+
SENSITIVE = []
|
655
675
|
include Aws::Structure
|
656
676
|
end
|
657
677
|
|
@@ -672,6 +692,7 @@ module Aws::CodeCommit
|
|
672
692
|
class BatchGetCommitsOutput < Struct.new(
|
673
693
|
:commits,
|
674
694
|
:errors)
|
695
|
+
SENSITIVE = []
|
675
696
|
include Aws::Structure
|
676
697
|
end
|
677
698
|
|
@@ -697,6 +718,7 @@ module Aws::CodeCommit
|
|
697
718
|
#
|
698
719
|
class BatchGetRepositoriesInput < Struct.new(
|
699
720
|
:repository_names)
|
721
|
+
SENSITIVE = []
|
700
722
|
include Aws::Structure
|
701
723
|
end
|
702
724
|
|
@@ -717,6 +739,7 @@ module Aws::CodeCommit
|
|
717
739
|
class BatchGetRepositoriesOutput < Struct.new(
|
718
740
|
:repositories,
|
719
741
|
:repositories_not_found)
|
742
|
+
SENSITIVE = []
|
720
743
|
include Aws::Structure
|
721
744
|
end
|
722
745
|
|
@@ -769,6 +792,7 @@ module Aws::CodeCommit
|
|
769
792
|
:blob_id,
|
770
793
|
:path,
|
771
794
|
:mode)
|
795
|
+
SENSITIVE = []
|
772
796
|
include Aws::Structure
|
773
797
|
end
|
774
798
|
|
@@ -793,10 +817,13 @@ module Aws::CodeCommit
|
|
793
817
|
class BranchInfo < Struct.new(
|
794
818
|
:branch_name,
|
795
819
|
:commit_id)
|
820
|
+
SENSITIVE = []
|
796
821
|
include Aws::Structure
|
797
822
|
end
|
798
823
|
|
799
|
-
#
|
824
|
+
# Cannot create the branch with the specified name because the commit
|
825
|
+
# conflicts with an existing branch with the same name. Branch names
|
826
|
+
# must be unique.
|
800
827
|
#
|
801
828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BranchNameExistsException AWS API Documentation
|
802
829
|
#
|
@@ -882,6 +909,16 @@ module Aws::CodeCommit
|
|
882
909
|
# request that used that token.
|
883
910
|
# @return [String]
|
884
911
|
#
|
912
|
+
# @!attribute [rw] caller_reactions
|
913
|
+
# The emoji reactions to a comment, if any, submitted by the user
|
914
|
+
# whose credentials are associated with the call to the API.
|
915
|
+
# @return [Array<String>]
|
916
|
+
#
|
917
|
+
# @!attribute [rw] reaction_counts
|
918
|
+
# A string to integer map that represents the number of individual
|
919
|
+
# users who have responded to a comment with the specified reactions.
|
920
|
+
# @return [Hash<String,Integer>]
|
921
|
+
#
|
885
922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Comment AWS API Documentation
|
886
923
|
#
|
887
924
|
class Comment < Struct.new(
|
@@ -892,7 +929,10 @@ module Aws::CodeCommit
|
|
892
929
|
:last_modified_date,
|
893
930
|
:author_arn,
|
894
931
|
:deleted,
|
895
|
-
:client_request_token
|
932
|
+
:client_request_token,
|
933
|
+
:caller_reactions,
|
934
|
+
:reaction_counts)
|
935
|
+
SENSITIVE = []
|
896
936
|
include Aws::Structure
|
897
937
|
end
|
898
938
|
|
@@ -984,6 +1024,7 @@ module Aws::CodeCommit
|
|
984
1024
|
:after_blob_id,
|
985
1025
|
:location,
|
986
1026
|
:comments)
|
1027
|
+
SENSITIVE = []
|
987
1028
|
include Aws::Structure
|
988
1029
|
end
|
989
1030
|
|
@@ -1042,6 +1083,7 @@ module Aws::CodeCommit
|
|
1042
1083
|
:after_blob_id,
|
1043
1084
|
:location,
|
1044
1085
|
:comments)
|
1086
|
+
SENSITIVE = []
|
1045
1087
|
include Aws::Structure
|
1046
1088
|
end
|
1047
1089
|
|
@@ -1100,6 +1142,7 @@ module Aws::CodeCommit
|
|
1100
1142
|
:author,
|
1101
1143
|
:committer,
|
1102
1144
|
:additional_data)
|
1145
|
+
SENSITIVE = []
|
1103
1146
|
include Aws::Structure
|
1104
1147
|
end
|
1105
1148
|
|
@@ -1173,6 +1216,7 @@ module Aws::CodeCommit
|
|
1173
1216
|
class Conflict < Struct.new(
|
1174
1217
|
:conflict_metadata,
|
1175
1218
|
:merge_hunks)
|
1219
|
+
SENSITIVE = []
|
1176
1220
|
include Aws::Structure
|
1177
1221
|
end
|
1178
1222
|
|
@@ -1240,6 +1284,7 @@ module Aws::CodeCommit
|
|
1240
1284
|
:file_mode_conflict,
|
1241
1285
|
:object_type_conflict,
|
1242
1286
|
:merge_operations)
|
1287
|
+
SENSITIVE = []
|
1243
1288
|
include Aws::Structure
|
1244
1289
|
end
|
1245
1290
|
|
@@ -1290,6 +1335,7 @@ module Aws::CodeCommit
|
|
1290
1335
|
:replace_contents,
|
1291
1336
|
:delete_files,
|
1292
1337
|
:set_file_modes)
|
1338
|
+
SENSITIVE = []
|
1293
1339
|
include Aws::Structure
|
1294
1340
|
end
|
1295
1341
|
|
@@ -1349,7 +1395,7 @@ module Aws::CodeCommit
|
|
1349
1395
|
#
|
1350
1396
|
#
|
1351
1397
|
#
|
1352
|
-
# [1]: https://docs.aws.amazon.com/
|
1398
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
|
1353
1399
|
# @return [String]
|
1354
1400
|
#
|
1355
1401
|
# @!attribute [rw] approval_rule_template_description
|
@@ -1364,6 +1410,7 @@ module Aws::CodeCommit
|
|
1364
1410
|
:approval_rule_template_name,
|
1365
1411
|
:approval_rule_template_content,
|
1366
1412
|
:approval_rule_template_description)
|
1413
|
+
SENSITIVE = []
|
1367
1414
|
include Aws::Structure
|
1368
1415
|
end
|
1369
1416
|
|
@@ -1375,6 +1422,7 @@ module Aws::CodeCommit
|
|
1375
1422
|
#
|
1376
1423
|
class CreateApprovalRuleTemplateOutput < Struct.new(
|
1377
1424
|
:approval_rule_template)
|
1425
|
+
SENSITIVE = []
|
1378
1426
|
include Aws::Structure
|
1379
1427
|
end
|
1380
1428
|
|
@@ -1408,6 +1456,7 @@ module Aws::CodeCommit
|
|
1408
1456
|
:repository_name,
|
1409
1457
|
:branch_name,
|
1410
1458
|
:commit_id)
|
1459
|
+
SENSITIVE = []
|
1411
1460
|
include Aws::Structure
|
1412
1461
|
end
|
1413
1462
|
|
@@ -1506,6 +1555,7 @@ module Aws::CodeCommit
|
|
1506
1555
|
:put_files,
|
1507
1556
|
:delete_files,
|
1508
1557
|
:set_file_modes)
|
1558
|
+
SENSITIVE = []
|
1509
1559
|
include Aws::Structure
|
1510
1560
|
end
|
1511
1561
|
|
@@ -1539,6 +1589,7 @@ module Aws::CodeCommit
|
|
1539
1589
|
:files_added,
|
1540
1590
|
:files_updated,
|
1541
1591
|
:files_deleted)
|
1592
|
+
SENSITIVE = []
|
1542
1593
|
include Aws::Structure
|
1543
1594
|
end
|
1544
1595
|
|
@@ -1600,7 +1651,7 @@ module Aws::CodeCommit
|
|
1600
1651
|
#
|
1601
1652
|
#
|
1602
1653
|
#
|
1603
|
-
# [1]: https://docs.aws.amazon.com/
|
1654
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
|
1604
1655
|
# @return [String]
|
1605
1656
|
#
|
1606
1657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreatePullRequestApprovalRuleInput AWS API Documentation
|
@@ -1609,6 +1660,7 @@ module Aws::CodeCommit
|
|
1609
1660
|
:pull_request_id,
|
1610
1661
|
:approval_rule_name,
|
1611
1662
|
:approval_rule_content)
|
1663
|
+
SENSITIVE = []
|
1612
1664
|
include Aws::Structure
|
1613
1665
|
end
|
1614
1666
|
|
@@ -1620,6 +1672,7 @@ module Aws::CodeCommit
|
|
1620
1672
|
#
|
1621
1673
|
class CreatePullRequestApprovalRuleOutput < Struct.new(
|
1622
1674
|
:approval_rule)
|
1675
|
+
SENSITIVE = []
|
1623
1676
|
include Aws::Structure
|
1624
1677
|
end
|
1625
1678
|
|
@@ -1678,6 +1731,7 @@ module Aws::CodeCommit
|
|
1678
1731
|
:description,
|
1679
1732
|
:targets,
|
1680
1733
|
:client_request_token)
|
1734
|
+
SENSITIVE = []
|
1681
1735
|
include Aws::Structure
|
1682
1736
|
end
|
1683
1737
|
|
@@ -1689,6 +1743,7 @@ module Aws::CodeCommit
|
|
1689
1743
|
#
|
1690
1744
|
class CreatePullRequestOutput < Struct.new(
|
1691
1745
|
:pull_request)
|
1746
|
+
SENSITIVE = []
|
1692
1747
|
include Aws::Structure
|
1693
1748
|
end
|
1694
1749
|
|
@@ -1745,6 +1800,7 @@ module Aws::CodeCommit
|
|
1745
1800
|
:repository_name,
|
1746
1801
|
:repository_description,
|
1747
1802
|
:tags)
|
1803
|
+
SENSITIVE = []
|
1748
1804
|
include Aws::Structure
|
1749
1805
|
end
|
1750
1806
|
|
@@ -1758,6 +1814,7 @@ module Aws::CodeCommit
|
|
1758
1814
|
#
|
1759
1815
|
class CreateRepositoryOutput < Struct.new(
|
1760
1816
|
:repository_metadata)
|
1817
|
+
SENSITIVE = []
|
1761
1818
|
include Aws::Structure
|
1762
1819
|
end
|
1763
1820
|
|
@@ -1872,6 +1929,7 @@ module Aws::CodeCommit
|
|
1872
1929
|
:commit_message,
|
1873
1930
|
:keep_empty_folders,
|
1874
1931
|
:conflict_resolution)
|
1932
|
+
SENSITIVE = []
|
1875
1933
|
include Aws::Structure
|
1876
1934
|
end
|
1877
1935
|
|
@@ -1889,6 +1947,7 @@ module Aws::CodeCommit
|
|
1889
1947
|
class CreateUnreferencedMergeCommitOutput < Struct.new(
|
1890
1948
|
:commit_id,
|
1891
1949
|
:tree_id)
|
1950
|
+
SENSITIVE = []
|
1892
1951
|
include Aws::Structure
|
1893
1952
|
end
|
1894
1953
|
|
@@ -1915,6 +1974,7 @@ module Aws::CodeCommit
|
|
1915
1974
|
#
|
1916
1975
|
class DeleteApprovalRuleTemplateInput < Struct.new(
|
1917
1976
|
:approval_rule_template_name)
|
1977
|
+
SENSITIVE = []
|
1918
1978
|
include Aws::Structure
|
1919
1979
|
end
|
1920
1980
|
|
@@ -1928,6 +1988,7 @@ module Aws::CodeCommit
|
|
1928
1988
|
#
|
1929
1989
|
class DeleteApprovalRuleTemplateOutput < Struct.new(
|
1930
1990
|
:approval_rule_template_id)
|
1991
|
+
SENSITIVE = []
|
1931
1992
|
include Aws::Structure
|
1932
1993
|
end
|
1933
1994
|
|
@@ -1954,6 +2015,7 @@ module Aws::CodeCommit
|
|
1954
2015
|
class DeleteBranchInput < Struct.new(
|
1955
2016
|
:repository_name,
|
1956
2017
|
:branch_name)
|
2018
|
+
SENSITIVE = []
|
1957
2019
|
include Aws::Structure
|
1958
2020
|
end
|
1959
2021
|
|
@@ -1968,6 +2030,7 @@ module Aws::CodeCommit
|
|
1968
2030
|
#
|
1969
2031
|
class DeleteBranchOutput < Struct.new(
|
1970
2032
|
:deleted_branch)
|
2033
|
+
SENSITIVE = []
|
1971
2034
|
include Aws::Structure
|
1972
2035
|
end
|
1973
2036
|
|
@@ -1987,6 +2050,7 @@ module Aws::CodeCommit
|
|
1987
2050
|
#
|
1988
2051
|
class DeleteCommentContentInput < Struct.new(
|
1989
2052
|
:comment_id)
|
2053
|
+
SENSITIVE = []
|
1990
2054
|
include Aws::Structure
|
1991
2055
|
end
|
1992
2056
|
|
@@ -1998,6 +2062,7 @@ module Aws::CodeCommit
|
|
1998
2062
|
#
|
1999
2063
|
class DeleteCommentContentOutput < Struct.new(
|
2000
2064
|
:comment)
|
2065
|
+
SENSITIVE = []
|
2001
2066
|
include Aws::Structure
|
2002
2067
|
end
|
2003
2068
|
|
@@ -2019,6 +2084,7 @@ module Aws::CodeCommit
|
|
2019
2084
|
#
|
2020
2085
|
class DeleteFileEntry < Struct.new(
|
2021
2086
|
:file_path)
|
2087
|
+
SENSITIVE = []
|
2022
2088
|
include Aws::Structure
|
2023
2089
|
end
|
2024
2090
|
|
@@ -2097,6 +2163,7 @@ module Aws::CodeCommit
|
|
2097
2163
|
:commit_message,
|
2098
2164
|
:name,
|
2099
2165
|
:email)
|
2166
|
+
SENSITIVE = []
|
2100
2167
|
include Aws::Structure
|
2101
2168
|
end
|
2102
2169
|
|
@@ -2126,6 +2193,7 @@ module Aws::CodeCommit
|
|
2126
2193
|
:blob_id,
|
2127
2194
|
:tree_id,
|
2128
2195
|
:file_path)
|
2196
|
+
SENSITIVE = []
|
2129
2197
|
include Aws::Structure
|
2130
2198
|
end
|
2131
2199
|
|
@@ -2151,6 +2219,7 @@ module Aws::CodeCommit
|
|
2151
2219
|
class DeletePullRequestApprovalRuleInput < Struct.new(
|
2152
2220
|
:pull_request_id,
|
2153
2221
|
:approval_rule_name)
|
2222
|
+
SENSITIVE = []
|
2154
2223
|
include Aws::Structure
|
2155
2224
|
end
|
2156
2225
|
|
@@ -2167,6 +2236,7 @@ module Aws::CodeCommit
|
|
2167
2236
|
#
|
2168
2237
|
class DeletePullRequestApprovalRuleOutput < Struct.new(
|
2169
2238
|
:approval_rule_id)
|
2239
|
+
SENSITIVE = []
|
2170
2240
|
include Aws::Structure
|
2171
2241
|
end
|
2172
2242
|
|
@@ -2187,6 +2257,7 @@ module Aws::CodeCommit
|
|
2187
2257
|
#
|
2188
2258
|
class DeleteRepositoryInput < Struct.new(
|
2189
2259
|
:repository_name)
|
2260
|
+
SENSITIVE = []
|
2190
2261
|
include Aws::Structure
|
2191
2262
|
end
|
2192
2263
|
|
@@ -2200,6 +2271,7 @@ module Aws::CodeCommit
|
|
2200
2271
|
#
|
2201
2272
|
class DeleteRepositoryOutput < Struct.new(
|
2202
2273
|
:repository_id)
|
2274
|
+
SENSITIVE = []
|
2203
2275
|
include Aws::Structure
|
2204
2276
|
end
|
2205
2277
|
|
@@ -2277,6 +2349,7 @@ module Aws::CodeCommit
|
|
2277
2349
|
:conflict_detail_level,
|
2278
2350
|
:conflict_resolution_strategy,
|
2279
2351
|
:next_token)
|
2352
|
+
SENSITIVE = []
|
2280
2353
|
include Aws::Structure
|
2281
2354
|
end
|
2282
2355
|
|
@@ -2316,6 +2389,7 @@ module Aws::CodeCommit
|
|
2316
2389
|
:destination_commit_id,
|
2317
2390
|
:source_commit_id,
|
2318
2391
|
:base_commit_id)
|
2392
|
+
SENSITIVE = []
|
2319
2393
|
include Aws::Structure
|
2320
2394
|
end
|
2321
2395
|
|
@@ -2365,6 +2439,7 @@ module Aws::CodeCommit
|
|
2365
2439
|
:actor_arn,
|
2366
2440
|
:next_token,
|
2367
2441
|
:max_results)
|
2442
|
+
SENSITIVE = []
|
2368
2443
|
include Aws::Structure
|
2369
2444
|
end
|
2370
2445
|
|
@@ -2382,6 +2457,7 @@ module Aws::CodeCommit
|
|
2382
2457
|
class DescribePullRequestEventsOutput < Struct.new(
|
2383
2458
|
:pull_request_events,
|
2384
2459
|
:next_token)
|
2460
|
+
SENSITIVE = []
|
2385
2461
|
include Aws::Structure
|
2386
2462
|
end
|
2387
2463
|
|
@@ -2408,6 +2484,7 @@ module Aws::CodeCommit
|
|
2408
2484
|
:before_blob,
|
2409
2485
|
:after_blob,
|
2410
2486
|
:change_type)
|
2487
|
+
SENSITIVE = []
|
2411
2488
|
include Aws::Structure
|
2412
2489
|
end
|
2413
2490
|
|
@@ -2443,6 +2520,7 @@ module Aws::CodeCommit
|
|
2443
2520
|
class DisassociateApprovalRuleTemplateFromRepositoryInput < Struct.new(
|
2444
2521
|
:approval_rule_template_name,
|
2445
2522
|
:repository_name)
|
2523
|
+
SENSITIVE = []
|
2446
2524
|
include Aws::Structure
|
2447
2525
|
end
|
2448
2526
|
|
@@ -2498,6 +2576,7 @@ module Aws::CodeCommit
|
|
2498
2576
|
class EvaluatePullRequestApprovalRulesInput < Struct.new(
|
2499
2577
|
:pull_request_id,
|
2500
2578
|
:revision_id)
|
2579
|
+
SENSITIVE = []
|
2501
2580
|
include Aws::Structure
|
2502
2581
|
end
|
2503
2582
|
|
@@ -2513,6 +2592,7 @@ module Aws::CodeCommit
|
|
2513
2592
|
#
|
2514
2593
|
class EvaluatePullRequestApprovalRulesOutput < Struct.new(
|
2515
2594
|
:evaluation)
|
2595
|
+
SENSITIVE = []
|
2516
2596
|
include Aws::Structure
|
2517
2597
|
end
|
2518
2598
|
|
@@ -2544,6 +2624,7 @@ module Aws::CodeCommit
|
|
2544
2624
|
:overridden,
|
2545
2625
|
:approval_rules_satisfied,
|
2546
2626
|
:approval_rules_not_satisfied)
|
2627
|
+
SENSITIVE = []
|
2547
2628
|
include Aws::Structure
|
2548
2629
|
end
|
2549
2630
|
|
@@ -2574,6 +2655,7 @@ module Aws::CodeCommit
|
|
2574
2655
|
:absolute_path,
|
2575
2656
|
:relative_path,
|
2576
2657
|
:file_mode)
|
2658
|
+
SENSITIVE = []
|
2577
2659
|
include Aws::Structure
|
2578
2660
|
end
|
2579
2661
|
|
@@ -2637,6 +2719,7 @@ module Aws::CodeCommit
|
|
2637
2719
|
:absolute_path,
|
2638
2720
|
:blob_id,
|
2639
2721
|
:file_mode)
|
2722
|
+
SENSITIVE = []
|
2640
2723
|
include Aws::Structure
|
2641
2724
|
end
|
2642
2725
|
|
@@ -2668,6 +2751,7 @@ module Aws::CodeCommit
|
|
2668
2751
|
:source,
|
2669
2752
|
:destination,
|
2670
2753
|
:base)
|
2754
|
+
SENSITIVE = []
|
2671
2755
|
include Aws::Structure
|
2672
2756
|
end
|
2673
2757
|
|
@@ -2708,6 +2792,7 @@ module Aws::CodeCommit
|
|
2708
2792
|
:source,
|
2709
2793
|
:destination,
|
2710
2794
|
:base)
|
2795
|
+
SENSITIVE = []
|
2711
2796
|
include Aws::Structure
|
2712
2797
|
end
|
2713
2798
|
|
@@ -2745,6 +2830,7 @@ module Aws::CodeCommit
|
|
2745
2830
|
:tree_id,
|
2746
2831
|
:absolute_path,
|
2747
2832
|
:relative_path)
|
2833
|
+
SENSITIVE = []
|
2748
2834
|
include Aws::Structure
|
2749
2835
|
end
|
2750
2836
|
|
@@ -2780,6 +2866,7 @@ module Aws::CodeCommit
|
|
2780
2866
|
#
|
2781
2867
|
class GetApprovalRuleTemplateInput < Struct.new(
|
2782
2868
|
:approval_rule_template_name)
|
2869
|
+
SENSITIVE = []
|
2783
2870
|
include Aws::Structure
|
2784
2871
|
end
|
2785
2872
|
|
@@ -2791,6 +2878,7 @@ module Aws::CodeCommit
|
|
2791
2878
|
#
|
2792
2879
|
class GetApprovalRuleTemplateOutput < Struct.new(
|
2793
2880
|
:approval_rule_template)
|
2881
|
+
SENSITIVE = []
|
2794
2882
|
include Aws::Structure
|
2795
2883
|
end
|
2796
2884
|
|
@@ -2817,6 +2905,7 @@ module Aws::CodeCommit
|
|
2817
2905
|
class GetBlobInput < Struct.new(
|
2818
2906
|
:repository_name,
|
2819
2907
|
:blob_id)
|
2908
|
+
SENSITIVE = []
|
2820
2909
|
include Aws::Structure
|
2821
2910
|
end
|
2822
2911
|
|
@@ -2830,6 +2919,7 @@ module Aws::CodeCommit
|
|
2830
2919
|
#
|
2831
2920
|
class GetBlobOutput < Struct.new(
|
2832
2921
|
:content)
|
2922
|
+
SENSITIVE = []
|
2833
2923
|
include Aws::Structure
|
2834
2924
|
end
|
2835
2925
|
|
@@ -2857,6 +2947,7 @@ module Aws::CodeCommit
|
|
2857
2947
|
class GetBranchInput < Struct.new(
|
2858
2948
|
:repository_name,
|
2859
2949
|
:branch_name)
|
2950
|
+
SENSITIVE = []
|
2860
2951
|
include Aws::Structure
|
2861
2952
|
end
|
2862
2953
|
|
@@ -2870,6 +2961,7 @@ module Aws::CodeCommit
|
|
2870
2961
|
#
|
2871
2962
|
class GetBranchOutput < Struct.new(
|
2872
2963
|
:branch)
|
2964
|
+
SENSITIVE = []
|
2873
2965
|
include Aws::Structure
|
2874
2966
|
end
|
2875
2967
|
|
@@ -2889,6 +2981,7 @@ module Aws::CodeCommit
|
|
2889
2981
|
#
|
2890
2982
|
class GetCommentInput < Struct.new(
|
2891
2983
|
:comment_id)
|
2984
|
+
SENSITIVE = []
|
2892
2985
|
include Aws::Structure
|
2893
2986
|
end
|
2894
2987
|
|
@@ -2900,6 +2993,67 @@ module Aws::CodeCommit
|
|
2900
2993
|
#
|
2901
2994
|
class GetCommentOutput < Struct.new(
|
2902
2995
|
:comment)
|
2996
|
+
SENSITIVE = []
|
2997
|
+
include Aws::Structure
|
2998
|
+
end
|
2999
|
+
|
3000
|
+
# @note When making an API call, you may pass GetCommentReactionsInput
|
3001
|
+
# data as a hash:
|
3002
|
+
#
|
3003
|
+
# {
|
3004
|
+
# comment_id: "CommentId", # required
|
3005
|
+
# reaction_user_arn: "Arn",
|
3006
|
+
# next_token: "NextToken",
|
3007
|
+
# max_results: 1,
|
3008
|
+
# }
|
3009
|
+
#
|
3010
|
+
# @!attribute [rw] comment_id
|
3011
|
+
# The ID of the comment for which you want to get reactions
|
3012
|
+
# information.
|
3013
|
+
# @return [String]
|
3014
|
+
#
|
3015
|
+
# @!attribute [rw] reaction_user_arn
|
3016
|
+
# Optional. The Amazon Resource Name (ARN) of the user or identity for
|
3017
|
+
# which you want to get reaction information.
|
3018
|
+
# @return [String]
|
3019
|
+
#
|
3020
|
+
# @!attribute [rw] next_token
|
3021
|
+
# An enumeration token that, when provided in a request, returns the
|
3022
|
+
# next batch of the results.
|
3023
|
+
# @return [String]
|
3024
|
+
#
|
3025
|
+
# @!attribute [rw] max_results
|
3026
|
+
# A non-zero, non-negative integer used to limit the number of
|
3027
|
+
# returned results. The default is the same as the allowed maximum,
|
3028
|
+
# 1,000.
|
3029
|
+
# @return [Integer]
|
3030
|
+
#
|
3031
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentReactionsInput AWS API Documentation
|
3032
|
+
#
|
3033
|
+
class GetCommentReactionsInput < Struct.new(
|
3034
|
+
:comment_id,
|
3035
|
+
:reaction_user_arn,
|
3036
|
+
:next_token,
|
3037
|
+
:max_results)
|
3038
|
+
SENSITIVE = []
|
3039
|
+
include Aws::Structure
|
3040
|
+
end
|
3041
|
+
|
3042
|
+
# @!attribute [rw] reactions_for_comment
|
3043
|
+
# An array of reactions to the specified comment.
|
3044
|
+
# @return [Array<Types::ReactionForComment>]
|
3045
|
+
#
|
3046
|
+
# @!attribute [rw] next_token
|
3047
|
+
# An enumeration token that can be used in a request to return the
|
3048
|
+
# next batch of the results.
|
3049
|
+
# @return [String]
|
3050
|
+
#
|
3051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentReactionsOutput AWS API Documentation
|
3052
|
+
#
|
3053
|
+
class GetCommentReactionsOutput < Struct.new(
|
3054
|
+
:reactions_for_comment,
|
3055
|
+
:next_token)
|
3056
|
+
SENSITIVE = []
|
2903
3057
|
include Aws::Structure
|
2904
3058
|
end
|
2905
3059
|
|
@@ -2947,6 +3101,7 @@ module Aws::CodeCommit
|
|
2947
3101
|
:after_commit_id,
|
2948
3102
|
:next_token,
|
2949
3103
|
:max_results)
|
3104
|
+
SENSITIVE = []
|
2950
3105
|
include Aws::Structure
|
2951
3106
|
end
|
2952
3107
|
|
@@ -2964,6 +3119,7 @@ module Aws::CodeCommit
|
|
2964
3119
|
class GetCommentsForComparedCommitOutput < Struct.new(
|
2965
3120
|
:comments_for_compared_commit_data,
|
2966
3121
|
:next_token)
|
3122
|
+
SENSITIVE = []
|
2967
3123
|
include Aws::Structure
|
2968
3124
|
end
|
2969
3125
|
|
@@ -3018,6 +3174,7 @@ module Aws::CodeCommit
|
|
3018
3174
|
:after_commit_id,
|
3019
3175
|
:next_token,
|
3020
3176
|
:max_results)
|
3177
|
+
SENSITIVE = []
|
3021
3178
|
include Aws::Structure
|
3022
3179
|
end
|
3023
3180
|
|
@@ -3035,6 +3192,7 @@ module Aws::CodeCommit
|
|
3035
3192
|
class GetCommentsForPullRequestOutput < Struct.new(
|
3036
3193
|
:comments_for_pull_request_data,
|
3037
3194
|
:next_token)
|
3195
|
+
SENSITIVE = []
|
3038
3196
|
include Aws::Structure
|
3039
3197
|
end
|
3040
3198
|
|
@@ -3061,6 +3219,7 @@ module Aws::CodeCommit
|
|
3061
3219
|
class GetCommitInput < Struct.new(
|
3062
3220
|
:repository_name,
|
3063
3221
|
:commit_id)
|
3222
|
+
SENSITIVE = []
|
3064
3223
|
include Aws::Structure
|
3065
3224
|
end
|
3066
3225
|
|
@@ -3075,6 +3234,7 @@ module Aws::CodeCommit
|
|
3075
3234
|
#
|
3076
3235
|
class GetCommitOutput < Struct.new(
|
3077
3236
|
:commit)
|
3237
|
+
SENSITIVE = []
|
3078
3238
|
include Aws::Structure
|
3079
3239
|
end
|
3080
3240
|
|
@@ -3142,6 +3302,7 @@ module Aws::CodeCommit
|
|
3142
3302
|
:after_path,
|
3143
3303
|
:max_results,
|
3144
3304
|
:next_token)
|
3305
|
+
SENSITIVE = []
|
3145
3306
|
include Aws::Structure
|
3146
3307
|
end
|
3147
3308
|
|
@@ -3161,6 +3322,7 @@ module Aws::CodeCommit
|
|
3161
3322
|
class GetDifferencesOutput < Struct.new(
|
3162
3323
|
:differences,
|
3163
3324
|
:next_token)
|
3325
|
+
SENSITIVE = []
|
3164
3326
|
include Aws::Structure
|
3165
3327
|
end
|
3166
3328
|
|
@@ -3196,6 +3358,7 @@ module Aws::CodeCommit
|
|
3196
3358
|
:repository_name,
|
3197
3359
|
:commit_specifier,
|
3198
3360
|
:file_path)
|
3361
|
+
SENSITIVE = []
|
3199
3362
|
include Aws::Structure
|
3200
3363
|
end
|
3201
3364
|
|
@@ -3242,6 +3405,7 @@ module Aws::CodeCommit
|
|
3242
3405
|
:file_mode,
|
3243
3406
|
:file_size,
|
3244
3407
|
:file_content)
|
3408
|
+
SENSITIVE = []
|
3245
3409
|
include Aws::Structure
|
3246
3410
|
end
|
3247
3411
|
|
@@ -3279,6 +3443,7 @@ module Aws::CodeCommit
|
|
3279
3443
|
:repository_name,
|
3280
3444
|
:commit_specifier,
|
3281
3445
|
:folder_path)
|
3446
|
+
SENSITIVE = []
|
3282
3447
|
include Aws::Structure
|
3283
3448
|
end
|
3284
3449
|
|
@@ -3323,6 +3488,7 @@ module Aws::CodeCommit
|
|
3323
3488
|
:files,
|
3324
3489
|
:symbolic_links,
|
3325
3490
|
:sub_modules)
|
3491
|
+
SENSITIVE = []
|
3326
3492
|
include Aws::Structure
|
3327
3493
|
end
|
3328
3494
|
|
@@ -3375,6 +3541,7 @@ module Aws::CodeCommit
|
|
3375
3541
|
:destination_commit_specifier,
|
3376
3542
|
:conflict_detail_level,
|
3377
3543
|
:conflict_resolution_strategy)
|
3544
|
+
SENSITIVE = []
|
3378
3545
|
include Aws::Structure
|
3379
3546
|
end
|
3380
3547
|
|
@@ -3405,6 +3572,7 @@ module Aws::CodeCommit
|
|
3405
3572
|
:destination_commit_id,
|
3406
3573
|
:base_commit_id,
|
3407
3574
|
:merged_commit_id)
|
3575
|
+
SENSITIVE = []
|
3408
3576
|
include Aws::Structure
|
3409
3577
|
end
|
3410
3578
|
|
@@ -3475,6 +3643,7 @@ module Aws::CodeCommit
|
|
3475
3643
|
:max_conflict_files,
|
3476
3644
|
:conflict_resolution_strategy,
|
3477
3645
|
:next_token)
|
3646
|
+
SENSITIVE = []
|
3478
3647
|
include Aws::Structure
|
3479
3648
|
end
|
3480
3649
|
|
@@ -3516,6 +3685,7 @@ module Aws::CodeCommit
|
|
3516
3685
|
:base_commit_id,
|
3517
3686
|
:conflict_metadata_list,
|
3518
3687
|
:next_token)
|
3688
|
+
SENSITIVE = []
|
3519
3689
|
include Aws::Structure
|
3520
3690
|
end
|
3521
3691
|
|
@@ -3568,6 +3738,7 @@ module Aws::CodeCommit
|
|
3568
3738
|
:destination_commit_specifier,
|
3569
3739
|
:conflict_detail_level,
|
3570
3740
|
:conflict_resolution_strategy)
|
3741
|
+
SENSITIVE = []
|
3571
3742
|
include Aws::Structure
|
3572
3743
|
end
|
3573
3744
|
|
@@ -3596,6 +3767,7 @@ module Aws::CodeCommit
|
|
3596
3767
|
:source_commit_id,
|
3597
3768
|
:destination_commit_id,
|
3598
3769
|
:base_commit_id)
|
3770
|
+
SENSITIVE = []
|
3599
3771
|
include Aws::Structure
|
3600
3772
|
end
|
3601
3773
|
|
@@ -3620,6 +3792,7 @@ module Aws::CodeCommit
|
|
3620
3792
|
class GetPullRequestApprovalStatesInput < Struct.new(
|
3621
3793
|
:pull_request_id,
|
3622
3794
|
:revision_id)
|
3795
|
+
SENSITIVE = []
|
3623
3796
|
include Aws::Structure
|
3624
3797
|
end
|
3625
3798
|
|
@@ -3631,6 +3804,7 @@ module Aws::CodeCommit
|
|
3631
3804
|
#
|
3632
3805
|
class GetPullRequestApprovalStatesOutput < Struct.new(
|
3633
3806
|
:approvals)
|
3807
|
+
SENSITIVE = []
|
3634
3808
|
include Aws::Structure
|
3635
3809
|
end
|
3636
3810
|
|
@@ -3650,6 +3824,7 @@ module Aws::CodeCommit
|
|
3650
3824
|
#
|
3651
3825
|
class GetPullRequestInput < Struct.new(
|
3652
3826
|
:pull_request_id)
|
3827
|
+
SENSITIVE = []
|
3653
3828
|
include Aws::Structure
|
3654
3829
|
end
|
3655
3830
|
|
@@ -3661,6 +3836,7 @@ module Aws::CodeCommit
|
|
3661
3836
|
#
|
3662
3837
|
class GetPullRequestOutput < Struct.new(
|
3663
3838
|
:pull_request)
|
3839
|
+
SENSITIVE = []
|
3664
3840
|
include Aws::Structure
|
3665
3841
|
end
|
3666
3842
|
|
@@ -3687,6 +3863,7 @@ module Aws::CodeCommit
|
|
3687
3863
|
class GetPullRequestOverrideStateInput < Struct.new(
|
3688
3864
|
:pull_request_id,
|
3689
3865
|
:revision_id)
|
3866
|
+
SENSITIVE = []
|
3690
3867
|
include Aws::Structure
|
3691
3868
|
end
|
3692
3869
|
|
@@ -3706,6 +3883,7 @@ module Aws::CodeCommit
|
|
3706
3883
|
class GetPullRequestOverrideStateOutput < Struct.new(
|
3707
3884
|
:overridden,
|
3708
3885
|
:overrider)
|
3886
|
+
SENSITIVE = []
|
3709
3887
|
include Aws::Structure
|
3710
3888
|
end
|
3711
3889
|
|
@@ -3726,6 +3904,7 @@ module Aws::CodeCommit
|
|
3726
3904
|
#
|
3727
3905
|
class GetRepositoryInput < Struct.new(
|
3728
3906
|
:repository_name)
|
3907
|
+
SENSITIVE = []
|
3729
3908
|
include Aws::Structure
|
3730
3909
|
end
|
3731
3910
|
|
@@ -3739,6 +3918,7 @@ module Aws::CodeCommit
|
|
3739
3918
|
#
|
3740
3919
|
class GetRepositoryOutput < Struct.new(
|
3741
3920
|
:repository_metadata)
|
3921
|
+
SENSITIVE = []
|
3742
3922
|
include Aws::Structure
|
3743
3923
|
end
|
3744
3924
|
|
@@ -3759,6 +3939,7 @@ module Aws::CodeCommit
|
|
3759
3939
|
#
|
3760
3940
|
class GetRepositoryTriggersInput < Struct.new(
|
3761
3941
|
:repository_name)
|
3942
|
+
SENSITIVE = []
|
3762
3943
|
include Aws::Structure
|
3763
3944
|
end
|
3764
3945
|
|
@@ -3777,6 +3958,7 @@ module Aws::CodeCommit
|
|
3777
3958
|
class GetRepositoryTriggersOutput < Struct.new(
|
3778
3959
|
:configuration_id,
|
3779
3960
|
:triggers)
|
3961
|
+
SENSITIVE = []
|
3780
3962
|
include Aws::Structure
|
3781
3963
|
end
|
3782
3964
|
|
@@ -4047,6 +4229,23 @@ module Aws::CodeCommit
|
|
4047
4229
|
#
|
4048
4230
|
class InvalidPullRequestStatusUpdateException < Aws::EmptyStructure; end
|
4049
4231
|
|
4232
|
+
# The Amazon Resource Name (ARN) of the user or identity is not valid.
|
4233
|
+
#
|
4234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/InvalidReactionUserArnException AWS API Documentation
|
4235
|
+
#
|
4236
|
+
class InvalidReactionUserArnException < Aws::EmptyStructure; end
|
4237
|
+
|
4238
|
+
# The value of the reaction is not valid. For more information, see the
|
4239
|
+
# [AWS CodeCommit User Guide][1].
|
4240
|
+
#
|
4241
|
+
#
|
4242
|
+
#
|
4243
|
+
# [1]: https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html
|
4244
|
+
#
|
4245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/InvalidReactionValueException AWS API Documentation
|
4246
|
+
#
|
4247
|
+
class InvalidReactionValueException < Aws::EmptyStructure; end
|
4248
|
+
|
4050
4249
|
# The specified reference name format is not valid. Reference names must
|
4051
4250
|
# conform to the Git references format (for example, refs/heads/master).
|
4052
4251
|
# For more information, see [Git Internals - Git References][1] or
|
@@ -4252,6 +4451,7 @@ module Aws::CodeCommit
|
|
4252
4451
|
:source,
|
4253
4452
|
:destination,
|
4254
4453
|
:base)
|
4454
|
+
SENSITIVE = []
|
4255
4455
|
include Aws::Structure
|
4256
4456
|
end
|
4257
4457
|
|
@@ -4278,6 +4478,7 @@ module Aws::CodeCommit
|
|
4278
4478
|
class ListApprovalRuleTemplatesInput < Struct.new(
|
4279
4479
|
:next_token,
|
4280
4480
|
:max_results)
|
4481
|
+
SENSITIVE = []
|
4281
4482
|
include Aws::Structure
|
4282
4483
|
end
|
4283
4484
|
|
@@ -4296,6 +4497,7 @@ module Aws::CodeCommit
|
|
4296
4497
|
class ListApprovalRuleTemplatesOutput < Struct.new(
|
4297
4498
|
:approval_rule_template_names,
|
4298
4499
|
:next_token)
|
4500
|
+
SENSITIVE = []
|
4299
4501
|
include Aws::Structure
|
4300
4502
|
end
|
4301
4503
|
|
@@ -4329,6 +4531,7 @@ module Aws::CodeCommit
|
|
4329
4531
|
:repository_name,
|
4330
4532
|
:next_token,
|
4331
4533
|
:max_results)
|
4534
|
+
SENSITIVE = []
|
4332
4535
|
include Aws::Structure
|
4333
4536
|
end
|
4334
4537
|
|
@@ -4347,6 +4550,7 @@ module Aws::CodeCommit
|
|
4347
4550
|
class ListAssociatedApprovalRuleTemplatesForRepositoryOutput < Struct.new(
|
4348
4551
|
:approval_rule_template_names,
|
4349
4552
|
:next_token)
|
4553
|
+
SENSITIVE = []
|
4350
4554
|
include Aws::Structure
|
4351
4555
|
end
|
4352
4556
|
|
@@ -4373,6 +4577,7 @@ module Aws::CodeCommit
|
|
4373
4577
|
class ListBranchesInput < Struct.new(
|
4374
4578
|
:repository_name,
|
4375
4579
|
:next_token)
|
4580
|
+
SENSITIVE = []
|
4376
4581
|
include Aws::Structure
|
4377
4582
|
end
|
4378
4583
|
|
@@ -4391,6 +4596,7 @@ module Aws::CodeCommit
|
|
4391
4596
|
class ListBranchesOutput < Struct.new(
|
4392
4597
|
:branches,
|
4393
4598
|
:next_token)
|
4599
|
+
SENSITIVE = []
|
4394
4600
|
include Aws::Structure
|
4395
4601
|
end
|
4396
4602
|
|
@@ -4438,6 +4644,7 @@ module Aws::CodeCommit
|
|
4438
4644
|
:pull_request_status,
|
4439
4645
|
:next_token,
|
4440
4646
|
:max_results)
|
4647
|
+
SENSITIVE = []
|
4441
4648
|
include Aws::Structure
|
4442
4649
|
end
|
4443
4650
|
|
@@ -4455,6 +4662,7 @@ module Aws::CodeCommit
|
|
4455
4662
|
class ListPullRequestsOutput < Struct.new(
|
4456
4663
|
:pull_request_ids,
|
4457
4664
|
:next_token)
|
4665
|
+
SENSITIVE = []
|
4458
4666
|
include Aws::Structure
|
4459
4667
|
end
|
4460
4668
|
|
@@ -4488,6 +4696,7 @@ module Aws::CodeCommit
|
|
4488
4696
|
:approval_rule_template_name,
|
4489
4697
|
:next_token,
|
4490
4698
|
:max_results)
|
4699
|
+
SENSITIVE = []
|
4491
4700
|
include Aws::Structure
|
4492
4701
|
end
|
4493
4702
|
|
@@ -4506,6 +4715,7 @@ module Aws::CodeCommit
|
|
4506
4715
|
class ListRepositoriesForApprovalRuleTemplateOutput < Struct.new(
|
4507
4716
|
:repository_names,
|
4508
4717
|
:next_token)
|
4718
|
+
SENSITIVE = []
|
4509
4719
|
include Aws::Structure
|
4510
4720
|
end
|
4511
4721
|
|
@@ -4543,6 +4753,7 @@ module Aws::CodeCommit
|
|
4543
4753
|
:next_token,
|
4544
4754
|
:sort_by,
|
4545
4755
|
:order)
|
4756
|
+
SENSITIVE = []
|
4546
4757
|
include Aws::Structure
|
4547
4758
|
end
|
4548
4759
|
|
@@ -4564,6 +4775,7 @@ module Aws::CodeCommit
|
|
4564
4775
|
class ListRepositoriesOutput < Struct.new(
|
4565
4776
|
:repositories,
|
4566
4777
|
:next_token)
|
4778
|
+
SENSITIVE = []
|
4567
4779
|
include Aws::Structure
|
4568
4780
|
end
|
4569
4781
|
|
@@ -4590,6 +4802,7 @@ module Aws::CodeCommit
|
|
4590
4802
|
class ListTagsForResourceInput < Struct.new(
|
4591
4803
|
:resource_arn,
|
4592
4804
|
:next_token)
|
4805
|
+
SENSITIVE = []
|
4593
4806
|
include Aws::Structure
|
4594
4807
|
end
|
4595
4808
|
|
@@ -4608,6 +4821,7 @@ module Aws::CodeCommit
|
|
4608
4821
|
class ListTagsForResourceOutput < Struct.new(
|
4609
4822
|
:tags,
|
4610
4823
|
:next_token)
|
4824
|
+
SENSITIVE = []
|
4611
4825
|
include Aws::Structure
|
4612
4826
|
end
|
4613
4827
|
|
@@ -4643,6 +4857,7 @@ module Aws::CodeCommit
|
|
4643
4857
|
:file_path,
|
4644
4858
|
:file_position,
|
4645
4859
|
:relative_file_version)
|
4860
|
+
SENSITIVE = []
|
4646
4861
|
include Aws::Structure
|
4647
4862
|
end
|
4648
4863
|
|
@@ -4759,6 +4974,7 @@ module Aws::CodeCommit
|
|
4759
4974
|
:source_commit_specifier,
|
4760
4975
|
:destination_commit_specifier,
|
4761
4976
|
:target_branch)
|
4977
|
+
SENSITIVE = []
|
4762
4978
|
include Aws::Structure
|
4763
4979
|
end
|
4764
4980
|
|
@@ -4775,6 +4991,7 @@ module Aws::CodeCommit
|
|
4775
4991
|
class MergeBranchesByFastForwardOutput < Struct.new(
|
4776
4992
|
:commit_id,
|
4777
4993
|
:tree_id)
|
4994
|
+
SENSITIVE = []
|
4778
4995
|
include Aws::Structure
|
4779
4996
|
end
|
4780
4997
|
|
@@ -4888,6 +5105,7 @@ module Aws::CodeCommit
|
|
4888
5105
|
:commit_message,
|
4889
5106
|
:keep_empty_folders,
|
4890
5107
|
:conflict_resolution)
|
5108
|
+
SENSITIVE = []
|
4891
5109
|
include Aws::Structure
|
4892
5110
|
end
|
4893
5111
|
|
@@ -4904,6 +5122,7 @@ module Aws::CodeCommit
|
|
4904
5122
|
class MergeBranchesBySquashOutput < Struct.new(
|
4905
5123
|
:commit_id,
|
4906
5124
|
:tree_id)
|
5125
|
+
SENSITIVE = []
|
4907
5126
|
include Aws::Structure
|
4908
5127
|
end
|
4909
5128
|
|
@@ -5017,6 +5236,7 @@ module Aws::CodeCommit
|
|
5017
5236
|
:commit_message,
|
5018
5237
|
:keep_empty_folders,
|
5019
5238
|
:conflict_resolution)
|
5239
|
+
SENSITIVE = []
|
5020
5240
|
include Aws::Structure
|
5021
5241
|
end
|
5022
5242
|
|
@@ -5033,6 +5253,7 @@ module Aws::CodeCommit
|
|
5033
5253
|
class MergeBranchesByThreeWayOutput < Struct.new(
|
5034
5254
|
:commit_id,
|
5035
5255
|
:tree_id)
|
5256
|
+
SENSITIVE = []
|
5036
5257
|
include Aws::Structure
|
5037
5258
|
end
|
5038
5259
|
|
@@ -5069,6 +5290,7 @@ module Aws::CodeCommit
|
|
5069
5290
|
:source,
|
5070
5291
|
:destination,
|
5071
5292
|
:base)
|
5293
|
+
SENSITIVE = []
|
5072
5294
|
include Aws::Structure
|
5073
5295
|
end
|
5074
5296
|
|
@@ -5094,6 +5316,7 @@ module Aws::CodeCommit
|
|
5094
5316
|
:start_line,
|
5095
5317
|
:end_line,
|
5096
5318
|
:hunk_content)
|
5319
|
+
SENSITIVE = []
|
5097
5320
|
include Aws::Structure
|
5098
5321
|
end
|
5099
5322
|
|
@@ -5123,6 +5346,7 @@ module Aws::CodeCommit
|
|
5123
5346
|
:merged_by,
|
5124
5347
|
:merge_commit_id,
|
5125
5348
|
:merge_option)
|
5349
|
+
SENSITIVE = []
|
5126
5350
|
include Aws::Structure
|
5127
5351
|
end
|
5128
5352
|
|
@@ -5143,6 +5367,7 @@ module Aws::CodeCommit
|
|
5143
5367
|
class MergeOperations < Struct.new(
|
5144
5368
|
:source,
|
5145
5369
|
:destination)
|
5370
|
+
SENSITIVE = []
|
5146
5371
|
include Aws::Structure
|
5147
5372
|
end
|
5148
5373
|
|
@@ -5183,6 +5408,7 @@ module Aws::CodeCommit
|
|
5183
5408
|
:pull_request_id,
|
5184
5409
|
:repository_name,
|
5185
5410
|
:source_commit_id)
|
5411
|
+
SENSITIVE = []
|
5186
5412
|
include Aws::Structure
|
5187
5413
|
end
|
5188
5414
|
|
@@ -5194,6 +5420,7 @@ module Aws::CodeCommit
|
|
5194
5420
|
#
|
5195
5421
|
class MergePullRequestByFastForwardOutput < Struct.new(
|
5196
5422
|
:pull_request)
|
5423
|
+
SENSITIVE = []
|
5197
5424
|
include Aws::Structure
|
5198
5425
|
end
|
5199
5426
|
|
@@ -5303,6 +5530,7 @@ module Aws::CodeCommit
|
|
5303
5530
|
:email,
|
5304
5531
|
:keep_empty_folders,
|
5305
5532
|
:conflict_resolution)
|
5533
|
+
SENSITIVE = []
|
5306
5534
|
include Aws::Structure
|
5307
5535
|
end
|
5308
5536
|
|
@@ -5314,6 +5542,7 @@ module Aws::CodeCommit
|
|
5314
5542
|
#
|
5315
5543
|
class MergePullRequestBySquashOutput < Struct.new(
|
5316
5544
|
:pull_request)
|
5545
|
+
SENSITIVE = []
|
5317
5546
|
include Aws::Structure
|
5318
5547
|
end
|
5319
5548
|
|
@@ -5423,6 +5652,7 @@ module Aws::CodeCommit
|
|
5423
5652
|
:email,
|
5424
5653
|
:keep_empty_folders,
|
5425
5654
|
:conflict_resolution)
|
5655
|
+
SENSITIVE = []
|
5426
5656
|
include Aws::Structure
|
5427
5657
|
end
|
5428
5658
|
|
@@ -5434,6 +5664,7 @@ module Aws::CodeCommit
|
|
5434
5664
|
#
|
5435
5665
|
class MergePullRequestByThreeWayOutput < Struct.new(
|
5436
5666
|
:pull_request)
|
5667
|
+
SENSITIVE = []
|
5437
5668
|
include Aws::Structure
|
5438
5669
|
end
|
5439
5670
|
|
@@ -5501,6 +5732,7 @@ module Aws::CodeCommit
|
|
5501
5732
|
:source,
|
5502
5733
|
:destination,
|
5503
5734
|
:base)
|
5735
|
+
SENSITIVE = []
|
5504
5736
|
include Aws::Structure
|
5505
5737
|
end
|
5506
5738
|
|
@@ -5520,6 +5752,7 @@ module Aws::CodeCommit
|
|
5520
5752
|
class OriginApprovalRuleTemplate < Struct.new(
|
5521
5753
|
:approval_rule_template_id,
|
5522
5754
|
:approval_rule_template_name)
|
5755
|
+
SENSITIVE = []
|
5523
5756
|
include Aws::Structure
|
5524
5757
|
end
|
5525
5758
|
|
@@ -5563,6 +5796,7 @@ module Aws::CodeCommit
|
|
5563
5796
|
:pull_request_id,
|
5564
5797
|
:revision_id,
|
5565
5798
|
:override_status)
|
5799
|
+
SENSITIVE = []
|
5566
5800
|
include Aws::Structure
|
5567
5801
|
end
|
5568
5802
|
|
@@ -5669,6 +5903,7 @@ module Aws::CodeCommit
|
|
5669
5903
|
:location,
|
5670
5904
|
:content,
|
5671
5905
|
:client_request_token)
|
5906
|
+
SENSITIVE = []
|
5672
5907
|
include Aws::Structure
|
5673
5908
|
end
|
5674
5909
|
|
@@ -5716,6 +5951,7 @@ module Aws::CodeCommit
|
|
5716
5951
|
:after_blob_id,
|
5717
5952
|
:location,
|
5718
5953
|
:comment)
|
5954
|
+
SENSITIVE = []
|
5719
5955
|
include Aws::Structure
|
5720
5956
|
end
|
5721
5957
|
|
@@ -5789,6 +6025,7 @@ module Aws::CodeCommit
|
|
5789
6025
|
:location,
|
5790
6026
|
:content,
|
5791
6027
|
:client_request_token)
|
6028
|
+
SENSITIVE = []
|
5792
6029
|
include Aws::Structure
|
5793
6030
|
end
|
5794
6031
|
|
@@ -5841,6 +6078,7 @@ module Aws::CodeCommit
|
|
5841
6078
|
:after_blob_id,
|
5842
6079
|
:location,
|
5843
6080
|
:comment)
|
6081
|
+
SENSITIVE = []
|
5844
6082
|
include Aws::Structure
|
5845
6083
|
end
|
5846
6084
|
|
@@ -5880,6 +6118,7 @@ module Aws::CodeCommit
|
|
5880
6118
|
:in_reply_to,
|
5881
6119
|
:client_request_token,
|
5882
6120
|
:content)
|
6121
|
+
SENSITIVE = []
|
5883
6122
|
include Aws::Structure
|
5884
6123
|
end
|
5885
6124
|
|
@@ -5891,6 +6130,7 @@ module Aws::CodeCommit
|
|
5891
6130
|
#
|
5892
6131
|
class PostCommentReplyOutput < Struct.new(
|
5893
6132
|
:comment)
|
6133
|
+
SENSITIVE = []
|
5894
6134
|
include Aws::Structure
|
5895
6135
|
end
|
5896
6136
|
|
@@ -5966,6 +6206,7 @@ module Aws::CodeCommit
|
|
5966
6206
|
:client_request_token,
|
5967
6207
|
:revision_id,
|
5968
6208
|
:approval_rules)
|
6209
|
+
SENSITIVE = []
|
5969
6210
|
include Aws::Structure
|
5970
6211
|
end
|
5971
6212
|
|
@@ -6020,6 +6261,7 @@ module Aws::CodeCommit
|
|
6020
6261
|
:source_commit_id,
|
6021
6262
|
:destination_commit_id,
|
6022
6263
|
:merge_base)
|
6264
|
+
SENSITIVE = []
|
6023
6265
|
include Aws::Structure
|
6024
6266
|
end
|
6025
6267
|
|
@@ -6099,6 +6341,7 @@ module Aws::CodeCommit
|
|
6099
6341
|
:approval_rule_event_metadata,
|
6100
6342
|
:approval_state_changed_event_metadata,
|
6101
6343
|
:approval_rule_overridden_event_metadata)
|
6344
|
+
SENSITIVE = []
|
6102
6345
|
include Aws::Structure
|
6103
6346
|
end
|
6104
6347
|
|
@@ -6129,6 +6372,7 @@ module Aws::CodeCommit
|
|
6129
6372
|
:repository_name,
|
6130
6373
|
:destination_reference,
|
6131
6374
|
:merge_metadata)
|
6375
|
+
SENSITIVE = []
|
6132
6376
|
include Aws::Structure
|
6133
6377
|
end
|
6134
6378
|
|
@@ -6160,6 +6404,7 @@ module Aws::CodeCommit
|
|
6160
6404
|
:before_commit_id,
|
6161
6405
|
:after_commit_id,
|
6162
6406
|
:merge_base)
|
6407
|
+
SENSITIVE = []
|
6163
6408
|
include Aws::Structure
|
6164
6409
|
end
|
6165
6410
|
|
@@ -6173,6 +6418,7 @@ module Aws::CodeCommit
|
|
6173
6418
|
#
|
6174
6419
|
class PullRequestStatusChangedEventMetadata < Struct.new(
|
6175
6420
|
:pull_request_status)
|
6421
|
+
SENSITIVE = []
|
6176
6422
|
include Aws::Structure
|
6177
6423
|
end
|
6178
6424
|
|
@@ -6231,6 +6477,39 @@ module Aws::CodeCommit
|
|
6231
6477
|
:source_commit,
|
6232
6478
|
:merge_base,
|
6233
6479
|
:merge_metadata)
|
6480
|
+
SENSITIVE = []
|
6481
|
+
include Aws::Structure
|
6482
|
+
end
|
6483
|
+
|
6484
|
+
# @note When making an API call, you may pass PutCommentReactionInput
|
6485
|
+
# data as a hash:
|
6486
|
+
#
|
6487
|
+
# {
|
6488
|
+
# comment_id: "CommentId", # required
|
6489
|
+
# reaction_value: "ReactionValue", # required
|
6490
|
+
# }
|
6491
|
+
#
|
6492
|
+
# @!attribute [rw] comment_id
|
6493
|
+
# The ID of the comment to which you want to add or update a reaction.
|
6494
|
+
# @return [String]
|
6495
|
+
#
|
6496
|
+
# @!attribute [rw] reaction_value
|
6497
|
+
# The emoji reaction you want to add or update. To remove a reaction,
|
6498
|
+
# provide a value of blank or null. You can also provide the value of
|
6499
|
+
# none. For information about emoji reaction values supported in AWS
|
6500
|
+
# CodeCommit, see the [AWS CodeCommit User Guide][1].
|
6501
|
+
#
|
6502
|
+
#
|
6503
|
+
#
|
6504
|
+
# [1]: https://docs.aws.amazon.com/codecommit/latest/userguide/how-to-commit-comment.html#emoji-reaction-table
|
6505
|
+
# @return [String]
|
6506
|
+
#
|
6507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutCommentReactionInput AWS API Documentation
|
6508
|
+
#
|
6509
|
+
class PutCommentReactionInput < Struct.new(
|
6510
|
+
:comment_id,
|
6511
|
+
:reaction_value)
|
6512
|
+
SENSITIVE = []
|
6234
6513
|
include Aws::Structure
|
6235
6514
|
end
|
6236
6515
|
|
@@ -6276,6 +6555,7 @@ module Aws::CodeCommit
|
|
6276
6555
|
:file_mode,
|
6277
6556
|
:file_content,
|
6278
6557
|
:source_file)
|
6558
|
+
SENSITIVE = []
|
6279
6559
|
include Aws::Structure
|
6280
6560
|
end
|
6281
6561
|
|
@@ -6368,6 +6648,7 @@ module Aws::CodeCommit
|
|
6368
6648
|
:commit_message,
|
6369
6649
|
:name,
|
6370
6650
|
:email)
|
6651
|
+
SENSITIVE = []
|
6371
6652
|
include Aws::Structure
|
6372
6653
|
end
|
6373
6654
|
|
@@ -6390,6 +6671,7 @@ module Aws::CodeCommit
|
|
6390
6671
|
:commit_id,
|
6391
6672
|
:blob_id,
|
6392
6673
|
:tree_id)
|
6674
|
+
SENSITIVE = []
|
6393
6675
|
include Aws::Structure
|
6394
6676
|
end
|
6395
6677
|
|
@@ -6425,6 +6707,7 @@ module Aws::CodeCommit
|
|
6425
6707
|
class PutRepositoryTriggersInput < Struct.new(
|
6426
6708
|
:repository_name,
|
6427
6709
|
:triggers)
|
6710
|
+
SENSITIVE = []
|
6428
6711
|
include Aws::Structure
|
6429
6712
|
end
|
6430
6713
|
|
@@ -6438,9 +6721,78 @@ module Aws::CodeCommit
|
|
6438
6721
|
#
|
6439
6722
|
class PutRepositoryTriggersOutput < Struct.new(
|
6440
6723
|
:configuration_id)
|
6724
|
+
SENSITIVE = []
|
6441
6725
|
include Aws::Structure
|
6442
6726
|
end
|
6443
6727
|
|
6728
|
+
# Information about the reaction values provided by users on a comment.
|
6729
|
+
#
|
6730
|
+
# @!attribute [rw] reaction
|
6731
|
+
# The reaction for a specified comment.
|
6732
|
+
# @return [Types::ReactionValueFormats]
|
6733
|
+
#
|
6734
|
+
# @!attribute [rw] reaction_users
|
6735
|
+
# The Amazon Resource Names (ARNs) of users who have provided
|
6736
|
+
# reactions to the comment.
|
6737
|
+
# @return [Array<String>]
|
6738
|
+
#
|
6739
|
+
# @!attribute [rw] reactions_from_deleted_users_count
|
6740
|
+
# A numerical count of users who reacted with the specified emoji
|
6741
|
+
# whose identities have been subsequently deleted from IAM. While
|
6742
|
+
# these IAM users or roles no longer exist, the reactions might still
|
6743
|
+
# appear in total reaction counts.
|
6744
|
+
# @return [Integer]
|
6745
|
+
#
|
6746
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ReactionForComment AWS API Documentation
|
6747
|
+
#
|
6748
|
+
class ReactionForComment < Struct.new(
|
6749
|
+
:reaction,
|
6750
|
+
:reaction_users,
|
6751
|
+
:reactions_from_deleted_users_count)
|
6752
|
+
SENSITIVE = []
|
6753
|
+
include Aws::Structure
|
6754
|
+
end
|
6755
|
+
|
6756
|
+
# The number of reactions has been exceeded. Reactions are limited to
|
6757
|
+
# one reaction per user for each individual comment ID.
|
6758
|
+
#
|
6759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ReactionLimitExceededException AWS API Documentation
|
6760
|
+
#
|
6761
|
+
class ReactionLimitExceededException < Aws::EmptyStructure; end
|
6762
|
+
|
6763
|
+
# Information about the values for reactions to a comment. AWS
|
6764
|
+
# CodeCommit supports a limited set of reactions.
|
6765
|
+
#
|
6766
|
+
# @!attribute [rw] emoji
|
6767
|
+
# The Emoji Version 1.0 graphic of the reaction. These graphics are
|
6768
|
+
# interpreted slightly differently on different operating systems.
|
6769
|
+
# @return [String]
|
6770
|
+
#
|
6771
|
+
# @!attribute [rw] short_code
|
6772
|
+
# The emoji short code for the reaction. Short codes are interpreted
|
6773
|
+
# slightly differently on different operating systems.
|
6774
|
+
# @return [String]
|
6775
|
+
#
|
6776
|
+
# @!attribute [rw] unicode
|
6777
|
+
# The Unicode codepoint for the reaction.
|
6778
|
+
# @return [String]
|
6779
|
+
#
|
6780
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ReactionValueFormats AWS API Documentation
|
6781
|
+
#
|
6782
|
+
class ReactionValueFormats < Struct.new(
|
6783
|
+
:emoji,
|
6784
|
+
:short_code,
|
6785
|
+
:unicode)
|
6786
|
+
SENSITIVE = []
|
6787
|
+
include Aws::Structure
|
6788
|
+
end
|
6789
|
+
|
6790
|
+
# A reaction value is required.
|
6791
|
+
#
|
6792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ReactionValueRequiredException AWS API Documentation
|
6793
|
+
#
|
6794
|
+
class ReactionValueRequiredException < Aws::EmptyStructure; end
|
6795
|
+
|
6444
6796
|
# The specified reference does not exist. You must provide a full commit
|
6445
6797
|
# ID.
|
6446
6798
|
#
|
@@ -6498,6 +6850,7 @@ module Aws::CodeCommit
|
|
6498
6850
|
:replacement_type,
|
6499
6851
|
:content,
|
6500
6852
|
:file_mode)
|
6853
|
+
SENSITIVE = []
|
6501
6854
|
include Aws::Structure
|
6502
6855
|
end
|
6503
6856
|
|
@@ -6582,6 +6935,7 @@ module Aws::CodeCommit
|
|
6582
6935
|
:clone_url_http,
|
6583
6936
|
:clone_url_ssh,
|
6584
6937
|
:arn)
|
6938
|
+
SENSITIVE = []
|
6585
6939
|
include Aws::Structure
|
6586
6940
|
end
|
6587
6941
|
|
@@ -6606,6 +6960,7 @@ module Aws::CodeCommit
|
|
6606
6960
|
class RepositoryNameIdPair < Struct.new(
|
6607
6961
|
:repository_name,
|
6608
6962
|
:repository_id)
|
6963
|
+
SENSITIVE = []
|
6609
6964
|
include Aws::Structure
|
6610
6965
|
end
|
6611
6966
|
|
@@ -6684,6 +7039,7 @@ module Aws::CodeCommit
|
|
6684
7039
|
:custom_data,
|
6685
7040
|
:branches,
|
6686
7041
|
:events)
|
7042
|
+
SENSITIVE = []
|
6687
7043
|
include Aws::Structure
|
6688
7044
|
end
|
6689
7045
|
|
@@ -6722,6 +7078,7 @@ module Aws::CodeCommit
|
|
6722
7078
|
class RepositoryTriggerExecutionFailure < Struct.new(
|
6723
7079
|
:trigger,
|
6724
7080
|
:failure_message)
|
7081
|
+
SENSITIVE = []
|
6725
7082
|
include Aws::Structure
|
6726
7083
|
end
|
6727
7084
|
|
@@ -6812,6 +7169,7 @@ module Aws::CodeCommit
|
|
6812
7169
|
class SetFileModeEntry < Struct.new(
|
6813
7170
|
:file_path,
|
6814
7171
|
:file_mode)
|
7172
|
+
SENSITIVE = []
|
6815
7173
|
include Aws::Structure
|
6816
7174
|
end
|
6817
7175
|
|
@@ -6854,6 +7212,7 @@ module Aws::CodeCommit
|
|
6854
7212
|
class SourceFileSpecifier < Struct.new(
|
6855
7213
|
:file_path,
|
6856
7214
|
:is_move)
|
7215
|
+
SENSITIVE = []
|
6857
7216
|
include Aws::Structure
|
6858
7217
|
end
|
6859
7218
|
|
@@ -6880,6 +7239,7 @@ module Aws::CodeCommit
|
|
6880
7239
|
:commit_id,
|
6881
7240
|
:absolute_path,
|
6882
7241
|
:relative_path)
|
7242
|
+
SENSITIVE = []
|
6883
7243
|
include Aws::Structure
|
6884
7244
|
end
|
6885
7245
|
|
@@ -6911,6 +7271,7 @@ module Aws::CodeCommit
|
|
6911
7271
|
:absolute_path,
|
6912
7272
|
:relative_path,
|
6913
7273
|
:file_mode)
|
7274
|
+
SENSITIVE = []
|
6914
7275
|
include Aws::Structure
|
6915
7276
|
end
|
6916
7277
|
|
@@ -6950,6 +7311,7 @@ module Aws::CodeCommit
|
|
6950
7311
|
class TagResourceInput < Struct.new(
|
6951
7312
|
:resource_arn,
|
6952
7313
|
:tags)
|
7314
|
+
SENSITIVE = []
|
6953
7315
|
include Aws::Structure
|
6954
7316
|
end
|
6955
7317
|
|
@@ -6990,6 +7352,7 @@ module Aws::CodeCommit
|
|
6990
7352
|
:repository_name,
|
6991
7353
|
:source_reference,
|
6992
7354
|
:destination_reference)
|
7355
|
+
SENSITIVE = []
|
6993
7356
|
include Aws::Structure
|
6994
7357
|
end
|
6995
7358
|
|
@@ -7038,6 +7401,7 @@ module Aws::CodeCommit
|
|
7038
7401
|
class TestRepositoryTriggersInput < Struct.new(
|
7039
7402
|
:repository_name,
|
7040
7403
|
:triggers)
|
7404
|
+
SENSITIVE = []
|
7041
7405
|
include Aws::Structure
|
7042
7406
|
end
|
7043
7407
|
|
@@ -7059,6 +7423,7 @@ module Aws::CodeCommit
|
|
7059
7423
|
class TestRepositoryTriggersOutput < Struct.new(
|
7060
7424
|
:successful_executions,
|
7061
7425
|
:failed_executions)
|
7426
|
+
SENSITIVE = []
|
7062
7427
|
include Aws::Structure
|
7063
7428
|
end
|
7064
7429
|
|
@@ -7114,6 +7479,7 @@ module Aws::CodeCommit
|
|
7114
7479
|
class UntagResourceInput < Struct.new(
|
7115
7480
|
:resource_arn,
|
7116
7481
|
:tag_keys)
|
7482
|
+
SENSITIVE = []
|
7117
7483
|
include Aws::Structure
|
7118
7484
|
end
|
7119
7485
|
|
@@ -7147,6 +7513,7 @@ module Aws::CodeCommit
|
|
7147
7513
|
:approval_rule_template_name,
|
7148
7514
|
:new_rule_content,
|
7149
7515
|
:existing_rule_content_sha_256)
|
7516
|
+
SENSITIVE = []
|
7150
7517
|
include Aws::Structure
|
7151
7518
|
end
|
7152
7519
|
|
@@ -7158,6 +7525,7 @@ module Aws::CodeCommit
|
|
7158
7525
|
#
|
7159
7526
|
class UpdateApprovalRuleTemplateContentOutput < Struct.new(
|
7160
7527
|
:approval_rule_template)
|
7528
|
+
SENSITIVE = []
|
7161
7529
|
include Aws::Structure
|
7162
7530
|
end
|
7163
7531
|
|
@@ -7183,6 +7551,7 @@ module Aws::CodeCommit
|
|
7183
7551
|
class UpdateApprovalRuleTemplateDescriptionInput < Struct.new(
|
7184
7552
|
:approval_rule_template_name,
|
7185
7553
|
:approval_rule_template_description)
|
7554
|
+
SENSITIVE = []
|
7186
7555
|
include Aws::Structure
|
7187
7556
|
end
|
7188
7557
|
|
@@ -7194,6 +7563,7 @@ module Aws::CodeCommit
|
|
7194
7563
|
#
|
7195
7564
|
class UpdateApprovalRuleTemplateDescriptionOutput < Struct.new(
|
7196
7565
|
:approval_rule_template)
|
7566
|
+
SENSITIVE = []
|
7197
7567
|
include Aws::Structure
|
7198
7568
|
end
|
7199
7569
|
|
@@ -7218,6 +7588,7 @@ module Aws::CodeCommit
|
|
7218
7588
|
class UpdateApprovalRuleTemplateNameInput < Struct.new(
|
7219
7589
|
:old_approval_rule_template_name,
|
7220
7590
|
:new_approval_rule_template_name)
|
7591
|
+
SENSITIVE = []
|
7221
7592
|
include Aws::Structure
|
7222
7593
|
end
|
7223
7594
|
|
@@ -7229,6 +7600,7 @@ module Aws::CodeCommit
|
|
7229
7600
|
#
|
7230
7601
|
class UpdateApprovalRuleTemplateNameOutput < Struct.new(
|
7231
7602
|
:approval_rule_template)
|
7603
|
+
SENSITIVE = []
|
7232
7604
|
include Aws::Structure
|
7233
7605
|
end
|
7234
7606
|
|
@@ -7255,6 +7627,7 @@ module Aws::CodeCommit
|
|
7255
7627
|
class UpdateCommentInput < Struct.new(
|
7256
7628
|
:comment_id,
|
7257
7629
|
:content)
|
7630
|
+
SENSITIVE = []
|
7258
7631
|
include Aws::Structure
|
7259
7632
|
end
|
7260
7633
|
|
@@ -7266,6 +7639,7 @@ module Aws::CodeCommit
|
|
7266
7639
|
#
|
7267
7640
|
class UpdateCommentOutput < Struct.new(
|
7268
7641
|
:comment)
|
7642
|
+
SENSITIVE = []
|
7269
7643
|
include Aws::Structure
|
7270
7644
|
end
|
7271
7645
|
|
@@ -7292,6 +7666,7 @@ module Aws::CodeCommit
|
|
7292
7666
|
class UpdateDefaultBranchInput < Struct.new(
|
7293
7667
|
:repository_name,
|
7294
7668
|
:default_branch_name)
|
7669
|
+
SENSITIVE = []
|
7295
7670
|
include Aws::Structure
|
7296
7671
|
end
|
7297
7672
|
|
@@ -7355,7 +7730,7 @@ module Aws::CodeCommit
|
|
7355
7730
|
#
|
7356
7731
|
#
|
7357
7732
|
#
|
7358
|
-
# [1]: https://docs.aws.amazon.com/
|
7733
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
|
7359
7734
|
# @return [String]
|
7360
7735
|
#
|
7361
7736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestApprovalRuleContentInput AWS API Documentation
|
@@ -7365,6 +7740,7 @@ module Aws::CodeCommit
|
|
7365
7740
|
:approval_rule_name,
|
7366
7741
|
:existing_rule_content_sha_256,
|
7367
7742
|
:new_rule_content)
|
7743
|
+
SENSITIVE = []
|
7368
7744
|
include Aws::Structure
|
7369
7745
|
end
|
7370
7746
|
|
@@ -7376,6 +7752,7 @@ module Aws::CodeCommit
|
|
7376
7752
|
#
|
7377
7753
|
class UpdatePullRequestApprovalRuleContentOutput < Struct.new(
|
7378
7754
|
:approval_rule)
|
7755
|
+
SENSITIVE = []
|
7379
7756
|
include Aws::Structure
|
7380
7757
|
end
|
7381
7758
|
|
@@ -7406,6 +7783,7 @@ module Aws::CodeCommit
|
|
7406
7783
|
:pull_request_id,
|
7407
7784
|
:revision_id,
|
7408
7785
|
:approval_state)
|
7786
|
+
SENSITIVE = []
|
7409
7787
|
include Aws::Structure
|
7410
7788
|
end
|
7411
7789
|
|
@@ -7432,6 +7810,7 @@ module Aws::CodeCommit
|
|
7432
7810
|
class UpdatePullRequestDescriptionInput < Struct.new(
|
7433
7811
|
:pull_request_id,
|
7434
7812
|
:description)
|
7813
|
+
SENSITIVE = []
|
7435
7814
|
include Aws::Structure
|
7436
7815
|
end
|
7437
7816
|
|
@@ -7443,6 +7822,7 @@ module Aws::CodeCommit
|
|
7443
7822
|
#
|
7444
7823
|
class UpdatePullRequestDescriptionOutput < Struct.new(
|
7445
7824
|
:pull_request)
|
7825
|
+
SENSITIVE = []
|
7446
7826
|
include Aws::Structure
|
7447
7827
|
end
|
7448
7828
|
|
@@ -7470,6 +7850,7 @@ module Aws::CodeCommit
|
|
7470
7850
|
class UpdatePullRequestStatusInput < Struct.new(
|
7471
7851
|
:pull_request_id,
|
7472
7852
|
:pull_request_status)
|
7853
|
+
SENSITIVE = []
|
7473
7854
|
include Aws::Structure
|
7474
7855
|
end
|
7475
7856
|
|
@@ -7481,6 +7862,7 @@ module Aws::CodeCommit
|
|
7481
7862
|
#
|
7482
7863
|
class UpdatePullRequestStatusOutput < Struct.new(
|
7483
7864
|
:pull_request)
|
7865
|
+
SENSITIVE = []
|
7484
7866
|
include Aws::Structure
|
7485
7867
|
end
|
7486
7868
|
|
@@ -7507,6 +7889,7 @@ module Aws::CodeCommit
|
|
7507
7889
|
class UpdatePullRequestTitleInput < Struct.new(
|
7508
7890
|
:pull_request_id,
|
7509
7891
|
:title)
|
7892
|
+
SENSITIVE = []
|
7510
7893
|
include Aws::Structure
|
7511
7894
|
end
|
7512
7895
|
|
@@ -7518,6 +7901,7 @@ module Aws::CodeCommit
|
|
7518
7901
|
#
|
7519
7902
|
class UpdatePullRequestTitleOutput < Struct.new(
|
7520
7903
|
:pull_request)
|
7904
|
+
SENSITIVE = []
|
7521
7905
|
include Aws::Structure
|
7522
7906
|
end
|
7523
7907
|
|
@@ -7546,6 +7930,7 @@ module Aws::CodeCommit
|
|
7546
7930
|
class UpdateRepositoryDescriptionInput < Struct.new(
|
7547
7931
|
:repository_name,
|
7548
7932
|
:repository_description)
|
7933
|
+
SENSITIVE = []
|
7549
7934
|
include Aws::Structure
|
7550
7935
|
end
|
7551
7936
|
|
@@ -7572,6 +7957,7 @@ module Aws::CodeCommit
|
|
7572
7957
|
class UpdateRepositoryNameInput < Struct.new(
|
7573
7958
|
:old_name,
|
7574
7959
|
:new_name)
|
7960
|
+
SENSITIVE = []
|
7575
7961
|
include Aws::Structure
|
7576
7962
|
end
|
7577
7963
|
|
@@ -7597,6 +7983,7 @@ module Aws::CodeCommit
|
|
7597
7983
|
:name,
|
7598
7984
|
:email,
|
7599
7985
|
:date)
|
7986
|
+
SENSITIVE = []
|
7600
7987
|
include Aws::Structure
|
7601
7988
|
end
|
7602
7989
|
|