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\MarketplaceMetering\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error interacting with the **AWSMarketplace Metering** service.
*/
class MarketplaceMeteringException extends AwsException {}

View File

@@ -0,0 +1,17 @@
<?php
namespace Aws\MarketplaceMetering;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWSMarketplace Metering** service.
* @method \Aws\Result batchMeterUsage(array $args = [])
* @method \GuzzleHttp\Promise\Promise batchMeterUsageAsync(array $args = [])
* @method \Aws\Result meterUsage(array $args = [])
* @method \GuzzleHttp\Promise\Promise meterUsageAsync(array $args = [])
* @method \Aws\Result registerUsage(array $args = [])
* @method \GuzzleHttp\Promise\Promise registerUsageAsync(array $args = [])
* @method \Aws\Result resolveCustomer(array $args = [])
* @method \GuzzleHttp\Promise\Promise resolveCustomerAsync(array $args = [])
*/
class MarketplaceMeteringClient extends AwsClient {}