aws-sdk-codecommit 1.30.0 → 1.31.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 +7 -4
- data/lib/aws-sdk-codecommit/client.rb +61 -10
- data/lib/aws-sdk-codecommit/client_api.rb +362 -0
- data/lib/aws-sdk-codecommit/errors.rb +2013 -0
- data/lib/aws-sdk-codecommit/resource.rb +7 -0
- data/lib/aws-sdk-codecommit/types.rb +1377 -83
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 512785a52d69ca89495389498e350cdd7a25b954
|
|
4
|
+
data.tar.gz: 1e2c6e8c5387a019ef4122a7ff6093bd458c4ad6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 407c73b7d31c68f88e4571ac501dcfd2e1057fb69fbf6d75323cfc54e16bc5ac514c1770dccefaf447cdf3fa69f53417ef7c9d274e8efb090d2b58f14d2a229b
|
|
7
|
+
data.tar.gz: 2b8d28e0dee3d6a884c6c9d0064d1d47ec0b5ac614973690b3fb1713f76d26dc1dbb2ecccd7249af24b664dcebeb3420a484b666abe09f7582e7c3323e3a6b0f
|
data/lib/aws-sdk-codecommit.rb
CHANGED
|
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-codecommit/customizations'
|
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
|
25
25
|
# structure.
|
|
26
26
|
#
|
|
27
|
+
# code_commit = Aws::CodeCommit::Client.new
|
|
28
|
+
# resp = code_commit.associate_approval_rule_template_with_repository(params)
|
|
29
|
+
#
|
|
27
30
|
# See {Client} for more information.
|
|
28
31
|
#
|
|
29
32
|
# # Errors
|
|
30
33
|
#
|
|
31
|
-
# Errors returned from AWS CodeCommit
|
|
32
|
-
# extend {Errors::ServiceError}.
|
|
34
|
+
# Errors returned from AWS CodeCommit are defined in the
|
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
|
33
36
|
#
|
|
34
37
|
# begin
|
|
35
38
|
# # do stuff
|
|
36
39
|
# rescue Aws::CodeCommit::Errors::ServiceError
|
|
37
|
-
# # rescues all
|
|
40
|
+
# # rescues all AWS CodeCommit API errors
|
|
38
41
|
# end
|
|
39
42
|
#
|
|
40
43
|
# See {Errors} for more information.
|
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-codecommit/customizations'
|
|
|
42
45
|
# @service
|
|
43
46
|
module Aws::CodeCommit
|
|
44
47
|
|
|
45
|
-
GEM_VERSION = '1.
|
|
48
|
+
GEM_VERSION = '1.31.0'
|
|
46
49
|
|
|
47
50
|
end
|
|
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
|
30
30
|
Aws::Plugins::GlobalConfiguration.add_identifier(:codecommit)
|
|
31
31
|
|
|
32
32
|
module Aws::CodeCommit
|
|
33
|
+
# An API client for CodeCommit. To construct a client, you need to configure a `:region` and `:credentials`.
|
|
34
|
+
#
|
|
35
|
+
# client = Aws::CodeCommit::Client.new(
|
|
36
|
+
# region: region_name,
|
|
37
|
+
# credentials: credentials,
|
|
38
|
+
# # ...
|
|
39
|
+
# )
|
|
40
|
+
#
|
|
41
|
+
# For details on configuring region and credentials see
|
|
42
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
|
43
|
+
#
|
|
44
|
+
# See {#initialize} for a full list of supported configuration options.
|
|
33
45
|
class Client < Seahorse::Client::Base
|
|
34
46
|
|
|
35
47
|
include Aws::ClientStubs
|
|
@@ -108,6 +120,12 @@ module Aws::CodeCommit
|
|
|
108
120
|
# When set to `true`, a thread polling for endpoints will be running in
|
|
109
121
|
# the background every 60 secs (default). Defaults to `false`.
|
|
110
122
|
#
|
|
123
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
|
124
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
|
125
|
+
# until there is sufficent client side capacity to retry the request.
|
|
126
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
|
127
|
+
# not retry instead of sleeping.
|
|
128
|
+
#
|
|
111
129
|
# @option options [Boolean] :client_side_monitoring (false)
|
|
112
130
|
# When `true`, client-side metrics will be collected for all API requests from
|
|
113
131
|
# this client.
|
|
@@ -132,6 +150,10 @@ module Aws::CodeCommit
|
|
|
132
150
|
# When `true`, an attempt is made to coerce request parameters into
|
|
133
151
|
# the required types.
|
|
134
152
|
#
|
|
153
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
|
154
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
155
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
|
156
|
+
#
|
|
135
157
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
136
158
|
# Set to true to disable SDK automatically adding host prefix
|
|
137
159
|
# to default service endpoint when available.
|
|
@@ -166,15 +188,29 @@ module Aws::CodeCommit
|
|
|
166
188
|
# The Logger instance to send log messages to. If this option
|
|
167
189
|
# is not set, logging will be disabled.
|
|
168
190
|
#
|
|
191
|
+
# @option options [Integer] :max_attempts (3)
|
|
192
|
+
# An integer representing the maximum number attempts that will be made for
|
|
193
|
+
# a single request, including the initial attempt. For example,
|
|
194
|
+
# setting this value to 5 will result in a request being retried up to
|
|
195
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
|
196
|
+
#
|
|
169
197
|
# @option options [String] :profile ("default")
|
|
170
198
|
# Used when loading credentials from the shared credentials file
|
|
171
199
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
172
200
|
#
|
|
201
|
+
# @option options [Proc] :retry_backoff
|
|
202
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
|
203
|
+
# This option is only used in the `legacy` retry mode.
|
|
204
|
+
#
|
|
173
205
|
# @option options [Float] :retry_base_delay (0.3)
|
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
|
206
|
+
# The base delay in seconds used by the default backoff function. This option
|
|
207
|
+
# is only used in the `legacy` retry mode.
|
|
175
208
|
#
|
|
176
209
|
# @option options [Symbol] :retry_jitter (:none)
|
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
|
210
|
+
# A delay randomiser function used by the default backoff function.
|
|
211
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
|
212
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
|
213
|
+
# in the `legacy` retry mode.
|
|
178
214
|
#
|
|
179
215
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
|
180
216
|
#
|
|
@@ -182,11 +218,26 @@ module Aws::CodeCommit
|
|
|
182
218
|
# The maximum number of times to retry failed requests. Only
|
|
183
219
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
|
184
220
|
# are retried. Generally, these are throttling errors, data
|
|
185
|
-
# checksum errors, networking errors, timeout errors
|
|
186
|
-
# errors from expired credentials.
|
|
221
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
|
222
|
+
# endpoint discovery, and errors from expired credentials.
|
|
223
|
+
# This option is only used in the `legacy` retry mode.
|
|
187
224
|
#
|
|
188
225
|
# @option options [Integer] :retry_max_delay (0)
|
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
|
226
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
|
227
|
+
# used by the default backoff function. This option is only used in the
|
|
228
|
+
# `legacy` retry mode.
|
|
229
|
+
#
|
|
230
|
+
# @option options [String] :retry_mode ("legacy")
|
|
231
|
+
# Specifies which retry algorithm to use. Values are:
|
|
232
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
|
233
|
+
# no retry mode is provided.
|
|
234
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
235
|
+
# This includes support for retry quotas, which limit the number of
|
|
236
|
+
# unsuccessful retries a client can make.
|
|
237
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
|
238
|
+
# functionality of `standard` mode along with automatic client side
|
|
239
|
+
# throttling. This is a provisional mode that may change behavior
|
|
240
|
+
# in the future.
|
|
190
241
|
#
|
|
191
242
|
# @option options [String] :secret_access_key
|
|
192
243
|
#
|
|
@@ -219,16 +270,16 @@ module Aws::CodeCommit
|
|
|
219
270
|
# requests through. Formatted like 'http://proxy.com:123'.
|
|
220
271
|
#
|
|
221
272
|
# @option options [Float] :http_open_timeout (15) The number of
|
|
222
|
-
# seconds to wait when opening a HTTP session before
|
|
273
|
+
# seconds to wait when opening a HTTP session before raising a
|
|
223
274
|
# `Timeout::Error`.
|
|
224
275
|
#
|
|
225
276
|
# @option options [Integer] :http_read_timeout (60) The default
|
|
226
277
|
# number of seconds to wait for response data. This value can
|
|
227
278
|
# safely be set
|
|
228
|
-
# per-request on the session
|
|
279
|
+
# per-request on the session yielded by {#session_for}.
|
|
229
280
|
#
|
|
230
281
|
# @option options [Float] :http_idle_timeout (5) The number of
|
|
231
|
-
# seconds a connection is allowed to sit
|
|
282
|
+
# seconds a connection is allowed to sit idle before it is
|
|
232
283
|
# considered stale. Stale connections are closed and removed
|
|
233
284
|
# from the pool before making a request.
|
|
234
285
|
#
|
|
@@ -237,7 +288,7 @@ module Aws::CodeCommit
|
|
|
237
288
|
# request body. This option has no effect unless the request has
|
|
238
289
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
|
239
290
|
# disables this behaviour. This value can safely be set per
|
|
240
|
-
# request on the session
|
|
291
|
+
# request on the session yielded by {#session_for}.
|
|
241
292
|
#
|
|
242
293
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
243
294
|
# HTTP debug output will be sent to the `:logger`.
|
|
@@ -4674,7 +4725,7 @@ module Aws::CodeCommit
|
|
|
4674
4725
|
params: params,
|
|
4675
4726
|
config: config)
|
|
4676
4727
|
context[:gem_name] = 'aws-sdk-codecommit'
|
|
4677
|
-
context[:gem_version] = '1.
|
|
4728
|
+
context[:gem_version] = '1.31.0'
|
|
4678
4729
|
Seahorse::Client::Request.new(handlers, context)
|
|
4679
4730
|
end
|
|
4680
4731
|
|
|
@@ -517,6 +517,8 @@ module Aws::CodeCommit
|
|
|
517
517
|
UserInfo = Shapes::StructureShape.new(name: 'UserInfo')
|
|
518
518
|
blob = Shapes::BlobShape.new(name: 'blob')
|
|
519
519
|
|
|
520
|
+
ActorDoesNotExistException.struct_class = Types::ActorDoesNotExistException
|
|
521
|
+
|
|
520
522
|
Approval.add_member(:user_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "userArn"))
|
|
521
523
|
Approval.add_member(:approval_state, Shapes::ShapeRef.new(shape: ApprovalState, location_name: "approvalState"))
|
|
522
524
|
Approval.struct_class = Types::Approval
|
|
@@ -533,11 +535,19 @@ module Aws::CodeCommit
|
|
|
533
535
|
ApprovalRule.add_member(:origin_approval_rule_template, Shapes::ShapeRef.new(shape: OriginApprovalRuleTemplate, location_name: "originApprovalRuleTemplate"))
|
|
534
536
|
ApprovalRule.struct_class = Types::ApprovalRule
|
|
535
537
|
|
|
538
|
+
ApprovalRuleContentRequiredException.struct_class = Types::ApprovalRuleContentRequiredException
|
|
539
|
+
|
|
540
|
+
ApprovalRuleDoesNotExistException.struct_class = Types::ApprovalRuleDoesNotExistException
|
|
541
|
+
|
|
536
542
|
ApprovalRuleEventMetadata.add_member(:approval_rule_name, Shapes::ShapeRef.new(shape: ApprovalRuleName, location_name: "approvalRuleName"))
|
|
537
543
|
ApprovalRuleEventMetadata.add_member(:approval_rule_id, Shapes::ShapeRef.new(shape: ApprovalRuleId, location_name: "approvalRuleId"))
|
|
538
544
|
ApprovalRuleEventMetadata.add_member(:approval_rule_content, Shapes::ShapeRef.new(shape: ApprovalRuleContent, location_name: "approvalRuleContent"))
|
|
539
545
|
ApprovalRuleEventMetadata.struct_class = Types::ApprovalRuleEventMetadata
|
|
540
546
|
|
|
547
|
+
ApprovalRuleNameAlreadyExistsException.struct_class = Types::ApprovalRuleNameAlreadyExistsException
|
|
548
|
+
|
|
549
|
+
ApprovalRuleNameRequiredException.struct_class = Types::ApprovalRuleNameRequiredException
|
|
550
|
+
|
|
541
551
|
ApprovalRuleOverriddenEventMetadata.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
|
|
542
552
|
ApprovalRuleOverriddenEventMetadata.add_member(:override_status, Shapes::ShapeRef.new(shape: OverrideStatus, location_name: "overrideStatus"))
|
|
543
553
|
ApprovalRuleOverriddenEventMetadata.struct_class = Types::ApprovalRuleOverriddenEventMetadata
|
|
@@ -552,8 +562,18 @@ module Aws::CodeCommit
|
|
|
552
562
|
ApprovalRuleTemplate.add_member(:last_modified_user, Shapes::ShapeRef.new(shape: Arn, location_name: "lastModifiedUser"))
|
|
553
563
|
ApprovalRuleTemplate.struct_class = Types::ApprovalRuleTemplate
|
|
554
564
|
|
|
565
|
+
ApprovalRuleTemplateContentRequiredException.struct_class = Types::ApprovalRuleTemplateContentRequiredException
|
|
566
|
+
|
|
567
|
+
ApprovalRuleTemplateDoesNotExistException.struct_class = Types::ApprovalRuleTemplateDoesNotExistException
|
|
568
|
+
|
|
569
|
+
ApprovalRuleTemplateInUseException.struct_class = Types::ApprovalRuleTemplateInUseException
|
|
570
|
+
|
|
571
|
+
ApprovalRuleTemplateNameAlreadyExistsException.struct_class = Types::ApprovalRuleTemplateNameAlreadyExistsException
|
|
572
|
+
|
|
555
573
|
ApprovalRuleTemplateNameList.member = Shapes::ShapeRef.new(shape: ApprovalRuleTemplateName)
|
|
556
574
|
|
|
575
|
+
ApprovalRuleTemplateNameRequiredException.struct_class = Types::ApprovalRuleTemplateNameRequiredException
|
|
576
|
+
|
|
557
577
|
ApprovalRulesList.member = Shapes::ShapeRef.new(shape: ApprovalRule)
|
|
558
578
|
|
|
559
579
|
ApprovalRulesNotSatisfiedList.member = Shapes::ShapeRef.new(shape: ApprovalRuleName)
|
|
@@ -564,10 +584,14 @@ module Aws::CodeCommit
|
|
|
564
584
|
ApprovalStateChangedEventMetadata.add_member(:approval_status, Shapes::ShapeRef.new(shape: ApprovalState, location_name: "approvalStatus"))
|
|
565
585
|
ApprovalStateChangedEventMetadata.struct_class = Types::ApprovalStateChangedEventMetadata
|
|
566
586
|
|
|
587
|
+
ApprovalStateRequiredException.struct_class = Types::ApprovalStateRequiredException
|
|
588
|
+
|
|
567
589
|
AssociateApprovalRuleTemplateWithRepositoryInput.add_member(:approval_rule_template_name, Shapes::ShapeRef.new(shape: ApprovalRuleTemplateName, required: true, location_name: "approvalRuleTemplateName"))
|
|
568
590
|
AssociateApprovalRuleTemplateWithRepositoryInput.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
|
|
569
591
|
AssociateApprovalRuleTemplateWithRepositoryInput.struct_class = Types::AssociateApprovalRuleTemplateWithRepositoryInput
|
|
570
592
|
|
|
593
|
+
AuthorDoesNotExistException.struct_class = Types::AuthorDoesNotExistException
|
|
594
|
+
|
|
571
595
|
BatchAssociateApprovalRuleTemplateWithRepositoriesError.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
|
|
572
596
|
BatchAssociateApprovalRuleTemplateWithRepositoriesError.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "errorCode"))
|
|
573
597
|
BatchAssociateApprovalRuleTemplateWithRepositoriesError.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "errorMessage"))
|
|
@@ -647,17 +671,37 @@ module Aws::CodeCommit
|
|
|
647
671
|
BatchGetRepositoriesOutput.add_member(:repositories_not_found, Shapes::ShapeRef.new(shape: RepositoryNotFoundList, location_name: "repositoriesNotFound"))
|
|
648
672
|
BatchGetRepositoriesOutput.struct_class = Types::BatchGetRepositoriesOutput
|
|
649
673
|
|
|
674
|
+
BeforeCommitIdAndAfterCommitIdAreSameException.struct_class = Types::BeforeCommitIdAndAfterCommitIdAreSameException
|
|
675
|
+
|
|
676
|
+
BlobIdDoesNotExistException.struct_class = Types::BlobIdDoesNotExistException
|
|
677
|
+
|
|
678
|
+
BlobIdRequiredException.struct_class = Types::BlobIdRequiredException
|
|
679
|
+
|
|
650
680
|
BlobMetadata.add_member(:blob_id, Shapes::ShapeRef.new(shape: ObjectId, location_name: "blobId"))
|
|
651
681
|
BlobMetadata.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "path"))
|
|
652
682
|
BlobMetadata.add_member(:mode, Shapes::ShapeRef.new(shape: Mode, location_name: "mode"))
|
|
653
683
|
BlobMetadata.struct_class = Types::BlobMetadata
|
|
654
684
|
|
|
685
|
+
BranchDoesNotExistException.struct_class = Types::BranchDoesNotExistException
|
|
686
|
+
|
|
655
687
|
BranchInfo.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, location_name: "branchName"))
|
|
656
688
|
BranchInfo.add_member(:commit_id, Shapes::ShapeRef.new(shape: CommitId, location_name: "commitId"))
|
|
657
689
|
BranchInfo.struct_class = Types::BranchInfo
|
|
658
690
|
|
|
691
|
+
BranchNameExistsException.struct_class = Types::BranchNameExistsException
|
|
692
|
+
|
|
693
|
+
BranchNameIsTagNameException.struct_class = Types::BranchNameIsTagNameException
|
|
694
|
+
|
|
659
695
|
BranchNameList.member = Shapes::ShapeRef.new(shape: BranchName)
|
|
660
696
|
|
|
697
|
+
BranchNameRequiredException.struct_class = Types::BranchNameRequiredException
|
|
698
|
+
|
|
699
|
+
CannotDeleteApprovalRuleFromTemplateException.struct_class = Types::CannotDeleteApprovalRuleFromTemplateException
|
|
700
|
+
|
|
701
|
+
CannotModifyApprovalRuleFromTemplateException.struct_class = Types::CannotModifyApprovalRuleFromTemplateException
|
|
702
|
+
|
|
703
|
+
ClientRequestTokenRequiredException.struct_class = Types::ClientRequestTokenRequiredException
|
|
704
|
+
|
|
661
705
|
Comment.add_member(:comment_id, Shapes::ShapeRef.new(shape: CommentId, location_name: "commentId"))
|
|
662
706
|
Comment.add_member(:content, Shapes::ShapeRef.new(shape: Content, location_name: "content"))
|
|
663
707
|
Comment.add_member(:in_reply_to, Shapes::ShapeRef.new(shape: CommentId, location_name: "inReplyTo"))
|
|
@@ -668,6 +712,18 @@ module Aws::CodeCommit
|
|
|
668
712
|
Comment.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
|
669
713
|
Comment.struct_class = Types::Comment
|
|
670
714
|
|
|
715
|
+
CommentContentRequiredException.struct_class = Types::CommentContentRequiredException
|
|
716
|
+
|
|
717
|
+
CommentContentSizeLimitExceededException.struct_class = Types::CommentContentSizeLimitExceededException
|
|
718
|
+
|
|
719
|
+
CommentDeletedException.struct_class = Types::CommentDeletedException
|
|
720
|
+
|
|
721
|
+
CommentDoesNotExistException.struct_class = Types::CommentDoesNotExistException
|
|
722
|
+
|
|
723
|
+
CommentIdRequiredException.struct_class = Types::CommentIdRequiredException
|
|
724
|
+
|
|
725
|
+
CommentNotCreatedByCallerException.struct_class = Types::CommentNotCreatedByCallerException
|
|
726
|
+
|
|
671
727
|
Comments.member = Shapes::ShapeRef.new(shape: Comment)
|
|
672
728
|
|
|
673
729
|
CommentsForComparedCommit.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
|
|
@@ -702,10 +758,26 @@ module Aws::CodeCommit
|
|
|
702
758
|
Commit.add_member(:additional_data, Shapes::ShapeRef.new(shape: AdditionalData, location_name: "additionalData"))
|
|
703
759
|
Commit.struct_class = Types::Commit
|
|
704
760
|
|
|
761
|
+
CommitDoesNotExistException.struct_class = Types::CommitDoesNotExistException
|
|
762
|
+
|
|
763
|
+
CommitIdDoesNotExistException.struct_class = Types::CommitIdDoesNotExistException
|
|
764
|
+
|
|
765
|
+
CommitIdRequiredException.struct_class = Types::CommitIdRequiredException
|
|
766
|
+
|
|
705
767
|
CommitIdsInputList.member = Shapes::ShapeRef.new(shape: ObjectId)
|
|
706
768
|
|
|
769
|
+
CommitIdsLimitExceededException.struct_class = Types::CommitIdsLimitExceededException
|
|
770
|
+
|
|
771
|
+
CommitIdsListRequiredException.struct_class = Types::CommitIdsListRequiredException
|
|
772
|
+
|
|
773
|
+
CommitMessageLengthExceededException.struct_class = Types::CommitMessageLengthExceededException
|
|
774
|
+
|
|
707
775
|
CommitObjectsList.member = Shapes::ShapeRef.new(shape: Commit)
|
|
708
776
|
|
|
777
|
+
CommitRequiredException.struct_class = Types::CommitRequiredException
|
|
778
|
+
|
|
779
|
+
ConcurrentReferenceUpdateException.struct_class = Types::ConcurrentReferenceUpdateException
|
|
780
|
+
|
|
709
781
|
Conflict.add_member(:conflict_metadata, Shapes::ShapeRef.new(shape: ConflictMetadata, location_name: "conflictMetadata"))
|
|
710
782
|
Conflict.add_member(:merge_hunks, Shapes::ShapeRef.new(shape: MergeHunks, location_name: "mergeHunks"))
|
|
711
783
|
Conflict.struct_class = Types::Conflict
|
|
@@ -805,6 +877,8 @@ module Aws::CodeCommit
|
|
|
805
877
|
CreateUnreferencedMergeCommitOutput.add_member(:tree_id, Shapes::ShapeRef.new(shape: ObjectId, location_name: "treeId"))
|
|
806
878
|
CreateUnreferencedMergeCommitOutput.struct_class = Types::CreateUnreferencedMergeCommitOutput
|
|
807
879
|
|
|
880
|
+
DefaultBranchCannotBeDeletedException.struct_class = Types::DefaultBranchCannotBeDeletedException
|
|
881
|
+
|
|
808
882
|
DeleteApprovalRuleTemplateInput.add_member(:approval_rule_template_name, Shapes::ShapeRef.new(shape: ApprovalRuleTemplateName, required: true, location_name: "approvalRuleTemplateName"))
|
|
809
883
|
DeleteApprovalRuleTemplateInput.struct_class = Types::DeleteApprovalRuleTemplateInput
|
|
810
884
|
|
|
@@ -895,10 +969,22 @@ module Aws::CodeCommit
|
|
|
895
969
|
|
|
896
970
|
DifferenceList.member = Shapes::ShapeRef.new(shape: Difference)
|
|
897
971
|
|
|
972
|
+
DirectoryNameConflictsWithFileNameException.struct_class = Types::DirectoryNameConflictsWithFileNameException
|
|
973
|
+
|
|
898
974
|
DisassociateApprovalRuleTemplateFromRepositoryInput.add_member(:approval_rule_template_name, Shapes::ShapeRef.new(shape: ApprovalRuleTemplateName, required: true, location_name: "approvalRuleTemplateName"))
|
|
899
975
|
DisassociateApprovalRuleTemplateFromRepositoryInput.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
|
|
900
976
|
DisassociateApprovalRuleTemplateFromRepositoryInput.struct_class = Types::DisassociateApprovalRuleTemplateFromRepositoryInput
|
|
901
977
|
|
|
978
|
+
EncryptionIntegrityChecksFailedException.struct_class = Types::EncryptionIntegrityChecksFailedException
|
|
979
|
+
|
|
980
|
+
EncryptionKeyAccessDeniedException.struct_class = Types::EncryptionKeyAccessDeniedException
|
|
981
|
+
|
|
982
|
+
EncryptionKeyDisabledException.struct_class = Types::EncryptionKeyDisabledException
|
|
983
|
+
|
|
984
|
+
EncryptionKeyNotFoundException.struct_class = Types::EncryptionKeyNotFoundException
|
|
985
|
+
|
|
986
|
+
EncryptionKeyUnavailableException.struct_class = Types::EncryptionKeyUnavailableException
|
|
987
|
+
|
|
902
988
|
EvaluatePullRequestApprovalRulesInput.add_member(:pull_request_id, Shapes::ShapeRef.new(shape: PullRequestId, required: true, location_name: "pullRequestId"))
|
|
903
989
|
EvaluatePullRequestApprovalRulesInput.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, required: true, location_name: "revisionId"))
|
|
904
990
|
EvaluatePullRequestApprovalRulesInput.struct_class = Types::EvaluatePullRequestApprovalRulesInput
|
|
@@ -918,6 +1004,16 @@ module Aws::CodeCommit
|
|
|
918
1004
|
File.add_member(:file_mode, Shapes::ShapeRef.new(shape: FileModeTypeEnum, location_name: "fileMode"))
|
|
919
1005
|
File.struct_class = Types::File
|
|
920
1006
|
|
|
1007
|
+
FileContentAndSourceFileSpecifiedException.struct_class = Types::FileContentAndSourceFileSpecifiedException
|
|
1008
|
+
|
|
1009
|
+
FileContentRequiredException.struct_class = Types::FileContentRequiredException
|
|
1010
|
+
|
|
1011
|
+
FileContentSizeLimitExceededException.struct_class = Types::FileContentSizeLimitExceededException
|
|
1012
|
+
|
|
1013
|
+
FileDoesNotExistException.struct_class = Types::FileDoesNotExistException
|
|
1014
|
+
|
|
1015
|
+
FileEntryRequiredException.struct_class = Types::FileEntryRequiredException
|
|
1016
|
+
|
|
921
1017
|
FileList.member = Shapes::ShapeRef.new(shape: File)
|
|
922
1018
|
|
|
923
1019
|
FileMetadata.add_member(:absolute_path, Shapes::ShapeRef.new(shape: Path, location_name: "absolutePath"))
|
|
@@ -925,11 +1021,17 @@ module Aws::CodeCommit
|
|
|
925
1021
|
FileMetadata.add_member(:file_mode, Shapes::ShapeRef.new(shape: FileModeTypeEnum, location_name: "fileMode"))
|
|
926
1022
|
FileMetadata.struct_class = Types::FileMetadata
|
|
927
1023
|
|
|
1024
|
+
FileModeRequiredException.struct_class = Types::FileModeRequiredException
|
|
1025
|
+
|
|
928
1026
|
FileModes.add_member(:source, Shapes::ShapeRef.new(shape: FileModeTypeEnum, location_name: "source"))
|
|
929
1027
|
FileModes.add_member(:destination, Shapes::ShapeRef.new(shape: FileModeTypeEnum, location_name: "destination"))
|
|
930
1028
|
FileModes.add_member(:base, Shapes::ShapeRef.new(shape: FileModeTypeEnum, location_name: "base"))
|
|
931
1029
|
FileModes.struct_class = Types::FileModes
|
|
932
1030
|
|
|
1031
|
+
FileNameConflictsWithDirectoryNameException.struct_class = Types::FileNameConflictsWithDirectoryNameException
|
|
1032
|
+
|
|
1033
|
+
FilePathConflictsWithSubmodulePathException.struct_class = Types::FilePathConflictsWithSubmodulePathException
|
|
1034
|
+
|
|
933
1035
|
FilePaths.member = Shapes::ShapeRef.new(shape: Path)
|
|
934
1036
|
|
|
935
1037
|
FileSizes.add_member(:source, Shapes::ShapeRef.new(shape: FileSize, location_name: "source"))
|
|
@@ -937,6 +1039,8 @@ module Aws::CodeCommit
|
|
|
937
1039
|
FileSizes.add_member(:base, Shapes::ShapeRef.new(shape: FileSize, location_name: "base"))
|
|
938
1040
|
FileSizes.struct_class = Types::FileSizes
|
|
939
1041
|
|
|
1042
|
+
FileTooLargeException.struct_class = Types::FileTooLargeException
|
|
1043
|
+
|
|
940
1044
|
FilesMetadata.member = Shapes::ShapeRef.new(shape: FileMetadata)
|
|
941
1045
|
|
|
942
1046
|
Folder.add_member(:tree_id, Shapes::ShapeRef.new(shape: ObjectId, location_name: "treeId"))
|
|
@@ -944,6 +1048,10 @@ module Aws::CodeCommit
|
|
|
944
1048
|
Folder.add_member(:relative_path, Shapes::ShapeRef.new(shape: Path, location_name: "relativePath"))
|
|
945
1049
|
Folder.struct_class = Types::Folder
|
|
946
1050
|
|
|
1051
|
+
FolderContentSizeLimitExceededException.struct_class = Types::FolderContentSizeLimitExceededException
|
|
1052
|
+
|
|
1053
|
+
FolderDoesNotExistException.struct_class = Types::FolderDoesNotExistException
|
|
1054
|
+
|
|
947
1055
|
FolderList.member = Shapes::ShapeRef.new(shape: Folder)
|
|
948
1056
|
|
|
949
1057
|
GetApprovalRuleTemplateInput.add_member(:approval_rule_template_name, Shapes::ShapeRef.new(shape: ApprovalRuleTemplateName, required: true, location_name: "approvalRuleTemplateName"))
|
|
@@ -1120,6 +1228,130 @@ module Aws::CodeCommit
|
|
|
1120
1228
|
GetRepositoryTriggersOutput.add_member(:triggers, Shapes::ShapeRef.new(shape: RepositoryTriggersList, location_name: "triggers"))
|
|
1121
1229
|
GetRepositoryTriggersOutput.struct_class = Types::GetRepositoryTriggersOutput
|
|
1122
1230
|
|
|
1231
|
+
IdempotencyParameterMismatchException.struct_class = Types::IdempotencyParameterMismatchException
|
|
1232
|
+
|
|
1233
|
+
InvalidActorArnException.struct_class = Types::InvalidActorArnException
|
|
1234
|
+
|
|
1235
|
+
InvalidApprovalRuleContentException.struct_class = Types::InvalidApprovalRuleContentException
|
|
1236
|
+
|
|
1237
|
+
InvalidApprovalRuleNameException.struct_class = Types::InvalidApprovalRuleNameException
|
|
1238
|
+
|
|
1239
|
+
InvalidApprovalRuleTemplateContentException.struct_class = Types::InvalidApprovalRuleTemplateContentException
|
|
1240
|
+
|
|
1241
|
+
InvalidApprovalRuleTemplateDescriptionException.struct_class = Types::InvalidApprovalRuleTemplateDescriptionException
|
|
1242
|
+
|
|
1243
|
+
InvalidApprovalRuleTemplateNameException.struct_class = Types::InvalidApprovalRuleTemplateNameException
|
|
1244
|
+
|
|
1245
|
+
InvalidApprovalStateException.struct_class = Types::InvalidApprovalStateException
|
|
1246
|
+
|
|
1247
|
+
InvalidAuthorArnException.struct_class = Types::InvalidAuthorArnException
|
|
1248
|
+
|
|
1249
|
+
InvalidBlobIdException.struct_class = Types::InvalidBlobIdException
|
|
1250
|
+
|
|
1251
|
+
InvalidBranchNameException.struct_class = Types::InvalidBranchNameException
|
|
1252
|
+
|
|
1253
|
+
InvalidClientRequestTokenException.struct_class = Types::InvalidClientRequestTokenException
|
|
1254
|
+
|
|
1255
|
+
InvalidCommentIdException.struct_class = Types::InvalidCommentIdException
|
|
1256
|
+
|
|
1257
|
+
InvalidCommitException.struct_class = Types::InvalidCommitException
|
|
1258
|
+
|
|
1259
|
+
InvalidCommitIdException.struct_class = Types::InvalidCommitIdException
|
|
1260
|
+
|
|
1261
|
+
InvalidConflictDetailLevelException.struct_class = Types::InvalidConflictDetailLevelException
|
|
1262
|
+
|
|
1263
|
+
InvalidConflictResolutionException.struct_class = Types::InvalidConflictResolutionException
|
|
1264
|
+
|
|
1265
|
+
InvalidConflictResolutionStrategyException.struct_class = Types::InvalidConflictResolutionStrategyException
|
|
1266
|
+
|
|
1267
|
+
InvalidContinuationTokenException.struct_class = Types::InvalidContinuationTokenException
|
|
1268
|
+
|
|
1269
|
+
InvalidDeletionParameterException.struct_class = Types::InvalidDeletionParameterException
|
|
1270
|
+
|
|
1271
|
+
InvalidDescriptionException.struct_class = Types::InvalidDescriptionException
|
|
1272
|
+
|
|
1273
|
+
InvalidDestinationCommitSpecifierException.struct_class = Types::InvalidDestinationCommitSpecifierException
|
|
1274
|
+
|
|
1275
|
+
InvalidEmailException.struct_class = Types::InvalidEmailException
|
|
1276
|
+
|
|
1277
|
+
InvalidFileLocationException.struct_class = Types::InvalidFileLocationException
|
|
1278
|
+
|
|
1279
|
+
InvalidFileModeException.struct_class = Types::InvalidFileModeException
|
|
1280
|
+
|
|
1281
|
+
InvalidFilePositionException.struct_class = Types::InvalidFilePositionException
|
|
1282
|
+
|
|
1283
|
+
InvalidMaxConflictFilesException.struct_class = Types::InvalidMaxConflictFilesException
|
|
1284
|
+
|
|
1285
|
+
InvalidMaxMergeHunksException.struct_class = Types::InvalidMaxMergeHunksException
|
|
1286
|
+
|
|
1287
|
+
InvalidMaxResultsException.struct_class = Types::InvalidMaxResultsException
|
|
1288
|
+
|
|
1289
|
+
InvalidMergeOptionException.struct_class = Types::InvalidMergeOptionException
|
|
1290
|
+
|
|
1291
|
+
InvalidOrderException.struct_class = Types::InvalidOrderException
|
|
1292
|
+
|
|
1293
|
+
InvalidOverrideStatusException.struct_class = Types::InvalidOverrideStatusException
|
|
1294
|
+
|
|
1295
|
+
InvalidParentCommitIdException.struct_class = Types::InvalidParentCommitIdException
|
|
1296
|
+
|
|
1297
|
+
InvalidPathException.struct_class = Types::InvalidPathException
|
|
1298
|
+
|
|
1299
|
+
InvalidPullRequestEventTypeException.struct_class = Types::InvalidPullRequestEventTypeException
|
|
1300
|
+
|
|
1301
|
+
InvalidPullRequestIdException.struct_class = Types::InvalidPullRequestIdException
|
|
1302
|
+
|
|
1303
|
+
InvalidPullRequestStatusException.struct_class = Types::InvalidPullRequestStatusException
|
|
1304
|
+
|
|
1305
|
+
InvalidPullRequestStatusUpdateException.struct_class = Types::InvalidPullRequestStatusUpdateException
|
|
1306
|
+
|
|
1307
|
+
InvalidReferenceNameException.struct_class = Types::InvalidReferenceNameException
|
|
1308
|
+
|
|
1309
|
+
InvalidRelativeFileVersionEnumException.struct_class = Types::InvalidRelativeFileVersionEnumException
|
|
1310
|
+
|
|
1311
|
+
InvalidReplacementContentException.struct_class = Types::InvalidReplacementContentException
|
|
1312
|
+
|
|
1313
|
+
InvalidReplacementTypeException.struct_class = Types::InvalidReplacementTypeException
|
|
1314
|
+
|
|
1315
|
+
InvalidRepositoryDescriptionException.struct_class = Types::InvalidRepositoryDescriptionException
|
|
1316
|
+
|
|
1317
|
+
InvalidRepositoryNameException.struct_class = Types::InvalidRepositoryNameException
|
|
1318
|
+
|
|
1319
|
+
InvalidRepositoryTriggerBranchNameException.struct_class = Types::InvalidRepositoryTriggerBranchNameException
|
|
1320
|
+
|
|
1321
|
+
InvalidRepositoryTriggerCustomDataException.struct_class = Types::InvalidRepositoryTriggerCustomDataException
|
|
1322
|
+
|
|
1323
|
+
InvalidRepositoryTriggerDestinationArnException.struct_class = Types::InvalidRepositoryTriggerDestinationArnException
|
|
1324
|
+
|
|
1325
|
+
InvalidRepositoryTriggerEventsException.struct_class = Types::InvalidRepositoryTriggerEventsException
|
|
1326
|
+
|
|
1327
|
+
InvalidRepositoryTriggerNameException.struct_class = Types::InvalidRepositoryTriggerNameException
|
|
1328
|
+
|
|
1329
|
+
InvalidRepositoryTriggerRegionException.struct_class = Types::InvalidRepositoryTriggerRegionException
|
|
1330
|
+
|
|
1331
|
+
InvalidResourceArnException.struct_class = Types::InvalidResourceArnException
|
|
1332
|
+
|
|
1333
|
+
InvalidRevisionIdException.struct_class = Types::InvalidRevisionIdException
|
|
1334
|
+
|
|
1335
|
+
InvalidRuleContentSha256Exception.struct_class = Types::InvalidRuleContentSha256Exception
|
|
1336
|
+
|
|
1337
|
+
InvalidSortByException.struct_class = Types::InvalidSortByException
|
|
1338
|
+
|
|
1339
|
+
InvalidSourceCommitSpecifierException.struct_class = Types::InvalidSourceCommitSpecifierException
|
|
1340
|
+
|
|
1341
|
+
InvalidSystemTagUsageException.struct_class = Types::InvalidSystemTagUsageException
|
|
1342
|
+
|
|
1343
|
+
InvalidTagKeysListException.struct_class = Types::InvalidTagKeysListException
|
|
1344
|
+
|
|
1345
|
+
InvalidTagsMapException.struct_class = Types::InvalidTagsMapException
|
|
1346
|
+
|
|
1347
|
+
InvalidTargetBranchException.struct_class = Types::InvalidTargetBranchException
|
|
1348
|
+
|
|
1349
|
+
InvalidTargetException.struct_class = Types::InvalidTargetException
|
|
1350
|
+
|
|
1351
|
+
InvalidTargetsException.struct_class = Types::InvalidTargetsException
|
|
1352
|
+
|
|
1353
|
+
InvalidTitleException.struct_class = Types::InvalidTitleException
|
|
1354
|
+
|
|
1123
1355
|
IsBinaryFile.add_member(:source, Shapes::ShapeRef.new(shape: CapitalBoolean, location_name: "source"))
|
|
1124
1356
|
IsBinaryFile.add_member(:destination, Shapes::ShapeRef.new(shape: CapitalBoolean, location_name: "destination"))
|
|
1125
1357
|
IsBinaryFile.add_member(:base, Shapes::ShapeRef.new(shape: CapitalBoolean, location_name: "base"))
|
|
@@ -1192,6 +1424,28 @@ module Aws::CodeCommit
|
|
|
1192
1424
|
Location.add_member(:relative_file_version, Shapes::ShapeRef.new(shape: RelativeFileVersionEnum, location_name: "relativeFileVersion"))
|
|
1193
1425
|
Location.struct_class = Types::Location
|
|
1194
1426
|
|
|
1427
|
+
ManualMergeRequiredException.struct_class = Types::ManualMergeRequiredException
|
|
1428
|
+
|
|
1429
|
+
MaximumBranchesExceededException.struct_class = Types::MaximumBranchesExceededException
|
|
1430
|
+
|
|
1431
|
+
MaximumConflictResolutionEntriesExceededException.struct_class = Types::MaximumConflictResolutionEntriesExceededException
|
|
1432
|
+
|
|
1433
|
+
MaximumFileContentToLoadExceededException.struct_class = Types::MaximumFileContentToLoadExceededException
|
|
1434
|
+
|
|
1435
|
+
MaximumFileEntriesExceededException.struct_class = Types::MaximumFileEntriesExceededException
|
|
1436
|
+
|
|
1437
|
+
MaximumItemsToCompareExceededException.struct_class = Types::MaximumItemsToCompareExceededException
|
|
1438
|
+
|
|
1439
|
+
MaximumNumberOfApprovalsExceededException.struct_class = Types::MaximumNumberOfApprovalsExceededException
|
|
1440
|
+
|
|
1441
|
+
MaximumOpenPullRequestsExceededException.struct_class = Types::MaximumOpenPullRequestsExceededException
|
|
1442
|
+
|
|
1443
|
+
MaximumRepositoryNamesExceededException.struct_class = Types::MaximumRepositoryNamesExceededException
|
|
1444
|
+
|
|
1445
|
+
MaximumRepositoryTriggersExceededException.struct_class = Types::MaximumRepositoryTriggersExceededException
|
|
1446
|
+
|
|
1447
|
+
MaximumRuleTemplatesAssociatedWithRepositoryException.struct_class = Types::MaximumRuleTemplatesAssociatedWithRepositoryException
|
|
1448
|
+
|
|
1195
1449
|
MergeBranchesByFastForwardInput.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
|
|
1196
1450
|
MergeBranchesByFastForwardInput.add_member(:source_commit_specifier, Shapes::ShapeRef.new(shape: CommitName, required: true, location_name: "sourceCommitSpecifier"))
|
|
1197
1451
|
MergeBranchesByFastForwardInput.add_member(:destination_commit_specifier, Shapes::ShapeRef.new(shape: CommitName, required: true, location_name: "destinationCommitSpecifier"))
|
|
@@ -1259,6 +1513,8 @@ module Aws::CodeCommit
|
|
|
1259
1513
|
MergeOperations.add_member(:destination, Shapes::ShapeRef.new(shape: ChangeTypeEnum, location_name: "destination"))
|
|
1260
1514
|
MergeOperations.struct_class = Types::MergeOperations
|
|
1261
1515
|
|
|
1516
|
+
MergeOptionRequiredException.struct_class = Types::MergeOptionRequiredException
|
|
1517
|
+
|
|
1262
1518
|
MergeOptions.member = Shapes::ShapeRef.new(shape: MergeOptionTypeEnum)
|
|
1263
1519
|
|
|
1264
1520
|
MergePullRequestByFastForwardInput.add_member(:pull_request_id, Shapes::ShapeRef.new(shape: PullRequestId, required: true, location_name: "pullRequestId"))
|
|
@@ -1299,6 +1555,18 @@ module Aws::CodeCommit
|
|
|
1299
1555
|
MergePullRequestByThreeWayOutput.add_member(:pull_request, Shapes::ShapeRef.new(shape: PullRequest, location_name: "pullRequest"))
|
|
1300
1556
|
MergePullRequestByThreeWayOutput.struct_class = Types::MergePullRequestByThreeWayOutput
|
|
1301
1557
|
|
|
1558
|
+
MultipleConflictResolutionEntriesException.struct_class = Types::MultipleConflictResolutionEntriesException
|
|
1559
|
+
|
|
1560
|
+
MultipleRepositoriesInPullRequestException.struct_class = Types::MultipleRepositoriesInPullRequestException
|
|
1561
|
+
|
|
1562
|
+
NameLengthExceededException.struct_class = Types::NameLengthExceededException
|
|
1563
|
+
|
|
1564
|
+
NoChangeException.struct_class = Types::NoChangeException
|
|
1565
|
+
|
|
1566
|
+
NumberOfRuleTemplatesExceededException.struct_class = Types::NumberOfRuleTemplatesExceededException
|
|
1567
|
+
|
|
1568
|
+
NumberOfRulesExceededException.struct_class = Types::NumberOfRulesExceededException
|
|
1569
|
+
|
|
1302
1570
|
ObjectTypes.add_member(:source, Shapes::ShapeRef.new(shape: ObjectTypeEnum, location_name: "source"))
|
|
1303
1571
|
ObjectTypes.add_member(:destination, Shapes::ShapeRef.new(shape: ObjectTypeEnum, location_name: "destination"))
|
|
1304
1572
|
ObjectTypes.add_member(:base, Shapes::ShapeRef.new(shape: ObjectTypeEnum, location_name: "base"))
|
|
@@ -1308,13 +1576,27 @@ module Aws::CodeCommit
|
|
|
1308
1576
|
OriginApprovalRuleTemplate.add_member(:approval_rule_template_name, Shapes::ShapeRef.new(shape: ApprovalRuleTemplateName, location_name: "approvalRuleTemplateName"))
|
|
1309
1577
|
OriginApprovalRuleTemplate.struct_class = Types::OriginApprovalRuleTemplate
|
|
1310
1578
|
|
|
1579
|
+
OverrideAlreadySetException.struct_class = Types::OverrideAlreadySetException
|
|
1580
|
+
|
|
1311
1581
|
OverridePullRequestApprovalRulesInput.add_member(:pull_request_id, Shapes::ShapeRef.new(shape: PullRequestId, required: true, location_name: "pullRequestId"))
|
|
1312
1582
|
OverridePullRequestApprovalRulesInput.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, required: true, location_name: "revisionId"))
|
|
1313
1583
|
OverridePullRequestApprovalRulesInput.add_member(:override_status, Shapes::ShapeRef.new(shape: OverrideStatus, required: true, location_name: "overrideStatus"))
|
|
1314
1584
|
OverridePullRequestApprovalRulesInput.struct_class = Types::OverridePullRequestApprovalRulesInput
|
|
1315
1585
|
|
|
1586
|
+
OverrideStatusRequiredException.struct_class = Types::OverrideStatusRequiredException
|
|
1587
|
+
|
|
1588
|
+
ParentCommitDoesNotExistException.struct_class = Types::ParentCommitDoesNotExistException
|
|
1589
|
+
|
|
1590
|
+
ParentCommitIdOutdatedException.struct_class = Types::ParentCommitIdOutdatedException
|
|
1591
|
+
|
|
1592
|
+
ParentCommitIdRequiredException.struct_class = Types::ParentCommitIdRequiredException
|
|
1593
|
+
|
|
1316
1594
|
ParentList.member = Shapes::ShapeRef.new(shape: ObjectId)
|
|
1317
1595
|
|
|
1596
|
+
PathDoesNotExistException.struct_class = Types::PathDoesNotExistException
|
|
1597
|
+
|
|
1598
|
+
PathRequiredException.struct_class = Types::PathRequiredException
|
|
1599
|
+
|
|
1318
1600
|
PostCommentForComparedCommitInput.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
|
|
1319
1601
|
PostCommentForComparedCommitInput.add_member(:before_commit_id, Shapes::ShapeRef.new(shape: CommitId, location_name: "beforeCommitId"))
|
|
1320
1602
|
PostCommentForComparedCommitInput.add_member(:after_commit_id, Shapes::ShapeRef.new(shape: CommitId, required: true, location_name: "afterCommitId"))
|
|
@@ -1372,12 +1654,20 @@ module Aws::CodeCommit
|
|
|
1372
1654
|
PullRequest.add_member(:approval_rules, Shapes::ShapeRef.new(shape: ApprovalRulesList, location_name: "approvalRules"))
|
|
1373
1655
|
PullRequest.struct_class = Types::PullRequest
|
|
1374
1656
|
|
|
1657
|
+
PullRequestAlreadyClosedException.struct_class = Types::PullRequestAlreadyClosedException
|
|
1658
|
+
|
|
1659
|
+
PullRequestApprovalRulesNotSatisfiedException.struct_class = Types::PullRequestApprovalRulesNotSatisfiedException
|
|
1660
|
+
|
|
1661
|
+
PullRequestCannotBeApprovedByAuthorException.struct_class = Types::PullRequestCannotBeApprovedByAuthorException
|
|
1662
|
+
|
|
1375
1663
|
PullRequestCreatedEventMetadata.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
|
|
1376
1664
|
PullRequestCreatedEventMetadata.add_member(:source_commit_id, Shapes::ShapeRef.new(shape: CommitId, location_name: "sourceCommitId"))
|
|
1377
1665
|
PullRequestCreatedEventMetadata.add_member(:destination_commit_id, Shapes::ShapeRef.new(shape: CommitId, location_name: "destinationCommitId"))
|
|
1378
1666
|
PullRequestCreatedEventMetadata.add_member(:merge_base, Shapes::ShapeRef.new(shape: CommitId, location_name: "mergeBase"))
|
|
1379
1667
|
PullRequestCreatedEventMetadata.struct_class = Types::PullRequestCreatedEventMetadata
|
|
1380
1668
|
|
|
1669
|
+
PullRequestDoesNotExistException.struct_class = Types::PullRequestDoesNotExistException
|
|
1670
|
+
|
|
1381
1671
|
PullRequestEvent.add_member(:pull_request_id, Shapes::ShapeRef.new(shape: PullRequestId, location_name: "pullRequestId"))
|
|
1382
1672
|
PullRequestEvent.add_member(:event_date, Shapes::ShapeRef.new(shape: EventDate, location_name: "eventDate"))
|
|
1383
1673
|
PullRequestEvent.add_member(:pull_request_event_type, Shapes::ShapeRef.new(shape: PullRequestEventType, location_name: "pullRequestEventType"))
|
|
@@ -1395,6 +1685,8 @@ module Aws::CodeCommit
|
|
|
1395
1685
|
|
|
1396
1686
|
PullRequestIdList.member = Shapes::ShapeRef.new(shape: PullRequestId)
|
|
1397
1687
|
|
|
1688
|
+
PullRequestIdRequiredException.struct_class = Types::PullRequestIdRequiredException
|
|
1689
|
+
|
|
1398
1690
|
PullRequestMergedStateChangedEventMetadata.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
|
|
1399
1691
|
PullRequestMergedStateChangedEventMetadata.add_member(:destination_reference, Shapes::ShapeRef.new(shape: ReferenceName, location_name: "destinationReference"))
|
|
1400
1692
|
PullRequestMergedStateChangedEventMetadata.add_member(:merge_metadata, Shapes::ShapeRef.new(shape: MergeMetadata, location_name: "mergeMetadata"))
|
|
@@ -1409,6 +1701,8 @@ module Aws::CodeCommit
|
|
|
1409
1701
|
PullRequestStatusChangedEventMetadata.add_member(:pull_request_status, Shapes::ShapeRef.new(shape: PullRequestStatusEnum, location_name: "pullRequestStatus"))
|
|
1410
1702
|
PullRequestStatusChangedEventMetadata.struct_class = Types::PullRequestStatusChangedEventMetadata
|
|
1411
1703
|
|
|
1704
|
+
PullRequestStatusRequiredException.struct_class = Types::PullRequestStatusRequiredException
|
|
1705
|
+
|
|
1412
1706
|
PullRequestTarget.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
|
|
1413
1707
|
PullRequestTarget.add_member(:source_reference, Shapes::ShapeRef.new(shape: ReferenceName, location_name: "sourceReference"))
|
|
1414
1708
|
PullRequestTarget.add_member(:destination_reference, Shapes::ShapeRef.new(shape: ReferenceName, location_name: "destinationReference"))
|
|
@@ -1428,6 +1722,8 @@ module Aws::CodeCommit
|
|
|
1428
1722
|
PutFileEntry.add_member(:source_file, Shapes::ShapeRef.new(shape: SourceFileSpecifier, location_name: "sourceFile"))
|
|
1429
1723
|
PutFileEntry.struct_class = Types::PutFileEntry
|
|
1430
1724
|
|
|
1725
|
+
PutFileEntryConflictException.struct_class = Types::PutFileEntryConflictException
|
|
1726
|
+
|
|
1431
1727
|
PutFileInput.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
|
|
1432
1728
|
PutFileInput.add_member(:branch_name, Shapes::ShapeRef.new(shape: BranchName, required: true, location_name: "branchName"))
|
|
1433
1729
|
PutFileInput.add_member(:file_content, Shapes::ShapeRef.new(shape: FileContent, required: true, location_name: "fileContent"))
|
|
@@ -1451,6 +1747,12 @@ module Aws::CodeCommit
|
|
|
1451
1747
|
PutRepositoryTriggersOutput.add_member(:configuration_id, Shapes::ShapeRef.new(shape: RepositoryTriggersConfigurationId, location_name: "configurationId"))
|
|
1452
1748
|
PutRepositoryTriggersOutput.struct_class = Types::PutRepositoryTriggersOutput
|
|
1453
1749
|
|
|
1750
|
+
ReferenceDoesNotExistException.struct_class = Types::ReferenceDoesNotExistException
|
|
1751
|
+
|
|
1752
|
+
ReferenceNameRequiredException.struct_class = Types::ReferenceNameRequiredException
|
|
1753
|
+
|
|
1754
|
+
ReferenceTypeNotSupportedException.struct_class = Types::ReferenceTypeNotSupportedException
|
|
1755
|
+
|
|
1454
1756
|
ReplaceContentEntries.member = Shapes::ShapeRef.new(shape: ReplaceContentEntry)
|
|
1455
1757
|
|
|
1456
1758
|
ReplaceContentEntry.add_member(:file_path, Shapes::ShapeRef.new(shape: Path, required: true, location_name: "filePath"))
|
|
@@ -1459,6 +1761,14 @@ module Aws::CodeCommit
|
|
|
1459
1761
|
ReplaceContentEntry.add_member(:file_mode, Shapes::ShapeRef.new(shape: FileModeTypeEnum, location_name: "fileMode"))
|
|
1460
1762
|
ReplaceContentEntry.struct_class = Types::ReplaceContentEntry
|
|
1461
1763
|
|
|
1764
|
+
ReplacementContentRequiredException.struct_class = Types::ReplacementContentRequiredException
|
|
1765
|
+
|
|
1766
|
+
ReplacementTypeRequiredException.struct_class = Types::ReplacementTypeRequiredException
|
|
1767
|
+
|
|
1768
|
+
RepositoryDoesNotExistException.struct_class = Types::RepositoryDoesNotExistException
|
|
1769
|
+
|
|
1770
|
+
RepositoryLimitExceededException.struct_class = Types::RepositoryLimitExceededException
|
|
1771
|
+
|
|
1462
1772
|
RepositoryMetadata.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "accountId"))
|
|
1463
1773
|
RepositoryMetadata.add_member(:repository_id, Shapes::ShapeRef.new(shape: RepositoryId, location_name: "repositoryId"))
|
|
1464
1774
|
RepositoryMetadata.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
|
|
@@ -1473,6 +1783,8 @@ module Aws::CodeCommit
|
|
|
1473
1783
|
|
|
1474
1784
|
RepositoryMetadataList.member = Shapes::ShapeRef.new(shape: RepositoryMetadata)
|
|
1475
1785
|
|
|
1786
|
+
RepositoryNameExistsException.struct_class = Types::RepositoryNameExistsException
|
|
1787
|
+
|
|
1476
1788
|
RepositoryNameIdPair.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
|
|
1477
1789
|
RepositoryNameIdPair.add_member(:repository_id, Shapes::ShapeRef.new(shape: RepositoryId, location_name: "repositoryId"))
|
|
1478
1790
|
RepositoryNameIdPair.struct_class = Types::RepositoryNameIdPair
|
|
@@ -1481,6 +1793,12 @@ module Aws::CodeCommit
|
|
|
1481
1793
|
|
|
1482
1794
|
RepositoryNameList.member = Shapes::ShapeRef.new(shape: RepositoryName)
|
|
1483
1795
|
|
|
1796
|
+
RepositoryNameRequiredException.struct_class = Types::RepositoryNameRequiredException
|
|
1797
|
+
|
|
1798
|
+
RepositoryNamesRequiredException.struct_class = Types::RepositoryNamesRequiredException
|
|
1799
|
+
|
|
1800
|
+
RepositoryNotAssociatedWithPullRequestException.struct_class = Types::RepositoryNotAssociatedWithPullRequestException
|
|
1801
|
+
|
|
1484
1802
|
RepositoryNotFoundList.member = Shapes::ShapeRef.new(shape: RepositoryName)
|
|
1485
1803
|
|
|
1486
1804
|
RepositoryTrigger.add_member(:name, Shapes::ShapeRef.new(shape: RepositoryTriggerName, required: true, location_name: "name"))
|
|
@@ -1490,8 +1808,14 @@ module Aws::CodeCommit
|
|
|
1490
1808
|
RepositoryTrigger.add_member(:events, Shapes::ShapeRef.new(shape: RepositoryTriggerEventList, required: true, location_name: "events"))
|
|
1491
1809
|
RepositoryTrigger.struct_class = Types::RepositoryTrigger
|
|
1492
1810
|
|
|
1811
|
+
RepositoryTriggerBranchNameListRequiredException.struct_class = Types::RepositoryTriggerBranchNameListRequiredException
|
|
1812
|
+
|
|
1813
|
+
RepositoryTriggerDestinationArnRequiredException.struct_class = Types::RepositoryTriggerDestinationArnRequiredException
|
|
1814
|
+
|
|
1493
1815
|
RepositoryTriggerEventList.member = Shapes::ShapeRef.new(shape: RepositoryTriggerEventEnum)
|
|
1494
1816
|
|
|
1817
|
+
RepositoryTriggerEventsListRequiredException.struct_class = Types::RepositoryTriggerEventsListRequiredException
|
|
1818
|
+
|
|
1495
1819
|
RepositoryTriggerExecutionFailure.add_member(:trigger, Shapes::ShapeRef.new(shape: RepositoryTriggerName, location_name: "trigger"))
|
|
1496
1820
|
RepositoryTriggerExecutionFailure.add_member(:failure_message, Shapes::ShapeRef.new(shape: RepositoryTriggerExecutionFailureMessage, location_name: "failureMessage"))
|
|
1497
1821
|
RepositoryTriggerExecutionFailure.struct_class = Types::RepositoryTriggerExecutionFailure
|
|
@@ -1500,14 +1824,34 @@ module Aws::CodeCommit
|
|
|
1500
1824
|
|
|
1501
1825
|
RepositoryTriggerNameList.member = Shapes::ShapeRef.new(shape: RepositoryTriggerName)
|
|
1502
1826
|
|
|
1827
|
+
RepositoryTriggerNameRequiredException.struct_class = Types::RepositoryTriggerNameRequiredException
|
|
1828
|
+
|
|
1503
1829
|
RepositoryTriggersList.member = Shapes::ShapeRef.new(shape: RepositoryTrigger)
|
|
1504
1830
|
|
|
1831
|
+
RepositoryTriggersListRequiredException.struct_class = Types::RepositoryTriggersListRequiredException
|
|
1832
|
+
|
|
1833
|
+
ResourceArnRequiredException.struct_class = Types::ResourceArnRequiredException
|
|
1834
|
+
|
|
1835
|
+
RestrictedSourceFileException.struct_class = Types::RestrictedSourceFileException
|
|
1836
|
+
|
|
1837
|
+
RevisionIdRequiredException.struct_class = Types::RevisionIdRequiredException
|
|
1838
|
+
|
|
1839
|
+
RevisionNotCurrentException.struct_class = Types::RevisionNotCurrentException
|
|
1840
|
+
|
|
1841
|
+
SameFileContentException.struct_class = Types::SameFileContentException
|
|
1842
|
+
|
|
1843
|
+
SamePathRequestException.struct_class = Types::SamePathRequestException
|
|
1844
|
+
|
|
1505
1845
|
SetFileModeEntries.member = Shapes::ShapeRef.new(shape: SetFileModeEntry)
|
|
1506
1846
|
|
|
1507
1847
|
SetFileModeEntry.add_member(:file_path, Shapes::ShapeRef.new(shape: Path, required: true, location_name: "filePath"))
|
|
1508
1848
|
SetFileModeEntry.add_member(:file_mode, Shapes::ShapeRef.new(shape: FileModeTypeEnum, required: true, location_name: "fileMode"))
|
|
1509
1849
|
SetFileModeEntry.struct_class = Types::SetFileModeEntry
|
|
1510
1850
|
|
|
1851
|
+
SourceAndDestinationAreSameException.struct_class = Types::SourceAndDestinationAreSameException
|
|
1852
|
+
|
|
1853
|
+
SourceFileOrContentRequiredException.struct_class = Types::SourceFileOrContentRequiredException
|
|
1854
|
+
|
|
1511
1855
|
SourceFileSpecifier.add_member(:file_path, Shapes::ShapeRef.new(shape: Path, required: true, location_name: "filePath"))
|
|
1512
1856
|
SourceFileSpecifier.add_member(:is_move, Shapes::ShapeRef.new(shape: IsMove, location_name: "isMove"))
|
|
1513
1857
|
SourceFileSpecifier.struct_class = Types::SourceFileSpecifier
|
|
@@ -1529,6 +1873,10 @@ module Aws::CodeCommit
|
|
|
1529
1873
|
|
|
1530
1874
|
TagKeysList.member = Shapes::ShapeRef.new(shape: TagKey)
|
|
1531
1875
|
|
|
1876
|
+
TagKeysListRequiredException.struct_class = Types::TagKeysListRequiredException
|
|
1877
|
+
|
|
1878
|
+
TagPolicyException.struct_class = Types::TagPolicyException
|
|
1879
|
+
|
|
1532
1880
|
TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "resourceArn"))
|
|
1533
1881
|
TagResourceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, required: true, location_name: "tags"))
|
|
1534
1882
|
TagResourceInput.struct_class = Types::TagResourceInput
|
|
@@ -1536,6 +1884,8 @@ module Aws::CodeCommit
|
|
|
1536
1884
|
TagsMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
|
1537
1885
|
TagsMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
|
1538
1886
|
|
|
1887
|
+
TagsMapRequiredException.struct_class = Types::TagsMapRequiredException
|
|
1888
|
+
|
|
1539
1889
|
Target.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
|
|
1540
1890
|
Target.add_member(:source_reference, Shapes::ShapeRef.new(shape: ReferenceName, required: true, location_name: "sourceReference"))
|
|
1541
1891
|
Target.add_member(:destination_reference, Shapes::ShapeRef.new(shape: ReferenceName, location_name: "destinationReference"))
|
|
@@ -1543,6 +1893,10 @@ module Aws::CodeCommit
|
|
|
1543
1893
|
|
|
1544
1894
|
TargetList.member = Shapes::ShapeRef.new(shape: Target)
|
|
1545
1895
|
|
|
1896
|
+
TargetRequiredException.struct_class = Types::TargetRequiredException
|
|
1897
|
+
|
|
1898
|
+
TargetsRequiredException.struct_class = Types::TargetsRequiredException
|
|
1899
|
+
|
|
1546
1900
|
TestRepositoryTriggersInput.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
|
|
1547
1901
|
TestRepositoryTriggersInput.add_member(:triggers, Shapes::ShapeRef.new(shape: RepositoryTriggersList, required: true, location_name: "triggers"))
|
|
1548
1902
|
TestRepositoryTriggersInput.struct_class = Types::TestRepositoryTriggersInput
|
|
@@ -1551,6 +1905,14 @@ module Aws::CodeCommit
|
|
|
1551
1905
|
TestRepositoryTriggersOutput.add_member(:failed_executions, Shapes::ShapeRef.new(shape: RepositoryTriggerExecutionFailureList, location_name: "failedExecutions"))
|
|
1552
1906
|
TestRepositoryTriggersOutput.struct_class = Types::TestRepositoryTriggersOutput
|
|
1553
1907
|
|
|
1908
|
+
TipOfSourceReferenceIsDifferentException.struct_class = Types::TipOfSourceReferenceIsDifferentException
|
|
1909
|
+
|
|
1910
|
+
TipsDivergenceExceededException.struct_class = Types::TipsDivergenceExceededException
|
|
1911
|
+
|
|
1912
|
+
TitleRequiredException.struct_class = Types::TitleRequiredException
|
|
1913
|
+
|
|
1914
|
+
TooManyTagsException.struct_class = Types::TooManyTagsException
|
|
1915
|
+
|
|
1554
1916
|
UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "resourceArn"))
|
|
1555
1917
|
UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeysList, required: true, location_name: "tagKeys"))
|
|
1556
1918
|
UntagResourceInput.struct_class = Types::UntagResourceInput
|