update 1.0.8.0

Commits for version update
This commit is contained in:
Manish Verma
2016-10-17 12:02:27 +05:30
parent dec927987b
commit 76e85db070
9674 changed files with 495757 additions and 58922 deletions

View File

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

View File

@@ -0,0 +1,44 @@
<?php
namespace Aws\Kinesis;
use Aws\AwsClient;
/**
* This client is used to interact with the **Amazon Kinesis** service.
*
* @method \Aws\Result addTagsToStream(array $args = [])
* @method \GuzzleHttp\Promise\Promise addTagsToStreamAsync(array $args = [])
* @method \Aws\Result createStream(array $args = [])
* @method \GuzzleHttp\Promise\Promise createStreamAsync(array $args = [])
* @method \Aws\Result decreaseStreamRetentionPeriod(array $args = [])
* @method \GuzzleHttp\Promise\Promise decreaseStreamRetentionPeriodAsync(array $args = [])
* @method \Aws\Result deleteStream(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteStreamAsync(array $args = [])
* @method \Aws\Result describeStream(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeStreamAsync(array $args = [])
* @method \Aws\Result disableEnhancedMonitoring(array $args = [])
* @method \GuzzleHttp\Promise\Promise disableEnhancedMonitoringAsync(array $args = [])
* @method \Aws\Result enableEnhancedMonitoring(array $args = [])
* @method \GuzzleHttp\Promise\Promise enableEnhancedMonitoringAsync(array $args = [])
* @method \Aws\Result getRecords(array $args = [])
* @method \GuzzleHttp\Promise\Promise getRecordsAsync(array $args = [])
* @method \Aws\Result getShardIterator(array $args = [])
* @method \GuzzleHttp\Promise\Promise getShardIteratorAsync(array $args = [])
* @method \Aws\Result increaseStreamRetentionPeriod(array $args = [])
* @method \GuzzleHttp\Promise\Promise increaseStreamRetentionPeriodAsync(array $args = [])
* @method \Aws\Result listStreams(array $args = [])
* @method \GuzzleHttp\Promise\Promise listStreamsAsync(array $args = [])
* @method \Aws\Result listTagsForStream(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTagsForStreamAsync(array $args = [])
* @method \Aws\Result mergeShards(array $args = [])
* @method \GuzzleHttp\Promise\Promise mergeShardsAsync(array $args = [])
* @method \Aws\Result putRecord(array $args = [])
* @method \GuzzleHttp\Promise\Promise putRecordAsync(array $args = [])
* @method \Aws\Result putRecords(array $args = [])
* @method \GuzzleHttp\Promise\Promise putRecordsAsync(array $args = [])
* @method \Aws\Result removeTagsFromStream(array $args = [])
* @method \GuzzleHttp\Promise\Promise removeTagsFromStreamAsync(array $args = [])
* @method \Aws\Result splitShard(array $args = [])
* @method \GuzzleHttp\Promise\Promise splitShardAsync(array $args = [])
*/
class KinesisClient extends AwsClient {}