aws-sdk-codecommit 1.62.0 → 1.64.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codecommit/client.rb +71 -1
- data/lib/aws-sdk-codecommit/client_api.rb +56 -0
- data/lib/aws-sdk-codecommit/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-codecommit/endpoints.rb +14 -0
- data/lib/aws-sdk-codecommit/errors.rb +33 -0
- data/lib/aws-sdk-codecommit/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-codecommit/types.rb +132 -3
- data/lib/aws-sdk-codecommit.rb +1 -1
- data/sig/client.rbs +1268 -0
- data/sig/errors.rbs +392 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +2074 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,2074 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::CodeCommit
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ActorDoesNotExistException < Aws::EmptyStructure
|
12
|
+
end
|
13
|
+
|
14
|
+
class Approval
|
15
|
+
attr_accessor user_arn: ::String
|
16
|
+
attr_accessor approval_state: ("APPROVE" | "REVOKE")
|
17
|
+
SENSITIVE: []
|
18
|
+
end
|
19
|
+
|
20
|
+
class ApprovalRule
|
21
|
+
attr_accessor approval_rule_id: ::String
|
22
|
+
attr_accessor approval_rule_name: ::String
|
23
|
+
attr_accessor approval_rule_content: ::String
|
24
|
+
attr_accessor rule_content_sha_256: ::String
|
25
|
+
attr_accessor last_modified_date: ::Time
|
26
|
+
attr_accessor creation_date: ::Time
|
27
|
+
attr_accessor last_modified_user: ::String
|
28
|
+
attr_accessor origin_approval_rule_template: Types::OriginApprovalRuleTemplate
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class ApprovalRuleContentRequiredException < Aws::EmptyStructure
|
33
|
+
end
|
34
|
+
|
35
|
+
class ApprovalRuleDoesNotExistException < Aws::EmptyStructure
|
36
|
+
end
|
37
|
+
|
38
|
+
class ApprovalRuleEventMetadata
|
39
|
+
attr_accessor approval_rule_name: ::String
|
40
|
+
attr_accessor approval_rule_id: ::String
|
41
|
+
attr_accessor approval_rule_content: ::String
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class ApprovalRuleNameAlreadyExistsException < Aws::EmptyStructure
|
46
|
+
end
|
47
|
+
|
48
|
+
class ApprovalRuleNameRequiredException < Aws::EmptyStructure
|
49
|
+
end
|
50
|
+
|
51
|
+
class ApprovalRuleOverriddenEventMetadata
|
52
|
+
attr_accessor revision_id: ::String
|
53
|
+
attr_accessor override_status: ("OVERRIDE" | "REVOKE")
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class ApprovalRuleTemplate
|
58
|
+
attr_accessor approval_rule_template_id: ::String
|
59
|
+
attr_accessor approval_rule_template_name: ::String
|
60
|
+
attr_accessor approval_rule_template_description: ::String
|
61
|
+
attr_accessor approval_rule_template_content: ::String
|
62
|
+
attr_accessor rule_content_sha_256: ::String
|
63
|
+
attr_accessor last_modified_date: ::Time
|
64
|
+
attr_accessor creation_date: ::Time
|
65
|
+
attr_accessor last_modified_user: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class ApprovalRuleTemplateContentRequiredException < Aws::EmptyStructure
|
70
|
+
end
|
71
|
+
|
72
|
+
class ApprovalRuleTemplateDoesNotExistException < Aws::EmptyStructure
|
73
|
+
end
|
74
|
+
|
75
|
+
class ApprovalRuleTemplateInUseException < Aws::EmptyStructure
|
76
|
+
end
|
77
|
+
|
78
|
+
class ApprovalRuleTemplateNameAlreadyExistsException < Aws::EmptyStructure
|
79
|
+
end
|
80
|
+
|
81
|
+
class ApprovalRuleTemplateNameRequiredException < Aws::EmptyStructure
|
82
|
+
end
|
83
|
+
|
84
|
+
class ApprovalStateChangedEventMetadata
|
85
|
+
attr_accessor revision_id: ::String
|
86
|
+
attr_accessor approval_status: ("APPROVE" | "REVOKE")
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class ApprovalStateRequiredException < Aws::EmptyStructure
|
91
|
+
end
|
92
|
+
|
93
|
+
class AssociateApprovalRuleTemplateWithRepositoryInput
|
94
|
+
attr_accessor approval_rule_template_name: ::String
|
95
|
+
attr_accessor repository_name: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class AuthorDoesNotExistException < Aws::EmptyStructure
|
100
|
+
end
|
101
|
+
|
102
|
+
class BatchAssociateApprovalRuleTemplateWithRepositoriesError
|
103
|
+
attr_accessor repository_name: ::String
|
104
|
+
attr_accessor error_code: ::String
|
105
|
+
attr_accessor error_message: ::String
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class BatchAssociateApprovalRuleTemplateWithRepositoriesInput
|
110
|
+
attr_accessor approval_rule_template_name: ::String
|
111
|
+
attr_accessor repository_names: ::Array[::String]
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
|
116
|
+
attr_accessor associated_repository_names: ::Array[::String]
|
117
|
+
attr_accessor errors: ::Array[Types::BatchAssociateApprovalRuleTemplateWithRepositoriesError]
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class BatchDescribeMergeConflictsError
|
122
|
+
attr_accessor file_path: ::String
|
123
|
+
attr_accessor exception_name: ::String
|
124
|
+
attr_accessor message: ::String
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class BatchDescribeMergeConflictsInput
|
129
|
+
attr_accessor repository_name: ::String
|
130
|
+
attr_accessor destination_commit_specifier: ::String
|
131
|
+
attr_accessor source_commit_specifier: ::String
|
132
|
+
attr_accessor merge_option: ("FAST_FORWARD_MERGE" | "SQUASH_MERGE" | "THREE_WAY_MERGE")
|
133
|
+
attr_accessor max_merge_hunks: ::Integer
|
134
|
+
attr_accessor max_conflict_files: ::Integer
|
135
|
+
attr_accessor file_paths: ::Array[::String]
|
136
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
137
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
138
|
+
attr_accessor next_token: ::String
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class BatchDescribeMergeConflictsOutput
|
143
|
+
attr_accessor conflicts: ::Array[Types::Conflict]
|
144
|
+
attr_accessor next_token: ::String
|
145
|
+
attr_accessor errors: ::Array[Types::BatchDescribeMergeConflictsError]
|
146
|
+
attr_accessor destination_commit_id: ::String
|
147
|
+
attr_accessor source_commit_id: ::String
|
148
|
+
attr_accessor base_commit_id: ::String
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class BatchDisassociateApprovalRuleTemplateFromRepositoriesError
|
153
|
+
attr_accessor repository_name: ::String
|
154
|
+
attr_accessor error_code: ::String
|
155
|
+
attr_accessor error_message: ::String
|
156
|
+
SENSITIVE: []
|
157
|
+
end
|
158
|
+
|
159
|
+
class BatchDisassociateApprovalRuleTemplateFromRepositoriesInput
|
160
|
+
attr_accessor approval_rule_template_name: ::String
|
161
|
+
attr_accessor repository_names: ::Array[::String]
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class BatchDisassociateApprovalRuleTemplateFromRepositoriesOutput
|
166
|
+
attr_accessor disassociated_repository_names: ::Array[::String]
|
167
|
+
attr_accessor errors: ::Array[Types::BatchDisassociateApprovalRuleTemplateFromRepositoriesError]
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class BatchGetCommitsError
|
172
|
+
attr_accessor commit_id: ::String
|
173
|
+
attr_accessor error_code: ::String
|
174
|
+
attr_accessor error_message: ::String
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class BatchGetCommitsInput
|
179
|
+
attr_accessor commit_ids: ::Array[::String]
|
180
|
+
attr_accessor repository_name: ::String
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class BatchGetCommitsOutput
|
185
|
+
attr_accessor commits: ::Array[Types::Commit]
|
186
|
+
attr_accessor errors: ::Array[Types::BatchGetCommitsError]
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class BatchGetRepositoriesError
|
191
|
+
attr_accessor repository_id: ::String
|
192
|
+
attr_accessor repository_name: ::String
|
193
|
+
attr_accessor error_code: ("EncryptionIntegrityChecksFailedException" | "EncryptionKeyAccessDeniedException" | "EncryptionKeyDisabledException" | "EncryptionKeyNotFoundException" | "EncryptionKeyUnavailableException" | "RepositoryDoesNotExistException")
|
194
|
+
attr_accessor error_message: ::String
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class BatchGetRepositoriesInput
|
199
|
+
attr_accessor repository_names: ::Array[::String]
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class BatchGetRepositoriesOutput
|
204
|
+
attr_accessor repositories: ::Array[Types::RepositoryMetadata]
|
205
|
+
attr_accessor repositories_not_found: ::Array[::String]
|
206
|
+
attr_accessor errors: ::Array[Types::BatchGetRepositoriesError]
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class BeforeCommitIdAndAfterCommitIdAreSameException < Aws::EmptyStructure
|
211
|
+
end
|
212
|
+
|
213
|
+
class BlobIdDoesNotExistException < Aws::EmptyStructure
|
214
|
+
end
|
215
|
+
|
216
|
+
class BlobIdRequiredException < Aws::EmptyStructure
|
217
|
+
end
|
218
|
+
|
219
|
+
class BlobMetadata
|
220
|
+
attr_accessor blob_id: ::String
|
221
|
+
attr_accessor path: ::String
|
222
|
+
attr_accessor mode: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class BranchDoesNotExistException < Aws::EmptyStructure
|
227
|
+
end
|
228
|
+
|
229
|
+
class BranchInfo
|
230
|
+
attr_accessor branch_name: ::String
|
231
|
+
attr_accessor commit_id: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class BranchNameExistsException < Aws::EmptyStructure
|
236
|
+
end
|
237
|
+
|
238
|
+
class BranchNameIsTagNameException < Aws::EmptyStructure
|
239
|
+
end
|
240
|
+
|
241
|
+
class BranchNameRequiredException < Aws::EmptyStructure
|
242
|
+
end
|
243
|
+
|
244
|
+
class CannotDeleteApprovalRuleFromTemplateException < Aws::EmptyStructure
|
245
|
+
end
|
246
|
+
|
247
|
+
class CannotModifyApprovalRuleFromTemplateException < Aws::EmptyStructure
|
248
|
+
end
|
249
|
+
|
250
|
+
class ClientRequestTokenRequiredException < Aws::EmptyStructure
|
251
|
+
end
|
252
|
+
|
253
|
+
class Comment
|
254
|
+
attr_accessor comment_id: ::String
|
255
|
+
attr_accessor content: ::String
|
256
|
+
attr_accessor in_reply_to: ::String
|
257
|
+
attr_accessor creation_date: ::Time
|
258
|
+
attr_accessor last_modified_date: ::Time
|
259
|
+
attr_accessor author_arn: ::String
|
260
|
+
attr_accessor deleted: bool
|
261
|
+
attr_accessor client_request_token: ::String
|
262
|
+
attr_accessor caller_reactions: ::Array[::String]
|
263
|
+
attr_accessor reaction_counts: ::Hash[::String, ::Integer]
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class CommentContentRequiredException < Aws::EmptyStructure
|
268
|
+
end
|
269
|
+
|
270
|
+
class CommentContentSizeLimitExceededException < Aws::EmptyStructure
|
271
|
+
end
|
272
|
+
|
273
|
+
class CommentDeletedException < Aws::EmptyStructure
|
274
|
+
end
|
275
|
+
|
276
|
+
class CommentDoesNotExistException < Aws::EmptyStructure
|
277
|
+
end
|
278
|
+
|
279
|
+
class CommentIdRequiredException < Aws::EmptyStructure
|
280
|
+
end
|
281
|
+
|
282
|
+
class CommentNotCreatedByCallerException < Aws::EmptyStructure
|
283
|
+
end
|
284
|
+
|
285
|
+
class CommentsForComparedCommit
|
286
|
+
attr_accessor repository_name: ::String
|
287
|
+
attr_accessor before_commit_id: ::String
|
288
|
+
attr_accessor after_commit_id: ::String
|
289
|
+
attr_accessor before_blob_id: ::String
|
290
|
+
attr_accessor after_blob_id: ::String
|
291
|
+
attr_accessor location: Types::Location
|
292
|
+
attr_accessor comments: ::Array[Types::Comment]
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class CommentsForPullRequest
|
297
|
+
attr_accessor pull_request_id: ::String
|
298
|
+
attr_accessor repository_name: ::String
|
299
|
+
attr_accessor before_commit_id: ::String
|
300
|
+
attr_accessor after_commit_id: ::String
|
301
|
+
attr_accessor before_blob_id: ::String
|
302
|
+
attr_accessor after_blob_id: ::String
|
303
|
+
attr_accessor location: Types::Location
|
304
|
+
attr_accessor comments: ::Array[Types::Comment]
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class Commit
|
309
|
+
attr_accessor commit_id: ::String
|
310
|
+
attr_accessor tree_id: ::String
|
311
|
+
attr_accessor parents: ::Array[::String]
|
312
|
+
attr_accessor message: ::String
|
313
|
+
attr_accessor author: Types::UserInfo
|
314
|
+
attr_accessor committer: Types::UserInfo
|
315
|
+
attr_accessor additional_data: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class CommitDoesNotExistException < Aws::EmptyStructure
|
320
|
+
end
|
321
|
+
|
322
|
+
class CommitIdDoesNotExistException < Aws::EmptyStructure
|
323
|
+
end
|
324
|
+
|
325
|
+
class CommitIdRequiredException < Aws::EmptyStructure
|
326
|
+
end
|
327
|
+
|
328
|
+
class CommitIdsLimitExceededException < Aws::EmptyStructure
|
329
|
+
end
|
330
|
+
|
331
|
+
class CommitIdsListRequiredException < Aws::EmptyStructure
|
332
|
+
end
|
333
|
+
|
334
|
+
class CommitMessageLengthExceededException < Aws::EmptyStructure
|
335
|
+
end
|
336
|
+
|
337
|
+
class CommitRequiredException < Aws::EmptyStructure
|
338
|
+
end
|
339
|
+
|
340
|
+
class ConcurrentReferenceUpdateException < Aws::EmptyStructure
|
341
|
+
end
|
342
|
+
|
343
|
+
class Conflict
|
344
|
+
attr_accessor conflict_metadata: Types::ConflictMetadata
|
345
|
+
attr_accessor merge_hunks: ::Array[Types::MergeHunk]
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class ConflictMetadata
|
350
|
+
attr_accessor file_path: ::String
|
351
|
+
attr_accessor file_sizes: Types::FileSizes
|
352
|
+
attr_accessor file_modes: Types::FileModes
|
353
|
+
attr_accessor object_types: Types::ObjectTypes
|
354
|
+
attr_accessor number_of_conflicts: ::Integer
|
355
|
+
attr_accessor is_binary_file: Types::IsBinaryFile
|
356
|
+
attr_accessor content_conflict: bool
|
357
|
+
attr_accessor file_mode_conflict: bool
|
358
|
+
attr_accessor object_type_conflict: bool
|
359
|
+
attr_accessor merge_operations: Types::MergeOperations
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class ConflictResolution
|
364
|
+
attr_accessor replace_contents: ::Array[Types::ReplaceContentEntry]
|
365
|
+
attr_accessor delete_files: ::Array[Types::DeleteFileEntry]
|
366
|
+
attr_accessor set_file_modes: ::Array[Types::SetFileModeEntry]
|
367
|
+
SENSITIVE: []
|
368
|
+
end
|
369
|
+
|
370
|
+
class CreateApprovalRuleTemplateInput
|
371
|
+
attr_accessor approval_rule_template_name: ::String
|
372
|
+
attr_accessor approval_rule_template_content: ::String
|
373
|
+
attr_accessor approval_rule_template_description: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class CreateApprovalRuleTemplateOutput
|
378
|
+
attr_accessor approval_rule_template: Types::ApprovalRuleTemplate
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class CreateBranchInput
|
383
|
+
attr_accessor repository_name: ::String
|
384
|
+
attr_accessor branch_name: ::String
|
385
|
+
attr_accessor commit_id: ::String
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class CreateCommitInput
|
390
|
+
attr_accessor repository_name: ::String
|
391
|
+
attr_accessor branch_name: ::String
|
392
|
+
attr_accessor parent_commit_id: ::String
|
393
|
+
attr_accessor author_name: ::String
|
394
|
+
attr_accessor email: ::String
|
395
|
+
attr_accessor commit_message: ::String
|
396
|
+
attr_accessor keep_empty_folders: bool
|
397
|
+
attr_accessor put_files: ::Array[Types::PutFileEntry]
|
398
|
+
attr_accessor delete_files: ::Array[Types::DeleteFileEntry]
|
399
|
+
attr_accessor set_file_modes: ::Array[Types::SetFileModeEntry]
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class CreateCommitOutput
|
404
|
+
attr_accessor commit_id: ::String
|
405
|
+
attr_accessor tree_id: ::String
|
406
|
+
attr_accessor files_added: ::Array[Types::FileMetadata]
|
407
|
+
attr_accessor files_updated: ::Array[Types::FileMetadata]
|
408
|
+
attr_accessor files_deleted: ::Array[Types::FileMetadata]
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class CreatePullRequestApprovalRuleInput
|
413
|
+
attr_accessor pull_request_id: ::String
|
414
|
+
attr_accessor approval_rule_name: ::String
|
415
|
+
attr_accessor approval_rule_content: ::String
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class CreatePullRequestApprovalRuleOutput
|
420
|
+
attr_accessor approval_rule: Types::ApprovalRule
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class CreatePullRequestInput
|
425
|
+
attr_accessor title: ::String
|
426
|
+
attr_accessor description: ::String
|
427
|
+
attr_accessor targets: ::Array[Types::Target]
|
428
|
+
attr_accessor client_request_token: ::String
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class CreatePullRequestOutput
|
433
|
+
attr_accessor pull_request: Types::PullRequest
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class CreateRepositoryInput
|
438
|
+
attr_accessor repository_name: ::String
|
439
|
+
attr_accessor repository_description: ::String
|
440
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
441
|
+
attr_accessor kms_key_id: ::String
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class CreateRepositoryOutput
|
446
|
+
attr_accessor repository_metadata: Types::RepositoryMetadata
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class CreateUnreferencedMergeCommitInput
|
451
|
+
attr_accessor repository_name: ::String
|
452
|
+
attr_accessor source_commit_specifier: ::String
|
453
|
+
attr_accessor destination_commit_specifier: ::String
|
454
|
+
attr_accessor merge_option: ("FAST_FORWARD_MERGE" | "SQUASH_MERGE" | "THREE_WAY_MERGE")
|
455
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
456
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
457
|
+
attr_accessor author_name: ::String
|
458
|
+
attr_accessor email: ::String
|
459
|
+
attr_accessor commit_message: ::String
|
460
|
+
attr_accessor keep_empty_folders: bool
|
461
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class CreateUnreferencedMergeCommitOutput
|
466
|
+
attr_accessor commit_id: ::String
|
467
|
+
attr_accessor tree_id: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class DefaultBranchCannotBeDeletedException < Aws::EmptyStructure
|
472
|
+
end
|
473
|
+
|
474
|
+
class DeleteApprovalRuleTemplateInput
|
475
|
+
attr_accessor approval_rule_template_name: ::String
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class DeleteApprovalRuleTemplateOutput
|
480
|
+
attr_accessor approval_rule_template_id: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class DeleteBranchInput
|
485
|
+
attr_accessor repository_name: ::String
|
486
|
+
attr_accessor branch_name: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class DeleteBranchOutput
|
491
|
+
attr_accessor deleted_branch: Types::BranchInfo
|
492
|
+
SENSITIVE: []
|
493
|
+
end
|
494
|
+
|
495
|
+
class DeleteCommentContentInput
|
496
|
+
attr_accessor comment_id: ::String
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class DeleteCommentContentOutput
|
501
|
+
attr_accessor comment: Types::Comment
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class DeleteFileEntry
|
506
|
+
attr_accessor file_path: ::String
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
510
|
+
class DeleteFileInput
|
511
|
+
attr_accessor repository_name: ::String
|
512
|
+
attr_accessor branch_name: ::String
|
513
|
+
attr_accessor file_path: ::String
|
514
|
+
attr_accessor parent_commit_id: ::String
|
515
|
+
attr_accessor keep_empty_folders: bool
|
516
|
+
attr_accessor commit_message: ::String
|
517
|
+
attr_accessor name: ::String
|
518
|
+
attr_accessor email: ::String
|
519
|
+
SENSITIVE: []
|
520
|
+
end
|
521
|
+
|
522
|
+
class DeleteFileOutput
|
523
|
+
attr_accessor commit_id: ::String
|
524
|
+
attr_accessor blob_id: ::String
|
525
|
+
attr_accessor tree_id: ::String
|
526
|
+
attr_accessor file_path: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class DeletePullRequestApprovalRuleInput
|
531
|
+
attr_accessor pull_request_id: ::String
|
532
|
+
attr_accessor approval_rule_name: ::String
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class DeletePullRequestApprovalRuleOutput
|
537
|
+
attr_accessor approval_rule_id: ::String
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class DeleteRepositoryInput
|
542
|
+
attr_accessor repository_name: ::String
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class DeleteRepositoryOutput
|
547
|
+
attr_accessor repository_id: ::String
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class DescribeMergeConflictsInput
|
552
|
+
attr_accessor repository_name: ::String
|
553
|
+
attr_accessor destination_commit_specifier: ::String
|
554
|
+
attr_accessor source_commit_specifier: ::String
|
555
|
+
attr_accessor merge_option: ("FAST_FORWARD_MERGE" | "SQUASH_MERGE" | "THREE_WAY_MERGE")
|
556
|
+
attr_accessor max_merge_hunks: ::Integer
|
557
|
+
attr_accessor file_path: ::String
|
558
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
559
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
560
|
+
attr_accessor next_token: ::String
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class DescribeMergeConflictsOutput
|
565
|
+
attr_accessor conflict_metadata: Types::ConflictMetadata
|
566
|
+
attr_accessor merge_hunks: ::Array[Types::MergeHunk]
|
567
|
+
attr_accessor next_token: ::String
|
568
|
+
attr_accessor destination_commit_id: ::String
|
569
|
+
attr_accessor source_commit_id: ::String
|
570
|
+
attr_accessor base_commit_id: ::String
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class DescribePullRequestEventsInput
|
575
|
+
attr_accessor pull_request_id: ::String
|
576
|
+
attr_accessor pull_request_event_type: ("PULL_REQUEST_CREATED" | "PULL_REQUEST_STATUS_CHANGED" | "PULL_REQUEST_SOURCE_REFERENCE_UPDATED" | "PULL_REQUEST_MERGE_STATE_CHANGED" | "PULL_REQUEST_APPROVAL_RULE_CREATED" | "PULL_REQUEST_APPROVAL_RULE_UPDATED" | "PULL_REQUEST_APPROVAL_RULE_DELETED" | "PULL_REQUEST_APPROVAL_RULE_OVERRIDDEN" | "PULL_REQUEST_APPROVAL_STATE_CHANGED")
|
577
|
+
attr_accessor actor_arn: ::String
|
578
|
+
attr_accessor next_token: ::String
|
579
|
+
attr_accessor max_results: ::Integer
|
580
|
+
SENSITIVE: []
|
581
|
+
end
|
582
|
+
|
583
|
+
class DescribePullRequestEventsOutput
|
584
|
+
attr_accessor pull_request_events: ::Array[Types::PullRequestEvent]
|
585
|
+
attr_accessor next_token: ::String
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class Difference
|
590
|
+
attr_accessor before_blob: Types::BlobMetadata
|
591
|
+
attr_accessor after_blob: Types::BlobMetadata
|
592
|
+
attr_accessor change_type: ("A" | "M" | "D")
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class DirectoryNameConflictsWithFileNameException < Aws::EmptyStructure
|
597
|
+
end
|
598
|
+
|
599
|
+
class DisassociateApprovalRuleTemplateFromRepositoryInput
|
600
|
+
attr_accessor approval_rule_template_name: ::String
|
601
|
+
attr_accessor repository_name: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class EncryptionIntegrityChecksFailedException < Aws::EmptyStructure
|
606
|
+
end
|
607
|
+
|
608
|
+
class EncryptionKeyAccessDeniedException < Aws::EmptyStructure
|
609
|
+
end
|
610
|
+
|
611
|
+
class EncryptionKeyDisabledException < Aws::EmptyStructure
|
612
|
+
end
|
613
|
+
|
614
|
+
class EncryptionKeyInvalidIdException < Aws::EmptyStructure
|
615
|
+
end
|
616
|
+
|
617
|
+
class EncryptionKeyInvalidUsageException < Aws::EmptyStructure
|
618
|
+
end
|
619
|
+
|
620
|
+
class EncryptionKeyNotFoundException < Aws::EmptyStructure
|
621
|
+
end
|
622
|
+
|
623
|
+
class EncryptionKeyRequiredException < Aws::EmptyStructure
|
624
|
+
end
|
625
|
+
|
626
|
+
class EncryptionKeyUnavailableException < Aws::EmptyStructure
|
627
|
+
end
|
628
|
+
|
629
|
+
class EvaluatePullRequestApprovalRulesInput
|
630
|
+
attr_accessor pull_request_id: ::String
|
631
|
+
attr_accessor revision_id: ::String
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class EvaluatePullRequestApprovalRulesOutput
|
636
|
+
attr_accessor evaluation: Types::Evaluation
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class Evaluation
|
641
|
+
attr_accessor approved: bool
|
642
|
+
attr_accessor overridden: bool
|
643
|
+
attr_accessor approval_rules_satisfied: ::Array[::String]
|
644
|
+
attr_accessor approval_rules_not_satisfied: ::Array[::String]
|
645
|
+
SENSITIVE: []
|
646
|
+
end
|
647
|
+
|
648
|
+
class File
|
649
|
+
attr_accessor blob_id: ::String
|
650
|
+
attr_accessor absolute_path: ::String
|
651
|
+
attr_accessor relative_path: ::String
|
652
|
+
attr_accessor file_mode: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class FileContentAndSourceFileSpecifiedException < Aws::EmptyStructure
|
657
|
+
end
|
658
|
+
|
659
|
+
class FileContentRequiredException < Aws::EmptyStructure
|
660
|
+
end
|
661
|
+
|
662
|
+
class FileContentSizeLimitExceededException < Aws::EmptyStructure
|
663
|
+
end
|
664
|
+
|
665
|
+
class FileDoesNotExistException < Aws::EmptyStructure
|
666
|
+
end
|
667
|
+
|
668
|
+
class FileEntryRequiredException < Aws::EmptyStructure
|
669
|
+
end
|
670
|
+
|
671
|
+
class FileMetadata
|
672
|
+
attr_accessor absolute_path: ::String
|
673
|
+
attr_accessor blob_id: ::String
|
674
|
+
attr_accessor file_mode: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class FileModeRequiredException < Aws::EmptyStructure
|
679
|
+
end
|
680
|
+
|
681
|
+
class FileModes
|
682
|
+
attr_accessor source: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
683
|
+
attr_accessor destination: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
684
|
+
attr_accessor base: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class FileNameConflictsWithDirectoryNameException < Aws::EmptyStructure
|
689
|
+
end
|
690
|
+
|
691
|
+
class FilePathConflictsWithSubmodulePathException < Aws::EmptyStructure
|
692
|
+
end
|
693
|
+
|
694
|
+
class FileSizes
|
695
|
+
attr_accessor source: ::Integer
|
696
|
+
attr_accessor destination: ::Integer
|
697
|
+
attr_accessor base: ::Integer
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class FileTooLargeException < Aws::EmptyStructure
|
702
|
+
end
|
703
|
+
|
704
|
+
class FileVersion
|
705
|
+
attr_accessor commit: Types::Commit
|
706
|
+
attr_accessor blob_id: ::String
|
707
|
+
attr_accessor path: ::String
|
708
|
+
attr_accessor revision_children: ::Array[::String]
|
709
|
+
SENSITIVE: []
|
710
|
+
end
|
711
|
+
|
712
|
+
class Folder
|
713
|
+
attr_accessor tree_id: ::String
|
714
|
+
attr_accessor absolute_path: ::String
|
715
|
+
attr_accessor relative_path: ::String
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class FolderContentSizeLimitExceededException < Aws::EmptyStructure
|
720
|
+
end
|
721
|
+
|
722
|
+
class FolderDoesNotExistException < Aws::EmptyStructure
|
723
|
+
end
|
724
|
+
|
725
|
+
class GetApprovalRuleTemplateInput
|
726
|
+
attr_accessor approval_rule_template_name: ::String
|
727
|
+
SENSITIVE: []
|
728
|
+
end
|
729
|
+
|
730
|
+
class GetApprovalRuleTemplateOutput
|
731
|
+
attr_accessor approval_rule_template: Types::ApprovalRuleTemplate
|
732
|
+
SENSITIVE: []
|
733
|
+
end
|
734
|
+
|
735
|
+
class GetBlobInput
|
736
|
+
attr_accessor repository_name: ::String
|
737
|
+
attr_accessor blob_id: ::String
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class GetBlobOutput
|
742
|
+
attr_accessor content: ::String
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class GetBranchInput
|
747
|
+
attr_accessor repository_name: ::String
|
748
|
+
attr_accessor branch_name: ::String
|
749
|
+
SENSITIVE: []
|
750
|
+
end
|
751
|
+
|
752
|
+
class GetBranchOutput
|
753
|
+
attr_accessor branch: Types::BranchInfo
|
754
|
+
SENSITIVE: []
|
755
|
+
end
|
756
|
+
|
757
|
+
class GetCommentInput
|
758
|
+
attr_accessor comment_id: ::String
|
759
|
+
SENSITIVE: []
|
760
|
+
end
|
761
|
+
|
762
|
+
class GetCommentOutput
|
763
|
+
attr_accessor comment: Types::Comment
|
764
|
+
SENSITIVE: []
|
765
|
+
end
|
766
|
+
|
767
|
+
class GetCommentReactionsInput
|
768
|
+
attr_accessor comment_id: ::String
|
769
|
+
attr_accessor reaction_user_arn: ::String
|
770
|
+
attr_accessor next_token: ::String
|
771
|
+
attr_accessor max_results: ::Integer
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
775
|
+
class GetCommentReactionsOutput
|
776
|
+
attr_accessor reactions_for_comment: ::Array[Types::ReactionForComment]
|
777
|
+
attr_accessor next_token: ::String
|
778
|
+
SENSITIVE: []
|
779
|
+
end
|
780
|
+
|
781
|
+
class GetCommentsForComparedCommitInput
|
782
|
+
attr_accessor repository_name: ::String
|
783
|
+
attr_accessor before_commit_id: ::String
|
784
|
+
attr_accessor after_commit_id: ::String
|
785
|
+
attr_accessor next_token: ::String
|
786
|
+
attr_accessor max_results: ::Integer
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class GetCommentsForComparedCommitOutput
|
791
|
+
attr_accessor comments_for_compared_commit_data: ::Array[Types::CommentsForComparedCommit]
|
792
|
+
attr_accessor next_token: ::String
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class GetCommentsForPullRequestInput
|
797
|
+
attr_accessor pull_request_id: ::String
|
798
|
+
attr_accessor repository_name: ::String
|
799
|
+
attr_accessor before_commit_id: ::String
|
800
|
+
attr_accessor after_commit_id: ::String
|
801
|
+
attr_accessor next_token: ::String
|
802
|
+
attr_accessor max_results: ::Integer
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class GetCommentsForPullRequestOutput
|
807
|
+
attr_accessor comments_for_pull_request_data: ::Array[Types::CommentsForPullRequest]
|
808
|
+
attr_accessor next_token: ::String
|
809
|
+
SENSITIVE: []
|
810
|
+
end
|
811
|
+
|
812
|
+
class GetCommitInput
|
813
|
+
attr_accessor repository_name: ::String
|
814
|
+
attr_accessor commit_id: ::String
|
815
|
+
SENSITIVE: []
|
816
|
+
end
|
817
|
+
|
818
|
+
class GetCommitOutput
|
819
|
+
attr_accessor commit: Types::Commit
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class GetDifferencesInput
|
824
|
+
attr_accessor repository_name: ::String
|
825
|
+
attr_accessor before_commit_specifier: ::String
|
826
|
+
attr_accessor after_commit_specifier: ::String
|
827
|
+
attr_accessor before_path: ::String
|
828
|
+
attr_accessor after_path: ::String
|
829
|
+
attr_accessor max_results: ::Integer
|
830
|
+
attr_accessor next_token: ::String
|
831
|
+
SENSITIVE: []
|
832
|
+
end
|
833
|
+
|
834
|
+
class GetDifferencesOutput
|
835
|
+
attr_accessor differences: ::Array[Types::Difference]
|
836
|
+
attr_accessor next_token: ::String
|
837
|
+
SENSITIVE: []
|
838
|
+
end
|
839
|
+
|
840
|
+
class GetFileInput
|
841
|
+
attr_accessor repository_name: ::String
|
842
|
+
attr_accessor commit_specifier: ::String
|
843
|
+
attr_accessor file_path: ::String
|
844
|
+
SENSITIVE: []
|
845
|
+
end
|
846
|
+
|
847
|
+
class GetFileOutput
|
848
|
+
attr_accessor commit_id: ::String
|
849
|
+
attr_accessor blob_id: ::String
|
850
|
+
attr_accessor file_path: ::String
|
851
|
+
attr_accessor file_mode: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
852
|
+
attr_accessor file_size: ::Integer
|
853
|
+
attr_accessor file_content: ::String
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class GetFolderInput
|
858
|
+
attr_accessor repository_name: ::String
|
859
|
+
attr_accessor commit_specifier: ::String
|
860
|
+
attr_accessor folder_path: ::String
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class GetFolderOutput
|
865
|
+
attr_accessor commit_id: ::String
|
866
|
+
attr_accessor folder_path: ::String
|
867
|
+
attr_accessor tree_id: ::String
|
868
|
+
attr_accessor sub_folders: ::Array[Types::Folder]
|
869
|
+
attr_accessor files: ::Array[Types::File]
|
870
|
+
attr_accessor symbolic_links: ::Array[Types::SymbolicLink]
|
871
|
+
attr_accessor sub_modules: ::Array[Types::SubModule]
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class GetMergeCommitInput
|
876
|
+
attr_accessor repository_name: ::String
|
877
|
+
attr_accessor source_commit_specifier: ::String
|
878
|
+
attr_accessor destination_commit_specifier: ::String
|
879
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
880
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class GetMergeCommitOutput
|
885
|
+
attr_accessor source_commit_id: ::String
|
886
|
+
attr_accessor destination_commit_id: ::String
|
887
|
+
attr_accessor base_commit_id: ::String
|
888
|
+
attr_accessor merged_commit_id: ::String
|
889
|
+
SENSITIVE: []
|
890
|
+
end
|
891
|
+
|
892
|
+
class GetMergeConflictsInput
|
893
|
+
attr_accessor repository_name: ::String
|
894
|
+
attr_accessor destination_commit_specifier: ::String
|
895
|
+
attr_accessor source_commit_specifier: ::String
|
896
|
+
attr_accessor merge_option: ("FAST_FORWARD_MERGE" | "SQUASH_MERGE" | "THREE_WAY_MERGE")
|
897
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
898
|
+
attr_accessor max_conflict_files: ::Integer
|
899
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
900
|
+
attr_accessor next_token: ::String
|
901
|
+
SENSITIVE: []
|
902
|
+
end
|
903
|
+
|
904
|
+
class GetMergeConflictsOutput
|
905
|
+
attr_accessor mergeable: bool
|
906
|
+
attr_accessor destination_commit_id: ::String
|
907
|
+
attr_accessor source_commit_id: ::String
|
908
|
+
attr_accessor base_commit_id: ::String
|
909
|
+
attr_accessor conflict_metadata_list: ::Array[Types::ConflictMetadata]
|
910
|
+
attr_accessor next_token: ::String
|
911
|
+
SENSITIVE: []
|
912
|
+
end
|
913
|
+
|
914
|
+
class GetMergeOptionsInput
|
915
|
+
attr_accessor repository_name: ::String
|
916
|
+
attr_accessor source_commit_specifier: ::String
|
917
|
+
attr_accessor destination_commit_specifier: ::String
|
918
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
919
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class GetMergeOptionsOutput
|
924
|
+
attr_accessor merge_options: ::Array[("FAST_FORWARD_MERGE" | "SQUASH_MERGE" | "THREE_WAY_MERGE")]
|
925
|
+
attr_accessor source_commit_id: ::String
|
926
|
+
attr_accessor destination_commit_id: ::String
|
927
|
+
attr_accessor base_commit_id: ::String
|
928
|
+
SENSITIVE: []
|
929
|
+
end
|
930
|
+
|
931
|
+
class GetPullRequestApprovalStatesInput
|
932
|
+
attr_accessor pull_request_id: ::String
|
933
|
+
attr_accessor revision_id: ::String
|
934
|
+
SENSITIVE: []
|
935
|
+
end
|
936
|
+
|
937
|
+
class GetPullRequestApprovalStatesOutput
|
938
|
+
attr_accessor approvals: ::Array[Types::Approval]
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class GetPullRequestInput
|
943
|
+
attr_accessor pull_request_id: ::String
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class GetPullRequestOutput
|
948
|
+
attr_accessor pull_request: Types::PullRequest
|
949
|
+
SENSITIVE: []
|
950
|
+
end
|
951
|
+
|
952
|
+
class GetPullRequestOverrideStateInput
|
953
|
+
attr_accessor pull_request_id: ::String
|
954
|
+
attr_accessor revision_id: ::String
|
955
|
+
SENSITIVE: []
|
956
|
+
end
|
957
|
+
|
958
|
+
class GetPullRequestOverrideStateOutput
|
959
|
+
attr_accessor overridden: bool
|
960
|
+
attr_accessor overrider: ::String
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class GetRepositoryInput
|
965
|
+
attr_accessor repository_name: ::String
|
966
|
+
SENSITIVE: []
|
967
|
+
end
|
968
|
+
|
969
|
+
class GetRepositoryOutput
|
970
|
+
attr_accessor repository_metadata: Types::RepositoryMetadata
|
971
|
+
SENSITIVE: []
|
972
|
+
end
|
973
|
+
|
974
|
+
class GetRepositoryTriggersInput
|
975
|
+
attr_accessor repository_name: ::String
|
976
|
+
SENSITIVE: []
|
977
|
+
end
|
978
|
+
|
979
|
+
class GetRepositoryTriggersOutput
|
980
|
+
attr_accessor configuration_id: ::String
|
981
|
+
attr_accessor triggers: ::Array[Types::RepositoryTrigger]
|
982
|
+
SENSITIVE: []
|
983
|
+
end
|
984
|
+
|
985
|
+
class IdempotencyParameterMismatchException < Aws::EmptyStructure
|
986
|
+
end
|
987
|
+
|
988
|
+
class InvalidActorArnException < Aws::EmptyStructure
|
989
|
+
end
|
990
|
+
|
991
|
+
class InvalidApprovalRuleContentException < Aws::EmptyStructure
|
992
|
+
end
|
993
|
+
|
994
|
+
class InvalidApprovalRuleNameException < Aws::EmptyStructure
|
995
|
+
end
|
996
|
+
|
997
|
+
class InvalidApprovalRuleTemplateContentException < Aws::EmptyStructure
|
998
|
+
end
|
999
|
+
|
1000
|
+
class InvalidApprovalRuleTemplateDescriptionException < Aws::EmptyStructure
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
class InvalidApprovalRuleTemplateNameException < Aws::EmptyStructure
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
class InvalidApprovalStateException < Aws::EmptyStructure
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class InvalidAuthorArnException < Aws::EmptyStructure
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
class InvalidBlobIdException < Aws::EmptyStructure
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class InvalidBranchNameException < Aws::EmptyStructure
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class InvalidClientRequestTokenException < Aws::EmptyStructure
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class InvalidCommentIdException < Aws::EmptyStructure
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
class InvalidCommitException < Aws::EmptyStructure
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class InvalidCommitIdException < Aws::EmptyStructure
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
class InvalidConflictDetailLevelException < Aws::EmptyStructure
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class InvalidConflictResolutionException < Aws::EmptyStructure
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
class InvalidConflictResolutionStrategyException < Aws::EmptyStructure
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class InvalidContinuationTokenException < Aws::EmptyStructure
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
class InvalidDeletionParameterException < Aws::EmptyStructure
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class InvalidDescriptionException < Aws::EmptyStructure
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
class InvalidDestinationCommitSpecifierException < Aws::EmptyStructure
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class InvalidEmailException < Aws::EmptyStructure
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class InvalidFileLocationException < Aws::EmptyStructure
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
class InvalidFileModeException < Aws::EmptyStructure
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class InvalidFilePositionException < Aws::EmptyStructure
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
class InvalidMaxConflictFilesException < Aws::EmptyStructure
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class InvalidMaxMergeHunksException < Aws::EmptyStructure
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
class InvalidMaxResultsException < Aws::EmptyStructure
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class InvalidMergeOptionException < Aws::EmptyStructure
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class InvalidOrderException < Aws::EmptyStructure
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class InvalidOverrideStatusException < Aws::EmptyStructure
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class InvalidParentCommitIdException < Aws::EmptyStructure
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
class InvalidPathException < Aws::EmptyStructure
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class InvalidPullRequestEventTypeException < Aws::EmptyStructure
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class InvalidPullRequestIdException < Aws::EmptyStructure
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
class InvalidPullRequestStatusException < Aws::EmptyStructure
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class InvalidPullRequestStatusUpdateException < Aws::EmptyStructure
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
class InvalidReactionUserArnException < Aws::EmptyStructure
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class InvalidReactionValueException < Aws::EmptyStructure
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
class InvalidReferenceNameException < Aws::EmptyStructure
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class InvalidRelativeFileVersionEnumException < Aws::EmptyStructure
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
class InvalidReplacementContentException < Aws::EmptyStructure
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class InvalidReplacementTypeException < Aws::EmptyStructure
|
1115
|
+
end
|
1116
|
+
|
1117
|
+
class InvalidRepositoryDescriptionException < Aws::EmptyStructure
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class InvalidRepositoryNameException < Aws::EmptyStructure
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
class InvalidRepositoryTriggerBranchNameException < Aws::EmptyStructure
|
1124
|
+
end
|
1125
|
+
|
1126
|
+
class InvalidRepositoryTriggerCustomDataException < Aws::EmptyStructure
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
class InvalidRepositoryTriggerDestinationArnException < Aws::EmptyStructure
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
class InvalidRepositoryTriggerEventsException < Aws::EmptyStructure
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
class InvalidRepositoryTriggerNameException < Aws::EmptyStructure
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
class InvalidRepositoryTriggerRegionException < Aws::EmptyStructure
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class InvalidResourceArnException < Aws::EmptyStructure
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
class InvalidRevisionIdException < Aws::EmptyStructure
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class InvalidRuleContentSha256Exception < Aws::EmptyStructure
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class InvalidSortByException < Aws::EmptyStructure
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
class InvalidSourceCommitSpecifierException < Aws::EmptyStructure
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class InvalidSystemTagUsageException < Aws::EmptyStructure
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
class InvalidTagKeysListException < Aws::EmptyStructure
|
1160
|
+
end
|
1161
|
+
|
1162
|
+
class InvalidTagsMapException < Aws::EmptyStructure
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
class InvalidTargetBranchException < Aws::EmptyStructure
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class InvalidTargetException < Aws::EmptyStructure
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class InvalidTargetsException < Aws::EmptyStructure
|
1172
|
+
end
|
1173
|
+
|
1174
|
+
class InvalidTitleException < Aws::EmptyStructure
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class IsBinaryFile
|
1178
|
+
attr_accessor source: bool
|
1179
|
+
attr_accessor destination: bool
|
1180
|
+
attr_accessor base: bool
|
1181
|
+
SENSITIVE: []
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
class ListApprovalRuleTemplatesInput
|
1185
|
+
attr_accessor next_token: ::String
|
1186
|
+
attr_accessor max_results: ::Integer
|
1187
|
+
SENSITIVE: []
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
class ListApprovalRuleTemplatesOutput
|
1191
|
+
attr_accessor approval_rule_template_names: ::Array[::String]
|
1192
|
+
attr_accessor next_token: ::String
|
1193
|
+
SENSITIVE: []
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
class ListAssociatedApprovalRuleTemplatesForRepositoryInput
|
1197
|
+
attr_accessor repository_name: ::String
|
1198
|
+
attr_accessor next_token: ::String
|
1199
|
+
attr_accessor max_results: ::Integer
|
1200
|
+
SENSITIVE: []
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
class ListAssociatedApprovalRuleTemplatesForRepositoryOutput
|
1204
|
+
attr_accessor approval_rule_template_names: ::Array[::String]
|
1205
|
+
attr_accessor next_token: ::String
|
1206
|
+
SENSITIVE: []
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
class ListBranchesInput
|
1210
|
+
attr_accessor repository_name: ::String
|
1211
|
+
attr_accessor next_token: ::String
|
1212
|
+
SENSITIVE: []
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class ListBranchesOutput
|
1216
|
+
attr_accessor branches: ::Array[::String]
|
1217
|
+
attr_accessor next_token: ::String
|
1218
|
+
SENSITIVE: []
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
class ListFileCommitHistoryRequest
|
1222
|
+
attr_accessor repository_name: ::String
|
1223
|
+
attr_accessor commit_specifier: ::String
|
1224
|
+
attr_accessor file_path: ::String
|
1225
|
+
attr_accessor max_results: ::Integer
|
1226
|
+
attr_accessor next_token: ::String
|
1227
|
+
SENSITIVE: []
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
class ListFileCommitHistoryResponse
|
1231
|
+
attr_accessor revision_dag: ::Array[Types::FileVersion]
|
1232
|
+
attr_accessor next_token: ::String
|
1233
|
+
SENSITIVE: []
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
class ListPullRequestsInput
|
1237
|
+
attr_accessor repository_name: ::String
|
1238
|
+
attr_accessor author_arn: ::String
|
1239
|
+
attr_accessor pull_request_status: ("OPEN" | "CLOSED")
|
1240
|
+
attr_accessor next_token: ::String
|
1241
|
+
attr_accessor max_results: ::Integer
|
1242
|
+
SENSITIVE: []
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
class ListPullRequestsOutput
|
1246
|
+
attr_accessor pull_request_ids: ::Array[::String]
|
1247
|
+
attr_accessor next_token: ::String
|
1248
|
+
SENSITIVE: []
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
class ListRepositoriesForApprovalRuleTemplateInput
|
1252
|
+
attr_accessor approval_rule_template_name: ::String
|
1253
|
+
attr_accessor next_token: ::String
|
1254
|
+
attr_accessor max_results: ::Integer
|
1255
|
+
SENSITIVE: []
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class ListRepositoriesForApprovalRuleTemplateOutput
|
1259
|
+
attr_accessor repository_names: ::Array[::String]
|
1260
|
+
attr_accessor next_token: ::String
|
1261
|
+
SENSITIVE: []
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
class ListRepositoriesInput
|
1265
|
+
attr_accessor next_token: ::String
|
1266
|
+
attr_accessor sort_by: ("repositoryName" | "lastModifiedDate")
|
1267
|
+
attr_accessor order: ("ascending" | "descending")
|
1268
|
+
SENSITIVE: []
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
class ListRepositoriesOutput
|
1272
|
+
attr_accessor repositories: ::Array[Types::RepositoryNameIdPair]
|
1273
|
+
attr_accessor next_token: ::String
|
1274
|
+
SENSITIVE: []
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
class ListTagsForResourceInput
|
1278
|
+
attr_accessor resource_arn: ::String
|
1279
|
+
attr_accessor next_token: ::String
|
1280
|
+
SENSITIVE: []
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
class ListTagsForResourceOutput
|
1284
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1285
|
+
attr_accessor next_token: ::String
|
1286
|
+
SENSITIVE: []
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
class Location
|
1290
|
+
attr_accessor file_path: ::String
|
1291
|
+
attr_accessor file_position: ::Integer
|
1292
|
+
attr_accessor relative_file_version: ("BEFORE" | "AFTER")
|
1293
|
+
SENSITIVE: []
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
class ManualMergeRequiredException < Aws::EmptyStructure
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
class MaximumBranchesExceededException < Aws::EmptyStructure
|
1300
|
+
end
|
1301
|
+
|
1302
|
+
class MaximumConflictResolutionEntriesExceededException < Aws::EmptyStructure
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
class MaximumFileContentToLoadExceededException < Aws::EmptyStructure
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class MaximumFileEntriesExceededException < Aws::EmptyStructure
|
1309
|
+
end
|
1310
|
+
|
1311
|
+
class MaximumItemsToCompareExceededException < Aws::EmptyStructure
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
class MaximumNumberOfApprovalsExceededException < Aws::EmptyStructure
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
class MaximumOpenPullRequestsExceededException < Aws::EmptyStructure
|
1318
|
+
end
|
1319
|
+
|
1320
|
+
class MaximumRepositoryNamesExceededException < Aws::EmptyStructure
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class MaximumRepositoryTriggersExceededException < Aws::EmptyStructure
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
class MaximumRuleTemplatesAssociatedWithRepositoryException < Aws::EmptyStructure
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class MergeBranchesByFastForwardInput
|
1330
|
+
attr_accessor repository_name: ::String
|
1331
|
+
attr_accessor source_commit_specifier: ::String
|
1332
|
+
attr_accessor destination_commit_specifier: ::String
|
1333
|
+
attr_accessor target_branch: ::String
|
1334
|
+
SENSITIVE: []
|
1335
|
+
end
|
1336
|
+
|
1337
|
+
class MergeBranchesByFastForwardOutput
|
1338
|
+
attr_accessor commit_id: ::String
|
1339
|
+
attr_accessor tree_id: ::String
|
1340
|
+
SENSITIVE: []
|
1341
|
+
end
|
1342
|
+
|
1343
|
+
class MergeBranchesBySquashInput
|
1344
|
+
attr_accessor repository_name: ::String
|
1345
|
+
attr_accessor source_commit_specifier: ::String
|
1346
|
+
attr_accessor destination_commit_specifier: ::String
|
1347
|
+
attr_accessor target_branch: ::String
|
1348
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
1349
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
1350
|
+
attr_accessor author_name: ::String
|
1351
|
+
attr_accessor email: ::String
|
1352
|
+
attr_accessor commit_message: ::String
|
1353
|
+
attr_accessor keep_empty_folders: bool
|
1354
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
1355
|
+
SENSITIVE: []
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
class MergeBranchesBySquashOutput
|
1359
|
+
attr_accessor commit_id: ::String
|
1360
|
+
attr_accessor tree_id: ::String
|
1361
|
+
SENSITIVE: []
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
class MergeBranchesByThreeWayInput
|
1365
|
+
attr_accessor repository_name: ::String
|
1366
|
+
attr_accessor source_commit_specifier: ::String
|
1367
|
+
attr_accessor destination_commit_specifier: ::String
|
1368
|
+
attr_accessor target_branch: ::String
|
1369
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
1370
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
1371
|
+
attr_accessor author_name: ::String
|
1372
|
+
attr_accessor email: ::String
|
1373
|
+
attr_accessor commit_message: ::String
|
1374
|
+
attr_accessor keep_empty_folders: bool
|
1375
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
1376
|
+
SENSITIVE: []
|
1377
|
+
end
|
1378
|
+
|
1379
|
+
class MergeBranchesByThreeWayOutput
|
1380
|
+
attr_accessor commit_id: ::String
|
1381
|
+
attr_accessor tree_id: ::String
|
1382
|
+
SENSITIVE: []
|
1383
|
+
end
|
1384
|
+
|
1385
|
+
class MergeHunk
|
1386
|
+
attr_accessor is_conflict: bool
|
1387
|
+
attr_accessor source: Types::MergeHunkDetail
|
1388
|
+
attr_accessor destination: Types::MergeHunkDetail
|
1389
|
+
attr_accessor base: Types::MergeHunkDetail
|
1390
|
+
SENSITIVE: []
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
class MergeHunkDetail
|
1394
|
+
attr_accessor start_line: ::Integer
|
1395
|
+
attr_accessor end_line: ::Integer
|
1396
|
+
attr_accessor hunk_content: ::String
|
1397
|
+
SENSITIVE: []
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
class MergeMetadata
|
1401
|
+
attr_accessor is_merged: bool
|
1402
|
+
attr_accessor merged_by: ::String
|
1403
|
+
attr_accessor merge_commit_id: ::String
|
1404
|
+
attr_accessor merge_option: ("FAST_FORWARD_MERGE" | "SQUASH_MERGE" | "THREE_WAY_MERGE")
|
1405
|
+
SENSITIVE: []
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
class MergeOperations
|
1409
|
+
attr_accessor source: ("A" | "M" | "D")
|
1410
|
+
attr_accessor destination: ("A" | "M" | "D")
|
1411
|
+
SENSITIVE: []
|
1412
|
+
end
|
1413
|
+
|
1414
|
+
class MergeOptionRequiredException < Aws::EmptyStructure
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
class MergePullRequestByFastForwardInput
|
1418
|
+
attr_accessor pull_request_id: ::String
|
1419
|
+
attr_accessor repository_name: ::String
|
1420
|
+
attr_accessor source_commit_id: ::String
|
1421
|
+
SENSITIVE: []
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
class MergePullRequestByFastForwardOutput
|
1425
|
+
attr_accessor pull_request: Types::PullRequest
|
1426
|
+
SENSITIVE: []
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
class MergePullRequestBySquashInput
|
1430
|
+
attr_accessor pull_request_id: ::String
|
1431
|
+
attr_accessor repository_name: ::String
|
1432
|
+
attr_accessor source_commit_id: ::String
|
1433
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
1434
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
1435
|
+
attr_accessor commit_message: ::String
|
1436
|
+
attr_accessor author_name: ::String
|
1437
|
+
attr_accessor email: ::String
|
1438
|
+
attr_accessor keep_empty_folders: bool
|
1439
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
1440
|
+
SENSITIVE: []
|
1441
|
+
end
|
1442
|
+
|
1443
|
+
class MergePullRequestBySquashOutput
|
1444
|
+
attr_accessor pull_request: Types::PullRequest
|
1445
|
+
SENSITIVE: []
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
class MergePullRequestByThreeWayInput
|
1449
|
+
attr_accessor pull_request_id: ::String
|
1450
|
+
attr_accessor repository_name: ::String
|
1451
|
+
attr_accessor source_commit_id: ::String
|
1452
|
+
attr_accessor conflict_detail_level: ("FILE_LEVEL" | "LINE_LEVEL")
|
1453
|
+
attr_accessor conflict_resolution_strategy: ("NONE" | "ACCEPT_SOURCE" | "ACCEPT_DESTINATION" | "AUTOMERGE")
|
1454
|
+
attr_accessor commit_message: ::String
|
1455
|
+
attr_accessor author_name: ::String
|
1456
|
+
attr_accessor email: ::String
|
1457
|
+
attr_accessor keep_empty_folders: bool
|
1458
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
1459
|
+
SENSITIVE: []
|
1460
|
+
end
|
1461
|
+
|
1462
|
+
class MergePullRequestByThreeWayOutput
|
1463
|
+
attr_accessor pull_request: Types::PullRequest
|
1464
|
+
SENSITIVE: []
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
class MultipleConflictResolutionEntriesException < Aws::EmptyStructure
|
1468
|
+
end
|
1469
|
+
|
1470
|
+
class MultipleRepositoriesInPullRequestException < Aws::EmptyStructure
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
class NameLengthExceededException < Aws::EmptyStructure
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
class NoChangeException < Aws::EmptyStructure
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
class NumberOfRuleTemplatesExceededException < Aws::EmptyStructure
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
class NumberOfRulesExceededException < Aws::EmptyStructure
|
1483
|
+
end
|
1484
|
+
|
1485
|
+
class ObjectTypes
|
1486
|
+
attr_accessor source: ("FILE" | "DIRECTORY" | "GIT_LINK" | "SYMBOLIC_LINK")
|
1487
|
+
attr_accessor destination: ("FILE" | "DIRECTORY" | "GIT_LINK" | "SYMBOLIC_LINK")
|
1488
|
+
attr_accessor base: ("FILE" | "DIRECTORY" | "GIT_LINK" | "SYMBOLIC_LINK")
|
1489
|
+
SENSITIVE: []
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
class OriginApprovalRuleTemplate
|
1493
|
+
attr_accessor approval_rule_template_id: ::String
|
1494
|
+
attr_accessor approval_rule_template_name: ::String
|
1495
|
+
SENSITIVE: []
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
class OverrideAlreadySetException < Aws::EmptyStructure
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
class OverridePullRequestApprovalRulesInput
|
1502
|
+
attr_accessor pull_request_id: ::String
|
1503
|
+
attr_accessor revision_id: ::String
|
1504
|
+
attr_accessor override_status: ("OVERRIDE" | "REVOKE")
|
1505
|
+
SENSITIVE: []
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
class OverrideStatusRequiredException < Aws::EmptyStructure
|
1509
|
+
end
|
1510
|
+
|
1511
|
+
class ParentCommitDoesNotExistException < Aws::EmptyStructure
|
1512
|
+
end
|
1513
|
+
|
1514
|
+
class ParentCommitIdOutdatedException < Aws::EmptyStructure
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
class ParentCommitIdRequiredException < Aws::EmptyStructure
|
1518
|
+
end
|
1519
|
+
|
1520
|
+
class PathDoesNotExistException < Aws::EmptyStructure
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
class PathRequiredException < Aws::EmptyStructure
|
1524
|
+
end
|
1525
|
+
|
1526
|
+
class PostCommentForComparedCommitInput
|
1527
|
+
attr_accessor repository_name: ::String
|
1528
|
+
attr_accessor before_commit_id: ::String
|
1529
|
+
attr_accessor after_commit_id: ::String
|
1530
|
+
attr_accessor location: Types::Location
|
1531
|
+
attr_accessor content: ::String
|
1532
|
+
attr_accessor client_request_token: ::String
|
1533
|
+
SENSITIVE: []
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
class PostCommentForComparedCommitOutput
|
1537
|
+
attr_accessor repository_name: ::String
|
1538
|
+
attr_accessor before_commit_id: ::String
|
1539
|
+
attr_accessor after_commit_id: ::String
|
1540
|
+
attr_accessor before_blob_id: ::String
|
1541
|
+
attr_accessor after_blob_id: ::String
|
1542
|
+
attr_accessor location: Types::Location
|
1543
|
+
attr_accessor comment: Types::Comment
|
1544
|
+
SENSITIVE: []
|
1545
|
+
end
|
1546
|
+
|
1547
|
+
class PostCommentForPullRequestInput
|
1548
|
+
attr_accessor pull_request_id: ::String
|
1549
|
+
attr_accessor repository_name: ::String
|
1550
|
+
attr_accessor before_commit_id: ::String
|
1551
|
+
attr_accessor after_commit_id: ::String
|
1552
|
+
attr_accessor location: Types::Location
|
1553
|
+
attr_accessor content: ::String
|
1554
|
+
attr_accessor client_request_token: ::String
|
1555
|
+
SENSITIVE: []
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
class PostCommentForPullRequestOutput
|
1559
|
+
attr_accessor repository_name: ::String
|
1560
|
+
attr_accessor pull_request_id: ::String
|
1561
|
+
attr_accessor before_commit_id: ::String
|
1562
|
+
attr_accessor after_commit_id: ::String
|
1563
|
+
attr_accessor before_blob_id: ::String
|
1564
|
+
attr_accessor after_blob_id: ::String
|
1565
|
+
attr_accessor location: Types::Location
|
1566
|
+
attr_accessor comment: Types::Comment
|
1567
|
+
SENSITIVE: []
|
1568
|
+
end
|
1569
|
+
|
1570
|
+
class PostCommentReplyInput
|
1571
|
+
attr_accessor in_reply_to: ::String
|
1572
|
+
attr_accessor client_request_token: ::String
|
1573
|
+
attr_accessor content: ::String
|
1574
|
+
SENSITIVE: []
|
1575
|
+
end
|
1576
|
+
|
1577
|
+
class PostCommentReplyOutput
|
1578
|
+
attr_accessor comment: Types::Comment
|
1579
|
+
SENSITIVE: []
|
1580
|
+
end
|
1581
|
+
|
1582
|
+
class PullRequest
|
1583
|
+
attr_accessor pull_request_id: ::String
|
1584
|
+
attr_accessor title: ::String
|
1585
|
+
attr_accessor description: ::String
|
1586
|
+
attr_accessor last_activity_date: ::Time
|
1587
|
+
attr_accessor creation_date: ::Time
|
1588
|
+
attr_accessor pull_request_status: ("OPEN" | "CLOSED")
|
1589
|
+
attr_accessor author_arn: ::String
|
1590
|
+
attr_accessor pull_request_targets: ::Array[Types::PullRequestTarget]
|
1591
|
+
attr_accessor client_request_token: ::String
|
1592
|
+
attr_accessor revision_id: ::String
|
1593
|
+
attr_accessor approval_rules: ::Array[Types::ApprovalRule]
|
1594
|
+
SENSITIVE: []
|
1595
|
+
end
|
1596
|
+
|
1597
|
+
class PullRequestAlreadyClosedException < Aws::EmptyStructure
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
class PullRequestApprovalRulesNotSatisfiedException < Aws::EmptyStructure
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
class PullRequestCannotBeApprovedByAuthorException < Aws::EmptyStructure
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
class PullRequestCreatedEventMetadata
|
1607
|
+
attr_accessor repository_name: ::String
|
1608
|
+
attr_accessor source_commit_id: ::String
|
1609
|
+
attr_accessor destination_commit_id: ::String
|
1610
|
+
attr_accessor merge_base: ::String
|
1611
|
+
SENSITIVE: []
|
1612
|
+
end
|
1613
|
+
|
1614
|
+
class PullRequestDoesNotExistException < Aws::EmptyStructure
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
class PullRequestEvent
|
1618
|
+
attr_accessor pull_request_id: ::String
|
1619
|
+
attr_accessor event_date: ::Time
|
1620
|
+
attr_accessor pull_request_event_type: ("PULL_REQUEST_CREATED" | "PULL_REQUEST_STATUS_CHANGED" | "PULL_REQUEST_SOURCE_REFERENCE_UPDATED" | "PULL_REQUEST_MERGE_STATE_CHANGED" | "PULL_REQUEST_APPROVAL_RULE_CREATED" | "PULL_REQUEST_APPROVAL_RULE_UPDATED" | "PULL_REQUEST_APPROVAL_RULE_DELETED" | "PULL_REQUEST_APPROVAL_RULE_OVERRIDDEN" | "PULL_REQUEST_APPROVAL_STATE_CHANGED")
|
1621
|
+
attr_accessor actor_arn: ::String
|
1622
|
+
attr_accessor pull_request_created_event_metadata: Types::PullRequestCreatedEventMetadata
|
1623
|
+
attr_accessor pull_request_status_changed_event_metadata: Types::PullRequestStatusChangedEventMetadata
|
1624
|
+
attr_accessor pull_request_source_reference_updated_event_metadata: Types::PullRequestSourceReferenceUpdatedEventMetadata
|
1625
|
+
attr_accessor pull_request_merged_state_changed_event_metadata: Types::PullRequestMergedStateChangedEventMetadata
|
1626
|
+
attr_accessor approval_rule_event_metadata: Types::ApprovalRuleEventMetadata
|
1627
|
+
attr_accessor approval_state_changed_event_metadata: Types::ApprovalStateChangedEventMetadata
|
1628
|
+
attr_accessor approval_rule_overridden_event_metadata: Types::ApprovalRuleOverriddenEventMetadata
|
1629
|
+
SENSITIVE: []
|
1630
|
+
end
|
1631
|
+
|
1632
|
+
class PullRequestIdRequiredException < Aws::EmptyStructure
|
1633
|
+
end
|
1634
|
+
|
1635
|
+
class PullRequestMergedStateChangedEventMetadata
|
1636
|
+
attr_accessor repository_name: ::String
|
1637
|
+
attr_accessor destination_reference: ::String
|
1638
|
+
attr_accessor merge_metadata: Types::MergeMetadata
|
1639
|
+
SENSITIVE: []
|
1640
|
+
end
|
1641
|
+
|
1642
|
+
class PullRequestSourceReferenceUpdatedEventMetadata
|
1643
|
+
attr_accessor repository_name: ::String
|
1644
|
+
attr_accessor before_commit_id: ::String
|
1645
|
+
attr_accessor after_commit_id: ::String
|
1646
|
+
attr_accessor merge_base: ::String
|
1647
|
+
SENSITIVE: []
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
class PullRequestStatusChangedEventMetadata
|
1651
|
+
attr_accessor pull_request_status: ("OPEN" | "CLOSED")
|
1652
|
+
SENSITIVE: []
|
1653
|
+
end
|
1654
|
+
|
1655
|
+
class PullRequestStatusRequiredException < Aws::EmptyStructure
|
1656
|
+
end
|
1657
|
+
|
1658
|
+
class PullRequestTarget
|
1659
|
+
attr_accessor repository_name: ::String
|
1660
|
+
attr_accessor source_reference: ::String
|
1661
|
+
attr_accessor destination_reference: ::String
|
1662
|
+
attr_accessor destination_commit: ::String
|
1663
|
+
attr_accessor source_commit: ::String
|
1664
|
+
attr_accessor merge_base: ::String
|
1665
|
+
attr_accessor merge_metadata: Types::MergeMetadata
|
1666
|
+
SENSITIVE: []
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
class PutCommentReactionInput
|
1670
|
+
attr_accessor comment_id: ::String
|
1671
|
+
attr_accessor reaction_value: ::String
|
1672
|
+
SENSITIVE: []
|
1673
|
+
end
|
1674
|
+
|
1675
|
+
class PutFileEntry
|
1676
|
+
attr_accessor file_path: ::String
|
1677
|
+
attr_accessor file_mode: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
1678
|
+
attr_accessor file_content: ::String
|
1679
|
+
attr_accessor source_file: Types::SourceFileSpecifier
|
1680
|
+
SENSITIVE: []
|
1681
|
+
end
|
1682
|
+
|
1683
|
+
class PutFileEntryConflictException < Aws::EmptyStructure
|
1684
|
+
end
|
1685
|
+
|
1686
|
+
class PutFileInput
|
1687
|
+
attr_accessor repository_name: ::String
|
1688
|
+
attr_accessor branch_name: ::String
|
1689
|
+
attr_accessor file_content: ::String
|
1690
|
+
attr_accessor file_path: ::String
|
1691
|
+
attr_accessor file_mode: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
1692
|
+
attr_accessor parent_commit_id: ::String
|
1693
|
+
attr_accessor commit_message: ::String
|
1694
|
+
attr_accessor name: ::String
|
1695
|
+
attr_accessor email: ::String
|
1696
|
+
SENSITIVE: []
|
1697
|
+
end
|
1698
|
+
|
1699
|
+
class PutFileOutput
|
1700
|
+
attr_accessor commit_id: ::String
|
1701
|
+
attr_accessor blob_id: ::String
|
1702
|
+
attr_accessor tree_id: ::String
|
1703
|
+
SENSITIVE: []
|
1704
|
+
end
|
1705
|
+
|
1706
|
+
class PutRepositoryTriggersInput
|
1707
|
+
attr_accessor repository_name: ::String
|
1708
|
+
attr_accessor triggers: ::Array[Types::RepositoryTrigger]
|
1709
|
+
SENSITIVE: []
|
1710
|
+
end
|
1711
|
+
|
1712
|
+
class PutRepositoryTriggersOutput
|
1713
|
+
attr_accessor configuration_id: ::String
|
1714
|
+
SENSITIVE: []
|
1715
|
+
end
|
1716
|
+
|
1717
|
+
class ReactionForComment
|
1718
|
+
attr_accessor reaction: Types::ReactionValueFormats
|
1719
|
+
attr_accessor reaction_users: ::Array[::String]
|
1720
|
+
attr_accessor reactions_from_deleted_users_count: ::Integer
|
1721
|
+
SENSITIVE: []
|
1722
|
+
end
|
1723
|
+
|
1724
|
+
class ReactionLimitExceededException < Aws::EmptyStructure
|
1725
|
+
end
|
1726
|
+
|
1727
|
+
class ReactionValueFormats
|
1728
|
+
attr_accessor emoji: ::String
|
1729
|
+
attr_accessor short_code: ::String
|
1730
|
+
attr_accessor unicode: ::String
|
1731
|
+
SENSITIVE: []
|
1732
|
+
end
|
1733
|
+
|
1734
|
+
class ReactionValueRequiredException < Aws::EmptyStructure
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
class ReferenceDoesNotExistException < Aws::EmptyStructure
|
1738
|
+
end
|
1739
|
+
|
1740
|
+
class ReferenceNameRequiredException < Aws::EmptyStructure
|
1741
|
+
end
|
1742
|
+
|
1743
|
+
class ReferenceTypeNotSupportedException < Aws::EmptyStructure
|
1744
|
+
end
|
1745
|
+
|
1746
|
+
class ReplaceContentEntry
|
1747
|
+
attr_accessor file_path: ::String
|
1748
|
+
attr_accessor replacement_type: ("KEEP_BASE" | "KEEP_SOURCE" | "KEEP_DESTINATION" | "USE_NEW_CONTENT")
|
1749
|
+
attr_accessor content: ::String
|
1750
|
+
attr_accessor file_mode: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
1751
|
+
SENSITIVE: []
|
1752
|
+
end
|
1753
|
+
|
1754
|
+
class ReplacementContentRequiredException < Aws::EmptyStructure
|
1755
|
+
end
|
1756
|
+
|
1757
|
+
class ReplacementTypeRequiredException < Aws::EmptyStructure
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
class RepositoryDoesNotExistException < Aws::EmptyStructure
|
1761
|
+
end
|
1762
|
+
|
1763
|
+
class RepositoryLimitExceededException < Aws::EmptyStructure
|
1764
|
+
end
|
1765
|
+
|
1766
|
+
class RepositoryMetadata
|
1767
|
+
attr_accessor account_id: ::String
|
1768
|
+
attr_accessor repository_id: ::String
|
1769
|
+
attr_accessor repository_name: ::String
|
1770
|
+
attr_accessor repository_description: ::String
|
1771
|
+
attr_accessor default_branch: ::String
|
1772
|
+
attr_accessor last_modified_date: ::Time
|
1773
|
+
attr_accessor creation_date: ::Time
|
1774
|
+
attr_accessor clone_url_http: ::String
|
1775
|
+
attr_accessor clone_url_ssh: ::String
|
1776
|
+
attr_accessor arn: ::String
|
1777
|
+
attr_accessor kms_key_id: ::String
|
1778
|
+
SENSITIVE: []
|
1779
|
+
end
|
1780
|
+
|
1781
|
+
class RepositoryNameExistsException < Aws::EmptyStructure
|
1782
|
+
end
|
1783
|
+
|
1784
|
+
class RepositoryNameIdPair
|
1785
|
+
attr_accessor repository_name: ::String
|
1786
|
+
attr_accessor repository_id: ::String
|
1787
|
+
SENSITIVE: []
|
1788
|
+
end
|
1789
|
+
|
1790
|
+
class RepositoryNameRequiredException < Aws::EmptyStructure
|
1791
|
+
end
|
1792
|
+
|
1793
|
+
class RepositoryNamesRequiredException < Aws::EmptyStructure
|
1794
|
+
end
|
1795
|
+
|
1796
|
+
class RepositoryNotAssociatedWithPullRequestException < Aws::EmptyStructure
|
1797
|
+
end
|
1798
|
+
|
1799
|
+
class RepositoryTrigger
|
1800
|
+
attr_accessor name: ::String
|
1801
|
+
attr_accessor destination_arn: ::String
|
1802
|
+
attr_accessor custom_data: ::String
|
1803
|
+
attr_accessor branches: ::Array[::String]
|
1804
|
+
attr_accessor events: ::Array[("all" | "updateReference" | "createReference" | "deleteReference")]
|
1805
|
+
SENSITIVE: []
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
class RepositoryTriggerBranchNameListRequiredException < Aws::EmptyStructure
|
1809
|
+
end
|
1810
|
+
|
1811
|
+
class RepositoryTriggerDestinationArnRequiredException < Aws::EmptyStructure
|
1812
|
+
end
|
1813
|
+
|
1814
|
+
class RepositoryTriggerEventsListRequiredException < Aws::EmptyStructure
|
1815
|
+
end
|
1816
|
+
|
1817
|
+
class RepositoryTriggerExecutionFailure
|
1818
|
+
attr_accessor trigger: ::String
|
1819
|
+
attr_accessor failure_message: ::String
|
1820
|
+
SENSITIVE: []
|
1821
|
+
end
|
1822
|
+
|
1823
|
+
class RepositoryTriggerNameRequiredException < Aws::EmptyStructure
|
1824
|
+
end
|
1825
|
+
|
1826
|
+
class RepositoryTriggersListRequiredException < Aws::EmptyStructure
|
1827
|
+
end
|
1828
|
+
|
1829
|
+
class ResourceArnRequiredException < Aws::EmptyStructure
|
1830
|
+
end
|
1831
|
+
|
1832
|
+
class RestrictedSourceFileException < Aws::EmptyStructure
|
1833
|
+
end
|
1834
|
+
|
1835
|
+
class RevisionIdRequiredException < Aws::EmptyStructure
|
1836
|
+
end
|
1837
|
+
|
1838
|
+
class RevisionNotCurrentException < Aws::EmptyStructure
|
1839
|
+
end
|
1840
|
+
|
1841
|
+
class SameFileContentException < Aws::EmptyStructure
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
class SamePathRequestException < Aws::EmptyStructure
|
1845
|
+
end
|
1846
|
+
|
1847
|
+
class SetFileModeEntry
|
1848
|
+
attr_accessor file_path: ::String
|
1849
|
+
attr_accessor file_mode: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
1850
|
+
SENSITIVE: []
|
1851
|
+
end
|
1852
|
+
|
1853
|
+
class SourceAndDestinationAreSameException < Aws::EmptyStructure
|
1854
|
+
end
|
1855
|
+
|
1856
|
+
class SourceFileOrContentRequiredException < Aws::EmptyStructure
|
1857
|
+
end
|
1858
|
+
|
1859
|
+
class SourceFileSpecifier
|
1860
|
+
attr_accessor file_path: ::String
|
1861
|
+
attr_accessor is_move: bool
|
1862
|
+
SENSITIVE: []
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
class SubModule
|
1866
|
+
attr_accessor commit_id: ::String
|
1867
|
+
attr_accessor absolute_path: ::String
|
1868
|
+
attr_accessor relative_path: ::String
|
1869
|
+
SENSITIVE: []
|
1870
|
+
end
|
1871
|
+
|
1872
|
+
class SymbolicLink
|
1873
|
+
attr_accessor blob_id: ::String
|
1874
|
+
attr_accessor absolute_path: ::String
|
1875
|
+
attr_accessor relative_path: ::String
|
1876
|
+
attr_accessor file_mode: ("EXECUTABLE" | "NORMAL" | "SYMLINK")
|
1877
|
+
SENSITIVE: []
|
1878
|
+
end
|
1879
|
+
|
1880
|
+
class TagKeysListRequiredException < Aws::EmptyStructure
|
1881
|
+
end
|
1882
|
+
|
1883
|
+
class TagPolicyException < Aws::EmptyStructure
|
1884
|
+
end
|
1885
|
+
|
1886
|
+
class TagResourceInput
|
1887
|
+
attr_accessor resource_arn: ::String
|
1888
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1889
|
+
SENSITIVE: []
|
1890
|
+
end
|
1891
|
+
|
1892
|
+
class TagsMapRequiredException < Aws::EmptyStructure
|
1893
|
+
end
|
1894
|
+
|
1895
|
+
class Target
|
1896
|
+
attr_accessor repository_name: ::String
|
1897
|
+
attr_accessor source_reference: ::String
|
1898
|
+
attr_accessor destination_reference: ::String
|
1899
|
+
SENSITIVE: []
|
1900
|
+
end
|
1901
|
+
|
1902
|
+
class TargetRequiredException < Aws::EmptyStructure
|
1903
|
+
end
|
1904
|
+
|
1905
|
+
class TargetsRequiredException < Aws::EmptyStructure
|
1906
|
+
end
|
1907
|
+
|
1908
|
+
class TestRepositoryTriggersInput
|
1909
|
+
attr_accessor repository_name: ::String
|
1910
|
+
attr_accessor triggers: ::Array[Types::RepositoryTrigger]
|
1911
|
+
SENSITIVE: []
|
1912
|
+
end
|
1913
|
+
|
1914
|
+
class TestRepositoryTriggersOutput
|
1915
|
+
attr_accessor successful_executions: ::Array[::String]
|
1916
|
+
attr_accessor failed_executions: ::Array[Types::RepositoryTriggerExecutionFailure]
|
1917
|
+
SENSITIVE: []
|
1918
|
+
end
|
1919
|
+
|
1920
|
+
class TipOfSourceReferenceIsDifferentException < Aws::EmptyStructure
|
1921
|
+
end
|
1922
|
+
|
1923
|
+
class TipsDivergenceExceededException < Aws::EmptyStructure
|
1924
|
+
end
|
1925
|
+
|
1926
|
+
class TitleRequiredException < Aws::EmptyStructure
|
1927
|
+
end
|
1928
|
+
|
1929
|
+
class TooManyTagsException < Aws::EmptyStructure
|
1930
|
+
end
|
1931
|
+
|
1932
|
+
class UntagResourceInput
|
1933
|
+
attr_accessor resource_arn: ::String
|
1934
|
+
attr_accessor tag_keys: ::Array[::String]
|
1935
|
+
SENSITIVE: []
|
1936
|
+
end
|
1937
|
+
|
1938
|
+
class UpdateApprovalRuleTemplateContentInput
|
1939
|
+
attr_accessor approval_rule_template_name: ::String
|
1940
|
+
attr_accessor new_rule_content: ::String
|
1941
|
+
attr_accessor existing_rule_content_sha_256: ::String
|
1942
|
+
SENSITIVE: []
|
1943
|
+
end
|
1944
|
+
|
1945
|
+
class UpdateApprovalRuleTemplateContentOutput
|
1946
|
+
attr_accessor approval_rule_template: Types::ApprovalRuleTemplate
|
1947
|
+
SENSITIVE: []
|
1948
|
+
end
|
1949
|
+
|
1950
|
+
class UpdateApprovalRuleTemplateDescriptionInput
|
1951
|
+
attr_accessor approval_rule_template_name: ::String
|
1952
|
+
attr_accessor approval_rule_template_description: ::String
|
1953
|
+
SENSITIVE: []
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
class UpdateApprovalRuleTemplateDescriptionOutput
|
1957
|
+
attr_accessor approval_rule_template: Types::ApprovalRuleTemplate
|
1958
|
+
SENSITIVE: []
|
1959
|
+
end
|
1960
|
+
|
1961
|
+
class UpdateApprovalRuleTemplateNameInput
|
1962
|
+
attr_accessor old_approval_rule_template_name: ::String
|
1963
|
+
attr_accessor new_approval_rule_template_name: ::String
|
1964
|
+
SENSITIVE: []
|
1965
|
+
end
|
1966
|
+
|
1967
|
+
class UpdateApprovalRuleTemplateNameOutput
|
1968
|
+
attr_accessor approval_rule_template: Types::ApprovalRuleTemplate
|
1969
|
+
SENSITIVE: []
|
1970
|
+
end
|
1971
|
+
|
1972
|
+
class UpdateCommentInput
|
1973
|
+
attr_accessor comment_id: ::String
|
1974
|
+
attr_accessor content: ::String
|
1975
|
+
SENSITIVE: []
|
1976
|
+
end
|
1977
|
+
|
1978
|
+
class UpdateCommentOutput
|
1979
|
+
attr_accessor comment: Types::Comment
|
1980
|
+
SENSITIVE: []
|
1981
|
+
end
|
1982
|
+
|
1983
|
+
class UpdateDefaultBranchInput
|
1984
|
+
attr_accessor repository_name: ::String
|
1985
|
+
attr_accessor default_branch_name: ::String
|
1986
|
+
SENSITIVE: []
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
class UpdatePullRequestApprovalRuleContentInput
|
1990
|
+
attr_accessor pull_request_id: ::String
|
1991
|
+
attr_accessor approval_rule_name: ::String
|
1992
|
+
attr_accessor existing_rule_content_sha_256: ::String
|
1993
|
+
attr_accessor new_rule_content: ::String
|
1994
|
+
SENSITIVE: []
|
1995
|
+
end
|
1996
|
+
|
1997
|
+
class UpdatePullRequestApprovalRuleContentOutput
|
1998
|
+
attr_accessor approval_rule: Types::ApprovalRule
|
1999
|
+
SENSITIVE: []
|
2000
|
+
end
|
2001
|
+
|
2002
|
+
class UpdatePullRequestApprovalStateInput
|
2003
|
+
attr_accessor pull_request_id: ::String
|
2004
|
+
attr_accessor revision_id: ::String
|
2005
|
+
attr_accessor approval_state: ("APPROVE" | "REVOKE")
|
2006
|
+
SENSITIVE: []
|
2007
|
+
end
|
2008
|
+
|
2009
|
+
class UpdatePullRequestDescriptionInput
|
2010
|
+
attr_accessor pull_request_id: ::String
|
2011
|
+
attr_accessor description: ::String
|
2012
|
+
SENSITIVE: []
|
2013
|
+
end
|
2014
|
+
|
2015
|
+
class UpdatePullRequestDescriptionOutput
|
2016
|
+
attr_accessor pull_request: Types::PullRequest
|
2017
|
+
SENSITIVE: []
|
2018
|
+
end
|
2019
|
+
|
2020
|
+
class UpdatePullRequestStatusInput
|
2021
|
+
attr_accessor pull_request_id: ::String
|
2022
|
+
attr_accessor pull_request_status: ("OPEN" | "CLOSED")
|
2023
|
+
SENSITIVE: []
|
2024
|
+
end
|
2025
|
+
|
2026
|
+
class UpdatePullRequestStatusOutput
|
2027
|
+
attr_accessor pull_request: Types::PullRequest
|
2028
|
+
SENSITIVE: []
|
2029
|
+
end
|
2030
|
+
|
2031
|
+
class UpdatePullRequestTitleInput
|
2032
|
+
attr_accessor pull_request_id: ::String
|
2033
|
+
attr_accessor title: ::String
|
2034
|
+
SENSITIVE: []
|
2035
|
+
end
|
2036
|
+
|
2037
|
+
class UpdatePullRequestTitleOutput
|
2038
|
+
attr_accessor pull_request: Types::PullRequest
|
2039
|
+
SENSITIVE: []
|
2040
|
+
end
|
2041
|
+
|
2042
|
+
class UpdateRepositoryDescriptionInput
|
2043
|
+
attr_accessor repository_name: ::String
|
2044
|
+
attr_accessor repository_description: ::String
|
2045
|
+
SENSITIVE: []
|
2046
|
+
end
|
2047
|
+
|
2048
|
+
class UpdateRepositoryEncryptionKeyInput
|
2049
|
+
attr_accessor repository_name: ::String
|
2050
|
+
attr_accessor kms_key_id: ::String
|
2051
|
+
SENSITIVE: []
|
2052
|
+
end
|
2053
|
+
|
2054
|
+
class UpdateRepositoryEncryptionKeyOutput
|
2055
|
+
attr_accessor repository_id: ::String
|
2056
|
+
attr_accessor kms_key_id: ::String
|
2057
|
+
attr_accessor original_kms_key_id: ::String
|
2058
|
+
SENSITIVE: []
|
2059
|
+
end
|
2060
|
+
|
2061
|
+
class UpdateRepositoryNameInput
|
2062
|
+
attr_accessor old_name: ::String
|
2063
|
+
attr_accessor new_name: ::String
|
2064
|
+
SENSITIVE: []
|
2065
|
+
end
|
2066
|
+
|
2067
|
+
class UserInfo
|
2068
|
+
attr_accessor name: ::String
|
2069
|
+
attr_accessor email: ::String
|
2070
|
+
attr_accessor date: ::String
|
2071
|
+
SENSITIVE: []
|
2072
|
+
end
|
2073
|
+
end
|
2074
|
+
end
|