NetworkManagerClient.php 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. namespace Aws\NetworkManager;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS Network Manager** service.
  6. * @method \Aws\Result associateCustomerGateway(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise associateCustomerGatewayAsync(array $args = [])
  8. * @method \Aws\Result associateLink(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise associateLinkAsync(array $args = [])
  10. * @method \Aws\Result associateTransitGatewayConnectPeer(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise associateTransitGatewayConnectPeerAsync(array $args = [])
  12. * @method \Aws\Result createConnection(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise createConnectionAsync(array $args = [])
  14. * @method \Aws\Result createDevice(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise createDeviceAsync(array $args = [])
  16. * @method \Aws\Result createGlobalNetwork(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise createGlobalNetworkAsync(array $args = [])
  18. * @method \Aws\Result createLink(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise createLinkAsync(array $args = [])
  20. * @method \Aws\Result createSite(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise createSiteAsync(array $args = [])
  22. * @method \Aws\Result deleteConnection(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise deleteConnectionAsync(array $args = [])
  24. * @method \Aws\Result deleteDevice(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise deleteDeviceAsync(array $args = [])
  26. * @method \Aws\Result deleteGlobalNetwork(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise deleteGlobalNetworkAsync(array $args = [])
  28. * @method \Aws\Result deleteLink(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise deleteLinkAsync(array $args = [])
  30. * @method \Aws\Result deleteSite(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise deleteSiteAsync(array $args = [])
  32. * @method \Aws\Result deregisterTransitGateway(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise deregisterTransitGatewayAsync(array $args = [])
  34. * @method \Aws\Result describeGlobalNetworks(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise describeGlobalNetworksAsync(array $args = [])
  36. * @method \Aws\Result disassociateCustomerGateway(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise disassociateCustomerGatewayAsync(array $args = [])
  38. * @method \Aws\Result disassociateLink(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise disassociateLinkAsync(array $args = [])
  40. * @method \Aws\Result disassociateTransitGatewayConnectPeer(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise disassociateTransitGatewayConnectPeerAsync(array $args = [])
  42. * @method \Aws\Result getConnections(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise getConnectionsAsync(array $args = [])
  44. * @method \Aws\Result getCustomerGatewayAssociations(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise getCustomerGatewayAssociationsAsync(array $args = [])
  46. * @method \Aws\Result getDevices(array $args = [])
  47. * @method \GuzzleHttp\Promise\Promise getDevicesAsync(array $args = [])
  48. * @method \Aws\Result getLinkAssociations(array $args = [])
  49. * @method \GuzzleHttp\Promise\Promise getLinkAssociationsAsync(array $args = [])
  50. * @method \Aws\Result getLinks(array $args = [])
  51. * @method \GuzzleHttp\Promise\Promise getLinksAsync(array $args = [])
  52. * @method \Aws\Result getSites(array $args = [])
  53. * @method \GuzzleHttp\Promise\Promise getSitesAsync(array $args = [])
  54. * @method \Aws\Result getTransitGatewayConnectPeerAssociations(array $args = [])
  55. * @method \GuzzleHttp\Promise\Promise getTransitGatewayConnectPeerAssociationsAsync(array $args = [])
  56. * @method \Aws\Result getTransitGatewayRegistrations(array $args = [])
  57. * @method \GuzzleHttp\Promise\Promise getTransitGatewayRegistrationsAsync(array $args = [])
  58. * @method \Aws\Result listTagsForResource(array $args = [])
  59. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  60. * @method \Aws\Result registerTransitGateway(array $args = [])
  61. * @method \GuzzleHttp\Promise\Promise registerTransitGatewayAsync(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 updateConnection(array $args = [])
  67. * @method \GuzzleHttp\Promise\Promise updateConnectionAsync(array $args = [])
  68. * @method \Aws\Result updateDevice(array $args = [])
  69. * @method \GuzzleHttp\Promise\Promise updateDeviceAsync(array $args = [])
  70. * @method \Aws\Result updateGlobalNetwork(array $args = [])
  71. * @method \GuzzleHttp\Promise\Promise updateGlobalNetworkAsync(array $args = [])
  72. * @method \Aws\Result updateLink(array $args = [])
  73. * @method \GuzzleHttp\Promise\Promise updateLinkAsync(array $args = [])
  74. * @method \Aws\Result updateSite(array $args = [])
  75. * @method \GuzzleHttp\Promise\Promise updateSiteAsync(array $args = [])
  76. */
  77. class NetworkManagerClient extends AwsClient {}