DetectiveClient.php
68 lines
| 1 | <?php |
| 2 | namespace Aws\Detective; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with the **Amazon Detective** service. |
| 8 | * @method \Aws\Result acceptInvitation(array $args = []) |
| 9 | * @method \GuzzleHttp\Promise\Promise acceptInvitationAsync(array $args = []) |
| 10 | * @method \Aws\Result batchGetGraphMemberDatasources(array $args = []) |
| 11 | * @method \GuzzleHttp\Promise\Promise batchGetGraphMemberDatasourcesAsync(array $args = []) |
| 12 | * @method \Aws\Result batchGetMembershipDatasources(array $args = []) |
| 13 | * @method \GuzzleHttp\Promise\Promise batchGetMembershipDatasourcesAsync(array $args = []) |
| 14 | * @method \Aws\Result createGraph(array $args = []) |
| 15 | * @method \GuzzleHttp\Promise\Promise createGraphAsync(array $args = []) |
| 16 | * @method \Aws\Result createMembers(array $args = []) |
| 17 | * @method \GuzzleHttp\Promise\Promise createMembersAsync(array $args = []) |
| 18 | * @method \Aws\Result deleteGraph(array $args = []) |
| 19 | * @method \GuzzleHttp\Promise\Promise deleteGraphAsync(array $args = []) |
| 20 | * @method \Aws\Result deleteMembers(array $args = []) |
| 21 | * @method \GuzzleHttp\Promise\Promise deleteMembersAsync(array $args = []) |
| 22 | * @method \Aws\Result describeOrganizationConfiguration(array $args = []) |
| 23 | * @method \GuzzleHttp\Promise\Promise describeOrganizationConfigurationAsync(array $args = []) |
| 24 | * @method \Aws\Result disableOrganizationAdminAccount(array $args = []) |
| 25 | * @method \GuzzleHttp\Promise\Promise disableOrganizationAdminAccountAsync(array $args = []) |
| 26 | * @method \Aws\Result disassociateMembership(array $args = []) |
| 27 | * @method \GuzzleHttp\Promise\Promise disassociateMembershipAsync(array $args = []) |
| 28 | * @method \Aws\Result enableOrganizationAdminAccount(array $args = []) |
| 29 | * @method \GuzzleHttp\Promise\Promise enableOrganizationAdminAccountAsync(array $args = []) |
| 30 | * @method \Aws\Result getInvestigation(array $args = []) |
| 31 | * @method \GuzzleHttp\Promise\Promise getInvestigationAsync(array $args = []) |
| 32 | * @method \Aws\Result getMembers(array $args = []) |
| 33 | * @method \GuzzleHttp\Promise\Promise getMembersAsync(array $args = []) |
| 34 | * @method \Aws\Result listDatasourcePackages(array $args = []) |
| 35 | * @method \GuzzleHttp\Promise\Promise listDatasourcePackagesAsync(array $args = []) |
| 36 | * @method \Aws\Result listGraphs(array $args = []) |
| 37 | * @method \GuzzleHttp\Promise\Promise listGraphsAsync(array $args = []) |
| 38 | * @method \Aws\Result listIndicators(array $args = []) |
| 39 | * @method \GuzzleHttp\Promise\Promise listIndicatorsAsync(array $args = []) |
| 40 | * @method \Aws\Result listInvestigations(array $args = []) |
| 41 | * @method \GuzzleHttp\Promise\Promise listInvestigationsAsync(array $args = []) |
| 42 | * @method \Aws\Result listInvitations(array $args = []) |
| 43 | * @method \GuzzleHttp\Promise\Promise listInvitationsAsync(array $args = []) |
| 44 | * @method \Aws\Result listMembers(array $args = []) |
| 45 | * @method \GuzzleHttp\Promise\Promise listMembersAsync(array $args = []) |
| 46 | * @method \Aws\Result listOrganizationAdminAccounts(array $args = []) |
| 47 | * @method \GuzzleHttp\Promise\Promise listOrganizationAdminAccountsAsync(array $args = []) |
| 48 | * @method \Aws\Result listTagsForResource(array $args = []) |
| 49 | * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = []) |
| 50 | * @method \Aws\Result rejectInvitation(array $args = []) |
| 51 | * @method \GuzzleHttp\Promise\Promise rejectInvitationAsync(array $args = []) |
| 52 | * @method \Aws\Result startInvestigation(array $args = []) |
| 53 | * @method \GuzzleHttp\Promise\Promise startInvestigationAsync(array $args = []) |
| 54 | * @method \Aws\Result startMonitoringMember(array $args = []) |
| 55 | * @method \GuzzleHttp\Promise\Promise startMonitoringMemberAsync(array $args = []) |
| 56 | * @method \Aws\Result tagResource(array $args = []) |
| 57 | * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) |
| 58 | * @method \Aws\Result untagResource(array $args = []) |
| 59 | * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) |
| 60 | * @method \Aws\Result updateDatasourcePackages(array $args = []) |
| 61 | * @method \GuzzleHttp\Promise\Promise updateDatasourcePackagesAsync(array $args = []) |
| 62 | * @method \Aws\Result updateInvestigationState(array $args = []) |
| 63 | * @method \GuzzleHttp\Promise\Promise updateInvestigationStateAsync(array $args = []) |
| 64 | * @method \Aws\Result updateOrganizationConfiguration(array $args = []) |
| 65 | * @method \GuzzleHttp\Promise\Promise updateOrganizationConfigurationAsync(array $args = []) |
| 66 | */ |
| 67 | class DetectiveClient extends AwsClient {} |
| 68 |