spaces.php

This commit is contained in:
Devang Srivastava 2017-12-07 21:23:18 +05:30
commit eefa32741e
845 changed files with 50409 additions and 0 deletions

View file

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

View file

@ -0,0 +1,31 @@
<?php
namespace Aws\MediaPackage;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS Elemental MediaPackage** service.
* @method \Aws\Result createChannel(array $args = [])
* @method \GuzzleHttp\Promise\Promise createChannelAsync(array $args = [])
* @method \Aws\Result createOriginEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise createOriginEndpointAsync(array $args = [])
* @method \Aws\Result deleteChannel(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteChannelAsync(array $args = [])
* @method \Aws\Result deleteOriginEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteOriginEndpointAsync(array $args = [])
* @method \Aws\Result describeChannel(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeChannelAsync(array $args = [])
* @method \Aws\Result describeOriginEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeOriginEndpointAsync(array $args = [])
* @method \Aws\Result listChannels(array $args = [])
* @method \GuzzleHttp\Promise\Promise listChannelsAsync(array $args = [])
* @method \Aws\Result listOriginEndpoints(array $args = [])
* @method \GuzzleHttp\Promise\Promise listOriginEndpointsAsync(array $args = [])
* @method \Aws\Result rotateChannelCredentials(array $args = [])
* @method \GuzzleHttp\Promise\Promise rotateChannelCredentialsAsync(array $args = [])
* @method \Aws\Result updateChannel(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateChannelAsync(array $args = [])
* @method \Aws\Result updateOriginEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateOriginEndpointAsync(array $args = [])
*/
class MediaPackageClient extends AwsClient {}