composer update

This commit is contained in:
Manish Verma
2018-12-05 10:50:52 +05:30
parent 9eabcacfa7
commit 4addd1e9c6
3328 changed files with 156676 additions and 138988 deletions

View File

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

View File

@@ -0,0 +1,53 @@
<?php
namespace Aws\Route53Resolver;
use Aws\AwsClient;
/**
* This client is used to interact with the **Amazon Route 53 Resolver** service.
* @method \Aws\Result associateResolverEndpointIpAddress(array $args = [])
* @method \GuzzleHttp\Promise\Promise associateResolverEndpointIpAddressAsync(array $args = [])
* @method \Aws\Result associateResolverRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise associateResolverRuleAsync(array $args = [])
* @method \Aws\Result createResolverEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise createResolverEndpointAsync(array $args = [])
* @method \Aws\Result createResolverRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise createResolverRuleAsync(array $args = [])
* @method \Aws\Result deleteResolverEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteResolverEndpointAsync(array $args = [])
* @method \Aws\Result deleteResolverRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteResolverRuleAsync(array $args = [])
* @method \Aws\Result disassociateResolverEndpointIpAddress(array $args = [])
* @method \GuzzleHttp\Promise\Promise disassociateResolverEndpointIpAddressAsync(array $args = [])
* @method \Aws\Result disassociateResolverRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise disassociateResolverRuleAsync(array $args = [])
* @method \Aws\Result getResolverEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise getResolverEndpointAsync(array $args = [])
* @method \Aws\Result getResolverRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise getResolverRuleAsync(array $args = [])
* @method \Aws\Result getResolverRuleAssociation(array $args = [])
* @method \GuzzleHttp\Promise\Promise getResolverRuleAssociationAsync(array $args = [])
* @method \Aws\Result getResolverRulePolicy(array $args = [])
* @method \GuzzleHttp\Promise\Promise getResolverRulePolicyAsync(array $args = [])
* @method \Aws\Result listResolverEndpointIpAddresses(array $args = [])
* @method \GuzzleHttp\Promise\Promise listResolverEndpointIpAddressesAsync(array $args = [])
* @method \Aws\Result listResolverEndpoints(array $args = [])
* @method \GuzzleHttp\Promise\Promise listResolverEndpointsAsync(array $args = [])
* @method \Aws\Result listResolverRuleAssociations(array $args = [])
* @method \GuzzleHttp\Promise\Promise listResolverRuleAssociationsAsync(array $args = [])
* @method \Aws\Result listResolverRules(array $args = [])
* @method \GuzzleHttp\Promise\Promise listResolverRulesAsync(array $args = [])
* @method \Aws\Result listTagsForResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
* @method \Aws\Result putResolverRulePolicy(array $args = [])
* @method \GuzzleHttp\Promise\Promise putResolverRulePolicyAsync(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 updateResolverEndpoint(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateResolverEndpointAsync(array $args = [])
* @method \Aws\Result updateResolverRule(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateResolverRuleAsync(array $args = [])
*/
class Route53ResolverClient extends AwsClient {}