Subiendo proyecto completo sin restricciones de git ignore

This commit is contained in:
Jose Sanchez
2023-08-17 11:44:02 -04:00
parent a0d4f5ba3b
commit 20f1c60600
19921 changed files with 2509159 additions and 45 deletions

View File

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

View File

@@ -0,0 +1,43 @@
<?php
namespace Aws\MediaPackageVod;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS Elemental MediaPackage VOD** service.
* @method \Aws\Result configureLogs(array $args = [])
* @method \GuzzleHttp\Promise\Promise configureLogsAsync(array $args = [])
* @method \Aws\Result createAsset(array $args = [])
* @method \GuzzleHttp\Promise\Promise createAssetAsync(array $args = [])
* @method \Aws\Result createPackagingConfiguration(array $args = [])
* @method \GuzzleHttp\Promise\Promise createPackagingConfigurationAsync(array $args = [])
* @method \Aws\Result createPackagingGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise createPackagingGroupAsync(array $args = [])
* @method \Aws\Result deleteAsset(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteAssetAsync(array $args = [])
* @method \Aws\Result deletePackagingConfiguration(array $args = [])
* @method \GuzzleHttp\Promise\Promise deletePackagingConfigurationAsync(array $args = [])
* @method \Aws\Result deletePackagingGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise deletePackagingGroupAsync(array $args = [])
* @method \Aws\Result describeAsset(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeAssetAsync(array $args = [])
* @method \Aws\Result describePackagingConfiguration(array $args = [])
* @method \GuzzleHttp\Promise\Promise describePackagingConfigurationAsync(array $args = [])
* @method \Aws\Result describePackagingGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise describePackagingGroupAsync(array $args = [])
* @method \Aws\Result listAssets(array $args = [])
* @method \GuzzleHttp\Promise\Promise listAssetsAsync(array $args = [])
* @method \Aws\Result listPackagingConfigurations(array $args = [])
* @method \GuzzleHttp\Promise\Promise listPackagingConfigurationsAsync(array $args = [])
* @method \Aws\Result listPackagingGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise listPackagingGroupsAsync(array $args = [])
* @method \Aws\Result listTagsForResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
* @method \Aws\Result tagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
* @method \Aws\Result untagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
* @method \Aws\Result updatePackagingGroup(array $args = [])
* @method \GuzzleHttp\Promise\Promise updatePackagingGroupAsync(array $args = [])
*/
class MediaPackageVodClient extends AwsClient {}