aws-sdk-codedeploy 1.0.0.rc11 → 1.0.0.rc12
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 +110 -2
- data/lib/aws-sdk-codedeploy/client_api.rb +30 -0
- data/lib/aws-sdk-codedeploy/types.rb +190 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f20f8b047ac1363a399dcb3be1e2938fd1e032d2
|
4
|
+
data.tar.gz: fd2edf69c9fad8dc29dbc64251d49e171d56bccc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 816aa39f9151769ae94545686b021dbba726fafaf6825c913513a28d834fe94d9fd1567d9f592d081b3b29dfefe23a7e7e0420cba5e10eeca97969eda1d9810c
|
7
|
+
data.tar.gz: b618eadbdc1e8983d5790e61cf601ae5b37c34eb09ba82c48732857a4a56194ee30fbaec7970b8f1ea44302f22420e6f59ea78574046e45ada1917b231b28cfa
|
data/lib/aws-sdk-codedeploy.rb
CHANGED
@@ -366,6 +366,16 @@ module Aws::CodeDeploy
|
|
366
366
|
# resp.deployment_groups_info[0].last_attempted_deployment.status #=> String, one of "Created", "Queued", "InProgress", "Succeeded", "Failed", "Stopped", "Ready"
|
367
367
|
# resp.deployment_groups_info[0].last_attempted_deployment.end_time #=> Time
|
368
368
|
# resp.deployment_groups_info[0].last_attempted_deployment.create_time #=> Time
|
369
|
+
# resp.deployment_groups_info[0].ec2_tag_set.ec2_tag_set_list #=> Array
|
370
|
+
# resp.deployment_groups_info[0].ec2_tag_set.ec2_tag_set_list[0] #=> Array
|
371
|
+
# resp.deployment_groups_info[0].ec2_tag_set.ec2_tag_set_list[0][0].key #=> String
|
372
|
+
# resp.deployment_groups_info[0].ec2_tag_set.ec2_tag_set_list[0][0].value #=> String
|
373
|
+
# resp.deployment_groups_info[0].ec2_tag_set.ec2_tag_set_list[0][0].type #=> String, one of "KEY_ONLY", "VALUE_ONLY", "KEY_AND_VALUE"
|
374
|
+
# resp.deployment_groups_info[0].on_premises_tag_set.on_premises_tag_set_list #=> Array
|
375
|
+
# resp.deployment_groups_info[0].on_premises_tag_set.on_premises_tag_set_list[0] #=> Array
|
376
|
+
# resp.deployment_groups_info[0].on_premises_tag_set.on_premises_tag_set_list[0][0].key #=> String
|
377
|
+
# resp.deployment_groups_info[0].on_premises_tag_set.on_premises_tag_set_list[0][0].value #=> String
|
378
|
+
# resp.deployment_groups_info[0].on_premises_tag_set.on_premises_tag_set_list[0][0].type #=> String, one of "KEY_ONLY", "VALUE_ONLY", "KEY_AND_VALUE"
|
369
379
|
# resp.error_message #=> String
|
370
380
|
#
|
371
381
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/BatchGetDeploymentGroups AWS API Documentation
|
@@ -494,6 +504,11 @@ module Aws::CodeDeploy
|
|
494
504
|
# resp.deployments_info[0].target_instances.tag_filters[0].type #=> String, one of "KEY_ONLY", "VALUE_ONLY", "KEY_AND_VALUE"
|
495
505
|
# resp.deployments_info[0].target_instances.auto_scaling_groups #=> Array
|
496
506
|
# resp.deployments_info[0].target_instances.auto_scaling_groups[0] #=> String
|
507
|
+
# resp.deployments_info[0].target_instances.ec2_tag_set.ec2_tag_set_list #=> Array
|
508
|
+
# resp.deployments_info[0].target_instances.ec2_tag_set.ec2_tag_set_list[0] #=> Array
|
509
|
+
# resp.deployments_info[0].target_instances.ec2_tag_set.ec2_tag_set_list[0][0].key #=> String
|
510
|
+
# resp.deployments_info[0].target_instances.ec2_tag_set.ec2_tag_set_list[0][0].value #=> String
|
511
|
+
# resp.deployments_info[0].target_instances.ec2_tag_set.ec2_tag_set_list[0][0].type #=> String, one of "KEY_ONLY", "VALUE_ONLY", "KEY_AND_VALUE"
|
497
512
|
# resp.deployments_info[0].instance_termination_wait_time_started #=> Boolean
|
498
513
|
# resp.deployments_info[0].blue_green_deployment_configuration.terminate_blue_instances_on_deployment_success.action #=> String, one of "TERMINATE", "KEEP_ALIVE"
|
499
514
|
# resp.deployments_info[0].blue_green_deployment_configuration.terminate_blue_instances_on_deployment_success.termination_wait_time_in_minutes #=> Integer
|
@@ -708,6 +723,17 @@ module Aws::CodeDeploy
|
|
708
723
|
# },
|
709
724
|
# ],
|
710
725
|
# auto_scaling_groups: ["AutoScalingGroupName"],
|
726
|
+
# ec2_tag_set: {
|
727
|
+
# ec2_tag_set_list: [
|
728
|
+
# [
|
729
|
+
# {
|
730
|
+
# key: "Key",
|
731
|
+
# value: "Value",
|
732
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
733
|
+
# },
|
734
|
+
# ],
|
735
|
+
# ],
|
736
|
+
# },
|
711
737
|
# },
|
712
738
|
# auto_rollback_configuration: {
|
713
739
|
# enabled: false,
|
@@ -813,11 +839,13 @@ module Aws::CodeDeploy
|
|
813
839
|
#
|
814
840
|
# @option params [Array<Types::EC2TagFilter>] :ec2_tag_filters
|
815
841
|
# The Amazon EC2 tags on which to filter. The deployment group will
|
816
|
-
# include EC2 instances with any of the specified tags.
|
842
|
+
# include EC2 instances with any of the specified tags. Cannot be used
|
843
|
+
# in the same call as ec2TagSet.
|
817
844
|
#
|
818
845
|
# @option params [Array<Types::TagFilter>] :on_premises_instance_tag_filters
|
819
846
|
# The on-premises instance tags on which to filter. The deployment group
|
820
847
|
# will include on-premises instances with any of the specified tags.
|
848
|
+
# Cannot be used in the same call as OnPremisesTagSet.
|
821
849
|
#
|
822
850
|
# @option params [Array<String>] :auto_scaling_groups
|
823
851
|
# A list of associated Auto Scaling groups.
|
@@ -855,6 +883,17 @@ module Aws::CodeDeploy
|
|
855
883
|
# @option params [Types::LoadBalancerInfo] :load_balancer_info
|
856
884
|
# Information about the load balancer used in a deployment.
|
857
885
|
#
|
886
|
+
# @option params [Types::EC2TagSet] :ec2_tag_set
|
887
|
+
# Information about groups of tags applied to EC2 instances. The
|
888
|
+
# deployment group will include only EC2 instances identified by all the
|
889
|
+
# tag groups. Cannot be used in the same call as ec2TagFilters.
|
890
|
+
#
|
891
|
+
# @option params [Types::OnPremisesTagSet] :on_premises_tag_set
|
892
|
+
# Information about groups of tags applied to on-premises instances. The
|
893
|
+
# deployment group will include only on-premises instances identified by
|
894
|
+
# all the tag groups. Cannot be used in the same call as
|
895
|
+
# onPremisesInstanceTagFilters.
|
896
|
+
#
|
858
897
|
# @return [Types::CreateDeploymentGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
859
898
|
#
|
860
899
|
# * {Types::CreateDeploymentGroupOutput#deployment_group_id #deployment_group_id} => String
|
@@ -925,6 +964,28 @@ module Aws::CodeDeploy
|
|
925
964
|
# },
|
926
965
|
# ],
|
927
966
|
# },
|
967
|
+
# ec2_tag_set: {
|
968
|
+
# ec2_tag_set_list: [
|
969
|
+
# [
|
970
|
+
# {
|
971
|
+
# key: "Key",
|
972
|
+
# value: "Value",
|
973
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
974
|
+
# },
|
975
|
+
# ],
|
976
|
+
# ],
|
977
|
+
# },
|
978
|
+
# on_premises_tag_set: {
|
979
|
+
# on_premises_tag_set_list: [
|
980
|
+
# [
|
981
|
+
# {
|
982
|
+
# key: "Key",
|
983
|
+
# value: "Value",
|
984
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
985
|
+
# },
|
986
|
+
# ],
|
987
|
+
# ],
|
988
|
+
# },
|
928
989
|
# })
|
929
990
|
#
|
930
991
|
# @example Response structure
|
@@ -1212,6 +1273,11 @@ module Aws::CodeDeploy
|
|
1212
1273
|
# resp.deployment_info.target_instances.tag_filters[0].type #=> String, one of "KEY_ONLY", "VALUE_ONLY", "KEY_AND_VALUE"
|
1213
1274
|
# resp.deployment_info.target_instances.auto_scaling_groups #=> Array
|
1214
1275
|
# resp.deployment_info.target_instances.auto_scaling_groups[0] #=> String
|
1276
|
+
# resp.deployment_info.target_instances.ec2_tag_set.ec2_tag_set_list #=> Array
|
1277
|
+
# resp.deployment_info.target_instances.ec2_tag_set.ec2_tag_set_list[0] #=> Array
|
1278
|
+
# resp.deployment_info.target_instances.ec2_tag_set.ec2_tag_set_list[0][0].key #=> String
|
1279
|
+
# resp.deployment_info.target_instances.ec2_tag_set.ec2_tag_set_list[0][0].value #=> String
|
1280
|
+
# resp.deployment_info.target_instances.ec2_tag_set.ec2_tag_set_list[0][0].type #=> String, one of "KEY_ONLY", "VALUE_ONLY", "KEY_AND_VALUE"
|
1215
1281
|
# resp.deployment_info.instance_termination_wait_time_started #=> Boolean
|
1216
1282
|
# resp.deployment_info.blue_green_deployment_configuration.terminate_blue_instances_on_deployment_success.action #=> String, one of "TERMINATE", "KEEP_ALIVE"
|
1217
1283
|
# resp.deployment_info.blue_green_deployment_configuration.terminate_blue_instances_on_deployment_success.termination_wait_time_in_minutes #=> Integer
|
@@ -1341,6 +1407,16 @@ module Aws::CodeDeploy
|
|
1341
1407
|
# resp.deployment_group_info.last_attempted_deployment.status #=> String, one of "Created", "Queued", "InProgress", "Succeeded", "Failed", "Stopped", "Ready"
|
1342
1408
|
# resp.deployment_group_info.last_attempted_deployment.end_time #=> Time
|
1343
1409
|
# resp.deployment_group_info.last_attempted_deployment.create_time #=> Time
|
1410
|
+
# resp.deployment_group_info.ec2_tag_set.ec2_tag_set_list #=> Array
|
1411
|
+
# resp.deployment_group_info.ec2_tag_set.ec2_tag_set_list[0] #=> Array
|
1412
|
+
# resp.deployment_group_info.ec2_tag_set.ec2_tag_set_list[0][0].key #=> String
|
1413
|
+
# resp.deployment_group_info.ec2_tag_set.ec2_tag_set_list[0][0].value #=> String
|
1414
|
+
# resp.deployment_group_info.ec2_tag_set.ec2_tag_set_list[0][0].type #=> String, one of "KEY_ONLY", "VALUE_ONLY", "KEY_AND_VALUE"
|
1415
|
+
# resp.deployment_group_info.on_premises_tag_set.on_premises_tag_set_list #=> Array
|
1416
|
+
# resp.deployment_group_info.on_premises_tag_set.on_premises_tag_set_list[0] #=> Array
|
1417
|
+
# resp.deployment_group_info.on_premises_tag_set.on_premises_tag_set_list[0][0].key #=> String
|
1418
|
+
# resp.deployment_group_info.on_premises_tag_set.on_premises_tag_set_list[0][0].value #=> String
|
1419
|
+
# resp.deployment_group_info.on_premises_tag_set.on_premises_tag_set_list[0][0].type #=> String, one of "KEY_ONLY", "VALUE_ONLY", "KEY_AND_VALUE"
|
1344
1420
|
#
|
1345
1421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentGroup AWS API Documentation
|
1346
1422
|
#
|
@@ -2120,6 +2196,16 @@ module Aws::CodeDeploy
|
|
2120
2196
|
# @option params [Types::LoadBalancerInfo] :load_balancer_info
|
2121
2197
|
# Information about the load balancer used in a deployment.
|
2122
2198
|
#
|
2199
|
+
# @option params [Types::EC2TagSet] :ec2_tag_set
|
2200
|
+
# Information about groups of tags applied to on-premises instances. The
|
2201
|
+
# deployment group will include only EC2 instances identified by all the
|
2202
|
+
# tag groups.
|
2203
|
+
#
|
2204
|
+
# @option params [Types::OnPremisesTagSet] :on_premises_tag_set
|
2205
|
+
# Information about an on-premises instance tag set. The deployment
|
2206
|
+
# group will include only on-premises instances identified by all the
|
2207
|
+
# tag groups.
|
2208
|
+
#
|
2123
2209
|
# @return [Types::UpdateDeploymentGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2124
2210
|
#
|
2125
2211
|
# * {Types::UpdateDeploymentGroupOutput#hooks_not_cleaned_up #hooks_not_cleaned_up} => Array<Types::AutoScalingGroup>
|
@@ -2191,6 +2277,28 @@ module Aws::CodeDeploy
|
|
2191
2277
|
# },
|
2192
2278
|
# ],
|
2193
2279
|
# },
|
2280
|
+
# ec2_tag_set: {
|
2281
|
+
# ec2_tag_set_list: [
|
2282
|
+
# [
|
2283
|
+
# {
|
2284
|
+
# key: "Key",
|
2285
|
+
# value: "Value",
|
2286
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
2287
|
+
# },
|
2288
|
+
# ],
|
2289
|
+
# ],
|
2290
|
+
# },
|
2291
|
+
# on_premises_tag_set: {
|
2292
|
+
# on_premises_tag_set_list: [
|
2293
|
+
# [
|
2294
|
+
# {
|
2295
|
+
# key: "Key",
|
2296
|
+
# value: "Value",
|
2297
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
2298
|
+
# },
|
2299
|
+
# ],
|
2300
|
+
# ],
|
2301
|
+
# },
|
2194
2302
|
# })
|
2195
2303
|
#
|
2196
2304
|
# @example Response structure
|
@@ -2221,7 +2329,7 @@ module Aws::CodeDeploy
|
|
2221
2329
|
params: params,
|
2222
2330
|
config: config)
|
2223
2331
|
context[:gem_name] = 'aws-sdk-codedeploy'
|
2224
|
-
context[:gem_version] = '1.0.0.
|
2332
|
+
context[:gem_version] = '1.0.0.rc12'
|
2225
2333
|
Seahorse::Client::Request.new(handlers, context)
|
2226
2334
|
end
|
2227
2335
|
|
@@ -113,6 +113,8 @@ module Aws::CodeDeploy
|
|
113
113
|
EC2TagFilter = Shapes::StructureShape.new(name: 'EC2TagFilter')
|
114
114
|
EC2TagFilterList = Shapes::ListShape.new(name: 'EC2TagFilterList')
|
115
115
|
EC2TagFilterType = Shapes::StringShape.new(name: 'EC2TagFilterType')
|
116
|
+
EC2TagSet = Shapes::StructureShape.new(name: 'EC2TagSet')
|
117
|
+
EC2TagSetList = Shapes::ListShape.new(name: 'EC2TagSetList')
|
116
118
|
ELBInfo = Shapes::StructureShape.new(name: 'ELBInfo')
|
117
119
|
ELBInfoList = Shapes::ListShape.new(name: 'ELBInfoList')
|
118
120
|
ELBName = Shapes::StringShape.new(name: 'ELBName')
|
@@ -182,6 +184,7 @@ module Aws::CodeDeploy
|
|
182
184
|
InvalidDeploymentInstanceTypeException = Shapes::StructureShape.new(name: 'InvalidDeploymentInstanceTypeException')
|
183
185
|
InvalidDeploymentStatusException = Shapes::StructureShape.new(name: 'InvalidDeploymentStatusException')
|
184
186
|
InvalidDeploymentStyleException = Shapes::StructureShape.new(name: 'InvalidDeploymentStyleException')
|
187
|
+
InvalidEC2TagCombinationException = Shapes::StructureShape.new(name: 'InvalidEC2TagCombinationException')
|
185
188
|
InvalidEC2TagException = Shapes::StructureShape.new(name: 'InvalidEC2TagException')
|
186
189
|
InvalidFileExistsBehaviorException = Shapes::StructureShape.new(name: 'InvalidFileExistsBehaviorException')
|
187
190
|
InvalidIamSessionArnException = Shapes::StructureShape.new(name: 'InvalidIamSessionArnException')
|
@@ -193,6 +196,7 @@ module Aws::CodeDeploy
|
|
193
196
|
InvalidLoadBalancerInfoException = Shapes::StructureShape.new(name: 'InvalidLoadBalancerInfoException')
|
194
197
|
InvalidMinimumHealthyHostValueException = Shapes::StructureShape.new(name: 'InvalidMinimumHealthyHostValueException')
|
195
198
|
InvalidNextTokenException = Shapes::StructureShape.new(name: 'InvalidNextTokenException')
|
199
|
+
InvalidOnPremisesTagCombinationException = Shapes::StructureShape.new(name: 'InvalidOnPremisesTagCombinationException')
|
196
200
|
InvalidOperationException = Shapes::StructureShape.new(name: 'InvalidOperationException')
|
197
201
|
InvalidRegistrationStatusException = Shapes::StructureShape.new(name: 'InvalidRegistrationStatusException')
|
198
202
|
InvalidRevisionException = Shapes::StructureShape.new(name: 'InvalidRevisionException')
|
@@ -239,6 +243,8 @@ module Aws::CodeDeploy
|
|
239
243
|
MultipleIamArnsProvidedException = Shapes::StructureShape.new(name: 'MultipleIamArnsProvidedException')
|
240
244
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
241
245
|
NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
|
246
|
+
OnPremisesTagSet = Shapes::StructureShape.new(name: 'OnPremisesTagSet')
|
247
|
+
OnPremisesTagSetList = Shapes::ListShape.new(name: 'OnPremisesTagSetList')
|
242
248
|
RegisterApplicationRevisionInput = Shapes::StructureShape.new(name: 'RegisterApplicationRevisionInput')
|
243
249
|
RegisterOnPremisesInstanceInput = Shapes::StructureShape.new(name: 'RegisterOnPremisesInstanceInput')
|
244
250
|
RegistrationStatus = Shapes::StringShape.new(name: 'RegistrationStatus')
|
@@ -271,6 +277,7 @@ module Aws::CodeDeploy
|
|
271
277
|
TagLimitExceededException = Shapes::StructureShape.new(name: 'TagLimitExceededException')
|
272
278
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
273
279
|
TagRequiredException = Shapes::StructureShape.new(name: 'TagRequiredException')
|
280
|
+
TagSetListLimitExceededException = Shapes::StructureShape.new(name: 'TagSetListLimitExceededException')
|
274
281
|
TargetInstances = Shapes::StructureShape.new(name: 'TargetInstances')
|
275
282
|
TimeRange = Shapes::StructureShape.new(name: 'TimeRange')
|
276
283
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
@@ -408,6 +415,8 @@ module Aws::CodeDeploy
|
|
408
415
|
CreateDeploymentGroupInput.add_member(:deployment_style, Shapes::ShapeRef.new(shape: DeploymentStyle, location_name: "deploymentStyle"))
|
409
416
|
CreateDeploymentGroupInput.add_member(:blue_green_deployment_configuration, Shapes::ShapeRef.new(shape: BlueGreenDeploymentConfiguration, location_name: "blueGreenDeploymentConfiguration"))
|
410
417
|
CreateDeploymentGroupInput.add_member(:load_balancer_info, Shapes::ShapeRef.new(shape: LoadBalancerInfo, location_name: "loadBalancerInfo"))
|
418
|
+
CreateDeploymentGroupInput.add_member(:ec2_tag_set, Shapes::ShapeRef.new(shape: EC2TagSet, location_name: "ec2TagSet"))
|
419
|
+
CreateDeploymentGroupInput.add_member(:on_premises_tag_set, Shapes::ShapeRef.new(shape: OnPremisesTagSet, location_name: "onPremisesTagSet"))
|
411
420
|
CreateDeploymentGroupInput.struct_class = Types::CreateDeploymentGroupInput
|
412
421
|
|
413
422
|
CreateDeploymentGroupOutput.add_member(:deployment_group_id, Shapes::ShapeRef.new(shape: DeploymentGroupId, location_name: "deploymentGroupId"))
|
@@ -466,6 +475,8 @@ module Aws::CodeDeploy
|
|
466
475
|
DeploymentGroupInfo.add_member(:load_balancer_info, Shapes::ShapeRef.new(shape: LoadBalancerInfo, location_name: "loadBalancerInfo"))
|
467
476
|
DeploymentGroupInfo.add_member(:last_successful_deployment, Shapes::ShapeRef.new(shape: LastDeploymentInfo, location_name: "lastSuccessfulDeployment"))
|
468
477
|
DeploymentGroupInfo.add_member(:last_attempted_deployment, Shapes::ShapeRef.new(shape: LastDeploymentInfo, location_name: "lastAttemptedDeployment"))
|
478
|
+
DeploymentGroupInfo.add_member(:ec2_tag_set, Shapes::ShapeRef.new(shape: EC2TagSet, location_name: "ec2TagSet"))
|
479
|
+
DeploymentGroupInfo.add_member(:on_premises_tag_set, Shapes::ShapeRef.new(shape: OnPremisesTagSet, location_name: "onPremisesTagSet"))
|
469
480
|
DeploymentGroupInfo.struct_class = Types::DeploymentGroupInfo
|
470
481
|
|
471
482
|
DeploymentGroupInfoList.member = Shapes::ShapeRef.new(shape: DeploymentGroupInfo)
|
@@ -537,6 +548,11 @@ module Aws::CodeDeploy
|
|
537
548
|
|
538
549
|
EC2TagFilterList.member = Shapes::ShapeRef.new(shape: EC2TagFilter)
|
539
550
|
|
551
|
+
EC2TagSet.add_member(:ec2_tag_set_list, Shapes::ShapeRef.new(shape: EC2TagSetList, location_name: "ec2TagSetList"))
|
552
|
+
EC2TagSet.struct_class = Types::EC2TagSet
|
553
|
+
|
554
|
+
EC2TagSetList.member = Shapes::ShapeRef.new(shape: EC2TagFilterList)
|
555
|
+
|
540
556
|
ELBInfo.add_member(:name, Shapes::ShapeRef.new(shape: ELBName, location_name: "name"))
|
541
557
|
ELBInfo.struct_class = Types::ELBInfo
|
542
558
|
|
@@ -733,6 +749,11 @@ module Aws::CodeDeploy
|
|
733
749
|
MinimumHealthyHosts.add_member(:type, Shapes::ShapeRef.new(shape: MinimumHealthyHostsType, location_name: "type"))
|
734
750
|
MinimumHealthyHosts.struct_class = Types::MinimumHealthyHosts
|
735
751
|
|
752
|
+
OnPremisesTagSet.add_member(:on_premises_tag_set_list, Shapes::ShapeRef.new(shape: OnPremisesTagSetList, location_name: "onPremisesTagSetList"))
|
753
|
+
OnPremisesTagSet.struct_class = Types::OnPremisesTagSet
|
754
|
+
|
755
|
+
OnPremisesTagSetList.member = Shapes::ShapeRef.new(shape: TagFilterList)
|
756
|
+
|
736
757
|
RegisterApplicationRevisionInput.add_member(:application_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "applicationName"))
|
737
758
|
RegisterApplicationRevisionInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
738
759
|
RegisterApplicationRevisionInput.add_member(:revision, Shapes::ShapeRef.new(shape: RevisionLocation, required: true, location_name: "revision"))
|
@@ -798,6 +819,7 @@ module Aws::CodeDeploy
|
|
798
819
|
|
799
820
|
TargetInstances.add_member(:tag_filters, Shapes::ShapeRef.new(shape: EC2TagFilterList, location_name: "tagFilters"))
|
800
821
|
TargetInstances.add_member(:auto_scaling_groups, Shapes::ShapeRef.new(shape: AutoScalingGroupNameList, location_name: "autoScalingGroups"))
|
822
|
+
TargetInstances.add_member(:ec2_tag_set, Shapes::ShapeRef.new(shape: EC2TagSet, location_name: "ec2TagSet"))
|
801
823
|
TargetInstances.struct_class = Types::TargetInstances
|
802
824
|
|
803
825
|
TimeRange.add_member(:start, Shapes::ShapeRef.new(shape: Timestamp, location_name: "start"))
|
@@ -831,6 +853,8 @@ module Aws::CodeDeploy
|
|
831
853
|
UpdateDeploymentGroupInput.add_member(:deployment_style, Shapes::ShapeRef.new(shape: DeploymentStyle, location_name: "deploymentStyle"))
|
832
854
|
UpdateDeploymentGroupInput.add_member(:blue_green_deployment_configuration, Shapes::ShapeRef.new(shape: BlueGreenDeploymentConfiguration, location_name: "blueGreenDeploymentConfiguration"))
|
833
855
|
UpdateDeploymentGroupInput.add_member(:load_balancer_info, Shapes::ShapeRef.new(shape: LoadBalancerInfo, location_name: "loadBalancerInfo"))
|
856
|
+
UpdateDeploymentGroupInput.add_member(:ec2_tag_set, Shapes::ShapeRef.new(shape: EC2TagSet, location_name: "ec2TagSet"))
|
857
|
+
UpdateDeploymentGroupInput.add_member(:on_premises_tag_set, Shapes::ShapeRef.new(shape: OnPremisesTagSet, location_name: "onPremisesTagSet"))
|
834
858
|
UpdateDeploymentGroupInput.struct_class = Types::UpdateDeploymentGroupInput
|
835
859
|
|
836
860
|
UpdateDeploymentGroupOutput.add_member(:hooks_not_cleaned_up, Shapes::ShapeRef.new(shape: AutoScalingGroupList, location_name: "hooksNotCleanedUp"))
|
@@ -1035,6 +1059,9 @@ module Aws::CodeDeploy
|
|
1035
1059
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLoadBalancerInfoException)
|
1036
1060
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDeploymentStyleException)
|
1037
1061
|
o.errors << Shapes::ShapeRef.new(shape: InvalidBlueGreenDeploymentConfigurationException)
|
1062
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidEC2TagCombinationException)
|
1063
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOnPremisesTagCombinationException)
|
1064
|
+
o.errors << Shapes::ShapeRef.new(shape: TagSetListLimitExceededException)
|
1038
1065
|
end)
|
1039
1066
|
|
1040
1067
|
api.add_operation(:delete_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1412,6 +1439,9 @@ module Aws::CodeDeploy
|
|
1412
1439
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLoadBalancerInfoException)
|
1413
1440
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDeploymentStyleException)
|
1414
1441
|
o.errors << Shapes::ShapeRef.new(shape: InvalidBlueGreenDeploymentConfigurationException)
|
1442
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidEC2TagCombinationException)
|
1443
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOnPremisesTagCombinationException)
|
1444
|
+
o.errors << Shapes::ShapeRef.new(shape: TagSetListLimitExceededException)
|
1415
1445
|
end)
|
1416
1446
|
end
|
1417
1447
|
|
@@ -709,6 +709,28 @@ module Aws::CodeDeploy
|
|
709
709
|
# },
|
710
710
|
# ],
|
711
711
|
# },
|
712
|
+
# ec2_tag_set: {
|
713
|
+
# ec2_tag_set_list: [
|
714
|
+
# [
|
715
|
+
# {
|
716
|
+
# key: "Key",
|
717
|
+
# value: "Value",
|
718
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
719
|
+
# },
|
720
|
+
# ],
|
721
|
+
# ],
|
722
|
+
# },
|
723
|
+
# on_premises_tag_set: {
|
724
|
+
# on_premises_tag_set_list: [
|
725
|
+
# [
|
726
|
+
# {
|
727
|
+
# key: "Key",
|
728
|
+
# value: "Value",
|
729
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
730
|
+
# },
|
731
|
+
# ],
|
732
|
+
# ],
|
733
|
+
# },
|
712
734
|
# }
|
713
735
|
#
|
714
736
|
# @!attribute [rw] application_name
|
@@ -741,13 +763,14 @@ module Aws::CodeDeploy
|
|
741
763
|
#
|
742
764
|
# @!attribute [rw] ec2_tag_filters
|
743
765
|
# The Amazon EC2 tags on which to filter. The deployment group will
|
744
|
-
# include EC2 instances with any of the specified tags.
|
766
|
+
# include EC2 instances with any of the specified tags. Cannot be used
|
767
|
+
# in the same call as ec2TagSet.
|
745
768
|
# @return [Array<Types::EC2TagFilter>]
|
746
769
|
#
|
747
770
|
# @!attribute [rw] on_premises_instance_tag_filters
|
748
771
|
# The on-premises instance tags on which to filter. The deployment
|
749
772
|
# group will include on-premises instances with any of the specified
|
750
|
-
# tags.
|
773
|
+
# tags. Cannot be used in the same call as OnPremisesTagSet.
|
751
774
|
# @return [Array<Types::TagFilter>]
|
752
775
|
#
|
753
776
|
# @!attribute [rw] auto_scaling_groups
|
@@ -794,6 +817,19 @@ module Aws::CodeDeploy
|
|
794
817
|
# Information about the load balancer used in a deployment.
|
795
818
|
# @return [Types::LoadBalancerInfo]
|
796
819
|
#
|
820
|
+
# @!attribute [rw] ec2_tag_set
|
821
|
+
# Information about groups of tags applied to EC2 instances. The
|
822
|
+
# deployment group will include only EC2 instances identified by all
|
823
|
+
# the tag groups. Cannot be used in the same call as ec2TagFilters.
|
824
|
+
# @return [Types::EC2TagSet]
|
825
|
+
#
|
826
|
+
# @!attribute [rw] on_premises_tag_set
|
827
|
+
# Information about groups of tags applied to on-premises instances.
|
828
|
+
# The deployment group will include only on-premises instances
|
829
|
+
# identified by all the tag groups. Cannot be used in the same call as
|
830
|
+
# onPremisesInstanceTagFilters.
|
831
|
+
# @return [Types::OnPremisesTagSet]
|
832
|
+
#
|
797
833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeploymentGroupInput AWS API Documentation
|
798
834
|
#
|
799
835
|
class CreateDeploymentGroupInput < Struct.new(
|
@@ -809,7 +845,9 @@ module Aws::CodeDeploy
|
|
809
845
|
:auto_rollback_configuration,
|
810
846
|
:deployment_style,
|
811
847
|
:blue_green_deployment_configuration,
|
812
|
-
:load_balancer_info
|
848
|
+
:load_balancer_info,
|
849
|
+
:ec2_tag_set,
|
850
|
+
:on_premises_tag_set)
|
813
851
|
include Aws::Structure
|
814
852
|
end
|
815
853
|
|
@@ -860,6 +898,17 @@ module Aws::CodeDeploy
|
|
860
898
|
# },
|
861
899
|
# ],
|
862
900
|
# auto_scaling_groups: ["AutoScalingGroupName"],
|
901
|
+
# ec2_tag_set: {
|
902
|
+
# ec2_tag_set_list: [
|
903
|
+
# [
|
904
|
+
# {
|
905
|
+
# key: "Key",
|
906
|
+
# value: "Value",
|
907
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
908
|
+
# },
|
909
|
+
# ],
|
910
|
+
# ],
|
911
|
+
# },
|
863
912
|
# },
|
864
913
|
# auto_rollback_configuration: {
|
865
914
|
# enabled: false,
|
@@ -1108,11 +1157,13 @@ module Aws::CodeDeploy
|
|
1108
1157
|
# @return [String]
|
1109
1158
|
#
|
1110
1159
|
# @!attribute [rw] ec2_tag_filters
|
1111
|
-
# The Amazon EC2 tags on which to filter.
|
1160
|
+
# The Amazon EC2 tags on which to filter. The deployment group
|
1161
|
+
# includes EC2 instances with any of the specified tags.
|
1112
1162
|
# @return [Array<Types::EC2TagFilter>]
|
1113
1163
|
#
|
1114
1164
|
# @!attribute [rw] on_premises_instance_tag_filters
|
1115
|
-
# The on-premises instance tags on which to filter.
|
1165
|
+
# The on-premises instance tags on which to filter. The deployment
|
1166
|
+
# group includes on-premises instances with any of the specified tags.
|
1116
1167
|
# @return [Array<Types::TagFilter>]
|
1117
1168
|
#
|
1118
1169
|
# @!attribute [rw] auto_scaling_groups
|
@@ -1166,6 +1217,19 @@ module Aws::CodeDeploy
|
|
1166
1217
|
# deployment group.
|
1167
1218
|
# @return [Types::LastDeploymentInfo]
|
1168
1219
|
#
|
1220
|
+
# @!attribute [rw] ec2_tag_set
|
1221
|
+
# Information about groups of tags applied to an EC2 instance. The
|
1222
|
+
# deployment group includes only EC2 instances identified by all the
|
1223
|
+
# tag groups. Cannot be used in the same call as ec2TagFilters.
|
1224
|
+
# @return [Types::EC2TagSet]
|
1225
|
+
#
|
1226
|
+
# @!attribute [rw] on_premises_tag_set
|
1227
|
+
# Information about groups of tags applied to an on-premises instance.
|
1228
|
+
# The deployment group includes only on-premises instances identified
|
1229
|
+
# by all the tag groups. Cannot be used in the same call as
|
1230
|
+
# onPremisesInstanceTagFilters.
|
1231
|
+
# @return [Types::OnPremisesTagSet]
|
1232
|
+
#
|
1169
1233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/DeploymentGroupInfo AWS API Documentation
|
1170
1234
|
#
|
1171
1235
|
class DeploymentGroupInfo < Struct.new(
|
@@ -1185,7 +1249,9 @@ module Aws::CodeDeploy
|
|
1185
1249
|
:blue_green_deployment_configuration,
|
1186
1250
|
:load_balancer_info,
|
1187
1251
|
:last_successful_deployment,
|
1188
|
-
:last_attempted_deployment
|
1252
|
+
:last_attempted_deployment,
|
1253
|
+
:ec2_tag_set,
|
1254
|
+
:on_premises_tag_set)
|
1189
1255
|
include Aws::Structure
|
1190
1256
|
end
|
1191
1257
|
|
@@ -1584,6 +1650,36 @@ module Aws::CodeDeploy
|
|
1584
1650
|
include Aws::Structure
|
1585
1651
|
end
|
1586
1652
|
|
1653
|
+
# Information about groups of EC2 instance tags.
|
1654
|
+
#
|
1655
|
+
# @note When making an API call, you may pass EC2TagSet
|
1656
|
+
# data as a hash:
|
1657
|
+
#
|
1658
|
+
# {
|
1659
|
+
# ec2_tag_set_list: [
|
1660
|
+
# [
|
1661
|
+
# {
|
1662
|
+
# key: "Key",
|
1663
|
+
# value: "Value",
|
1664
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
1665
|
+
# },
|
1666
|
+
# ],
|
1667
|
+
# ],
|
1668
|
+
# }
|
1669
|
+
#
|
1670
|
+
# @!attribute [rw] ec2_tag_set_list
|
1671
|
+
# A list containing other lists of EC2 instance tag groups. In order
|
1672
|
+
# for an instance to be included in the deployment group, it must be
|
1673
|
+
# identified by all the tag groups in the list.
|
1674
|
+
# @return [Array<Array<Types::EC2TagFilter>>]
|
1675
|
+
#
|
1676
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/EC2TagSet AWS API Documentation
|
1677
|
+
#
|
1678
|
+
class EC2TagSet < Struct.new(
|
1679
|
+
:ec2_tag_set_list)
|
1680
|
+
include Aws::Structure
|
1681
|
+
end
|
1682
|
+
|
1587
1683
|
# Information about a load balancer in Elastic Load Balancing to use in
|
1588
1684
|
# a deployment.
|
1589
1685
|
#
|
@@ -2831,6 +2927,36 @@ module Aws::CodeDeploy
|
|
2831
2927
|
include Aws::Structure
|
2832
2928
|
end
|
2833
2929
|
|
2930
|
+
# Information about groups of on-premises instance tags.
|
2931
|
+
#
|
2932
|
+
# @note When making an API call, you may pass OnPremisesTagSet
|
2933
|
+
# data as a hash:
|
2934
|
+
#
|
2935
|
+
# {
|
2936
|
+
# on_premises_tag_set_list: [
|
2937
|
+
# [
|
2938
|
+
# {
|
2939
|
+
# key: "Key",
|
2940
|
+
# value: "Value",
|
2941
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
2942
|
+
# },
|
2943
|
+
# ],
|
2944
|
+
# ],
|
2945
|
+
# }
|
2946
|
+
#
|
2947
|
+
# @!attribute [rw] on_premises_tag_set_list
|
2948
|
+
# A list containing other lists of on-premises instance tag groups. In
|
2949
|
+
# order for an instance to be included in the deployment group, it
|
2950
|
+
# must be identified by all the tag groups in the list.
|
2951
|
+
# @return [Array<Array<Types::TagFilter>>]
|
2952
|
+
#
|
2953
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/OnPremisesTagSet AWS API Documentation
|
2954
|
+
#
|
2955
|
+
class OnPremisesTagSet < Struct.new(
|
2956
|
+
:on_premises_tag_set_list)
|
2957
|
+
include Aws::Structure
|
2958
|
+
end
|
2959
|
+
|
2834
2960
|
# Represents the input of a RegisterApplicationRevision operation.
|
2835
2961
|
#
|
2836
2962
|
# @note When making an API call, you may pass RegisterApplicationRevisionInput
|
@@ -3244,11 +3370,23 @@ module Aws::CodeDeploy
|
|
3244
3370
|
# },
|
3245
3371
|
# ],
|
3246
3372
|
# auto_scaling_groups: ["AutoScalingGroupName"],
|
3373
|
+
# ec2_tag_set: {
|
3374
|
+
# ec2_tag_set_list: [
|
3375
|
+
# [
|
3376
|
+
# {
|
3377
|
+
# key: "Key",
|
3378
|
+
# value: "Value",
|
3379
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
3380
|
+
# },
|
3381
|
+
# ],
|
3382
|
+
# ],
|
3383
|
+
# },
|
3247
3384
|
# }
|
3248
3385
|
#
|
3249
3386
|
# @!attribute [rw] tag_filters
|
3250
3387
|
# The tag filter key, type, and value used to identify Amazon EC2
|
3251
3388
|
# instances in a replacement environment for a blue/green deployment.
|
3389
|
+
# Cannot be used in the same call as ec2TagSet.
|
3252
3390
|
# @return [Array<Types::EC2TagFilter>]
|
3253
3391
|
#
|
3254
3392
|
# @!attribute [rw] auto_scaling_groups
|
@@ -3256,11 +3394,19 @@ module Aws::CodeDeploy
|
|
3256
3394
|
# replacement environment for a blue/green deployment.
|
3257
3395
|
# @return [Array<String>]
|
3258
3396
|
#
|
3397
|
+
# @!attribute [rw] ec2_tag_set
|
3398
|
+
# Information about the groups of EC2 instance tags that an instance
|
3399
|
+
# must be identified by in order for it to be included in the
|
3400
|
+
# replacement environment for a blue/green deployment. Cannot be used
|
3401
|
+
# in the same call as tagFilters.
|
3402
|
+
# @return [Types::EC2TagSet]
|
3403
|
+
#
|
3259
3404
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/TargetInstances AWS API Documentation
|
3260
3405
|
#
|
3261
3406
|
class TargetInstances < Struct.new(
|
3262
3407
|
:tag_filters,
|
3263
|
-
:auto_scaling_groups
|
3408
|
+
:auto_scaling_groups,
|
3409
|
+
:ec2_tag_set)
|
3264
3410
|
include Aws::Structure
|
3265
3411
|
end
|
3266
3412
|
|
@@ -3427,6 +3573,28 @@ module Aws::CodeDeploy
|
|
3427
3573
|
# },
|
3428
3574
|
# ],
|
3429
3575
|
# },
|
3576
|
+
# ec2_tag_set: {
|
3577
|
+
# ec2_tag_set_list: [
|
3578
|
+
# [
|
3579
|
+
# {
|
3580
|
+
# key: "Key",
|
3581
|
+
# value: "Value",
|
3582
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
3583
|
+
# },
|
3584
|
+
# ],
|
3585
|
+
# ],
|
3586
|
+
# },
|
3587
|
+
# on_premises_tag_set: {
|
3588
|
+
# on_premises_tag_set_list: [
|
3589
|
+
# [
|
3590
|
+
# {
|
3591
|
+
# key: "Key",
|
3592
|
+
# value: "Value",
|
3593
|
+
# type: "KEY_ONLY", # accepts KEY_ONLY, VALUE_ONLY, KEY_AND_VALUE
|
3594
|
+
# },
|
3595
|
+
# ],
|
3596
|
+
# ],
|
3597
|
+
# },
|
3430
3598
|
# }
|
3431
3599
|
#
|
3432
3600
|
# @!attribute [rw] application_name
|
@@ -3505,6 +3673,18 @@ module Aws::CodeDeploy
|
|
3505
3673
|
# Information about the load balancer used in a deployment.
|
3506
3674
|
# @return [Types::LoadBalancerInfo]
|
3507
3675
|
#
|
3676
|
+
# @!attribute [rw] ec2_tag_set
|
3677
|
+
# Information about groups of tags applied to on-premises instances.
|
3678
|
+
# The deployment group will include only EC2 instances identified by
|
3679
|
+
# all the tag groups.
|
3680
|
+
# @return [Types::EC2TagSet]
|
3681
|
+
#
|
3682
|
+
# @!attribute [rw] on_premises_tag_set
|
3683
|
+
# Information about an on-premises instance tag set. The deployment
|
3684
|
+
# group will include only on-premises instances identified by all the
|
3685
|
+
# tag groups.
|
3686
|
+
# @return [Types::OnPremisesTagSet]
|
3687
|
+
#
|
3508
3688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/UpdateDeploymentGroupInput AWS API Documentation
|
3509
3689
|
#
|
3510
3690
|
class UpdateDeploymentGroupInput < Struct.new(
|
@@ -3521,7 +3701,9 @@ module Aws::CodeDeploy
|
|
3521
3701
|
:auto_rollback_configuration,
|
3522
3702
|
:deployment_style,
|
3523
3703
|
:blue_green_deployment_configuration,
|
3524
|
-
:load_balancer_info
|
3704
|
+
:load_balancer_info,
|
3705
|
+
:ec2_tag_set,
|
3706
|
+
:on_premises_tag_set)
|
3525
3707
|
include Aws::Structure
|
3526
3708
|
end
|
3527
3709
|
|
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.0.0.
|
4
|
+
version: 1.0.0.rc12
|
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: 2017-
|
11
|
+
date: 2017-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc19
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc19
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|