lib/aws-sdk-ecs/client.rb in aws-sdk-ecs-1.0.0 vs lib/aws-sdk-ecs/client.rb in aws-sdk-ecs-1.1.0
- old
+ new
@@ -369,11 +369,12 @@
# * {Types::CreateServiceResponse#service #service} => Types::Service
#
#
# @example Example: To create a new service
#
- # # This example creates a service in your default region called ``ecs-simple-service``. The service uses the ``hello_world`` task definition and it maintains 10 copies of that task.
+ # # This example creates a service in your default region called ``ecs-simple-service``. The service uses the
+ # # ``hello_world`` task definition and it maintains 10 copies of that task.
#
# resp = client.create_service({
# desired_count: 10,
# service_name: "ecs-simple-service",
# task_definition: "hello_world",
@@ -424,11 +425,13 @@
# },
# }
#
# @example Example: To create a new service behind a load balancer
#
- # # This example creates a service in your default region called ``ecs-simple-service-elb``. The service uses the ``ecs-demo`` task definition and it maintains 10 copies of that task. You must reference an existing load balancer in the same region by its name.
+ # # This example creates a service in your default region called ``ecs-simple-service-elb``. The service uses the
+ # # ``ecs-demo`` task definition and it maintains 10 copies of that task. You must reference an existing load balancer in
+ # # the same region by its name.
#
# resp = client.create_service({
# desired_count: 10,
# load_balancers: [
# {
@@ -706,11 +709,12 @@
# * {Types::DeleteServiceResponse#service #service} => Types::Service
#
#
# @example Example: To delete a service
#
- # # This example deletes the my-http-service service. The service must have a desired count and running count of 0 before you can delete it.
+ # # This example deletes the my-http-service service. The service must have a desired count and running count of 0 before
+ # # you can delete it.
#
# resp = client.delete_service({
# service: "my-http-service",
# })
#
@@ -827,11 +831,12 @@
# * {Types::DeregisterContainerInstanceResponse#container_instance #container_instance} => Types::ContainerInstance
#
#
# @example Example: To deregister a container instance from a cluster
#
- # # This example deregisters a container instance from the specified cluster in your default region. If there are still tasks running on the container instance, you must either stop those tasks before deregistering, or use the force option.
+ # # This example deregisters a container instance from the specified cluster in your default region. If there are still
+ # # tasks running on the container instance, you must either stop those tasks before deregistering, or use the force option.
#
# resp = client.deregister_container_instance({
# cluster: "default",
# container_instance: "container_instance_UUID",
# force: true,
@@ -1093,11 +1098,12 @@
# * {Types::DescribeContainerInstancesResponse#failures #failures} => Array<Types::Failure>
#
#
# @example Example: To describe container instance
#
- # # This example provides a description of the specified container instance in your default region, using the container instance UUID as an identifier.
+ # # This example provides a description of the specified container instance in your default region, using the container
+ # # instance UUID as an identifier.
#
# resp = client.describe_container_instances({
# cluster: "default",
# container_instances: [
# "f2756532-8f13-4d53-87c9-aed50dc94cd7",
@@ -2357,11 +2363,12 @@
# ],
# }
#
# @example Example: To list the tasks on a particular container instance
#
- # # This example lists the tasks of a specified container instance. Specifying a ``containerInstance`` value limits the results to tasks that belong to that container instance.
+ # # This example lists the tasks of a specified container instance. Specifying a ``containerInstance`` value limits the
+ # # results to tasks that belong to that container instance.
#
# resp = client.list_tasks({
# cluster: "default",
# container_instance: "f6bbb147-5370-4ace-8c73-c7181ded911f",
# })
@@ -3853,10 +3860,10 @@
operation: config.api.operation(operation_name),
client: self,
params: params,
config: config)
context[:gem_name] = 'aws-sdk-ecs'
- context[:gem_version] = '1.0.0'
+ context[:gem_version] = '1.1.0'
Seahorse::Client::Request.new(handlers, context)
end
# Polls an API operation until a resource enters a desired state.
#