update 1.0.8.0
Commits for version update
This commit is contained in:
9
vendor/aws/aws-sdk-php/src/Ssm/Exception/SsmException.php
vendored
Normal file
9
vendor/aws/aws-sdk-php/src/Ssm/Exception/SsmException.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace Aws\Ssm\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Amazon EC2 Simple Systems Manager exception.
|
||||
*/
|
||||
class SsmException extends AwsException {}
|
||||
62
vendor/aws/aws-sdk-php/src/Ssm/SsmClient.php
vendored
Normal file
62
vendor/aws/aws-sdk-php/src/Ssm/SsmClient.php
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
namespace Aws\Ssm;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* Amazon EC2 Simple Systems Manager client.
|
||||
*
|
||||
* @method \Aws\Result addTagsToResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise addTagsToResourceAsync(array $args = [])
|
||||
* @method \Aws\Result cancelCommand(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelCommandAsync(array $args = [])
|
||||
* @method \Aws\Result createActivation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createActivationAsync(array $args = [])
|
||||
* @method \Aws\Result createAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result createAssociationBatch(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAssociationBatchAsync(array $args = [])
|
||||
* @method \Aws\Result createDocument(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDocumentAsync(array $args = [])
|
||||
* @method \Aws\Result deleteActivation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteActivationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDocument(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDocumentAsync(array $args = [])
|
||||
* @method \Aws\Result deregisterManagedInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deregisterManagedInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result describeActivations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeActivationsAsync(array $args = [])
|
||||
* @method \Aws\Result describeAssociation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeAssociationAsync(array $args = [])
|
||||
* @method \Aws\Result describeDocument(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDocumentAsync(array $args = [])
|
||||
* @method \Aws\Result describeDocumentPermission(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeDocumentPermissionAsync(array $args = [])
|
||||
* @method \Aws\Result describeInstanceInformation(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeInstanceInformationAsync(array $args = [])
|
||||
* @method \Aws\Result getDocument(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getDocumentAsync(array $args = [])
|
||||
* @method \Aws\Result listAssociations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAssociationsAsync(array $args = [])
|
||||
* @method \Aws\Result listCommandInvocations(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listCommandInvocationsAsync(array $args = [])
|
||||
* @method \Aws\Result listCommands(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listCommandsAsync(array $args = [])
|
||||
* @method \Aws\Result listDocuments(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDocumentsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result modifyDocumentPermission(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise modifyDocumentPermissionAsync(array $args = [])
|
||||
* @method \Aws\Result removeTagsFromResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise removeTagsFromResourceAsync(array $args = [])
|
||||
* @method \Aws\Result sendCommand(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise sendCommandAsync(array $args = [])
|
||||
* @method \Aws\Result updateAssociationStatus(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateAssociationStatusAsync(array $args = [])
|
||||
* @method \Aws\Result updateManagedInstanceRole(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateManagedInstanceRoleAsync(array $args = [])
|
||||
*/
|
||||
class SsmClient extends AwsClient {}
|
||||
Reference in New Issue
Block a user