aws-sdk-ecs 1.0.0.rc2 → 1.0.0.rc3

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: eacdcdc4749f6df06ac37bf7d58caf4d8cb6b277
4
- data.tar.gz: 3d09dfefa31f12347f5cbb1ffb6c3bca0a6cdee0
3
+ metadata.gz: c5a24c94abc81a56bdd796a266d7bb67ed5ee442
4
+ data.tar.gz: 7ae76ddf7da435f121a619f3e4e054a7644a7aff
5
5
  SHA512:
6
- metadata.gz: a8346537cfc13ac4e48a574092924005255d6acb26c28bf97d88725715e615a07fa18a004a5a1a3dad5d495047dfb1a972bfbadd358731fad333e6500ba1c2ab
7
- data.tar.gz: acc9e06535a96fa2a9fe01dedca8701020223f0d9ae556ad08f64e252b71eed153ca196e6dd8954f4d832427c5cfa2ca2951db557ba1f826fe10777e47642b68
6
+ metadata.gz: 827777da7a831eee76c4a90dea0cc961731cc32bbb78e6516a4f7554f0d57a805c900ec84d6071269ab0378e704ebf1092e90ddce2449930ea8c8e62506de84d
7
+ data.tar.gz: b6ca4595457df7293cdde25dd3649730c369800d0ee7f5c6d59876378200aef2b0953a30471b314f4b820337464cdb559924c30da81d3e5d9fa8ef0439cb5cd5
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-ecs/customizations'
43
43
  # @service
44
44
  module Aws::ECS
45
45
 
46
- GEM_VERSION = '1.0.0.rc1'
46
+ GEM_VERSION = '1.0.0.rc3'
47
47
 
48
48
  end
@@ -18,6 +18,7 @@ require 'aws-sdk-core/plugins/regional_endpoint.rb'
18
18
  require 'aws-sdk-core/plugins/response_paging.rb'
19
19
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
20
  require 'aws-sdk-core/plugins/idempotency_token.rb'
21
+ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
21
22
  require 'aws-sdk-core/plugins/signature_v4.rb'
22
23
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
23
24
 
@@ -45,6 +46,7 @@ module Aws::ECS
45
46
  add_plugin(Aws::Plugins::ResponsePaging)
46
47
  add_plugin(Aws::Plugins::StubResponses)
47
48
  add_plugin(Aws::Plugins::IdempotencyToken)
49
+ add_plugin(Aws::Plugins::JsonvalueConverter)
48
50
  add_plugin(Aws::Plugins::SignatureV4)
49
51
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
50
52
 
@@ -184,6 +186,8 @@ module Aws::ECS
184
186
  # resp.cluster.pending_tasks_count #=> Integer
185
187
  # resp.cluster.active_services_count #=> Integer
186
188
  #
189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateCluster AWS API Documentation
190
+ #
187
191
  # @overload create_cluster(params = {})
188
192
  # @param [Hash] params ({})
189
193
  def create_cluster(params = {}, options = {})
@@ -413,6 +417,8 @@ module Aws::ECS
413
417
  # resp.service.placement_strategy[0].type #=> String, one of "random", "spread", "binpack"
414
418
  # resp.service.placement_strategy[0].field #=> String
415
419
  #
420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateService AWS API Documentation
421
+ #
416
422
  # @overload create_service(params = {})
417
423
  # @param [Hash] params ({})
418
424
  def create_service(params = {}, options = {})
@@ -459,6 +465,8 @@ module Aws::ECS
459
465
  # resp.attributes[0].target_type #=> String, one of "container-instance"
460
466
  # resp.attributes[0].target_id #=> String
461
467
  #
468
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteAttributes AWS API Documentation
469
+ #
462
470
  # @overload delete_attributes(params = {})
463
471
  # @param [Hash] params ({})
464
472
  def delete_attributes(params = {}, options = {})
@@ -495,6 +503,8 @@ module Aws::ECS
495
503
  # resp.cluster.pending_tasks_count #=> Integer
496
504
  # resp.cluster.active_services_count #=> Integer
497
505
  #
506
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteCluster AWS API Documentation
507
+ #
498
508
  # @overload delete_cluster(params = {})
499
509
  # @param [Hash] params ({})
500
510
  def delete_cluster(params = {}, options = {})
@@ -578,6 +588,8 @@ module Aws::ECS
578
588
  # resp.service.placement_strategy[0].type #=> String, one of "random", "spread", "binpack"
579
589
  # resp.service.placement_strategy[0].field #=> String
580
590
  #
591
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteService AWS API Documentation
592
+ #
581
593
  # @overload delete_service(params = {})
582
594
  # @param [Hash] params ({})
583
595
  def delete_service(params = {}, options = {})
@@ -681,6 +693,8 @@ module Aws::ECS
681
693
  # resp.container_instance.attributes[0].target_type #=> String, one of "container-instance"
682
694
  # resp.container_instance.attributes[0].target_id #=> String
683
695
  #
696
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeregisterContainerInstance AWS API Documentation
697
+ #
684
698
  # @overload deregister_container_instance(params = {})
685
699
  # @param [Hash] params ({})
686
700
  def deregister_container_instance(params = {}, options = {})
@@ -787,6 +801,8 @@ module Aws::ECS
787
801
  # resp.task_definition.placement_constraints[0].type #=> String, one of "memberOf"
788
802
  # resp.task_definition.placement_constraints[0].expression #=> String
789
803
  #
804
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeregisterTaskDefinition AWS API Documentation
805
+ #
790
806
  # @overload deregister_task_definition(params = {})
791
807
  # @param [Hash] params ({})
792
808
  def deregister_task_definition(params = {}, options = {})
@@ -826,6 +842,8 @@ module Aws::ECS
826
842
  # resp.failures[0].arn #=> String
827
843
  # resp.failures[0].reason #=> String
828
844
  #
845
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeClusters AWS API Documentation
846
+ #
829
847
  # @overload describe_clusters(params = {})
830
848
  # @param [Hash] params ({})
831
849
  def describe_clusters(params = {}, options = {})
@@ -897,6 +915,8 @@ module Aws::ECS
897
915
  # resp.failures[0].arn #=> String
898
916
  # resp.failures[0].reason #=> String
899
917
  #
918
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeContainerInstances AWS API Documentation
919
+ #
900
920
  # @overload describe_container_instances(params = {})
901
921
  # @param [Hash] params ({})
902
922
  def describe_container_instances(params = {}, options = {})
@@ -969,6 +989,8 @@ module Aws::ECS
969
989
  # resp.failures[0].arn #=> String
