IdentityStoreClient.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. namespace Aws\IdentityStore;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS SSO Identity Store** service.
  6. * @method \Aws\Result createGroup(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise createGroupAsync(array $args = [])
  8. * @method \Aws\Result createGroupMembership(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise createGroupMembershipAsync(array $args = [])
  10. * @method \Aws\Result createUser(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise createUserAsync(array $args = [])
  12. * @method \Aws\Result deleteGroup(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise deleteGroupAsync(array $args = [])
  14. * @method \Aws\Result deleteGroupMembership(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise deleteGroupMembershipAsync(array $args = [])
  16. * @method \Aws\Result deleteUser(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise deleteUserAsync(array $args = [])
  18. * @method \Aws\Result describeGroup(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise describeGroupAsync(array $args = [])
  20. * @method \Aws\Result describeGroupMembership(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise describeGroupMembershipAsync(array $args = [])
  22. * @method \Aws\Result describeUser(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise describeUserAsync(array $args = [])
  24. * @method \Aws\Result getGroupId(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise getGroupIdAsync(array $args = [])
  26. * @method \Aws\Result getGroupMembershipId(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise getGroupMembershipIdAsync(array $args = [])
  28. * @method \Aws\Result getUserId(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise getUserIdAsync(array $args = [])
  30. * @method \Aws\Result isMemberInGroups(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise isMemberInGroupsAsync(array $args = [])
  32. * @method \Aws\Result listGroupMemberships(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise listGroupMembershipsAsync(array $args = [])
  34. * @method \Aws\Result listGroupMembershipsForMember(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise listGroupMembershipsForMemberAsync(array $args = [])
  36. * @method \Aws\Result listGroups(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise listGroupsAsync(array $args = [])
  38. * @method \Aws\Result listUsers(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise listUsersAsync(array $args = [])
  40. * @method \Aws\Result updateGroup(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise updateGroupAsync(array $args = [])
  42. * @method \Aws\Result updateUser(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise updateUserAsync(array $args = [])
  44. */
  45. class IdentityStoreClient extends AwsClient {}