summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ServiceDiscovery
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
committerAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
commit0c8af4992cb0f7589dcafaad65ada12753c64594 (patch)
tree18e83d068c3e7dd2499331de977782b382279396 /vendor/aws/aws-sdk-php/src/ServiceDiscovery
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ServiceDiscovery')
-rw-r--r--vendor/aws/aws-sdk-php/src/ServiceDiscovery/Exception/ServiceDiscoveryException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/ServiceDiscovery/ServiceDiscoveryClient.php61
2 files changed, 70 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ServiceDiscovery/Exception/ServiceDiscoveryException.php b/vendor/aws/aws-sdk-php/src/ServiceDiscovery/Exception/ServiceDiscoveryException.php
new file mode 100644
index 0000000..9d20155
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ServiceDiscovery/Exception/ServiceDiscoveryException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\ServiceDiscovery\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Route 53 Auto Naming** service.
+ */
+class ServiceDiscoveryException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/ServiceDiscovery/ServiceDiscoveryClient.php b/vendor/aws/aws-sdk-php/src/ServiceDiscovery/ServiceDiscoveryClient.php
new file mode 100644
index 0000000..0d3d01b
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ServiceDiscovery/ServiceDiscoveryClient.php
@@ -0,0 +1,61 @@
+<?php
+namespace Aws\ServiceDiscovery;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Route 53 Auto Naming** service.
+ * @method \Aws\Result createHttpNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createHttpNamespaceAsync(array $args = [])
+ * @method \Aws\Result createPrivateDnsNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createPrivateDnsNamespaceAsync(array $args = [])
+ * @method \Aws\Result createPublicDnsNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createPublicDnsNamespaceAsync(array $args = [])
+ * @method \Aws\Result createService(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createServiceAsync(array $args = [])
+ * @method \Aws\Result deleteNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteNamespaceAsync(array $args = [])
+ * @method \Aws\Result deleteService(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteServiceAsync(array $args = [])
+ * @method \Aws\Result deregisterInstance(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deregisterInstanceAsync(array $args = [])
+ * @method \Aws\Result discoverInstances(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise discoverInstancesAsync(array $args = [])
+ * @method \Aws\Result getInstance(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getInstanceAsync(array $args = [])
+ * @method \Aws\Result getInstancesHealthStatus(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getInstancesHealthStatusAsync(array $args = [])
+ * @method \Aws\Result getNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getNamespaceAsync(array $args = [])
+ * @method \Aws\Result getOperation(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getOperationAsync(array $args = [])
+ * @method \Aws\Result getService(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getServiceAsync(array $args = [])
+ * @method \Aws\Result listInstances(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listInstancesAsync(array $args = [])
+ * @method \Aws\Result listNamespaces(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listNamespacesAsync(array $args = [])
+ * @method \Aws\Result listOperations(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listOperationsAsync(array $args = [])
+ * @method \Aws\Result listServices(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listServicesAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result registerInstance(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise registerInstanceAsync(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 updateHttpNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateHttpNamespaceAsync(array $args = [])
+ * @method \Aws\Result updateInstanceCustomHealthStatus(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateInstanceCustomHealthStatusAsync(array $args = [])
+ * @method \Aws\Result updatePrivateDnsNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updatePrivateDnsNamespaceAsync(array $args = [])
+ * @method \Aws\Result updatePublicDnsNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updatePublicDnsNamespaceAsync(array $args = [])
+ * @method \Aws\Result updateService(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateServiceAsync(array $args = [])
+ */
+class ServiceDiscoveryClient extends AwsClient {}