970
990
  # resp.failures[0].reason #=> String
971
991
  #
992
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeServices AWS API Documentation
993
+ #
972
994
  # @overload describe_services(params = {})
973
995
  # @param [Hash] params ({})
974
996
  def describe_services(params = {}, options = {})
@@ -1072,6 +1094,8 @@ module Aws::ECS
1072
1094
  # resp.task_definition.placement_constraints[0].type #=> String, one of "memberOf"
1073
1095
  # resp.task_definition.placement_constraints[0].expression #=> String
1074
1096
  #
1097
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeTaskDefinition AWS API Documentation
1098
+ #
1075
1099
  # @overload describe_task_definition(params = {})
1076
1100
  # @param [Hash] params ({})
1077
1101
  def describe_task_definition(params = {}, options = {})
@@ -1142,6 +1166,8 @@ module Aws::ECS
1142
1166
  # resp.failures[0].arn #=> String
1143
1167
  # resp.failures[0].reason #=> String
1144
1168
  #
1169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeTasks AWS API Documentation
1170
+ #
1145
1171
  # @overload describe_tasks(params = {})
1146
1172
  # @param [Hash] params ({})
1147
1173
  def describe_tasks(params = {}, options = {})
@@ -1186,6 +1212,8 @@ module Aws::ECS
1186
1212
  # resp.endpoint #=> String
1187
1213
  # resp.telemetry_endpoint #=> String
1188
1214
  #
1215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DiscoverPollEndpoint AWS API Documentation
1216
+ #
1189
1217
  # @overload discover_poll_endpoint(params = {})
1190
1218
  # @param [Hash] params ({})
1191
1219
  def discover_poll_endpoint(params = {}, options = {})
@@ -1265,6 +1293,8 @@ module Aws::ECS
1265
1293
  # resp.attributes[0].target_id #=> String
1266
1294
  # resp.next_token #=> String
1267
1295
  #
1296
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListAttributes AWS API Documentation
1297
+ #
1268
1298
  # @overload list_attributes(params = {})
1269
1299
  # @param [Hash] params ({})
1270
1300
  def list_attributes(params = {}, options = {})
@@ -1315,6 +1345,8 @@ module Aws::ECS
1315
1345
  # resp.cluster_arns[0] #=> String
1316
1346
  # resp.next_token #=> String
1317
1347
  #
1348
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListClusters AWS API Documentation
1349
+ #
1318
1350
  # @overload list_clusters(params = {})
1319
1351
  # @param [Hash] params ({})
1320
1352
  def list_clusters(params = {}, options = {})
@@ -1399,6 +1431,8 @@ module Aws::ECS
1399
1431
  # resp.container_instance_arns[0] #=> String
1400
1432
  # resp.next_token #=> String
1401
1433
  #
1434
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListContainerInstances AWS API Documentation
1435
+ #
1402
1436
  # @overload list_container_instances(params = {})
1403
1437
  # @param [Hash] params ({})
1404
1438
  def list_container_instances(params = {}, options = {})
@@ -1455,6 +1489,8 @@ module Aws::ECS
1455
1489
  # resp.service_arns[0] #=> String
1456
1490
  # resp.next_token #=> String
1457
1491
  #
1492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListServices AWS API Documentation
1493
+ #
1458
1494
  # @overload list_services(params = {})
1459
1495
  # @param [Hash] params ({})
1460
1496
  def list_services(params = {}, options = {})
@@ -1532,6 +1568,8 @@ module Aws::ECS
1532
1568
  # resp.families[0] #=> String
1533
1569
  # resp.next_token #=> String
1534
1570
  #
1571
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTaskDefinitionFamilies AWS API Documentation
1572
+ #
1535
1573
  # @overload list_task_definition_families(params = {})
1536
1574
  # @param [Hash] params ({})
1537
1575
  def list_task_definition_families(params = {}, options = {})
@@ -1611,6 +1649,8 @@ module Aws::ECS
1611
1649
  # resp.task_definition_arns[0] #=> String
1612
1650
  # resp.next_token #=> String
1613
1651
  #
1652
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTaskDefinitions AWS API Documentation
1653
+ #
1614
1654
  # @overload list_task_definitions(params = {})
1615
1655
  # @param [Hash] params ({})
1616
1656
  def list_task_definitions(params = {}, options = {})
@@ -1715,6 +1755,8 @@ module Aws::ECS
1715
1755
  # resp.task_arns[0] #=> String
1716
1756
  # resp.next_token #=> String
1717
1757
  #
1758
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTasks AWS API Documentation
1759
+ #
1718
1760
  # @overload list_tasks(params = {})
1719
1761
  # @param [Hash] params ({})
1720
1762
  def list_tasks(params = {}, options = {})
@@ -1768,6 +1810,8 @@ module Aws::ECS
1768
1810
  # resp.attributes[0].target_type #=> String, one of "container-instance"
1769
1811
  # resp.attributes[0].target_id #=> String
1770
1812
  #
1813
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PutAttributes AWS API Documentation
1814
+ #
1771
1815
  # @overload put_attributes(params = {})
1772
1816
  # @param [Hash] params ({})
1773
1817
  def put_attributes(params = {}, options = {})
@@ -1886,6 +1930,8 @@ module Aws::ECS
1886
1930
  # resp.container_instance.attributes[0].target_type #=> String, one of "container-instance"
1887
1931
  # resp.container_instance.attributes[0].target_id #=> String
1888
1932
  #
1933
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterContainerInstance AWS API Documentation
1934
+ #
1889
1935
  # @overload register_container_instance(params = {})
1890
1936
  # @param [Hash] params ({})
1891
1937
  def register_container_instance(params = {}, options = {})
@@ -2136,6 +2182,8 @@ module Aws::ECS
2136
2182
  # resp.task_definition.placement_constraints[0].type #=> String, one of "memberOf"
2137
2183
  # resp.task_definition.placement_constraints[0].expression #=> String
2138
2184
  #
2185
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterTaskDefinition AWS API Documentation
2186
+ #
2139
2187
  # @overload register_task_definition(params = {})
2140
2188
  # @param [Hash] params ({})
2141
2189
  def register_task_definition(params = {}, options = {})
@@ -2294,6 +2342,8 @@ module Aws::ECS
2294
2342
  # resp.failures[0].arn #=> String
2295
2343
  # resp.failures[0].reason #=> String
2296
2344
  #
2345
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RunTask AWS API Documentation
2346
+ #
2297
2347
  # @overload run_task(params = {})
