aws-sdk-codedeploy 1.13.0 → 1.14.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-codedeploy.rb +1 -1
- data/lib/aws-sdk-codedeploy/client.rb +37 -13
- data/lib/aws-sdk-codedeploy/types.rb +58 -24
- 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: 9c9aa1a1d4a7c466d90b2e4dac08a8b971b1fd74
|
4
|
+
data.tar.gz: 1c3c1af63e9f0897613ee668b73fc6dc0db322ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6082272ceb1308929a92addc91155c4c9aeeb87ed8247c26c7b0c0260e313c5ae368fed8d7e284ff1538dbaec2b110285a4be21f2a354e7663def137e27401ac
|
7
|
+
data.tar.gz: 815eb40cd0cbb29085bae5e250f7463c4abd1180fa0bbd2b0c2b4a08dc9b374c3e9a3739e16654a18ddafd7d5b5442685d933eaf3e3b70e936d387e8048dbd9f
|
data/lib/aws-sdk-codedeploy.rb
CHANGED
@@ -888,15 +888,32 @@ module Aws::CodeDeploy
|
|
888
888
|
# A comment about the deployment.
|
889
889
|
#
|
890
890
|
# @option params [Boolean] :ignore_application_stop_failures
|
891
|
-
# If
|
892
|
-
# deployment lifecycle event to an instance
|
893
|
-
#
|
894
|
-
#
|
895
|
-
#
|
896
|
-
#
|
897
|
-
#
|
898
|
-
#
|
899
|
-
#
|
891
|
+
# If true, then if an ApplicationStop, BeforeBlockTraffic, or
|
892
|
+
# AfterBlockTraffic deployment lifecycle event to an instance fails,
|
893
|
+
# then the deployment continues to the next deployment lifecycle event.
|
894
|
+
# For example, if ApplicationStop fails, the deployment continues with
|
895
|
+
# DownloadBundle. If BeforeBlockTraffic fails, the deployment continues
|
896
|
+
# with BlockTraffic. If AfterBlockTraffic fails, the deployment
|
897
|
+
# continues with ApplicationStop.
|
898
|
+
#
|
899
|
+
# If false or not specified, then if a lifecycle event fails during a
|
900
|
+
# deployment to an instance, that deployment fails. If deployment to
|
901
|
+
# that instance is part of an overall deployment and the number of
|
902
|
+
# healthy hosts is not less than the minimum number of healthy hosts,
|
903
|
+
# then a deployment to the next instance is attempted.
|
904
|
+
#
|
905
|
+
# During a deployment, the AWS CodeDeploy agent runs the scripts
|
906
|
+
# specified for ApplicationStop, BeforeBlockTraffic, and
|
907
|
+
# AfterBlockTraffic in the AppSpec file from the previous successful
|
908
|
+
# deployment. (All other scripts are run from the AppSpec file in the
|
909
|
+
# current deployment.) If one of these scripts contains an error and
|
910
|
+
# does not run successfully, the deployment can fail.
|
911
|
+
#
|
912
|
+
# If the cause of the failure is a script from the last successful
|
913
|
+
# deployment that will never run successfully, create a new deployment
|
914
|
+
# and use `ignoreApplicationStopFailures` to specify that the
|
915
|
+
# ApplicationStop, BeforeBlockTraffic, and AfterBlockTraffic failures
|
916
|
+
# should be ignored.
|
900
917
|
#
|
901
918
|
# @option params [Types::TargetInstances] :target_instances
|
902
919
|
# Information about the instances that belong to the replacement
|
@@ -1101,7 +1118,7 @@ module Aws::CodeDeploy
|
|
1101
1118
|
#
|
1102
1119
|
#
|
1103
1120
|
#
|
1104
|
-
# [1]:
|
1121
|
+
# [1]: https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-configurations.html
|
1105
1122
|
#
|
1106
1123
|
# @option params [Array<Types::EC2TagFilter>] :ec2_tag_filters
|
1107
1124
|
# The Amazon EC2 tags on which to filter. The deployment group includes
|
@@ -1127,7 +1144,7 @@ module Aws::CodeDeploy
|
|
1127
1144
|
#
|
1128
1145
|
#
|
1129
1146
|
#
|
1130
|
-
# [1]:
|
1147
|
+
# [1]: https://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-notify-sns.html
|
1131
1148
|
#
|
1132
1149
|
# @option params [Types::AlarmConfiguration] :alarm_configuration
|
1133
1150
|
# Information to add about Amazon CloudWatch alarms when the deployment
|
@@ -1545,6 +1562,13 @@ module Aws::CodeDeploy
|
|
1545
1562
|
|
1546
1563
|
# Gets information about a deployment.
|
1547
1564
|
#
|
1565
|
+
# <note markdown="1"> The `content` property of the `appSpecContent` object in the returned
|
1566
|
+
# revision is always null. Use `GetApplicationRevision` and the `sha256`
|
1567
|
+
# property of the returned `appSpecContent` object to get the content of
|
1568
|
+
# the deployment’s AppSpec file.
|
1569
|
+
#
|
1570
|
+
# </note>
|
1571
|
+
#
|
1548
1572
|
# @option params [required, String] :deployment_id
|
1549
1573
|
# The unique ID of a deployment associated with the IAM user or AWS
|
1550
1574
|
# account.
|
@@ -2740,7 +2764,7 @@ module Aws::CodeDeploy
|
|
2740
2764
|
#
|
2741
2765
|
#
|
2742
2766
|
#
|
2743
|
-
# [1]:
|
2767
|
+
# [1]: https://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-notify-edit.html
|
2744
2768
|
#
|
2745
2769
|
# @option params [Types::AlarmConfiguration] :alarm_configuration
|
2746
2770
|
# Information to add or change about Amazon CloudWatch alarms when the
|
@@ -2927,7 +2951,7 @@ module Aws::CodeDeploy
|
|
2927
2951
|
params: params,
|
2928
2952
|
config: config)
|
2929
2953
|
context[:gem_name] = 'aws-sdk-codedeploy'
|
2930
|
-
context[:gem_version] = '1.
|
2954
|
+
context[:gem_version] = '1.14.0'
|
2931
2955
|
Seahorse::Client::Request.new(handlers, context)
|
2932
2956
|
end
|
2933
2957
|
|
@@ -943,7 +943,7 @@ module Aws::CodeDeploy
|
|
943
943
|
#
|
944
944
|
#
|
945
945
|
#
|
946
|
-
# [1]:
|
946
|
+
# [1]: https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-configurations.html
|
947
947
|
# @return [String]
|
948
948
|
#
|
949
949
|
# @!attribute [rw] ec2_tag_filters
|
@@ -974,7 +974,7 @@ module Aws::CodeDeploy
|
|
974
974
|
#
|
975
975
|
#
|
976
976
|
#
|
977
|
-
# [1]:
|
977
|
+
# [1]: https://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-notify-sns.html
|
978
978
|
# @return [Array<Types::TriggerConfig>]
|
979
979
|
#
|
980
980
|
# @!attribute [rw] alarm_configuration
|
@@ -1148,15 +1148,32 @@ module Aws::CodeDeploy
|
|
1148
1148
|
# @return [String]
|
1149
1149
|
#
|
1150
1150
|
# @!attribute [rw] ignore_application_stop_failures
|
1151
|
-
# If
|
1152
|
-
# deployment lifecycle event to an instance
|
1153
|
-
#
|
1154
|
-
#
|
1155
|
-
#
|
1156
|
-
#
|
1157
|
-
#
|
1158
|
-
#
|
1159
|
-
#
|
1151
|
+
# If true, then if an ApplicationStop, BeforeBlockTraffic, or
|
1152
|
+
# AfterBlockTraffic deployment lifecycle event to an instance fails,
|
1153
|
+
# then the deployment continues to the next deployment lifecycle
|
1154
|
+
# event. For example, if ApplicationStop fails, the deployment
|
1155
|
+
# continues with DownloadBundle. If BeforeBlockTraffic fails, the
|
1156
|
+
# deployment continues with BlockTraffic. If AfterBlockTraffic fails,
|
1157
|
+
# the deployment continues with ApplicationStop.
|
1158
|
+
#
|
1159
|
+
# If false or not specified, then if a lifecycle event fails during a
|
1160
|
+
# deployment to an instance, that deployment fails. If deployment to
|
1161
|
+
# that instance is part of an overall deployment and the number of
|
1162
|
+
# healthy hosts is not less than the minimum number of healthy hosts,
|
1163
|
+
# then a deployment to the next instance is attempted.
|
1164
|
+
#
|
1165
|
+
# During a deployment, the AWS CodeDeploy agent runs the scripts
|
1166
|
+
# specified for ApplicationStop, BeforeBlockTraffic, and
|
1167
|
+
# AfterBlockTraffic in the AppSpec file from the previous successful
|
1168
|
+
# deployment. (All other scripts are run from the AppSpec file in the
|
1169
|
+
# current deployment.) If one of these scripts contains an error and
|
1170
|
+
# does not run successfully, the deployment can fail.
|
1171
|
+
#
|
1172
|
+
# If the cause of the failure is a script from the last successful
|
1173
|
+
# deployment that will never run successfully, create a new deployment
|
1174
|
+
# and use `ignoreApplicationStopFailures` to specify that the
|
1175
|
+
# ApplicationStop, BeforeBlockTraffic, and AfterBlockTraffic failures
|
1176
|
+
# should be ignored.
|
1160
1177
|
# @return [Boolean]
|
1161
1178
|
#
|
1162
1179
|
# @!attribute [rw] target_instances
|
@@ -1590,15 +1607,32 @@ module Aws::CodeDeploy
|
|
1590
1607
|
# @return [String]
|
1591
1608
|
#
|
1592
1609
|
# @!attribute [rw] ignore_application_stop_failures
|
1593
|
-
# If true, then if
|
1594
|
-
# deployment lifecycle event to an instance
|
1595
|
-
#
|
1596
|
-
#
|
1597
|
-
#
|
1598
|
-
#
|
1599
|
-
#
|
1600
|
-
#
|
1601
|
-
#
|
1610
|
+
# If true, then if an ApplicationStop, BeforeBlockTraffic, or
|
1611
|
+
# AfterBlockTraffic deployment lifecycle event to an instance fails,
|
1612
|
+
# then the deployment continues to the next deployment lifecycle
|
1613
|
+
# event. For example, if ApplicationStop fails, the deployment
|
1614
|
+
# continues with DownloadBundle. If BeforeBlockTraffic fails, the
|
1615
|
+
# deployment continues with BlockTraffic. If AfterBlockTraffic fails,
|
1616
|
+
# the deployment continues with ApplicationStop.
|
1617
|
+
#
|
1618
|
+
# If false or not specified, then if a lifecycle event fails during a
|
1619
|
+
# deployment to an instance, that deployment fails. If deployment to
|
1620
|
+
# that instance is part of an overall deployment and the number of
|
1621
|
+
# healthy hosts is not less than the minimum number of healthy hosts,
|
1622
|
+
# then a deployment to the next instance is attempted.
|
1623
|
+
#
|
1624
|
+
# During a deployment, the AWS CodeDeploy agent runs the scripts
|
1625
|
+
# specified for ApplicationStop, BeforeBlockTraffic, and
|
1626
|
+
# AfterBlockTraffic in the AppSpec file from the previous successful
|
1627
|
+
# deployment. (All other scripts are run from the AppSpec file in the
|
1628
|
+
# current deployment.) If one of these scripts contains an error and
|
1629
|
+
# does not run successfully, the deployment can fail.
|
1630
|
+
#
|
1631
|
+
# If the cause of the failure is a script from the last successful
|
1632
|
+
# deployment that will never run successfully, create a new deployment
|
1633
|
+
# and use `ignoreApplicationStopFailures` to specify that the
|
1634
|
+
# ApplicationStop, BeforeBlockTraffic, and AfterBlockTraffic failures
|
1635
|
+
# should be ignored.
|
1602
1636
|
# @return [Boolean]
|
1603
1637
|
#
|
1604
1638
|
# @!attribute [rw] auto_rollback_configuration
|
@@ -2209,8 +2243,8 @@ module Aws::CodeDeploy
|
|
2209
2243
|
#
|
2210
2244
|
#
|
2211
2245
|
#
|
2212
|
-
# [1]:
|
2213
|
-
# [2]:
|
2246
|
+
# [1]: https://docs.aws.amazon.com/codedeploy/latest/userguide/error-codes.html
|
2247
|
+
# [2]: https://docs.aws.amazon.com/codedeploy/latest/userguide
|
2214
2248
|
# @return [String]
|
2215
2249
|
#
|
2216
2250
|
# @!attribute [rw] message
|
@@ -3600,7 +3634,7 @@ module Aws::CodeDeploy
|
|
3600
3634
|
#
|
3601
3635
|
#
|
3602
3636
|
#
|
3603
|
-
# [1]:
|
3637
|
+
# [1]: https://docs.aws.amazon.com/codedeploy/latest/userguide/instances-health.html
|
3604
3638
|
# @return [String]
|
3605
3639
|
#
|
3606
3640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/MinimumHealthyHosts AWS API Documentation
|
@@ -4670,7 +4704,7 @@ module Aws::CodeDeploy
|
|
4670
4704
|
#
|
4671
4705
|
#
|
4672
4706
|
#
|
4673
|
-
# [1]:
|
4707
|
+
# [1]: https://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-notify-edit.html
|
4674
4708
|
# @return [Array<Types::TriggerConfig>]
|
4675
4709
|
#
|
4676
4710
|
# @!attribute [rw] alarm_configuration
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codedeploy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|