CodeStarClient.php
46 lines
| 1 | <?php |
| 2 | namespace Aws\CodeStar; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with the **AWS CodeStar** service. |
| 8 | * @method \Aws\Result associateTeamMember(array $args = []) |
| 9 | * @method \GuzzleHttp\Promise\Promise associateTeamMemberAsync(array $args = []) |
| 10 | * @method \Aws\Result createProject(array $args = []) |
| 11 | * @method \GuzzleHttp\Promise\Promise createProjectAsync(array $args = []) |
| 12 | * @method \Aws\Result createUserProfile(array $args = []) |
| 13 | * @method \GuzzleHttp\Promise\Promise createUserProfileAsync(array $args = []) |
| 14 | * @method \Aws\Result deleteProject(array $args = []) |
| 15 | * @method \GuzzleHttp\Promise\Promise deleteProjectAsync(array $args = []) |
| 16 | * @method \Aws\Result deleteUserProfile(array $args = []) |
| 17 | * @method \GuzzleHttp\Promise\Promise deleteUserProfileAsync(array $args = []) |
| 18 | * @method \Aws\Result describeProject(array $args = []) |
| 19 | * @method \GuzzleHttp\Promise\Promise describeProjectAsync(array $args = []) |
| 20 | * @method \Aws\Result describeUserProfile(array $args = []) |
| 21 | * @method \GuzzleHttp\Promise\Promise describeUserProfileAsync(array $args = []) |
| 22 | * @method \Aws\Result disassociateTeamMember(array $args = []) |
| 23 | * @method \GuzzleHttp\Promise\Promise disassociateTeamMemberAsync(array $args = []) |
| 24 | * @method \Aws\Result listProjects(array $args = []) |
| 25 | * @method \GuzzleHttp\Promise\Promise listProjectsAsync(array $args = []) |
| 26 | * @method \Aws\Result listResources(array $args = []) |
| 27 | * @method \GuzzleHttp\Promise\Promise listResourcesAsync(array $args = []) |
| 28 | * @method \Aws\Result listTagsForProject(array $args = []) |
| 29 | * @method \GuzzleHttp\Promise\Promise listTagsForProjectAsync(array $args = []) |
| 30 | * @method \Aws\Result listTeamMembers(array $args = []) |
| 31 | * @method \GuzzleHttp\Promise\Promise listTeamMembersAsync(array $args = []) |
| 32 | * @method \Aws\Result listUserProfiles(array $args = []) |
| 33 | * @method \GuzzleHttp\Promise\Promise listUserProfilesAsync(array $args = []) |
| 34 | * @method \Aws\Result tagProject(array $args = []) |
| 35 | * @method \GuzzleHttp\Promise\Promise tagProjectAsync(array $args = []) |
| 36 | * @method \Aws\Result untagProject(array $args = []) |
| 37 | * @method \GuzzleHttp\Promise\Promise untagProjectAsync(array $args = []) |
| 38 | * @method \Aws\Result updateProject(array $args = []) |
| 39 | * @method \GuzzleHttp\Promise\Promise updateProjectAsync(array $args = []) |
| 40 | * @method \Aws\Result updateTeamMember(array $args = []) |
| 41 | * @method \GuzzleHttp\Promise\Promise updateTeamMemberAsync(array $args = []) |
| 42 | * @method \Aws\Result updateUserProfile(array $args = []) |
| 43 | * @method \GuzzleHttp\Promise\Promise updateUserProfileAsync(array $args = []) |
| 44 | */ |
| 45 | class CodeStarClient extends AwsClient {} |
| 46 |