2298
2348
  # @param [Hash] params ({})
2299
2349
  def run_task(params = {}, options = {})
@@ -2429,6 +2479,8 @@ module Aws::ECS
2429
2479
  # resp.failures[0].arn #=> String
2430
2480
  # resp.failures[0].reason #=> String
2431
2481
  #
2482
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StartTask AWS API Documentation
2483
+ #
2432
2484
  # @overload start_task(params = {})
2433
2485
  # @param [Hash] params ({})
2434
2486
  def start_task(params = {}, options = {})
@@ -2509,6 +2561,8 @@ module Aws::ECS
2509
2561
  # resp.task.stopped_at #=> Time
2510
2562
  # resp.task.group #=> String
2511
2563
  #
2564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StopTask AWS API Documentation
2565
+ #
2512
2566
  # @overload stop_task(params = {})
2513
2567
  # @param [Hash] params ({})
2514
2568
  def stop_task(params = {}, options = {})
@@ -2573,6 +2627,8 @@ module Aws::ECS
2573
2627
  #
2574
2628
  # resp.acknowledgment #=> String
2575
2629
  #
2630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/SubmitContainerStateChange AWS API Documentation
2631
+ #
2576
2632
  # @overload submit_container_state_change(params = {})
2577
2633
  # @param [Hash] params ({})
2578
2634
  def submit_container_state_change(params = {}, options = {})
@@ -2618,6 +2674,8 @@ module Aws::ECS
2618
2674
  #
2619
2675
  # resp.acknowledgment #=> String
2620
2676
  #
2677
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/SubmitTaskStateChange AWS API Documentation
2678
+ #
2621
2679
  # @overload submit_task_state_change(params = {})
2622
2680
  # @param [Hash] params ({})
2623
2681
  def submit_task_state_change(params = {}, options = {})
@@ -2698,6 +2756,8 @@ module Aws::ECS
2698
2756
  # resp.container_instance.attributes[0].target_type #=> String, one of "container-instance"
2699
2757
  # resp.container_instance.attributes[0].target_id #=> String
2700
2758
  #
2759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateContainerAgent AWS API Documentation
2760
+ #
2701
2761
  # @overload update_container_agent(params = {})
2702
2762
  # @param [Hash] params ({})
2703
2763
  def update_container_agent(params = {}, options = {})
@@ -2820,6 +2880,8 @@ module Aws::ECS
2820
2880
  # resp.failures[0].arn #=> String
2821
2881
  # resp.failures[0].reason #=> String
2822
2882
  #
2883
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateContainerInstancesState AWS API Documentation
2884
+ #
2823
2885
  # @overload update_container_instances_state(params = {})
2824
2886
  # @param [Hash] params ({})
2825
2887
  def update_container_instances_state(params = {}, options = {})
@@ -2983,6 +3045,8 @@ module Aws::ECS
2983
3045
  # resp.service.placement_strategy[0].type #=> String, one of "random", "spread", "binpack"
2984
3046
  # resp.service.placement_strategy[0].field #=> String
2985
3047
  #
3048
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateService AWS API Documentation
3049
+ #
2986
3050
  # @overload update_service(params = {})
2987
3051
  # @param [Hash] params ({})
2988
3052
  def update_service(params = {}, options = {})
@@ -3003,7 +3067,7 @@ module Aws::ECS
3003
3067
  params: params,
3004
3068
  config: config)
3005
3069
  context[:gem_name] = 'aws-sdk-ecs'
3006
- context[:gem_version] = '1.0.0.rc1'
3070
+ context[:gem_version] = '1.0.0.rc3'
3007
3071
  Seahorse::Client::Request.new(handlers, context)
3008
3072
  end
3009
3073
 
@@ -49,6 +49,8 @@ module Aws::ECS
49
49
  # resource or the full Amazon Resource Name (ARN).
50
50
  # @return [String]
51
51
  #
