Метод | Описание | |
---|---|---|
AmazonECSClient ( ) : System |
Constructs AmazonECSClient with the credentials loaded from the application's default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance. Example App.config with credentials set.
|
|
AmazonECSClient ( |
Constructs AmazonECSClient with AWS Credentials
|
|
AmazonECSClient ( |
Constructs AmazonECSClient with AWS Credentials and an AmazonECSClient Configuration object.
|
|
AmazonECSClient ( |
Constructs AmazonECSClient with AWS Credentials
|
|
AmazonECSClient ( |
Constructs AmazonECSClient with the credentials loaded from the application's default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance. Example App.config with credentials set.
|
|
AmazonECSClient ( RegionEndpoint region ) : System |
Constructs AmazonECSClient with the credentials loaded from the application's default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance. Example App.config with credentials set.
|
|
AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey ) : System |
Constructs AmazonECSClient with AWS Access Key ID and AWS Secret Key
|
|
AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, |
Constructs AmazonECSClient with AWS Access Key ID, AWS Secret Key and an AmazonECSClient Configuration object.
|
|
AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, RegionEndpoint region ) : System |
Constructs AmazonECSClient with AWS Access Key ID and AWS Secret Key
|
|
AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken ) : System |
Constructs AmazonECSClient with AWS Access Key ID and AWS Secret Key
|
|
AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, |
Constructs AmazonECSClient with AWS Access Key ID, AWS Secret Key and an AmazonECSClient Configuration object.
|
|
AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, RegionEndpoint region ) : System |
Constructs AmazonECSClient with AWS Access Key ID and AWS Secret Key
|
|
BeginCreateCluster ( Amazon.ECS.Model.CreateClusterRequest request, AsyncCallback callback, object state ) : IAsyncResult |
Initiates the asynchronous execution of the CreateCluster operation.
|
|
BeginCreateService ( |
Initiates the asynchronous execution of the CreateService operation.
|
|
BeginDeleteCluster ( Amazon.ECS.Model.DeleteClusterRequest request, AsyncCallback callback, object state ) : IAsyncResult |
Initiates the asynchronous execution of the DeleteCluster operation.
|
|
BeginDeleteService ( Amazon.ECS.Model.DeleteServiceRequest request, AsyncCallback callback, object state ) : IAsyncResult |
Initiates the asynchronous execution of the DeleteService operation.
|
|
BeginDeregisterContainerInstance ( |
Initiates the asynchronous execution of the DeregisterContainerInstance operation.
|
|
BeginDeregisterTaskDefinition ( Amazon.ECS.Model.DeregisterTaskDefinitionRequest request, AsyncCallback callback, object state ) : IAsyncResult |
Initiates the asynchronous execution of the DeregisterTaskDefinition operation.
|
|
BeginDescribeClusters ( |
Initiates the asynchronous execution of the DescribeClusters operation.
|
|
BeginDescribeContainerInstances ( Amazon.ECS.Model.DescribeContainerInstancesRequest request, AsyncCallback callback, object state ) : IAsyncResult |
Initiates the asynchronous execution of the DescribeContainerInstances operation.
|
|
BeginDescribeServices ( |
Initiates the asynchronous execution of the DescribeServices operation.
|
|
BeginDescribeTaskDefinition ( Amazon.ECS.Model.DescribeTaskDefinitionRequest request, AsyncCallback callback, object state ) : IAsyncResult |
Initiates the asynchronous execution of the DescribeTaskDefinition operation.
|
|
BeginDescribeTasks ( Amazon.ECS.Model.DescribeTasksRequest request, AsyncCallback callback, object state ) : IAsyncResult |
Initiates the asynchronous execution of the DescribeTasks operation.
|
|
BeginListClusters ( |
Initiates the asynchronous execution of the ListClusters operation.
|
|
BeginListContainerInstances ( |
Initiates the asynchronous execution of the ListContainerInstances operation.
|
|
BeginListServices ( |
Initiates the asynchronous execution of the ListServices operation.
|
|
BeginListTaskDefinitionFamilies ( |
Initiates the asynchronous execution of the ListTaskDefinitionFamilies operation.
|
|
BeginListTaskDefinitions ( |
Initiates the asynchronous execution of the ListTaskDefinitions operation.
|
|
BeginListTasks ( |
Initiates the asynchronous execution of the ListTasks operation.
|
|
BeginRegisterTaskDefinition ( |
Initiates the asynchronous execution of the RegisterTaskDefinition operation.
|
|
BeginRunTask ( |
Initiates the asynchronous execution of the RunTask operation.
|
|
BeginStartTask ( |
Initiates the asynchronous execution of the StartTask operation.
|
|
BeginStopTask ( |
Initiates the asynchronous execution of the StopTask operation.
|
|
BeginUpdateContainerAgent ( |
Initiates the asynchronous execution of the UpdateContainerAgent operation.
|
|
BeginUpdateService ( |
Initiates the asynchronous execution of the UpdateService operation.
|
|
CreateCluster ( Amazon.ECS.Model.CreateClusterRequest request ) : |
Creates a new Amazon ECS cluster. By default, your account receives a
|
|
CreateClusterAsync ( Amazon.ECS.Model.CreateClusterRequest request, System cancellationToken = default(CancellationToken) ) : Task |
Initiates the asynchronous execution of the CreateCluster operation.
|
|
CreateService ( |
Runs and maintains a desired number of tasks from a specified task definition. If the number of tasks running in a service drops below In addition to maintaining the desired count of tasks in your service, you can optionally run your service behind a load balancer. The load balancer distributes traffic across the tasks that are associated with the service. For more information, see Service Load Balancing in the Amazon EC2 Container Service Developer Guide. You can optionally specify a deployment configuration for your service. During a deployment (which is triggered by changing the task definition or the desired count of a service with an UpdateService operation), the service scheduler uses the The The When the service scheduler launches new tasks, it attempts to balance them across the Availability Zones in your cluster with the following logic:
|
|
CreateServiceAsync ( |
Initiates the asynchronous execution of the CreateService operation.
|
|
DeleteCluster ( Amazon.ECS.Model.DeleteClusterRequest request ) : |
Deletes the specified cluster. You must deregister all container instances from this cluster before you may delete it. You can list the container instances in a cluster with ListContainerInstances and deregister them with DeregisterContainerInstance.
|
|
DeleteClusterAsync ( Amazon.ECS.Model.DeleteClusterRequest request, System cancellationToken = default(CancellationToken) ) : Task |
Initiates the asynchronous execution of the DeleteCluster operation.
|
|
DeleteService ( Amazon.ECS.Model.DeleteServiceRequest request ) : |
Deletes a specified service within a cluster. You can delete a service if you have no running tasks in it and the desired task count is zero. If the service is actively maintaining tasks, you cannot delete it, and you must update the service to a desired task count of zero. For more information, see UpdateService. When you delete a service, if there are still running tasks that require cleanup, the service status moves from
|
|
DeleteServiceAsync ( Amazon.ECS.Model.DeleteServiceRequest request, System cancellationToken = default(CancellationToken) ) : Task |
Initiates the asynchronous execution of the DeleteService operation.
|
|
DeregisterContainerInstance ( |
Deregisters an Amazon ECS container instance from the specified cluster. This instance is no longer available to run tasks. If you intend to use the container instance for some other purpose after deregistration, you should stop all of the tasks running on the container instance before deregistration to avoid any orphaned tasks from consuming resources. Deregistering a container instance removes the instance from a cluster, but it does not terminate the EC2 instance; if you are finished using the instance, be sure to terminate it in the Amazon EC2 console to stop billing. If you terminate a running container instance, Amazon ECS automatically deregisters the instance from your cluster (stopped container instances or instances with disconnected agents are not automatically deregistered when terminated).
|
|
DeregisterContainerInstanceAsync ( |
Initiates the asynchronous execution of the DeregisterContainerInstance operation.
|
|
DeregisterTaskDefinition ( Amazon.ECS.Model.DeregisterTaskDefinitionRequest request ) : |
Deregisters the specified task definition by family and revision. Upon deregistration, the task definition is marked as You cannot use an
|
|
DeregisterTaskDefinitionAsync ( Amazon.ECS.Model.DeregisterTaskDefinitionRequest request, System cancellationToken = default(CancellationToken) ) : Task |
Initiates the asynchronous execution of the DeregisterTaskDefinition operation.
|
|
DescribeClusters ( |
Describes one or more of your clusters.
|
|
DescribeClustersAsync ( |
Initiates the asynchronous execution of the DescribeClusters operation.
|
|
DescribeContainerInstances ( Amazon.ECS.Model.DescribeContainerInstancesRequest request ) : Amazon.ECS.Model.DescribeContainerInstancesResponse |
Describes Amazon EC2 Container Service container instances. Returns metadata about registered and remaining resources on each container instance requested.
|
|
DescribeContainerInstancesAsync ( Amazon.ECS.Model.DescribeContainerInstancesRequest request, System cancellationToken = default(CancellationToken) ) : Task |
Initiates the asynchronous execution of the DescribeContainerInstances operation.
|
|
DescribeServices ( |
Describes the specified services running in your cluster.
|
|
DescribeServicesAsync ( |
Initiates the asynchronous execution of the DescribeServices operation.
|
|
DescribeTaskDefinition ( Amazon.ECS.Model.DescribeTaskDefinitionRequest request ) : |
Describes a task definition. You can specify a You can only describe
|
|
DescribeTaskDefinitionAsync ( Amazon.ECS.Model.DescribeTaskDefinitionRequest request, System cancellationToken = default(CancellationToken) ) : Task |
Initiates the asynchronous execution of the DescribeTaskDefinition operation.
|
|
DescribeTasks ( Amazon.ECS.Model.DescribeTasksRequest request ) : |
Describes a specified task or tasks.
|
|
DescribeTasksAsync ( Amazon.ECS.Model.DescribeTasksRequest request, System cancellationToken = default(CancellationToken) ) : Task |
Initiates the asynchronous execution of the DescribeTasks operation.
|
|
EndCreateCluster ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the CreateCluster operation.
|
|
EndCreateService ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the CreateService operation.
|
|
EndDeleteCluster ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the DeleteCluster operation.
|
|
EndDeleteService ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the DeleteService operation.
|
|
EndDeregisterContainerInstance ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the DeregisterContainerInstance operation.
|
|
EndDeregisterTaskDefinition ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the DeregisterTaskDefinition operation.
|
|
EndDescribeClusters ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the DescribeClusters operation.
|
|
EndDescribeContainerInstances ( IAsyncResult asyncResult ) : Amazon.ECS.Model.DescribeContainerInstancesResponse |
Finishes the asynchronous execution of the DescribeContainerInstances operation.
|
|
EndDescribeServices ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the DescribeServices operation.
|
|
EndDescribeTaskDefinition ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the DescribeTaskDefinition operation.
|
|
EndDescribeTasks ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the DescribeTasks operation.
|
|
EndListClusters ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the ListClusters operation.
|
|
EndListContainerInstances ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the ListContainerInstances operation.
|
|
EndListServices ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the ListServices operation.
|
|
EndListTaskDefinitionFamilies ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the ListTaskDefinitionFamilies operation.
|
|
EndListTaskDefinitions ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the ListTaskDefinitions operation.
|
|
EndListTasks ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the ListTasks operation.
|
|
EndRegisterTaskDefinition ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the RegisterTaskDefinition operation.
|
|
EndRunTask ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the RunTask operation.
|
|
EndStartTask ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the StartTask operation.
|
|
EndStopTask ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the StopTask operation.
|
|
EndUpdateContainerAgent ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the UpdateContainerAgent operation.
|
|
EndUpdateService ( IAsyncResult asyncResult ) : |
Finishes the asynchronous execution of the UpdateService operation.
|
|
ListClusters ( |
Returns a list of existing clusters.
|
|
ListClustersAsync ( |
Initiates the asynchronous execution of the ListClusters operation.
|
|
ListContainerInstances ( |
Returns a list of container instances in a specified cluster.
|
|
ListContainerInstancesAsync ( |
Initiates the asynchronous execution of the ListContainerInstances operation.
|
|
ListServices ( |
Lists the services that are running in a specified cluster.
|
|
ListServicesAsync ( |
Initiates the asynchronous execution of the ListServices operation.
|
|
ListTaskDefinitionFamilies ( |
Returns a list of task definition families that are registered to your account (which may include task definition families that no longer have any You can filter out task definition families that do not contain any
|
|
ListTaskDefinitionFamiliesAsync ( |
Initiates the asynchronous execution of the ListTaskDefinitionFamilies operation.
|
|
ListTaskDefinitions ( |
Returns a list of task definitions that are registered to your account. You can filter the results by family name with the
|
|
ListTaskDefinitionsAsync ( |
Initiates the asynchronous execution of the ListTaskDefinitions operation.
|
|
ListTasks ( |
Returns a list of tasks for a specified cluster. You can filter the results by family name, by a particular container instance, or by the desired status of the task with the Recently-stopped tasks might appear in the returned results. Currently, stopped tasks appear in the returned results for at least one hour.
|
|
ListTasksAsync ( |
Initiates the asynchronous execution of the ListTasks operation.
|
|
RegisterTaskDefinition ( |
Registers a new task definition from the supplied You can specify an IAM role for your task with the You can specify a Docker networking mode for the containers in your task definition with the
|
|
RegisterTaskDefinitionAsync ( |
Initiates the asynchronous execution of the RegisterTaskDefinition operation.
|
|
RunTask ( |
Start a task using random placement and the default Amazon ECS scheduler. To use your own scheduler or place a task on a specific container instance, use The
|
|
RunTaskAsync ( |
Initiates the asynchronous execution of the RunTask operation.
|
|
StartTask ( |
Starts a new task from the specified task definition on the specified container instance or instances. To use the default Amazon ECS scheduler to place your task, use The list of container instances to start tasks on is limited to 10.
|
|
StartTaskAsync ( |
Initiates the asynchronous execution of the StartTask operation.
|
|
StopTask ( |
Stops a running task. When StopTask is called on a task, the equivalent of
|
|
StopTaskAsync ( |
Initiates the asynchronous execution of the StopTask operation.
|
|
UpdateContainerAgent ( |
Updates the Amazon ECS container agent on a specified container instance. Updating the Amazon ECS container agent does not interrupt running tasks or services on the container instance. The process for updating the agent differs depending on whether your container instance was launched with the Amazon ECS-optimized AMI or another operating system.
|
|
UpdateContainerAgentAsync ( |
Initiates the asynchronous execution of the UpdateContainerAgent operation.
|
|
UpdateService ( |
Modifies the desired count, deployment configuration, or task definition used in a service. You can add to or subtract from the number of instantiations of a task definition in a service by specifying the cluster that the service is running in and a new You can use UpdateService to modify your task definition and deploy a new version of your service. You can also update the deployment configuration of a service. When a deployment is triggered by updating the task definition of a service, the service scheduler uses the deployment configuration parameters, If the The When UpdateService stops a task during a deployment, the equivalent of When the service scheduler launches new tasks, it attempts to balance them across the Availability Zones in your cluster with the following logic:
|
|
UpdateServiceAsync ( |
Initiates the asynchronous execution of the UpdateService operation.
|
Метод | Описание | |
---|---|---|
CreateSigner ( ) : |
Creates the signer for the service.
|
|
Dispose ( bool disposing ) : void |
Disposes the service client.
|
public AmazonECSClient ( |
||
credentials | AWS Credentials | |
Результат | System |
public AmazonECSClient ( |
||
credentials | AWS Credentials | |
clientConfig | The AmazonECSClient Configuration Object | |
Результат | System |
public AmazonECSClient ( |
||
credentials | AWS Credentials | |
region | RegionEndpoint | The region to connect. |
Результат | System |
public AmazonECSClient ( |
||
config | The AmazonECSClient Configuration Object | |
Результат | System |
public AmazonECSClient ( RegionEndpoint region ) : System | ||
region | RegionEndpoint | The region to connect. |
Результат | System |
public AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey ) : System | ||
awsAccessKeyId | string | AWS Access Key ID |
awsSecretAccessKey | string | AWS Secret Access Key |
Результат | System |
public AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, |
||
awsAccessKeyId | string | AWS Access Key ID |
awsSecretAccessKey | string | AWS Secret Access Key |
clientConfig | The AmazonECSClient Configuration Object | |
Результат | System |
public AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, RegionEndpoint region ) : System | ||
awsAccessKeyId | string | AWS Access Key ID |
awsSecretAccessKey | string | AWS Secret Access Key |
region | RegionEndpoint | The region to connect. |
Результат | System |
public AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken ) : System | ||
awsAccessKeyId | string | AWS Access Key ID |
awsSecretAccessKey | string | AWS Secret Access Key |
awsSessionToken | string | AWS Session Token |
Результат | System |
public AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, |
||
awsAccessKeyId | string | AWS Access Key ID |
awsSecretAccessKey | string | AWS Secret Access Key |
awsSessionToken | string | AWS Session Token |
clientConfig | The AmazonECSClient Configuration Object | |
Результат | System |
public AmazonECSClient ( string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, RegionEndpoint region ) : System | ||
awsAccessKeyId | string | AWS Access Key ID |
awsSecretAccessKey | string | AWS Secret Access Key |
awsSessionToken | string | AWS Session Token |
region | RegionEndpoint | The region to connect. |
Результат | System |
public BeginCreateCluster ( Amazon.ECS.Model.CreateClusterRequest request, AsyncCallback callback, object state ) : IAsyncResult | ||
request | Amazon.ECS.Model.CreateClusterRequest | Container for the necessary parameters to execute the CreateCluster operation on AmazonECSClient. |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginCreateService ( |
||
request | Container for the necessary parameters to execute the CreateService operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDeleteCluster ( Amazon.ECS.Model.DeleteClusterRequest request, AsyncCallback callback, object state ) : IAsyncResult | ||
request | Amazon.ECS.Model.DeleteClusterRequest | Container for the necessary parameters to execute the DeleteCluster operation on AmazonECSClient. |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDeleteService ( Amazon.ECS.Model.DeleteServiceRequest request, AsyncCallback callback, object state ) : IAsyncResult | ||
request | Amazon.ECS.Model.DeleteServiceRequest | Container for the necessary parameters to execute the DeleteService operation on AmazonECSClient. |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDeregisterContainerInstance ( |
||
request | Container for the necessary parameters to execute the DeregisterContainerInstance operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDeregisterTaskDefinition ( Amazon.ECS.Model.DeregisterTaskDefinitionRequest request, AsyncCallback callback, object state ) : IAsyncResult | ||
request | Amazon.ECS.Model.DeregisterTaskDefinitionRequest | Container for the necessary parameters to execute the DeregisterTaskDefinition operation on AmazonECSClient. |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDescribeClusters ( |
||
request | Container for the necessary parameters to execute the DescribeClusters operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDescribeContainerInstances ( Amazon.ECS.Model.DescribeContainerInstancesRequest request, AsyncCallback callback, object state ) : IAsyncResult | ||
request | Amazon.ECS.Model.DescribeContainerInstancesRequest | Container for the necessary parameters to execute the DescribeContainerInstances operation on AmazonECSClient. |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDescribeServices ( |
||
request | Container for the necessary parameters to execute the DescribeServices operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDescribeTaskDefinition ( Amazon.ECS.Model.DescribeTaskDefinitionRequest request, AsyncCallback callback, object state ) : IAsyncResult | ||
request | Amazon.ECS.Model.DescribeTaskDefinitionRequest | Container for the necessary parameters to execute the DescribeTaskDefinition operation on AmazonECSClient. |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginDescribeTasks ( Amazon.ECS.Model.DescribeTasksRequest request, AsyncCallback callback, object state ) : IAsyncResult | ||
request | Amazon.ECS.Model.DescribeTasksRequest | Container for the necessary parameters to execute the DescribeTasks operation on AmazonECSClient. |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginListClusters ( |
||
request | Container for the necessary parameters to execute the ListClusters operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginListContainerInstances ( |
||
request | Container for the necessary parameters to execute the ListContainerInstances operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginListServices ( |
||
request | Container for the necessary parameters to execute the ListServices operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginListTaskDefinitionFamilies ( |
||
request | Container for the necessary parameters to execute the ListTaskDefinitionFamilies operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginListTaskDefinitions ( |
||
request | Container for the necessary parameters to execute the ListTaskDefinitions operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginListTasks ( |
||
request | Container for the necessary parameters to execute the ListTasks operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginRegisterTaskDefinition ( |
||
request | Container for the necessary parameters to execute the RegisterTaskDefinition operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginRunTask ( |
||
request | Container for the necessary parameters to execute the RunTask operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginStartTask ( |
||
request | Container for the necessary parameters to execute the StartTask operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginStopTask ( |
||
request | Container for the necessary parameters to execute the StopTask operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginUpdateContainerAgent ( |
||
request | Container for the necessary parameters to execute the UpdateContainerAgent operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public BeginUpdateService ( |
||
request | Container for the necessary parameters to execute the UpdateService operation on AmazonECSClient. | |
callback | AsyncCallback | An AsyncCallback delegate that is invoked when the operation completes. |
state | object | A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. |
Результат | IAsyncResult |
public CreateCluster ( Amazon.ECS.Model.CreateClusterRequest request ) : |
||
request | Amazon.ECS.Model.CreateClusterRequest | Container for the necessary parameters to execute the CreateCluster service method. |
Результат |
public CreateClusterAsync ( Amazon.ECS.Model.CreateClusterRequest request, System cancellationToken = default(CancellationToken) ) : Task |
||
request | Amazon.ECS.Model.CreateClusterRequest | Container for the necessary parameters to execute the CreateCluster operation. |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public CreateService ( |
||
request | Container for the necessary parameters to execute the CreateService service method. | |
Результат |
public CreateServiceAsync ( |
||
request | Container for the necessary parameters to execute the CreateService operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
protected CreateSigner ( ) : |
||
Результат |
public DeleteCluster ( Amazon.ECS.Model.DeleteClusterRequest request ) : |
||
request | Amazon.ECS.Model.DeleteClusterRequest | Container for the necessary parameters to execute the DeleteCluster service method. |
Результат |
public DeleteClusterAsync ( Amazon.ECS.Model.DeleteClusterRequest request, System cancellationToken = default(CancellationToken) ) : Task |
||
request | Amazon.ECS.Model.DeleteClusterRequest | Container for the necessary parameters to execute the DeleteCluster operation. |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public DeleteService ( Amazon.ECS.Model.DeleteServiceRequest request ) : |
||
request | Amazon.ECS.Model.DeleteServiceRequest | Container for the necessary parameters to execute the DeleteService service method. |
Результат |
public DeleteServiceAsync ( Amazon.ECS.Model.DeleteServiceRequest request, System cancellationToken = default(CancellationToken) ) : Task |
||
request | Amazon.ECS.Model.DeleteServiceRequest | Container for the necessary parameters to execute the DeleteService operation. |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public DeregisterContainerInstance ( |
||
request | Container for the necessary parameters to execute the DeregisterContainerInstance service method. | |
Результат |
public DeregisterContainerInstanceAsync ( |
||
request | Container for the necessary parameters to execute the DeregisterContainerInstance operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public DeregisterTaskDefinition ( Amazon.ECS.Model.DeregisterTaskDefinitionRequest request ) : |
||
request | Amazon.ECS.Model.DeregisterTaskDefinitionRequest | Container for the necessary parameters to execute the DeregisterTaskDefinition service method. |
Результат |
public DeregisterTaskDefinitionAsync ( Amazon.ECS.Model.DeregisterTaskDefinitionRequest request, System cancellationToken = default(CancellationToken) ) : Task |
||
request | Amazon.ECS.Model.DeregisterTaskDefinitionRequest | Container for the necessary parameters to execute the DeregisterTaskDefinition operation. |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public DescribeClusters ( |
||
request | Container for the necessary parameters to execute the DescribeClusters service method. | |
Результат |
public DescribeClustersAsync ( |
||
request | Container for the necessary parameters to execute the DescribeClusters operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public DescribeContainerInstances ( Amazon.ECS.Model.DescribeContainerInstancesRequest request ) : Amazon.ECS.Model.DescribeContainerInstancesResponse | ||
request | Amazon.ECS.Model.DescribeContainerInstancesRequest | Container for the necessary parameters to execute the DescribeContainerInstances service method. |
Результат | Amazon.ECS.Model.DescribeContainerInstancesResponse |
public DescribeContainerInstancesAsync ( Amazon.ECS.Model.DescribeContainerInstancesRequest request, System cancellationToken = default(CancellationToken) ) : Task |
||
request | Amazon.ECS.Model.DescribeContainerInstancesRequest | Container for the necessary parameters to execute the DescribeContainerInstances operation. |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public DescribeServices ( |
||
request | Container for the necessary parameters to execute the DescribeServices service method. | |
Результат |
public DescribeServicesAsync ( |
||
request | Container for the necessary parameters to execute the DescribeServices operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public DescribeTaskDefinition ( Amazon.ECS.Model.DescribeTaskDefinitionRequest request ) : |
||
request | Amazon.ECS.Model.DescribeTaskDefinitionRequest | Container for the necessary parameters to execute the DescribeTaskDefinition service method. |
Результат |
public DescribeTaskDefinitionAsync ( Amazon.ECS.Model.DescribeTaskDefinitionRequest request, System cancellationToken = default(CancellationToken) ) : Task |
||
request | Amazon.ECS.Model.DescribeTaskDefinitionRequest | Container for the necessary parameters to execute the DescribeTaskDefinition operation. |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public DescribeTasks ( Amazon.ECS.Model.DescribeTasksRequest request ) : |
||
request | Amazon.ECS.Model.DescribeTasksRequest | Container for the necessary parameters to execute the DescribeTasks service method. |
Результат |
public DescribeTasksAsync ( Amazon.ECS.Model.DescribeTasksRequest request, System cancellationToken = default(CancellationToken) ) : Task |
||
request | Amazon.ECS.Model.DescribeTasksRequest | Container for the necessary parameters to execute the DescribeTasks operation. |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
protected Dispose ( bool disposing ) : void | ||
disposing | bool | |
Результат | void |
public EndCreateCluster ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginCreateCluster. |
Результат |
public EndCreateService ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginCreateService. |
Результат |
public EndDeleteCluster ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDeleteCluster. |
Результат |
public EndDeleteService ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDeleteService. |
Результат |
public EndDeregisterContainerInstance ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDeregisterContainerInstance. |
Результат |
public EndDeregisterTaskDefinition ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDeregisterTaskDefinition. |
Результат |
public EndDescribeClusters ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDescribeClusters. |
Результат |
public EndDescribeContainerInstances ( IAsyncResult asyncResult ) : Amazon.ECS.Model.DescribeContainerInstancesResponse | ||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDescribeContainerInstances. |
Результат | Amazon.ECS.Model.DescribeContainerInstancesResponse |
public EndDescribeServices ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDescribeServices. |
Результат |
public EndDescribeTaskDefinition ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDescribeTaskDefinition. |
Результат |
public EndDescribeTasks ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginDescribeTasks. |
Результат |
public EndListClusters ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginListClusters. |
Результат |
public EndListContainerInstances ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginListContainerInstances. |
Результат |
public EndListServices ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginListServices. |
Результат |
public EndListTaskDefinitionFamilies ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginListTaskDefinitionFamilies. |
Результат |
public EndListTaskDefinitions ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginListTaskDefinitions. |
Результат |
public EndListTasks ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginListTasks. |
Результат |
public EndRegisterTaskDefinition ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginRegisterTaskDefinition. |
Результат |
public EndRunTask ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginRunTask. |
Результат |
public EndStartTask ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginStartTask. |
Результат |
public EndStopTask ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginStopTask. |
Результат |
public EndUpdateContainerAgent ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginUpdateContainerAgent. |
Результат |
public EndUpdateService ( IAsyncResult asyncResult ) : |
||
asyncResult | IAsyncResult | The IAsyncResult returned by the call to BeginUpdateService. |
Результат |
public ListClusters ( |
||
request | Container for the necessary parameters to execute the ListClusters service method. | |
Результат |
public ListClustersAsync ( |
||
request | Container for the necessary parameters to execute the ListClusters operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public ListContainerInstances ( |
||
request | Container for the necessary parameters to execute the ListContainerInstances service method. | |
Результат |
public ListContainerInstancesAsync ( |
||
request | Container for the necessary parameters to execute the ListContainerInstances operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public ListServices ( |
||
request | Container for the necessary parameters to execute the ListServices service method. | |
Результат |
public ListServicesAsync ( |
||
request | Container for the necessary parameters to execute the ListServices operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public ListTaskDefinitionFamilies ( |
||
request | Container for the necessary parameters to execute the ListTaskDefinitionFamilies service method. | |
Результат |
public ListTaskDefinitionFamiliesAsync ( |
||
request | Container for the necessary parameters to execute the ListTaskDefinitionFamilies operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public ListTaskDefinitions ( |
||
request | Container for the necessary parameters to execute the ListTaskDefinitions service method. | |
Результат |
public ListTaskDefinitionsAsync ( |
||
request | Container for the necessary parameters to execute the ListTaskDefinitions operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public ListTasks ( |
||
request | Container for the necessary parameters to execute the ListTasks service method. | |
Результат |
public ListTasksAsync ( |
||
request | Container for the necessary parameters to execute the ListTasks operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public RegisterTaskDefinition ( |
||
request | Container for the necessary parameters to execute the RegisterTaskDefinition service method. | |
Результат |
public RegisterTaskDefinitionAsync ( |
||
request | Container for the necessary parameters to execute the RegisterTaskDefinition operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public RunTask ( |
||
request | Container for the necessary parameters to execute the RunTask service method. | |
Результат |
public RunTaskAsync ( |
||
request | Container for the necessary parameters to execute the RunTask operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public StartTask ( |
||
request | Container for the necessary parameters to execute the StartTask service method. | |
Результат |
public StartTaskAsync ( |
||
request | Container for the necessary parameters to execute the StartTask operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public StopTask ( |
||
request | Container for the necessary parameters to execute the StopTask service method. | |
Результат |
public StopTaskAsync ( |
||
request | Container for the necessary parameters to execute the StopTask operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public UpdateContainerAgent ( |
||
request | Container for the necessary parameters to execute the UpdateContainerAgent service method. | |
Результат |
public UpdateContainerAgentAsync ( |
||
request | Container for the necessary parameters to execute the UpdateContainerAgent operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |
public UpdateService ( |
||
request | Container for the necessary parameters to execute the UpdateService service method. | |
Результат |
public UpdateServiceAsync ( |
||
request | Container for the necessary parameters to execute the UpdateService operation. | |
cancellationToken | System | /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// |
Результат | Task |