Route53ResolverClient.php 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace Aws\Route53Resolver;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Amazon Route 53 Resolver** service.
  6. * @method \Aws\Result associateResolverEndpointIpAddress(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise associateResolverEndpointIpAddressAsync(array $args = [])
  8. * @method \Aws\Result associateResolverQueryLogConfig(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise associateResolverQueryLogConfigAsync(array $args = [])
  10. * @method \Aws\Result associateResolverRule(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise associateResolverRuleAsync(array $args = [])
  12. * @method \Aws\Result createResolverEndpoint(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise createResolverEndpointAsync(array $args = [])
  14. * @method \Aws\Result createResolverQueryLogConfig(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise createResolverQueryLogConfigAsync(array $args = [])
  16. * @method \Aws\Result createResolverRule(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise createResolverRuleAsync(array $args = [])
  18. * @method \Aws\Result deleteResolverEndpoint(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise deleteResolverEndpointAsync(array $args = [])
  20. * @method \Aws\Result deleteResolverQueryLogConfig(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise deleteResolverQueryLogConfigAsync(array $args = [])
  22. * @method \Aws\Result deleteResolverRule(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise deleteResolverRuleAsync(array $args = [])
  24. * @method \Aws\Result disassociateResolverEndpointIpAddress(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise disassociateResolverEndpointIpAddressAsync(array $args = [])
  26. * @method \Aws\Result disassociateResolverQueryLogConfig(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise disassociateResolverQueryLogConfigAsync(array $args = [])
  28. * @method \Aws\Result disassociateResolverRule(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise disassociateResolverRuleAsync(array $args = [])
  30. * @method \Aws\Result getResolverEndpoint(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise getResolverEndpointAsync(array $args = [])
  32. * @method \Aws\Result getResolverQueryLogConfig(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise getResolverQueryLogConfigAsync(array $args = [])
  34. * @method \Aws\Result getResolverQueryLogConfigAssociation(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise getResolverQueryLogConfigAssociationAsync(array $args = [])
  36. * @method \Aws\Result getResolverQueryLogConfigPolicy(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise getResolverQueryLogConfigPolicyAsync(array $args = [])
  38. * @method \Aws\Result getResolverRule(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise getResolverRuleAsync(array $args = [])
  40. * @method \Aws\Result getResolverRuleAssociation(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise getResolverRuleAssociationAsync(array $args = [])
  42. * @method \Aws\Result getResolverRulePolicy(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise getResolverRulePolicyAsync(array $args = [])
  44. * @method \Aws\Result listResolverEndpointIpAddresses(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise listResolverEndpointIpAddressesAsync(array $args = [])
  46. * @method \Aws\Result listResolverEndpoints(array $args = [])
  47. * @method \GuzzleHttp\Promise\Promise listResolverEndpointsAsync(array $args = [])
  48. * @method \Aws\Result listResolverQueryLogConfigAssociations(array $args = [])
  49. * @method \GuzzleHttp\Promise\Promise listResolverQueryLogConfigAssociationsAsync(array $args = [])
  50. * @method \Aws\Result listResolverQueryLogConfigs(array $args = [])
  51. * @method \GuzzleHttp\Promise\Promise listResolverQueryLogConfigsAsync(array $args = [])
  52. * @method \Aws\Result listResolverRuleAssociations(array $args = [])
  53. * @method \GuzzleHttp\Promise\Promise listResolverRuleAssociationsAsync(array $args = [])
  54. * @method \Aws\Result listResolverRules(array $args = [])
  55. * @method \GuzzleHttp\Promise\Promise listResolverRulesAsync(array $args = [])
  56. * @method \Aws\Result listTagsForResource(array $args = [])
  57. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  58. * @method \Aws\Result putResolverQueryLogConfigPolicy(array $args = [])
  59. * @method \GuzzleHttp\Promise\Promise putResolverQueryLogConfigPolicyAsync(array $args = [])
  60. * @method \Aws\Result putResolverRulePolicy(array $args = [])
  61. * @method \GuzzleHttp\Promise\Promise putResolverRulePolicyAsync(array $args = [])
  62. * @method \Aws\Result tagResource(array $args = [])
  63. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  64. * @method \Aws\Result untagResource(array $args = [])
  65. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  66. * @method \Aws\Result updateResolverEndpoint(array $args = [])
  67. * @method \GuzzleHttp\Promise\Promise updateResolverEndpointAsync(array $args = [])
  68. * @method \Aws\Result updateResolverRule(array $args = [])
  69. * @method \GuzzleHttp\Promise\Promise updateResolverRuleAsync(array $args = [])
  70. */
  71. class Route53ResolverClient extends AwsClient {}