52
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Attribute AWS API Documentation
53
+ #
52
54
  class Attribute < Struct.new(
53
55
  :name,
54
56
  :value,
@@ -99,6 +101,8 @@ module Aws::ECS
99
101
  # `ACTIVE` state. You can view these services with ListServices.
100
102
  # @return [Integer]
101
103
  #
104
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Cluster AWS API Documentation
105
+ #
102
106
  class Cluster < Struct.new(
103
107
  :cluster_arn,
104
108
  :cluster_name,
@@ -141,6 +145,8 @@ module Aws::ECS
141
145
  # The network bindings associated with the container.
142
146
  # @return [Array<Types::NetworkBinding>]
143
147
  #
148
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Container AWS API Documentation
149
+ #
144
150
  class Container < Struct.new(
145
151
  :container_arn,
146
152
  :task_arn,
@@ -752,6 +758,8 @@ module Aws::ECS
752
758
  # [5]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
753
759
  # @return [Types::LogConfiguration]
754
760
  #
761
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ContainerDefinition AWS API Documentation
762
+ #
755
763
  class ContainerDefinition < Struct.new(
756
764
  :name,
757
765
  :image,
@@ -866,6 +874,8 @@ module Aws::ECS
866
874
  # PutAttributes operation.
867
875
  # @return [Array<Types::Attribute>]
868
876
  #
877
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ContainerInstance AWS API Documentation
878
+ #
869
879
  class ContainerInstance < Struct.new(
870
880
  :container_instance_arn,
871
881
  :ec2_instance_id,
@@ -914,6 +924,8 @@ module Aws::ECS
914
924
  # Docker image or the task definition.
915
925
  # @return [Array<Types::KeyValuePair>]
916
926
  #
927
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ContainerOverride AWS API Documentation
928
+ #
917
929
  class ContainerOverride < Struct.new(
918
930
  :name,
919
931
  :command,
@@ -935,6 +947,8 @@ module Aws::ECS
935
947
  # allowed.
936
948
  # @return [String]
937
949
  #
950
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateClusterRequest AWS API Documentation
951
+ #
938
952
  class CreateClusterRequest < Struct.new(
939
953
  :cluster_name)
940
954
  include Aws::Structure
@@ -944,6 +958,8 @@ module Aws::ECS
944
958
  # The full description of your new cluster.
945
959
  # @return [Types::Cluster]
946
960
  #
961
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateClusterResponse AWS API Documentation
962
+ #
947
963
  class CreateClusterResponse < Struct.new(
948
964
  :cluster)
949
965
  include Aws::Structure
@@ -1077,6 +1093,8 @@ module Aws::ECS
1077
1093
  # can specify a maximum of 5 strategy rules per service.
1078
1094
  # @return [Array<Types::PlacementStrategy>]
1079
1095
  #
1096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateServiceRequest AWS API Documentation
1097
+ #
1080
1098
  class CreateServiceRequest < Struct.new(
1081
1099
  :cluster,
1082
1100
  :service_name,
@@ -1095,6 +1113,8 @@ module Aws::ECS
1095
1113
  # The full description of your service following the create call.
1096
1114
  # @return [Types::Service]
1097
1115
  #
1116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateServiceResponse AWS API Documentation
1117
+ #
1098
1118
  class CreateServiceResponse < Struct.new(
1099
1119
  :service)
1100
1120
  include Aws::Structure
@@ -1129,6 +1149,8 @@ module Aws::ECS
1129
1149
  # the target type.
1130
1150
  # @return [Array<Types::Attribute>]
1131
1151
  #
1152
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteAttributesRequest AWS API Documentation
1153
+ #
1132
1154
  class DeleteAttributesRequest < Struct.new(
1133
1155
  :cluster,
1134
1156
  :attributes)
@@ -1140,6 +1162,8 @@ module Aws::ECS
1140
1162
  # resource.
1141
1163
  # @return [Array<Types::Attribute>]
1142
1164
  #
1165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteAttributesResponse AWS API Documentation
1166
+ #
1143
1167
  class DeleteAttributesResponse < Struct.new(
1144
1168
  :attributes)
1145
1169
  include Aws::Structure
@@ -1157,6 +1181,8 @@ module Aws::ECS
1157
1181
  # delete.
1158
1182
  # @return [String]
1159
1183
  #
1184
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteClusterRequest AWS API Documentation
1185
+ #
1160
1186
  class DeleteClusterRequest < Struct.new(
1161
1187
  :cluster)
1162
1188
  include Aws::Structure
@@ -1166,6 +1192,8 @@ module Aws::ECS
1166
1192
  # The full description of the deleted cluster.
1167
1193
  # @return [Types::Cluster]
1168
1194
  #
1195
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteClusterResponse AWS API Documentation
1196
+ #
1169
1197
  class DeleteClusterResponse < Struct.new(
1170
1198
  :cluster)
1171
1199
  include Aws::Structure
@@ -1188,6 +1216,8 @@ module Aws::ECS
1188
1216
  # The name of the service to delete.
1189
1217
  # @return [String]
1190
1218
  #
1219
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteServiceRequest AWS API Documentation
1220
+ #
1191
1221
  class DeleteServiceRequest < Struct.new(
1192
1222
  :cluster,
1193
1223
  :service)
@@ -1198,6 +1228,8 @@ module Aws::ECS
1198
1228
  # The full description of the deleted service.
1199
1229
  # @return [Types::Service]
1200
1230
  #
1231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteServiceResponse AWS API Documentation
1232
+ #
1201
1233
  class DeleteServiceResponse < Struct.new(
1202
1234
  :service)
1203
1235
  include Aws::Structure
@@ -1245,6 +1277,8 @@ module Aws::ECS
1245
1277
  # The Unix timestamp for when the service was last updated.
1246
1278
  # @return [Time]
1247
1279
  #
1280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Deployment AWS API Documentation
1281
+ #
1248
1282
  class Deployment < Struct.new(
1249
1283
  :id,
1250
1284
  :status,
@@ -1285,6 +1319,8 @@ module Aws::ECS
1285
1319
  # value.
1286
1320
  # @return [Integer]
1287
1321
  #
1322
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeploymentConfiguration AWS API Documentation
1323
+ #
1288
1324
  class DeploymentConfiguration < Struct.new(
1289
1325
  :maximum_percent,
1290
1326
  :minimum_healthy_percent)
@@ -1332,6 +1368,8 @@ module Aws::ECS
1332
1368
  # to the settings on the load balancer or target group.
1333
1369
  # @return [Boolean]
1334
1370
  #
1371
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeregisterContainerInstanceRequest AWS API Documentation
1372
+ #
1335
1373
  class DeregisterContainerInstanceRequest < Struct.new(
1336
1374
  :cluster,
1337
1375
  :container_instance,
@@ -1343,6 +1381,8 @@ module Aws::ECS
1343
1381
  # The container instance that was deregistered.
1344
1382
  # @return [Types::ContainerInstance]
1345
1383
  #
1384
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeregisterContainerInstanceResponse AWS API Documentation
1385
+ #
1346
1386
  class DeregisterContainerInstanceResponse < Struct.new(
1347
1387
  :container_instance)
1348
1388
  include Aws::Structure
@@ -1361,6 +1401,8 @@ module Aws::ECS
1361
1401
  # specify a `revision`.
1362
1402
  # @return [String]
1363
1403
  #
1404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeregisterTaskDefinitionRequest AWS API Documentation
1405
+ #
1364
1406
  class DeregisterTaskDefinitionRequest < Struct.new(
1365
1407
  :task_definition)
1366
1408
  include Aws::Structure
@@ -1370,6 +1412,8 @@ module Aws::ECS
1370
1412
  # The full description of the deregistered task.
1371
1413
  # @return [Types::TaskDefinition]
1372
1414
  #
1415
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeregisterTaskDefinitionResponse AWS API Documentation
1416
+ #
1373
1417
  class DeregisterTaskDefinitionResponse < Struct.new(
1374
1418
  :task_definition)
1375
1419
  include Aws::Structure
@@ -1388,6 +1432,8 @@ module Aws::ECS
1388
1432
  # the default cluster is assumed.
1389
1433
  # @return [Array<String>]
1390
1434
  #
1435
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeClustersRequest AWS API Documentation
1436
+ #
1391
1437
  class DescribeClustersRequest < Struct.new(
1392
1438
  :clusters)
1393
1439
  include Aws::Structure
@@ -1401,6 +1447,8 @@ module Aws::ECS
1401
1447
  # Any failures associated with the call.
1402
1448
  # @return [Array<Types::Failure>]
1403
1449
  #
1450
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeClustersResponse AWS API Documentation
1451
+ #
1404
1452
  class DescribeClustersResponse < Struct.new(
1405
1453
  :clusters,
1406
1454
  :failures)
@@ -1426,6 +1474,8 @@ module Aws::ECS
1426
1474
  # Resource Name (ARN) entries.
1427
1475
  # @return [Array<String>]
1428
1476
  #
1477
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeContainerInstancesRequest AWS API Documentation
1478
+ #
1429
1479
  class DescribeContainerInstancesRequest < Struct.new(
1430
1480
  :cluster,
1431
1481
  :container_instances)
@@ -1440,6 +1490,8 @@ module Aws::ECS
1440
1490
  # Any failures associated with the call.
1441
1491
  # @return [Array<Types::Failure>]
1442
1492
  #
1493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeContainerInstancesResponse AWS API Documentation
1494
+ #
1443
1495
  class DescribeContainerInstancesResponse < Struct.new(
1444
1496
  :container_instances,
1445
1497
  :failures)
@@ -1464,6 +1516,8 @@ module Aws::ECS
1464
1516
  # describe in a single operation.
1465
1517
  # @return [Array<String>]
1466
1518
  #
1519
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeServicesRequest AWS API Documentation
1520
+ #
1467
1521
  class DescribeServicesRequest < Struct.new(
1468
1522
  :cluster,
1469
1523
  :services)
@@ -1478,6 +1532,8 @@ module Aws::ECS
1478
1532
  # Any failures associated with the call.
1479
1533
  # @return [Array<Types::Failure>]
1480
1534
  #
1535
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeServicesResponse AWS API Documentation
1536
+ #
1481
1537
  class DescribeServicesResponse < Struct.new(
1482
1538
  :services,
1483
1539
  :failures)
@@ -1498,6 +1554,8 @@ module Aws::ECS
1498
1554
  # describe.
1499
1555
  # @return [String]
1500
1556
  #
1557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeTaskDefinitionRequest AWS API Documentation
1558
+ #
1501
1559
  class DescribeTaskDefinitionRequest < Struct.new(
1502
1560
  :task_definition)
1503
1561
  include Aws::Structure
@@ -1507,6 +1565,8 @@ module Aws::ECS
1507
1565
  # The full task definition description.
1508
1566
  # @return [Types::TaskDefinition]
1509
1567
  #
1568
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeTaskDefinitionResponse AWS API Documentation
1569
+ #
1510
1570
  class DescribeTaskDefinitionResponse < Struct.new(
1511
1571
  :task_definition)
1512
1572
  include Aws::Structure
@@ -1531,6 +1591,8 @@ module Aws::ECS
1531
1591
  # (ARN) entries.
1532
1592
  # @return [Array<String>]
1533
1593
  #
1594
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeTasksRequest AWS API Documentation
1595
+ #
1534
1596
  class DescribeTasksRequest < Struct.new(
1535
1597
  :cluster,
1536
1598
  :tasks)
@@ -1545,6 +1607,8 @@ module Aws::ECS
1545
1607
  # Any failures associated with the call.
1546
1608
  # @return [Array<Types::Failure>]
1547
1609
  #
1610
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DescribeTasksResponse AWS API Documentation
1611
+ #
1548
1612
  class DescribeTasksResponse < Struct.new(
1549
1613
  :tasks,
1550
1614
  :failures)
@@ -1573,6 +1637,8 @@ module Aws::ECS
1573
1637
  # The cluster that the container instance belongs to.
1574
1638
  # @return [String]
1575
1639
  #
1640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DiscoverPollEndpointRequest AWS API Documentation
1641
+ #
1576
1642
  class DiscoverPollEndpointRequest < Struct.new(
1577
1643
  :container_instance,
1578
1644
  :cluster)
@@ -1587,6 +1653,8 @@ module Aws::ECS
1587
1653
  # The telemetry endpoint for the Amazon ECS agent.
1588
1654
  # @return [String]
1589
1655
  #
1656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DiscoverPollEndpointResponse AWS API Documentation
1657
+ #
1590
1658
  class DiscoverPollEndpointResponse < Struct.new(
1591
1659
  :endpoint,
1592
1660
  :telemetry_endpoint)
@@ -1603,6 +1671,8 @@ module Aws::ECS
1603
1671
  # The reason for the failure.
1604
1672
  # @return [String]
1605
1673
  #
1674
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Failure AWS API Documentation
1675
+ #
1606
1676
  class Failure < Struct.new(
1607
1677
  :arn,
1608
1678
  :reason)
@@ -1629,6 +1699,8 @@ module Aws::ECS
1629
1699
  # The IP address to use in the `/etc/hosts` entry.
1630
1700
  # @return [String]
1631
1701
  #
1702
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/HostEntry AWS API Documentation
1703
+ #
1632
1704
  class HostEntry < Struct.new(
1633
1705
  :hostname,
1634
1706
  :ip_address)
@@ -1655,6 +1727,8 @@ module Aws::ECS
1655
1727
  # does exist, the contents of the source path folder are exported.
1656
1728
  # @return [String]
1657
1729
  #
1730
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/HostVolumeProperties AWS API Documentation
1731
+ #
1658
1732
  class HostVolumeProperties < Struct.new(
1659
1733
  :source_path)
1660
1734
  include Aws::Structure
@@ -1680,6 +1754,8 @@ module Aws::ECS
1680
1754
  # the value of the environment variable.
1681
1755
  # @return [String]
1682
1756
  #
1757
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/KeyValuePair AWS API Documentation
1758
+ #
1683
1759
  class KeyValuePair < Struct.new(
1684
1760
  :name,
1685
1761
  :value)
@@ -1742,6 +1818,8 @@ module Aws::ECS
1742
1818
  # 100 results and a `nextToken` value if applicable.
1743
1819
  # @return [Integer]
1744
1820
  #
1821
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListAttributesRequest AWS API Documentation
1822
+ #
1745
1823
  class ListAttributesRequest < Struct.new(
1746
1824
  :cluster,
1747
1825
  :target_type,
@@ -1764,6 +1842,8 @@ module Aws::ECS
1764
1842
  # return.
1765
1843
  # @return [String]
1766
1844
  #
1845
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListAttributesResponse AWS API Documentation
1846
+ #
1767
1847
  class ListAttributesResponse < Struct.new(
1768
1848
  :attributes,
1769
1849
  :next_token)
@@ -1803,6 +1883,8 @@ module Aws::ECS
1803
1883
  # results and a `nextToken` value if applicable.
1804
1884
  # @return [Integer]
1805
1885
  #
1886
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListClustersRequest AWS API Documentation
1887
+ #
1806
1888
  class ListClustersRequest < Struct.new(
1807
1889
  :next_token,
1808
1890
  :max_results)
@@ -1821,6 +1903,8 @@ module Aws::ECS
1821
1903
  # value is `null` when there are no more results to return.
1822
1904
  # @return [String]
1823
1905
  #
1906
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListClustersResponse AWS API Documentation
1907
+ #
1824
1908
  class ListClustersResponse < Struct.new(
1825
1909
  :cluster_arns,
1826
1910
  :next_token)
@@ -1890,6 +1974,8 @@ module Aws::ECS
1890
1974
  # operation.
1891
1975
  # @return [String]
1892
1976
  #
1977
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListContainerInstancesRequest AWS API Documentation
1978
+ #
1893
1979
  class ListContainerInstancesRequest < Struct.new(
1894
1980
  :cluster,
1895
1981
  :filter,
@@ -1913,6 +1999,8 @@ module Aws::ECS
1913
1999
  # when there are no more results to return.
1914
2000
  # @return [String]
1915
2001
  #
2002
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListContainerInstancesResponse AWS API Documentation
2003
+ #
1916
2004
  class ListContainerInstancesResponse < Struct.new(
1917
2005
  :container_instance_arns,
1918
2006
  :next_token)
@@ -1959,6 +2047,8 @@ module Aws::ECS
1959
2047
  # returns up to 10 results and a `nextToken` value if applicable.
1960
2048
  # @return [Integer]
1961
2049
  #
2050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListServicesRequest AWS API Documentation
2051
+ #
1962
2052
  class ListServicesRequest < Struct.new(
1963
2053
  :cluster,
1964
2054
  :next_token,
@@ -1978,6 +2068,8 @@ module Aws::ECS
1978
2068
  # value is `null` when there are no more results to return.
1979
2069
  # @return [String]
1980
2070
  #
2071
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListServicesResponse AWS API Documentation
2072
+ #
1981
2073
  class ListServicesResponse < Struct.new(
1982
2074
  :service_arns,
1983
2075
  :next_token)
@@ -2040,6 +2132,8 @@ module Aws::ECS
2040
2132
  # to 100 results and a `nextToken` value if applicable.
2041
2133
  # @return [Integer]
2042
2134
  #
2135
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTaskDefinitionFamiliesRequest AWS API Documentation
2136
+ #
2043
2137
  class ListTaskDefinitionFamiliesRequest < Struct.new(
2044
2138
  :family_prefix,
2045
2139
  :status,
@@ -2061,6 +2155,8 @@ module Aws::ECS
2061
2155
  # `null` when there are no more results to return.
2062
2156
  # @return [String]
2063
2157
  #
2158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTaskDefinitionFamiliesResponse AWS API Documentation
2159
+ #
2064
2160
  class ListTaskDefinitionFamiliesResponse < Struct.new(
2065
2161
  :families,
2066
2162
  :next_token)
@@ -2131,6 +2227,8 @@ module Aws::ECS
2131
2227
  # `nextToken` value if applicable.
2132
2228
  # @return [Integer]
2133
2229
  #
2230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTaskDefinitionsRequest AWS API Documentation
2231
+ #
2134
2232
  class ListTaskDefinitionsRequest < Struct.new(
2135
2233
  :family_prefix,
2136
2234
  :status,
@@ -2153,6 +2251,8 @@ module Aws::ECS
2153
2251
  # return.
2154
2252
  # @return [String]
2155
2253
  #
2254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTaskDefinitionsResponse AWS API Documentation
2255
+ #
2156
2256
  class ListTaskDefinitionsResponse < Struct.new(
2157
2257
  :task_definition_arns,
2158
2258
  :next_token)
@@ -2246,6 +2346,8 @@ module Aws::ECS
2246
2346
  # </note>
2247
2347
  # @return [String]
2248
2348
  #
2349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTasksRequest AWS API Documentation
2350
+ #
2249
2351
  class ListTasksRequest < Struct.new(
2250
2352
  :cluster,
2251
2353
  :container_instance,
@@ -2270,6 +2372,8 @@ module Aws::ECS
2270
2372
  # is `null` when there are no more results to return.
2271
2373
  # @return [String]
2272
2374
  #
2375
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListTasksResponse AWS API Documentation
2376
+ #
2273
2377
  class ListTasksResponse < Struct.new(
2274
2378
  :task_arns,
2275
2379
  :next_token)
@@ -2309,6 +2413,8 @@ module Aws::ECS
2309
2413
  # the `hostPort` of the port mapping.
2310
2414
  # @return [Integer]
2311
2415
  #
2416
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/LoadBalancer AWS API Documentation
2417
+ #
2312
2418
  class LoadBalancer < Struct.new(
2313
2419
  :target_group_arn,
2314
2420
  :load_balancer_name,
@@ -2364,6 +2470,8 @@ module Aws::ECS
2364
2470
  # following command: `sudo docker version | grep "Server API version"`
2365
2471
  # @return [Hash<String,String>]
2366
2472
  #
2473
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/LogConfiguration AWS API Documentation
2474
+ #
2367
2475
  class LogConfiguration < Struct.new(
2368
2476
  :log_driver,
2369
2477
  :options)
@@ -2396,6 +2504,8 @@ module Aws::ECS
2396
2504
  # the volume. The default value is `false`.
2397
2505
  # @return [Boolean]
2398
2506
  #
2507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/MountPoint AWS API Documentation
2508
+ #
2399
2509
  class MountPoint < Struct.new(
2400
2510
  :source_volume,
2401
2511
  :container_path,
@@ -2436,6 +2546,8 @@ module Aws::ECS
2436
2546
  # The protocol used for the network binding.
2437
2547
  # @return [String]
2438
2548
  #
2549
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/NetworkBinding AWS API Documentation
2550
+ #
2439
2551
  class NetworkBinding < Struct.new(
2440
2552
  :bind_ip,
2441
2553
  :container_port,
@@ -2479,6 +2591,8 @@ module Aws::ECS
2479
2591
  # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
2480
2592
  # @return [String]
2481
2593
  #
2594
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PlacementConstraint AWS API Documentation
2595
+ #
2482
2596
  class PlacementConstraint < Struct.new(
2483
2597
  :type,
2484
2598
  :expression)
@@ -2523,6 +2637,8 @@ module Aws::ECS
2523
2637
  # placement strategy, this field is not used.
2524
2638
  # @return [String]
2525
2639
  #
2640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PlacementStrategy AWS API Documentation
2641
+ #
2526
2642
  class PlacementStrategy < Struct.new(
2527
2643
  :type,
2528
2644
  :field)
@@ -2588,6 +2704,8 @@ module Aws::ECS
2588
2704
  # `udp`. The default is `tcp`.
2589
2705
  # @return [String]
2590
2706
  #
2707
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PortMapping AWS API Documentation
2708
+ #
2591
2709
  class PortMapping < Struct.new(
2592
2710
  :container_port,
2593
2711
  :host_port,
@@ -2622,6 +2740,8 @@ module Aws::ECS
2622
2740
  # in a single call.
2623
2741
  # @return [Array<Types::Attribute>]
2624
2742
  #
2743
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PutAttributesRequest AWS API Documentation
2744
+ #
2625
2745
  class PutAttributesRequest < Struct.new(
2626
2746
  :cluster,
2627
2747
  :attributes)
@@ -2632,6 +2752,8 @@ module Aws::ECS
2632
2752
  # The attributes applied to your resource.
2633
2753
  # @return [Array<Types::Attribute>]
2634
2754
  #
2755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PutAttributesResponse AWS API Documentation
2756
+ #
2635
2757
  class PutAttributesResponse < Struct.new(
2636
2758
  :attributes)
2637
2759
  include Aws::Structure
@@ -2709,6 +2831,8 @@ module Aws::ECS
2709
2831
  # supports.
2710
2832
  # @return [Array<Types::Attribute>]
2711
2833
  #
2834
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterContainerInstanceRequest AWS API Documentation
2835
+ #
2712
2836
  class RegisterContainerInstanceRequest < Struct.new(
2713
2837
  :cluster,
2714
2838
  :instance_identity_document,
@@ -2724,6 +2848,8 @@ module Aws::ECS
2724
2848
  # The container instance that was registered.
2725
2849
  # @return [Types::ContainerInstance]
2726
2850
  #
2851
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterContainerInstanceResponse AWS API Documentation
2852
+ #
2727
2853
  class RegisterContainerInstanceResponse < Struct.new(
2728
2854
  :container_instance)
2729
2855
  include Aws::Structure
@@ -2882,6 +3008,8 @@ module Aws::ECS
2882
3008
  # run time).
2883
3009
  # @return [Array<Types::TaskDefinitionPlacementConstraint>]
2884
3010
  #
3011
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterTaskDefinitionRequest AWS API Documentation
3012
+ #
2885
3013
  class RegisterTaskDefinitionRequest < Struct.new(
2886
3014
  :family,
2887
3015
  :task_role_arn,
@@ -2896,6 +3024,8 @@ module Aws::ECS
2896
3024
  # The full description of the registered task definition.
2897
3025
  # @return [Types::TaskDefinition]
2898
3026
  #
3027
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterTaskDefinitionResponse AWS API Documentation
3028
+ #
2899
3029
  class RegisterTaskDefinitionResponse < Struct.new(
2900
3030
  :task_definition)
2901
3031
  include Aws::Structure
@@ -2945,6 +3075,8 @@ module Aws::ECS
2945
3075
  # must be a string type.
2946
3076
  # @return [Array<String>]
2947
3077
  #
3078
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Resource AWS API Documentation
3079
+ #
2948
3080
  class Resource < Struct.new(
2949
3081
  :name,
2950
3082
  :type,
@@ -3056,6 +3188,8 @@ module Aws::ECS
3056
3188
  # a maximum of 5 strategy rules per task.
3057
3189
  # @return [Array<Types::PlacementStrategy>]
3058
3190
  #
3191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RunTaskRequest AWS API Documentation
3192
+ #
3059
3193
  class RunTaskRequest < Struct.new(
3060
3194
  :cluster,
3061
3195
  :task_definition,
@@ -3077,6 +3211,8 @@ module Aws::ECS
3077
3211
  # Any failures associated with the call.
3078
3212
  # @return [Array<Types::Failure>]
3079
3213
  #
3214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RunTaskResponse AWS API Documentation
3215
+ #
3080
3216
  class RunTaskResponse < Struct.new(
3081
3217
  :tasks,
3082
3218
  :failures)
@@ -3173,6 +3309,8 @@ module Aws::ECS
3173
3309
  # placed.
3174
3310
  # @return [Array<Types::PlacementStrategy>]
3175
3311
  #
3312
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Service AWS API Documentation
3313
+ #
3176
3314
  class Service < Struct.new(
3177
3315
  :service_arn,
3178
3316
  :service_name,
@@ -3207,6 +3345,8 @@ module Aws::ECS
3207
3345
  # The event message.
3208
3346
  # @return [String]
3209
3347
  #
3348
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ServiceEvent AWS API Documentation
3349
+ #
3210
3350
  class ServiceEvent < Struct.new(
3211
3351
  :id,
3212
3352
  :created_at,
@@ -3293,6 +3433,8 @@ module Aws::ECS
3293
3433
  # family:my-family-name).
3294
3434
  # @return [String]
3295
3435
  #
3436
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StartTaskRequest AWS API Documentation
3437
+ #
3296
3438
  class StartTaskRequest < Struct.new(
3297
3439
  :cluster,
3298
3440
  :task_definition,
@@ -3313,6 +3455,8 @@ module Aws::ECS
3313
3455
  # Any failures associated with the call.
3314
3456
  # @return [Array<Types::Failure>]
3315
3457
  #
3458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StartTaskResponse AWS API Documentation
3459
+ #
3316
3460
  class StartTaskResponse < Struct.new(
3317
3461
  :tasks,
3318
3462
  :failures)
@@ -3347,6 +3491,8 @@ module Aws::ECS
3347
3491
  # to 255 characters are allowed in this message.
3348
3492
  # @return [String]
3349
3493
  #
3494
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StopTaskRequest AWS API Documentation
3495
+ #
3350
3496
  class StopTaskRequest < Struct.new(
3351
3497
  :cluster,
3352
3498
  :task,
@@ -3358,6 +3504,8 @@ module Aws::ECS
3358
3504
  # The task that was stopped.
3359
3505
  # @return [Types::Task]
3360
3506
  #
3507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StopTaskResponse AWS API Documentation
3508
+ #
3361
3509
  class StopTaskResponse < Struct.new(
3362
3510
  :task)
3363
3511
  include Aws::Structure
@@ -3413,6 +3561,8 @@ module Aws::ECS
3413
3561
  # The network bindings of the container.
3414
3562
  # @return [Array<Types::NetworkBinding>]
3415
3563
  #
3564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/SubmitContainerStateChangeRequest AWS API Documentation
3565
+ #
3416
3566
  class SubmitContainerStateChangeRequest < Struct.new(
3417
3567
  :cluster,
3418
3568
  :task,
@@ -3428,6 +3578,8 @@ module Aws::ECS
3428
3578
  # Acknowledgement of the state change.
3429
3579
  # @return [String]
3430
3580
  #
3581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/SubmitContainerStateChangeResponse AWS API Documentation
3582
+ #
3431
3583
  class SubmitContainerStateChangeResponse < Struct.new(
3432
3584
  :acknowledgment)
3433
3585
  include Aws::Structure
@@ -3461,6 +3613,8 @@ module Aws::ECS
3461
3613
  # The reason for the state change request.
3462
3614
  # @return [String]
3463
3615
  #
3616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/SubmitTaskStateChangeRequest AWS API Documentation
3617
+ #
3464
3618
  class SubmitTaskStateChangeRequest < Struct.new(
3465
3619
  :cluster,
3466
3620
  :task,
@@ -3473,6 +3627,8 @@ module Aws::ECS
3473
3627
  # Acknowledgement of the state change.
3474
3628
  # @return [String]
3475
3629
  #
3630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/SubmitTaskStateChangeResponse AWS API Documentation
3631
+ #
3476
3632
  class SubmitTaskStateChangeResponse < Struct.new(
3477
3633
  :acknowledgment)
3478
3634
  include Aws::Structure
@@ -3553,6 +3709,8 @@ module Aws::ECS
3553
3709
  # The name of the task group associated with the task.
3554
3710
  # @return [String]
3555
3711
  #
3712
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Task AWS API Documentation
3713
+ #
3556
3714
  class Task < Struct.new(
3557
3715
  :task_arn,
3558
3716
  :cluster_arn,
@@ -3650,6 +3808,8 @@ module Aws::ECS
3650
3808
  # An array of placement constraint objects to use for tasks.
3651
3809
  # @return [Array<Types::TaskDefinitionPlacementConstraint>]
3652
3810
  #
3811
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/TaskDefinition AWS API Documentation
3812
+ #
3653
3813
  class TaskDefinition < Struct.new(
3654
3814
  :task_definition_arn,
3655
3815
  :container_definitions,
@@ -3697,6 +3857,8 @@ module Aws::ECS
3697
3857
  # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
3698
3858
  # @return [String]
3699
3859
  #
3860
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/TaskDefinitionPlacementConstraint AWS API Documentation
3861
+ #
3700
3862
  class TaskDefinitionPlacementConstraint < Struct.new(
3701
3863
  :type,
3702
3864
  :expression)
@@ -3734,6 +3896,8 @@ module Aws::ECS
3734
3896
  # permissions that are specified in this role.
3735
3897
  # @return [String]
3736
3898
  #
3899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/TaskOverride AWS API Documentation
3900
+ #
3737
3901
  class TaskOverride < Struct.new(
3738
3902
  :container_overrides,
3739
3903
  :task_role_arn)
@@ -3763,6 +3927,8 @@ module Aws::ECS
3763
3927
  # The hard limit for the ulimit type.
3764
3928
  # @return [Integer]
3765
3929
  #
3930
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Ulimit AWS API Documentation
3931
+ #
3766
3932
  class Ulimit < Struct.new(
3767
3933
  :name,
3768
3934
  :soft_limit,
@@ -3790,6 +3956,8 @@ module Aws::ECS
3790
3956
  # Amazon ECS container agent.
3791
3957
  # @return [String]
3792
3958
  #
3959
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateContainerAgentRequest AWS API Documentation
3960
+ #
3793
3961
  class UpdateContainerAgentRequest < Struct.new(
3794
3962
  :cluster,
3795
3963
  :container_instance)
@@ -3800,6 +3968,8 @@ module Aws::ECS
3800
3968
  # The container instance for which the container agent was updated.
3801
3969
  # @return [Types::ContainerInstance]
3802
3970
  #
3971
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateContainerAgentResponse AWS API Documentation
3972
+ #
3803
3973
  class UpdateContainerAgentResponse < Struct.new(
3804
3974
  :container_instance)
3805
3975
  include Aws::Structure
@@ -3830,6 +4000,8 @@ module Aws::ECS
3830
4000
  # instance.
3831
4001
  # @return [String]
3832
4002
  #
4003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateContainerInstancesStateRequest AWS API Documentation
4004
+ #
3833
4005
  class UpdateContainerInstancesStateRequest < Struct.new(
3834
4006
  :cluster,
3835
4007
  :container_instances,
@@ -3845,6 +4017,8 @@ module Aws::ECS
3845
4017
  # Any failures associated with the call.
3846
4018
  # @return [Array<Types::Failure>]
3847
4019
  #
4020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateContainerInstancesStateResponse AWS API Documentation
4021
+ #
3848
4022
  class UpdateContainerInstancesStateResponse < Struct.new(
3849
4023
  :container_instances,
3850
4024
  :failures)
@@ -3895,6 +4069,8 @@ module Aws::ECS
3895
4069
  # tasks.
3896
4070
  # @return [Types::DeploymentConfiguration]
3897
4071
  #
4072
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateServiceRequest AWS API Documentation
4073
+ #
3898
4074
  class UpdateServiceRequest < Struct.new(
3899
4075
  :cluster,
3900
4076
  :service,
@@ -3908,6 +4084,8 @@ module Aws::ECS
3908
4084
  # The full description of your service following the update call.
3909
4085
  # @return [Types::Service]
3910
4086
  #
4087
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateServiceResponse AWS API Documentation
4088
+ #
3911
4089
  class UpdateServiceResponse < Struct.new(
3912
4090
  :service)
3913
4091
  include Aws::Structure
@@ -3942,6 +4120,8 @@ module Aws::ECS
3942
4120
  # The Docker version running on the container instance.
3943
4121
  # @return [String]
3944
4122
  #
4123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/VersionInfo AWS API Documentation
4124
+ #
3945
4125
  class VersionInfo < Struct.new(
3946
4126
  :agent_version,
3947
4127
  :agent_hash,
@@ -3977,6 +4157,8 @@ module Aws::ECS
3977
4157
  # running.
3978
4158
  # @return [Types::HostVolumeProperties]
3979
4159
  #
4160
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Volume AWS API Documentation
4161
+ #
3980
4162
  class Volume < Struct.new(
3981
4163
  :name,
3982
4164
  :host)
@@ -4003,6 +4185,8 @@ module Aws::ECS
4003
4185
  # the volume. The default value is `false`.
4004
4186
  # @return [Boolean]
4005
4187
  #
4188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/VolumeFrom AWS API Documentation
4189
+ #
4006
4190
  class VolumeFrom < Struct.new(
4007
4191
  :source_container,
4008
4192
  :read_only)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc2
4
+ version: 1.0.0.rc3
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-01-24 00:00:00.000000000 Z
11
+ date: 2017-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core