allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s

This commit is contained in:
2026-03-30 14:54:57 +07:00
parent 66aed7c4e8
commit b5e3a778ce
21316 changed files with 2777892 additions and 13 deletions

View File

@@ -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 {}

View File

@@ -0,0 +1,69 @@
<?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 deleteServiceAttributes(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteServiceAttributesAsync(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 discoverInstancesRevision(array $args = [])
* @method \GuzzleHttp\Promise\Promise discoverInstancesRevisionAsync(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 getServiceAttributes(array $args = [])
* @method \GuzzleHttp\Promise\Promise getServiceAttributesAsync(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 = [])
* @method \Aws\Result updateServiceAttributes(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateServiceAttributesAsync(array $args = [])
*/
class ServiceDiscoveryClient extends AwsClient {}