aws-sdk-codedeploy 1.27.0 → 1.28.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 10fc60c7b2a5f8ead4d4dae17ba025efc4d2b725
4
- data.tar.gz: c2612c51156374a5fdd58a01e735f0776bc179a9
3
+ metadata.gz: 892dd2629c163f3d8c8fd94112419a89681dcfbf
4
+ data.tar.gz: 55e81150f09a8a891ab804cb26d5c58eb084bcf7
5
5
  SHA512:
6
- metadata.gz: b145cade579902845dc9b36d8849e35fdb925517d5746e4e2b4ab3c46960421787b63d1949b0974de5dee893cf32bf0e330c51ed361d8785197c91fdf8e1ae84
7
- data.tar.gz: f071989adb3286da99d25641fb77b24dad1eababd77555b031321517c76699f216b3c9825f49bf0cb93bc3bb1306b4d6f3e099c446399fbd882dae8c48f5ecd3
6
+ metadata.gz: 157032bcd4b2cf0a7e2b49436f1a1efafa0a37fa3dff41d284c39cfe491dbd5e5334dc893f2e8dd4f5f21cfe2e58b93f6e9688406f8cf67359a0d295a5b76513
7
+ data.tar.gz: '039ee71d30756c333545959e14140cb591e830081abeef76c0f9b460e633203247ce1294cf55c1d4bac35d72660abce7f618483116fb6f6e30568ae9e8b07027'
@@ -25,17 +25,20 @@ require_relative 'aws-sdk-codedeploy/customizations'
25
25
  # methods each accept a hash of request parameters and return a response
26
26
  # structure.
27
27
  #
28
+ # code_deploy = Aws::CodeDeploy::Client.new
29
+ # resp = code_deploy.add_tags_to_on_premises_instances(params)
30
+ #
28
31
  # See {Client} for more information.
29
32
  #
30
33
  # # Errors
31
34
  #
32
- # Errors returned from AWS CodeDeploy all
33
- # extend {Errors::ServiceError}.
35
+ # Errors returned from AWS CodeDeploy are defined in the
36
+ # {Errors} module and all extend {Errors::ServiceError}.
34
37
  #
35
38
  # begin
36
39
  # # do stuff
37
40
  # rescue Aws::CodeDeploy::Errors::ServiceError
38
- # # rescues all service API errors
41
+ # # rescues all AWS CodeDeploy API errors
39
42
  # end
40
43
  #
41
44
  # See {Errors} for more information.
@@ -43,6 +46,6 @@ require_relative 'aws-sdk-codedeploy/customizations'
43
46
  # @service
44
47
  module Aws::CodeDeploy
45
48
 
46
- GEM_VERSION = '1.27.0'
49
+ GEM_VERSION = '1.28.0'
47
50
 
48
51
  end
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
30
30
  Aws::Plugins::GlobalConfiguration.add_identifier(:codedeploy)
31
31
 
32
32
  module Aws::CodeDeploy
