runff 1.0 commit

This commit is contained in:
rock64
2019-04-29 16:09:00 +02:00
commit f1567f989b
1268 changed files with 98652 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace Aws\WorkSpaces\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error while interacting with Amazon WorkSpaces.
*/
class WorkSpacesException extends AwsException {}

View File

@@ -0,0 +1,74 @@
<?php
namespace Aws\WorkSpaces;
use Aws\AwsClient;
/**
* Amazon WorkSpaces client.
*
* @method \Aws\Result associateIpGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise associateIpGroupsAsync(array $args = [])
* @method \Aws\Result authorizeIpRules(array $args = [])
* @method \GuzzleHttp\Promise\Promise authorizeIpRulesAsync(array $args = [])
* @method \Aws\Result createIpGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise createIpGroupAsync(array $args = [])
* @method \Aws\Result createTags(array $args = [])
* @method \GuzzleHttp\Promise\Promise createTagsAsync(array $args = [])
* @method \Aws\Result createWorkspaces(array $args = [])
* @method \GuzzleHttp\Promise\Promise createWorkspacesAsync(array $args = [])
* @method \Aws\Result deleteIpGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteIpGroupAsync(array $args = [])
* @method \Aws\Result deleteTags(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteTagsAsync(array $args = [])
* @method \Aws\Result deleteWorkspaceImage(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteWorkspaceImageAsync(array $args = [])
* @method \Aws\Result describeAccount(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeAccountAsync(array $args = [])
* @method \Aws\Result describeAccountModifications(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeAccountModificationsAsync(array $args = [])
* @method \Aws\Result describeClientProperties(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeClientPropertiesAsync(array $args = [])
* @method \Aws\Result describeIpGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeIpGroupsAsync(array $args = [])
* @method \Aws\Result describeTags(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeTagsAsync(array $args = [])
* @method \Aws\Result describeWorkspaceBundles(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeWorkspaceBundlesAsync(array $args = [])
* @method \Aws\Result describeWorkspaceDirectories(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeWorkspaceDirectoriesAsync(array $args = [])
* @method \Aws\Result describeWorkspaceImages(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeWorkspaceImagesAsync(array $args = [])
* @method \Aws\Result describeWorkspaces(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeWorkspacesAsync(array $args = [])
* @method \Aws\Result describeWorkspacesConnectionStatus(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeWorkspacesConnectionStatusAsync(array $args = [])
* @method \Aws\Result disassociateIpGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise disassociateIpGroupsAsync(array $args = [])
* @method \Aws\Result importWorkspaceImage(array $args = [])
* @method \GuzzleHttp\Promise\Promise importWorkspaceImageAsync(array $args = [])
* @method \Aws\Result listAvailableManagementCidrRanges(array $args = [])
* @method \GuzzleHttp\Promise\Promise listAvailableManagementCidrRangesAsync(array $args = [])
* @method \Aws\Result modifyAccount(array $args = [])
* @method \GuzzleHttp\Promise\Promise modifyAccountAsync(array $args = [])
* @method \Aws\Result modifyClientProperties(array $args = [])
* @method \GuzzleHttp\Promise\Promise modifyClientPropertiesAsync(array $args = [])
* @method \Aws\Result modifyWorkspaceProperties(array $args = [])
* @method \GuzzleHttp\Promise\Promise modifyWorkspacePropertiesAsync(array $args = [])
* @method \Aws\Result modifyWorkspaceState(array $args = [])
* @method \GuzzleHttp\Promise\Promise modifyWorkspaceStateAsync(array $args = [])
* @method \Aws\Result rebootWorkspaces(array $args = [])
* @method \GuzzleHttp\Promise\Promise rebootWorkspacesAsync(array $args = [])
* @method \Aws\Result rebuildWorkspaces(array $args = [])
* @method \GuzzleHttp\Promise\Promise rebuildWorkspacesAsync(array $args = [])
* @method \Aws\Result revokeIpRules(array $args = [])
* @method \GuzzleHttp\Promise\Promise revokeIpRulesAsync(array $args = [])
* @method \Aws\Result startWorkspaces(array $args = [])
* @method \GuzzleHttp\Promise\Promise startWorkspacesAsync(array $args = [])
* @method \Aws\Result stopWorkspaces(array $args = [])
* @method \GuzzleHttp\Promise\Promise stopWorkspacesAsync(array $args = [])
* @method \Aws\Result terminateWorkspaces(array $args = [])
* @method \GuzzleHttp\Promise\Promise terminateWorkspacesAsync(array $args = [])
* @method \Aws\Result updateRulesOfIpGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateRulesOfIpGroupAsync(array $args = [])
*/
class WorkSpacesClient extends AwsClient {}