EcsClient.php
123 lines
| 1 | <?php |
| 2 | namespace Aws\Ecs; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with **Amazon ECS**. |
| 8 | * |
| 9 | * @method \Aws\Result createCapacityProvider(array $args = []) |
| 10 | * @method \GuzzleHttp\Promise\Promise createCapacityProviderAsync(array $args = []) |
| 11 | * @method \Aws\Result createCluster(array $args = []) |
| 12 | * @method \GuzzleHttp\Promise\Promise createClusterAsync(array $args = []) |
| 13 | * @method \Aws\Result createService(array $args = []) |
| 14 | * @method \GuzzleHttp\Promise\Promise createServiceAsync(array $args = []) |
| 15 | * @method \Aws\Result createTaskSet(array $args = []) |
| 16 | * @method \GuzzleHttp\Promise\Promise createTaskSetAsync(array $args = []) |
| 17 | * @method \Aws\Result deleteAccountSetting(array $args = []) |
| 18 | * @method \GuzzleHttp\Promise\Promise deleteAccountSettingAsync(array $args = []) |
| 19 | * @method \Aws\Result deleteAttributes(array $args = []) |
| 20 | * @method \GuzzleHttp\Promise\Promise deleteAttributesAsync(array $args = []) |
| 21 | * @method \Aws\Result deleteCapacityProvider(array $args = []) |
| 22 | * @method \GuzzleHttp\Promise\Promise deleteCapacityProviderAsync(array $args = []) |
| 23 | * @method \Aws\Result deleteCluster(array $args = []) |
| 24 | * @method \GuzzleHttp\Promise\Promise deleteClusterAsync(array $args = []) |
| 25 | * @method \Aws\Result deleteService(array $args = []) |
| 26 | * @method \GuzzleHttp\Promise\Promise deleteServiceAsync(array $args = []) |
| 27 | * @method \Aws\Result deleteTaskDefinitions(array $args = []) |
| 28 | * @method \GuzzleHttp\Promise\Promise deleteTaskDefinitionsAsync(array $args = []) |
| 29 | * @method \Aws\Result deleteTaskSet(array $args = []) |
| 30 | * @method \GuzzleHttp\Promise\Promise deleteTaskSetAsync(array $args = []) |
| 31 | * @method \Aws\Result deregisterContainerInstance(array $args = []) |
| 32 | * @method \GuzzleHttp\Promise\Promise deregisterContainerInstanceAsync(array $args = []) |
| 33 | * @method \Aws\Result deregisterTaskDefinition(array $args = []) |
| 34 | * @method \GuzzleHttp\Promise\Promise deregisterTaskDefinitionAsync(array $args = []) |
| 35 | * @method \Aws\Result describeCapacityProviders(array $args = []) |
| 36 | * @method \GuzzleHttp\Promise\Promise describeCapacityProvidersAsync(array $args = []) |
| 37 | * @method \Aws\Result describeClusters(array $args = []) |
| 38 | * @method \GuzzleHttp\Promise\Promise describeClustersAsync(array $args = []) |
| 39 | * @method \Aws\Result describeContainerInstances(array $args = []) |
| 40 | * @method \GuzzleHttp\Promise\Promise describeContainerInstancesAsync(array $args = []) |
| 41 | * @method \Aws\Result describeServices(array $args = []) |
| 42 | * @method \GuzzleHttp\Promise\Promise describeServicesAsync(array $args = []) |
| 43 | * @method \Aws\Result describeTaskDefinition(array $args = []) |
| 44 | * @method \GuzzleHttp\Promise\Promise describeTaskDefinitionAsync(array $args = []) |
| 45 | * @method \Aws\Result describeTaskSets(array $args = []) |
| 46 | * @method \GuzzleHttp\Promise\Promise describeTaskSetsAsync(array $args = []) |
| 47 | * @method \Aws\Result describeTasks(array $args = []) |
| 48 | * @method \GuzzleHttp\Promise\Promise describeTasksAsync(array $args = []) |
| 49 | * @method \Aws\Result discoverPollEndpoint(array $args = []) |
| 50 | * @method \GuzzleHttp\Promise\Promise discoverPollEndpointAsync(array $args = []) |
| 51 | * @method \Aws\Result executeCommand(array $args = []) |
| 52 | * @method \GuzzleHttp\Promise\Promise executeCommandAsync(array $args = []) |
| 53 | * @method \Aws\Result getTaskProtection(array $args = []) |
| 54 | * @method \GuzzleHttp\Promise\Promise getTaskProtectionAsync(array $args = []) |
| 55 | * @method \Aws\Result listAccountSettings(array $args = []) |
| 56 | * @method \GuzzleHttp\Promise\Promise listAccountSettingsAsync(array $args = []) |
| 57 | * @method \Aws\Result listAttributes(array $args = []) |
| 58 | * @method \GuzzleHttp\Promise\Promise listAttributesAsync(array $args = []) |
| 59 | * @method \Aws\Result listClusters(array $args = []) |
| 60 | * @method \GuzzleHttp\Promise\Promise listClustersAsync(array $args = []) |
| 61 | * @method \Aws\Result listContainerInstances(array $args = []) |
| 62 | * @method \GuzzleHttp\Promise\Promise listContainerInstancesAsync(array $args = []) |
| 63 | * @method \Aws\Result listServices(array $args = []) |
| 64 | * @method \GuzzleHttp\Promise\Promise listServicesAsync(array $args = []) |
| 65 | * @method \Aws\Result listServicesByNamespace(array $args = []) |
| 66 | * @method \GuzzleHttp\Promise\Promise listServicesByNamespaceAsync(array $args = []) |
| 67 | * @method \Aws\Result listTagsForResource(array $args = []) |
| 68 | * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = []) |
| 69 | * @method \Aws\Result listTaskDefinitionFamilies(array $args = []) |
| 70 | * @method \GuzzleHttp\Promise\Promise listTaskDefinitionFamiliesAsync(array $args = []) |
| 71 | * @method \Aws\Result listTaskDefinitions(array $args = []) |
| 72 | * @method \GuzzleHttp\Promise\Promise listTaskDefinitionsAsync(array $args = []) |
| 73 | * @method \Aws\Result listTasks(array $args = []) |
| 74 | * @method \GuzzleHttp\Promise\Promise listTasksAsync(array $args = []) |
| 75 | * @method \Aws\Result putAccountSetting(array $args = []) |
| 76 | * @method \GuzzleHttp\Promise\Promise putAccountSettingAsync(array $args = []) |
| 77 | * @method \Aws\Result putAccountSettingDefault(array $args = []) |
| 78 | * @method \GuzzleHttp\Promise\Promise putAccountSettingDefaultAsync(array $args = []) |
| 79 | * @method \Aws\Result putAttributes(array $args = []) |
| 80 | * @method \GuzzleHttp\Promise\Promise putAttributesAsync(array $args = []) |
| 81 | * @method \Aws\Result putClusterCapacityProviders(array $args = []) |
| 82 | * @method \GuzzleHttp\Promise\Promise putClusterCapacityProvidersAsync(array $args = []) |
| 83 | * @method \Aws\Result registerContainerInstance(array $args = []) |
| 84 | * @method \GuzzleHttp\Promise\Promise registerContainerInstanceAsync(array $args = []) |
| 85 | * @method \Aws\Result registerTaskDefinition(array $args = []) |
| 86 | * @method \GuzzleHttp\Promise\Promise registerTaskDefinitionAsync(array $args = []) |
| 87 | * @method \Aws\Result runTask(array $args = []) |
| 88 | * @method \GuzzleHttp\Promise\Promise runTaskAsync(array $args = []) |
| 89 | * @method \Aws\Result startTask(array $args = []) |
| 90 | * @method \GuzzleHttp\Promise\Promise startTaskAsync(array $args = []) |
| 91 | * @method \Aws\Result stopTask(array $args = []) |
| 92 | * @method \GuzzleHttp\Promise\Promise stopTaskAsync(array $args = []) |
| 93 | * @method \Aws\Result submitAttachmentStateChanges(array $args = []) |
| 94 | * @method \GuzzleHttp\Promise\Promise submitAttachmentStateChangesAsync(array $args = []) |
| 95 | * @method \Aws\Result submitContainerStateChange(array $args = []) |
| 96 | * @method \GuzzleHttp\Promise\Promise submitContainerStateChangeAsync(array $args = []) |
| 97 | * @method \Aws\Result submitTaskStateChange(array $args = []) |
| 98 | * @method \GuzzleHttp\Promise\Promise submitTaskStateChangeAsync(array $args = []) |
| 99 | * @method \Aws\Result tagResource(array $args = []) |
| 100 | * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) |
| 101 | * @method \Aws\Result untagResource(array $args = []) |
| 102 | * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) |
| 103 | * @method \Aws\Result updateCapacityProvider(array $args = []) |
| 104 | * @method \GuzzleHttp\Promise\Promise updateCapacityProviderAsync(array $args = []) |
| 105 | * @method \Aws\Result updateCluster(array $args = []) |
| 106 | * @method \GuzzleHttp\Promise\Promise updateClusterAsync(array $args = []) |
| 107 | * @method \Aws\Result updateClusterSettings(array $args = []) |
| 108 | * @method \GuzzleHttp\Promise\Promise updateClusterSettingsAsync(array $args = []) |
| 109 | * @method \Aws\Result updateContainerAgent(array $args = []) |
| 110 | * @method \GuzzleHttp\Promise\Promise updateContainerAgentAsync(array $args = []) |
| 111 | * @method \Aws\Result updateContainerInstancesState(array $args = []) |
| 112 | * @method \GuzzleHttp\Promise\Promise updateContainerInstancesStateAsync(array $args = []) |
| 113 | * @method \Aws\Result updateService(array $args = []) |
| 114 | * @method \GuzzleHttp\Promise\Promise updateServiceAsync(array $args = []) |
| 115 | * @method \Aws\Result updateServicePrimaryTaskSet(array $args = []) |
| 116 | * @method \GuzzleHttp\Promise\Promise updateServicePrimaryTaskSetAsync(array $args = []) |
| 117 | * @method \Aws\Result updateTaskProtection(array $args = []) |
| 118 | * @method \GuzzleHttp\Promise\Promise updateTaskProtectionAsync(array $args = []) |
| 119 | * @method \Aws\Result updateTaskSet(array $args = []) |
| 120 | * @method \GuzzleHttp\Promise\Promise updateTaskSetAsync(array $args = []) |
| 121 | */ |
| 122 | class EcsClient extends AwsClient {} |
| 123 |