33
+ # An API client for CodeDeploy. To construct a client, you need to configure a `:region` and `:credentials`.
34
+ #
35
+ # client = Aws::CodeDeploy::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::CodeDeploy
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::CodeDeploy
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::CodeDeploy
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. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
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::CodeDeploy
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 and auth
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) used by the default backoff function.
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::CodeDeploy
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 rasing a
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 yeidled by {#session_for}.
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 idble before it is
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::CodeDeploy
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 yeidled by {#session_for}.
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`.
@@ -3168,7 +3219,7 @@ module Aws::CodeDeploy
3168
3219
  params: params,
3169
3220
  config: config)
3170
3221
  context[:gem_name] = 'aws-sdk-codedeploy'
3171
- context[:gem_version] = '1.27.0'
3222
+ context[:gem_version] = '1.28.0'
3172
3223
  Seahorse::Client::Request.new(handlers, context)
3173
3224
  end
3174
3225
 
@@ -409,10 +409,16 @@ module Aws::CodeDeploy
409
409
 
410
410
  AlarmList.member = Shapes::ShapeRef.new(shape: Alarm)
411
411
 
412
+ AlarmsLimitExceededException.struct_class = Types::AlarmsLimitExceededException
413
+
412
414
  AppSpecContent.add_member(:content, Shapes::ShapeRef.new(shape: RawStringContent, location_name: "content"))
413
415
  AppSpecContent.add_member(:sha256, Shapes::ShapeRef.new(shape: RawStringSha256, location_name: "sha256"))
414
416
  AppSpecContent.struct_class = Types::AppSpecContent
415
417
 
418
+ ApplicationAlreadyExistsException.struct_class = Types::ApplicationAlreadyExistsException
419
+
420
+ ApplicationDoesNotExistException.struct_class = Types::ApplicationDoesNotExistException
421
+
416
422
  ApplicationInfo.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "applicationId"))
417
423
  ApplicationInfo.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "applicationName"))
418
424
  ApplicationInfo.add_member(:create_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createTime"))
@@ -421,10 +427,16 @@ module Aws::CodeDeploy
421
427
  ApplicationInfo.add_member(:compute_platform, Shapes::ShapeRef.new(shape: ComputePlatform, location_name: "computePlatform"))
422
428
  ApplicationInfo.struct_class = Types::ApplicationInfo
423
429
 
430
+ ApplicationLimitExceededException.struct_class = Types::ApplicationLimitExceededException
431
+
432
+ ApplicationNameRequiredException.struct_class = Types::ApplicationNameRequiredException
433
+
424
434
  ApplicationsInfoList.member = Shapes::ShapeRef.new(shape: ApplicationInfo)
425
435
 
426
436
  ApplicationsList.member = Shapes::ShapeRef.new(shape: ApplicationName)
427
437
 
438
+ ArnNotSupportedException.struct_class = Types::ArnNotSupportedException
439
+
428
440
  AutoRollbackConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
429
441
  AutoRollbackConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: AutoRollbackEventsList, location_name: "events"))
430
442
  AutoRollbackConfiguration.struct_class = Types::AutoRollbackConfiguration
@@ -489,6 +501,8 @@ module Aws::CodeDeploy
489
501
  BatchGetOnPremisesInstancesOutput.add_member(:instance_infos, Shapes::ShapeRef.new(shape: InstanceInfoList, location_name: "instanceInfos"))
490
502
  BatchGetOnPremisesInstancesOutput.struct_class = Types::BatchGetOnPremisesInstancesOutput
491
503
 
504
+ BatchLimitExceededException.struct_class = Types::BatchLimitExceededException
505
+
492
506
  BlueGreenDeploymentConfiguration.add_member(:terminate_blue_instances_on_deployment_success, Shapes::ShapeRef.new(shape: BlueInstanceTerminationOption, location_name: "terminateBlueInstancesOnDeploymentSuccess"))
493
507
  BlueGreenDeploymentConfiguration.add_member(:deployment_ready_option, Shapes::ShapeRef.new(shape: DeploymentReadyOption, location_name: "deploymentReadyOption"))
494
508
  BlueGreenDeploymentConfiguration.add_member(:green_fleet_provisioning_option, Shapes::ShapeRef.new(shape: GreenFleetProvisioningOption, location_name: "greenFleetProvisioningOption"))
@@ -498,6 +512,8 @@ module Aws::CodeDeploy
498
512
  BlueInstanceTerminationOption.add_member(:termination_wait_time_in_minutes, Shapes::ShapeRef.new(shape: Duration, location_name: "terminationWaitTimeInMinutes"))
499
513
  BlueInstanceTerminationOption.struct_class = Types::BlueInstanceTerminationOption
500
514
 
515
+ BucketNameFilterRequiredException.struct_class = Types::BucketNameFilterRequiredException
516
+
501
517
  ContinueDeploymentInput.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "deploymentId"))
502
518
  ContinueDeploymentInput.add_member(:deployment_wait_type, Shapes::ShapeRef.new(shape: DeploymentWaitType, location_name: "deploymentWaitType"))
503
519
  ContinueDeploymentInput.struct_class = Types::ContinueDeploymentInput
@@ -575,6 +591,16 @@ module Aws::CodeDeploy
575
591
  DeleteGitHubAccountTokenOutput.add_member(:token_name, Shapes::ShapeRef.new(shape: GitHubAccountTokenName, location_name: "tokenName"))
576
592
  DeleteGitHubAccountTokenOutput.struct_class = Types::DeleteGitHubAccountTokenOutput
577
593
 
594
+ DeploymentAlreadyCompletedException.struct_class = Types::DeploymentAlreadyCompletedException
595
+
596
+ DeploymentAlreadyStartedException.struct_class = Types::DeploymentAlreadyStartedException
597
+
598
+ DeploymentConfigAlreadyExistsException.struct_class = Types::DeploymentConfigAlreadyExistsException
599
+
600
+ DeploymentConfigDoesNotExistException.struct_class = Types::DeploymentConfigDoesNotExistException
601
+
602
+ DeploymentConfigInUseException.struct_class = Types::DeploymentConfigInUseException
603
+
578
604
  DeploymentConfigInfo.add_member(:deployment_config_id, Shapes::ShapeRef.new(shape: DeploymentConfigId, location_name: "deploymentConfigId"))
579
605
  DeploymentConfigInfo.add_member(:deployment_config_name, Shapes::ShapeRef.new(shape: DeploymentConfigName, location_name: "deploymentConfigName"))
580
606
  DeploymentConfigInfo.add_member(:minimum_healthy_hosts, Shapes::ShapeRef.new(shape: MinimumHealthyHosts, location_name: "minimumHealthyHosts"))
@@ -583,8 +609,18 @@ module Aws::CodeDeploy
583
609
  DeploymentConfigInfo.add_member(:traffic_routing_config, Shapes::ShapeRef.new(shape: TrafficRoutingConfig, location_name: "trafficRoutingConfig"))
584
610
  DeploymentConfigInfo.struct_class = Types::DeploymentConfigInfo
585
611
 
612
+ DeploymentConfigLimitExceededException.struct_class = Types::DeploymentConfigLimitExceededException
613
+
614
+ DeploymentConfigNameRequiredException.struct_class = Types::DeploymentConfigNameRequiredException
615
+
586
616
  DeploymentConfigsList.member = Shapes::ShapeRef.new(shape: DeploymentConfigName)
587
617
 
618
+ DeploymentDoesNotExistException.struct_class = Types::DeploymentDoesNotExistException
619
+
620
+ DeploymentGroupAlreadyExistsException.struct_class = Types::DeploymentGroupAlreadyExistsException
621
+
622
+ DeploymentGroupDoesNotExistException.struct_class = Types::DeploymentGroupDoesNotExistException
623
+
588
624
  DeploymentGroupInfo.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "applicationName"))
589
625
  DeploymentGroupInfo.add_member(:deployment_group_id, Shapes::ShapeRef.new(shape: DeploymentGroupId, location_name: "deploymentGroupId"))
590
626
  DeploymentGroupInfo.add_member(:deployment_group_name, Shapes::ShapeRef.new(shape: DeploymentGroupName, location_name: "deploymentGroupName"))
@@ -610,8 +646,14 @@ module Aws::CodeDeploy
610
646
 
611
647
  DeploymentGroupInfoList.member = Shapes::ShapeRef.new(shape: DeploymentGroupInfo)
612
648
 
649
+ DeploymentGroupLimitExceededException.struct_class = Types::DeploymentGroupLimitExceededException
650
+
651
+ DeploymentGroupNameRequiredException.struct_class = Types::DeploymentGroupNameRequiredException
652
+
613
653
  DeploymentGroupsList.member = Shapes::ShapeRef.new(shape: DeploymentGroupName)
614
654
 
655
+ DeploymentIdRequiredException.struct_class = Types::DeploymentIdRequiredException
656
+
615
657
  DeploymentInfo.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "applicationName"))
616
658
  DeploymentInfo.add_member(:deployment_group_name, Shapes::ShapeRef.new(shape: DeploymentGroupName, location_name: "deploymentGroupName"))
617
659
  DeploymentInfo.add_member(:deployment_config_name, Shapes::ShapeRef.new(shape: DeploymentConfigName, location_name: "deploymentConfigName"))
@@ -641,6 +683,12 @@ module Aws::CodeDeploy
641
683
  DeploymentInfo.add_member(:compute_platform, Shapes::ShapeRef.new(shape: ComputePlatform, location_name: "computePlatform"))
642
684
  DeploymentInfo.struct_class = Types::DeploymentInfo
643
685
 
686
+ DeploymentIsNotInReadyStateException.struct_class = Types::DeploymentIsNotInReadyStateException
687
+
688
+ DeploymentLimitExceededException.struct_class = Types::DeploymentLimitExceededException
689
+
690
+ DeploymentNotStartedException.struct_class = Types::DeploymentNotStartedException
691
+
644
692
  DeploymentOverview.add_member(:pending, Shapes::ShapeRef.new(shape: InstanceCount, location_name: "Pending"))
645
693
  DeploymentOverview.add_member(:in_progress, Shapes::ShapeRef.new(shape: InstanceCount, location_name: "InProgress"))
646
694
  DeploymentOverview.add_member(:succeeded, Shapes::ShapeRef.new(shape: InstanceCount, location_name: "Succeeded"))
@@ -667,8 +715,14 @@ module Aws::CodeDeploy
667
715
  DeploymentTarget.add_member(:ecs_target, Shapes::ShapeRef.new(shape: ECSTarget, location_name: "ecsTarget"))
668
716
  DeploymentTarget.struct_class = Types::DeploymentTarget
669
717
 
718
+ DeploymentTargetDoesNotExistException.struct_class = Types::DeploymentTargetDoesNotExistException
719
+
720
+ DeploymentTargetIdRequiredException.struct_class = Types::DeploymentTargetIdRequiredException
721
+
670
722
  DeploymentTargetList.member = Shapes::ShapeRef.new(shape: DeploymentTarget)
671
723
 
724
+ DeploymentTargetListSizeExceededException.struct_class = Types::DeploymentTargetListSizeExceededException
725
+
672
726
  DeploymentsInfoList.member = Shapes::ShapeRef.new(shape: DeploymentInfo)
673
727
 
674
728
  DeploymentsList.member = Shapes::ShapeRef.new(shape: DeploymentId)
@@ -676,6 +730,8 @@ module Aws::CodeDeploy
676
730
  DeregisterOnPremisesInstanceInput.add_member(:instance_name, Shapes::ShapeRef.new(shape: InstanceName, required: true, location_name: "instanceName"))
677
731
  DeregisterOnPremisesInstanceInput.struct_class = Types::DeregisterOnPremisesInstanceInput
678
732
 
733
+ DescriptionTooLongException.struct_class = Types::DescriptionTooLongException
734
+
679
735
  Diagnostics.add_member(:error_code, Shapes::ShapeRef.new(shape: LifecycleErrorCode, location_name: "errorCode"))
680
736
  Diagnostics.add_member(:script_name, Shapes::ShapeRef.new(shape: ScriptName, location_name: "scriptName"))
681
737
  Diagnostics.add_member(:message, Shapes::ShapeRef.new(shape: LifecycleMessage, location_name: "message"))
@@ -700,6 +756,8 @@ module Aws::CodeDeploy
700
756
 
701
757
  ECSServiceList.member = Shapes::ShapeRef.new(shape: ECSService)
702
758
 
759
+ ECSServiceMappingLimitExceededException.struct_class = Types::ECSServiceMappingLimitExceededException
760
+
703
761
  ECSTarget.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "deploymentId"))
704
762
  ECSTarget.add_member(:target_id, Shapes::ShapeRef.new(shape: TargetId, location_name: "targetId"))
705
763
  ECSTarget.add_member(:target_arn, Shapes::ShapeRef.new(shape: TargetArn, location_name: "targetArn"))
@@ -793,8 +851,12 @@ module Aws::CodeDeploy
793
851
  GetOnPremisesInstanceOutput.add_member(:instance_info, Shapes::ShapeRef.new(shape: InstanceInfo, location_name: "instanceInfo"))
794
852
  GetOnPremisesInstanceOutput.struct_class = Types::GetOnPremisesInstanceOutput
795
853
 
854
+ GitHubAccountTokenDoesNotExistException.struct_class = Types::GitHubAccountTokenDoesNotExistException
855
+
796
856
  GitHubAccountTokenNameList.member = Shapes::ShapeRef.new(shape: GitHubAccountTokenName)
797
857
 
858
+ GitHubAccountTokenNameRequiredException.struct_class = Types::GitHubAccountTokenNameRequiredException
859
+
798
860
  GitHubLocation.add_member(:repository, Shapes::ShapeRef.new(shape: Repository, location_name: "repository"))
799
861
  GitHubLocation.add_member(:commit_id, Shapes::ShapeRef.new(shape: CommitId, location_name: "commitId"))
800
862
  GitHubLocation.struct_class = Types::GitHubLocation
@@ -802,6 +864,18 @@ module Aws::CodeDeploy
802
864
  GreenFleetProvisioningOption.add_member(:action, Shapes::ShapeRef.new(shape: GreenFleetProvisioningAction, location_name: "action"))
803
865
  GreenFleetProvisioningOption.struct_class = Types::GreenFleetProvisioningOption
804
866
 
867
+ IamArnRequiredException.struct_class = Types::IamArnRequiredException
868
+
869
+ IamSessionArnAlreadyRegisteredException.struct_class = Types::IamSessionArnAlreadyRegisteredException
870
+
871
+ IamUserArnAlreadyRegisteredException.struct_class = Types::IamUserArnAlreadyRegisteredException
872
+
873
+ IamUserArnRequiredException.struct_class = Types::IamUserArnRequiredException
874
+
875
+ InstanceDoesNotExistException.struct_class = Types::InstanceDoesNotExistException
876
+
877
+ InstanceIdRequiredException.struct_class = Types::InstanceIdRequiredException
878
+
805
879
  InstanceInfo.add_member(:instance_name, Shapes::ShapeRef.new(shape: InstanceName, location_name: "instanceName"))
806
880
  InstanceInfo.add_member(:iam_session_arn, Shapes::ShapeRef.new(shape: IamSessionArn, location_name: "iamSessionArn"))
807
881
  InstanceInfo.add_member(:iam_user_arn, Shapes::ShapeRef.new(shape: IamUserArn, location_name: "iamUserArn"))
@@ -813,8 +887,16 @@ module Aws::CodeDeploy
813
887
 
814
888
  InstanceInfoList.member = Shapes::ShapeRef.new(shape: InstanceInfo)
815
889
 
890
+ InstanceLimitExceededException.struct_class = Types::InstanceLimitExceededException
891
+
892
+ InstanceNameAlreadyRegisteredException.struct_class = Types::InstanceNameAlreadyRegisteredException
893
+
816
894
  InstanceNameList.member = Shapes::ShapeRef.new(shape: InstanceName)
817
895
 
896
+ InstanceNameRequiredException.struct_class = Types::InstanceNameRequiredException
897
+
898
+ InstanceNotRegisteredException.struct_class = Types::InstanceNotRegisteredException
899
+
818
900
  InstanceStatusList.member = Shapes::ShapeRef.new(shape: InstanceStatus, deprecated: true)
819
901
 
820
902
  InstanceSummary.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "deploymentId"))
@@ -840,6 +922,118 @@ module Aws::CodeDeploy
840
922
 
841
923
  InstancesList.member = Shapes::ShapeRef.new(shape: InstanceId)
842
924
 
925
+ InvalidAlarmConfigException.struct_class = Types::InvalidAlarmConfigException
926
+
927
+ InvalidApplicationNameException.struct_class = Types::InvalidApplicationNameException
928
+
929
+ InvalidArnException.struct_class = Types::InvalidArnException
930
+
931
+ InvalidAutoRollbackConfigException.struct_class = Types::InvalidAutoRollbackConfigException
932
+
933
+ InvalidAutoScalingGroupException.struct_class = Types::InvalidAutoScalingGroupException
934
+
935
+ InvalidBlueGreenDeploymentConfigurationException.struct_class = Types::InvalidBlueGreenDeploymentConfigurationException
936
+
937
+ InvalidBucketNameFilterException.struct_class = Types::InvalidBucketNameFilterException
938
+
939
+ InvalidComputePlatformException.struct_class = Types::InvalidComputePlatformException
940
+
941
+ InvalidDeployedStateFilterException.struct_class = Types::InvalidDeployedStateFilterException
942
+
943
+ InvalidDeploymentConfigIdException.struct_class = Types::InvalidDeploymentConfigIdException
944
+
945
+ InvalidDeploymentConfigNameException.struct_class = Types::InvalidDeploymentConfigNameException
946
+
947
+ InvalidDeploymentGroupNameException.struct_class = Types::InvalidDeploymentGroupNameException
948
+
949
+ InvalidDeploymentIdException.struct_class = Types::InvalidDeploymentIdException
950
+
951
+ InvalidDeploymentInstanceTypeException.struct_class = Types::InvalidDeploymentInstanceTypeException
952
+
953
+ InvalidDeploymentStatusException.struct_class = Types::InvalidDeploymentStatusException
954
+
955
+ InvalidDeploymentStyleException.struct_class = Types::InvalidDeploymentStyleException
956
+
957
+ InvalidDeploymentTargetIdException.struct_class = Types::InvalidDeploymentTargetIdException
958
+
959
+ InvalidDeploymentWaitTypeException.struct_class = Types::InvalidDeploymentWaitTypeException
960
+
961
+ InvalidEC2TagCombinationException.struct_class = Types::InvalidEC2TagCombinationException
962
+
963
+ InvalidEC2TagException.struct_class = Types::InvalidEC2TagException
964
+
965
+ InvalidECSServiceException.struct_class = Types::InvalidECSServiceException
966
+
967
+ InvalidFileExistsBehaviorException.struct_class = Types::InvalidFileExistsBehaviorException
968
+
969
+ InvalidGitHubAccountTokenException.struct_class = Types::InvalidGitHubAccountTokenException
970
+
971
+ InvalidGitHubAccountTokenNameException.struct_class = Types::InvalidGitHubAccountTokenNameException
972
+
973
+ InvalidIamSessionArnException.struct_class = Types::InvalidIamSessionArnException
974
+
975
+ InvalidIamUserArnException.struct_class = Types::InvalidIamUserArnException
976
+
977
+ InvalidIgnoreApplicationStopFailuresValueException.struct_class = Types::InvalidIgnoreApplicationStopFailuresValueException
978
+
979
+ InvalidInputException.struct_class = Types::InvalidInputException
980
+
981
+ InvalidInstanceIdException.struct_class = Types::InvalidInstanceIdException
982
+
983
+ InvalidInstanceNameException.struct_class = Types::InvalidInstanceNameException
984
+
985
+ InvalidInstanceStatusException.struct_class = Types::InvalidInstanceStatusException
986
+
987
+ InvalidInstanceTypeException.struct_class = Types::InvalidInstanceTypeException
988
+
989
+ InvalidKeyPrefixFilterException.struct_class = Types::InvalidKeyPrefixFilterException
990
+
991
+ InvalidLifecycleEventHookExecutionIdException.struct_class = Types::InvalidLifecycleEventHookExecutionIdException
992
+
993
+ InvalidLifecycleEventHookExecutionStatusException.struct_class = Types::InvalidLifecycleEventHookExecutionStatusException
994
+
995
+ InvalidLoadBalancerInfoException.struct_class = Types::InvalidLoadBalancerInfoException
996
+
997
+ InvalidMinimumHealthyHostValueException.struct_class = Types::InvalidMinimumHealthyHostValueException
998
+
999
+ InvalidNextTokenException.struct_class = Types::InvalidNextTokenException
1000
+
1001
+ InvalidOnPremisesTagCombinationException.struct_class = Types::InvalidOnPremisesTagCombinationException
1002
+
1003
+ InvalidOperationException.struct_class = Types::InvalidOperationException
1004
+
1005
+ InvalidRegistrationStatusException.struct_class = Types::InvalidRegistrationStatusException
1006
+
1007
+ InvalidRevisionException.struct_class = Types::InvalidRevisionException
1008
+
1009
+ InvalidRoleException.struct_class = Types::InvalidRoleException
1010
+
1011
+ InvalidSortByException.struct_class = Types::InvalidSortByException
1012
+
1013
+ InvalidSortOrderException.struct_class = Types::InvalidSortOrderException
1014
+
1015
+ InvalidTagException.struct_class = Types::InvalidTagException
1016
+
1017
+ InvalidTagFilterException.struct_class = Types::InvalidTagFilterException
1018
+
1019
+ InvalidTagsToAddException.struct_class = Types::InvalidTagsToAddException
1020
+
1021
+ InvalidTargetException.struct_class = Types::InvalidTargetException
1022
+
1023
+ InvalidTargetFilterNameException.struct_class = Types::InvalidTargetFilterNameException
1024
+
1025
+ InvalidTargetGroupPairException.struct_class = Types::InvalidTargetGroupPairException
1026
+
1027
+ InvalidTargetInstancesException.struct_class = Types::InvalidTargetInstancesException
1028
+
1029
+ InvalidTimeRangeException.struct_class = Types::InvalidTimeRangeException
1030
+
1031
+ InvalidTrafficRoutingConfigurationException.struct_class = Types::InvalidTrafficRoutingConfigurationException
1032
+
1033
+ InvalidTriggerConfigException.struct_class = Types::InvalidTriggerConfigException
1034
+
1035
+ InvalidUpdateOutdatedInstancesOnlyValueException.struct_class = Types::InvalidUpdateOutdatedInstancesOnlyValueException
1036
+
843
1037
  LambdaFunctionInfo.add_member(:function_name, Shapes::ShapeRef.new(shape: LambdaFunctionName, location_name: "functionName"))
844
1038
  LambdaFunctionInfo.add_member(:function_alias, Shapes::ShapeRef.new(shape: LambdaFunctionAlias, location_name: "functionAlias"))
845
1039
  LambdaFunctionInfo.add_member(:current_version, Shapes::ShapeRef.new(shape: Version, location_name: "currentVersion"))
@@ -869,8 +1063,12 @@ module Aws::CodeDeploy
869
1063
  LifecycleEvent.add_member(:status, Shapes::ShapeRef.new(shape: LifecycleEventStatus, location_name: "status"))
870
1064
  LifecycleEvent.struct_class = Types::LifecycleEvent
871
1065
 
1066
+ LifecycleEventAlreadyCompletedException.struct_class = Types::LifecycleEventAlreadyCompletedException
1067
+
872
1068
  LifecycleEventList.member = Shapes::ShapeRef.new(shape: LifecycleEvent)
873
1069
 
1070
+ LifecycleHookLimitExceededException.struct_class = Types::LifecycleHookLimitExceededException
1071
+
874
1072
  ListApplicationRevisionsInput.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "applicationName"))
875
1073
  ListApplicationRevisionsInput.add_member(:sort_by, Shapes::ShapeRef.new(shape: ApplicationRevisionSortBy, location_name: "sortBy"))
876
1074
  ListApplicationRevisionsInput.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "sortOrder"))
@@ -972,11 +1170,15 @@ module Aws::CodeDeploy
972
1170
  MinimumHealthyHosts.add_member(:type, Shapes::ShapeRef.new(shape: MinimumHealthyHostsType, location_name: "type"))
973
1171
  MinimumHealthyHosts.struct_class = Types::MinimumHealthyHosts
974
1172
 
1173
+ MultipleIamArnsProvidedException.struct_class = Types::MultipleIamArnsProvidedException
1174
+
975
1175
  OnPremisesTagSet.add_member(:on_premises_tag_set_list, Shapes::ShapeRef.new(shape: OnPremisesTagSetList, location_name: "onPremisesTagSetList"))
976
1176
  OnPremisesTagSet.struct_class = Types::OnPremisesTagSet
977
1177
 
978
1178
  OnPremisesTagSetList.member = Shapes::ShapeRef.new(shape: TagFilterList)
979
1179
 
1180
+ OperationNotSupportedException.struct_class = Types::OperationNotSupportedException
1181
+
980
1182
  PutLifecycleEventHookExecutionStatusInput.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "deploymentId"))
981
1183
  PutLifecycleEventHookExecutionStatusInput.add_member(:lifecycle_event_hook_execution_id, Shapes::ShapeRef.new(shape: LifecycleEventHookExecutionId, location_name: "lifecycleEventHookExecutionId"))
982
1184
  PutLifecycleEventHookExecutionStatusInput.add_member(:status, Shapes::ShapeRef.new(shape: LifecycleEventStatus, location_name: "status"))
@@ -1003,6 +1205,12 @@ module Aws::CodeDeploy
1003
1205
  RemoveTagsFromOnPremisesInstancesInput.add_member(:instance_names, Shapes::ShapeRef.new(shape: InstanceNameList, required: true, location_name: "instanceNames"))
1004
1206
  RemoveTagsFromOnPremisesInstancesInput.struct_class = Types::RemoveTagsFromOnPremisesInstancesInput
1005
1207
 
1208
+ ResourceArnRequiredException.struct_class = Types::ResourceArnRequiredException
1209
+
1210
+ ResourceValidationException.struct_class = Types::ResourceValidationException
1211
+
1212
+ RevisionDoesNotExistException.struct_class = Types::RevisionDoesNotExistException
1213
+
1006
1214
  RevisionInfo.add_member(:revision_location, Shapes::ShapeRef.new(shape: RevisionLocation, location_name: "revisionLocation"))
1007
1215
  RevisionInfo.add_member(:generic_revision_info, Shapes::ShapeRef.new(shape: GenericRevisionInfo, location_name: "genericRevisionInfo"))
1008
1216
  RevisionInfo.struct_class = Types::RevisionInfo
@@ -1018,6 +1226,10 @@ module Aws::CodeDeploy
1018
1226
 
1019
1227
  RevisionLocationList.member = Shapes::ShapeRef.new(shape: RevisionLocation)
1020
1228
 
1229
+ RevisionRequiredException.struct_class = Types::RevisionRequiredException
1230
+
1231
+ RoleRequiredException.struct_class = Types::RoleRequiredException
1232
+
1021
1233
  RollbackInfo.add_member(:rollback_deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "rollbackDeploymentId"))
1022
1234
  RollbackInfo.add_member(:rollback_triggering_deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "rollbackTriggeringDeploymentId"))
1023
1235
  RollbackInfo.add_member(:rollback_message, Shapes::ShapeRef.new(shape: Description, location_name: "rollbackMessage"))
@@ -1054,14 +1266,20 @@ module Aws::CodeDeploy
1054
1266
 
1055
1267
  TagKeyList.member = Shapes::ShapeRef.new(shape: Key)
1056
1268
 
1269
+ TagLimitExceededException.struct_class = Types::TagLimitExceededException
1270
+
1057
1271
  TagList.member = Shapes::ShapeRef.new(shape: Tag)
1058
1272
 
1273
+ TagRequiredException.struct_class = Types::TagRequiredException
1274
+
1059
1275
  TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ResourceArn"))
1060
1276
  TagResourceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
1061
1277
  TagResourceInput.struct_class = Types::TagResourceInput
1062
1278
 
1063
1279
  TagResourceOutput.struct_class = Types::TagResourceOutput
1064
1280
 
1281
+ TagSetListLimitExceededException.struct_class = Types::TagSetListLimitExceededException
1282
+
1065
1283
  TargetFilters.key = Shapes::ShapeRef.new(shape: TargetFilterName)
1066
1284
  TargetFilters.value = Shapes::ShapeRef.new(shape: FilterValueList)
1067
1285
 
@@ -1084,6 +1302,8 @@ module Aws::CodeDeploy
1084
1302
  TargetInstances.add_member(:ec2_tag_set, Shapes::ShapeRef.new(shape: EC2TagSet, location_name: "ec2TagSet"))
1085
1303
  TargetInstances.struct_class = Types::TargetInstances
1086
1304
 
1305
+ ThrottlingException.struct_class = Types::ThrottlingException
1306
+
1087
1307
  TimeBasedCanary.add_member(:canary_percentage, Shapes::ShapeRef.new(shape: Percentage, location_name: "canaryPercentage"))
1088
1308
  TimeBasedCanary.add_member(:canary_interval, Shapes::ShapeRef.new(shape: WaitTimeInMins, location_name: "canaryInterval"))
1089
1309
  TimeBasedCanary.struct_class = Types::TimeBasedCanary
@@ -1113,6 +1333,10 @@ module Aws::CodeDeploy
1113
1333
 
1114
1334
  TriggerEventTypeList.member = Shapes::ShapeRef.new(shape: TriggerEventType)
1115
1335
 
1336
+ TriggerTargetsLimitExceededException.struct_class = Types::TriggerTargetsLimitExceededException
1337
+
1338
+ UnsupportedActionForDeploymentTypeException.struct_class = Types::UnsupportedActionForDeploymentTypeException
1339
+
1116
1340
  UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ResourceArn"))
1117
1341
  UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
1118
1342
  UntagResourceInput.struct_class = Types::UntagResourceInput