allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s

This commit is contained in:
2026-03-30 14:54:57 +07:00
parent 66aed7c4e8
commit b5e3a778ce
21316 changed files with 2777892 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace Aws\IdentityStore\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error interacting with the **AWS SSO Identity Store** service.
*/
class IdentityStoreException extends AwsException {}

View File

@@ -0,0 +1,47 @@
<?php
namespace Aws\IdentityStore;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS SSO Identity Store** service.
* @method \Aws\Result createGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise createGroupAsync(array $args = [])
* @method \Aws\Result createGroupMembership(array $args = [])
* @method \GuzzleHttp\Promise\Promise createGroupMembershipAsync(array $args = [])
* @method \Aws\Result createUser(array $args = [])
* @method \GuzzleHttp\Promise\Promise createUserAsync(array $args = [])
* @method \Aws\Result deleteGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteGroupAsync(array $args = [])
* @method \Aws\Result deleteGroupMembership(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteGroupMembershipAsync(array $args = [])
* @method \Aws\Result deleteUser(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteUserAsync(array $args = [])
* @method \Aws\Result describeGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeGroupAsync(array $args = [])
* @method \Aws\Result describeGroupMembership(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeGroupMembershipAsync(array $args = [])
* @method \Aws\Result describeUser(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeUserAsync(array $args = [])
* @method \Aws\Result getGroupId(array $args = [])
* @method \GuzzleHttp\Promise\Promise getGroupIdAsync(array $args = [])
* @method \Aws\Result getGroupMembershipId(array $args = [])
* @method \GuzzleHttp\Promise\Promise getGroupMembershipIdAsync(array $args = [])
* @method \Aws\Result getUserId(array $args = [])
* @method \GuzzleHttp\Promise\Promise getUserIdAsync(array $args = [])
* @method \Aws\Result isMemberInGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise isMemberInGroupsAsync(array $args = [])
* @method \Aws\Result listGroupMemberships(array $args = [])
* @method \GuzzleHttp\Promise\Promise listGroupMembershipsAsync(array $args = [])
* @method \Aws\Result listGroupMembershipsForMember(array $args = [])
* @method \GuzzleHttp\Promise\Promise listGroupMembershipsForMemberAsync(array $args = [])
* @method \Aws\Result listGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise listGroupsAsync(array $args = [])
* @method \Aws\Result listUsers(array $args = [])
* @method \GuzzleHttp\Promise\Promise listUsersAsync(array $args = [])
* @method \Aws\Result updateGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateGroupAsync(array $args = [])
* @method \Aws\Result updateUser(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateUserAsync(array $args = [])
*/
class IdentityStoreClient extends AwsClient {}