@aws-sdk/client-servicediscovery 3.190.0 → 3.191.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +6 -5
- package/dist-cjs/ServiceDiscoveryClient.js +11 -8
- package/dist-cjs/commands/CreateHttpNamespaceCommand.js +10 -0
- package/dist-cjs/commands/CreatePrivateDnsNamespaceCommand.js +10 -0
- package/dist-cjs/commands/CreatePublicDnsNamespaceCommand.js +10 -0
- package/dist-cjs/commands/CreateServiceCommand.js +10 -0
- package/dist-cjs/commands/DeleteNamespaceCommand.js +10 -0
- package/dist-cjs/commands/DeleteServiceCommand.js +10 -0
- package/dist-cjs/commands/DeregisterInstanceCommand.js +10 -0
- package/dist-cjs/commands/DiscoverInstancesCommand.js +10 -0
- package/dist-cjs/commands/GetInstanceCommand.js +10 -0
- package/dist-cjs/commands/GetInstancesHealthStatusCommand.js +10 -0
- package/dist-cjs/commands/GetNamespaceCommand.js +10 -0
- package/dist-cjs/commands/GetOperationCommand.js +10 -0
- package/dist-cjs/commands/GetServiceCommand.js +10 -0
- package/dist-cjs/commands/ListInstancesCommand.js +10 -0
- package/dist-cjs/commands/ListNamespacesCommand.js +10 -0
- package/dist-cjs/commands/ListOperationsCommand.js +10 -0
- package/dist-cjs/commands/ListServicesCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/RegisterInstanceCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateHttpNamespaceCommand.js +10 -0
- package/dist-cjs/commands/UpdateInstanceCustomHealthStatusCommand.js +10 -0
- package/dist-cjs/commands/UpdatePrivateDnsNamespaceCommand.js +10 -0
- package/dist-cjs/commands/UpdatePublicDnsNamespaceCommand.js +10 -0
- package/dist-cjs/commands/UpdateServiceCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +356 -0
- package/dist-cjs/models/models_0.js +3 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/ServiceDiscoveryClient.js +12 -9
- package/dist-es/commands/CreateHttpNamespaceCommand.js +10 -0
- package/dist-es/commands/CreatePrivateDnsNamespaceCommand.js +10 -0
- package/dist-es/commands/CreatePublicDnsNamespaceCommand.js +10 -0
- package/dist-es/commands/CreateServiceCommand.js +10 -0
- package/dist-es/commands/DeleteNamespaceCommand.js +10 -0
- package/dist-es/commands/DeleteServiceCommand.js +10 -0
- package/dist-es/commands/DeregisterInstanceCommand.js +10 -0
- package/dist-es/commands/DiscoverInstancesCommand.js +10 -0
- package/dist-es/commands/GetInstanceCommand.js +10 -0
- package/dist-es/commands/GetInstancesHealthStatusCommand.js +10 -0
- package/dist-es/commands/GetNamespaceCommand.js +10 -0
- package/dist-es/commands/GetOperationCommand.js +10 -0
- package/dist-es/commands/GetServiceCommand.js +10 -0
- package/dist-es/commands/ListInstancesCommand.js +10 -0
- package/dist-es/commands/ListNamespacesCommand.js +10 -0
- package/dist-es/commands/ListOperationsCommand.js +10 -0
- package/dist-es/commands/ListServicesCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/RegisterInstanceCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateHttpNamespaceCommand.js +10 -0
- package/dist-es/commands/UpdateInstanceCustomHealthStatusCommand.js +10 -0
- package/dist-es/commands/UpdatePrivateDnsNamespaceCommand.js +10 -0
- package/dist-es/commands/UpdatePublicDnsNamespaceCommand.js +10 -0
- package/dist-es/commands/UpdateServiceCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +353 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/ServiceDiscovery.d.ts +90 -71
- package/dist-types/ServiceDiscoveryClient.d.ts +12 -14
- package/dist-types/commands/CreateHttpNamespaceCommand.d.ts +6 -4
- package/dist-types/commands/CreatePrivateDnsNamespaceCommand.d.ts +9 -6
- package/dist-types/commands/CreatePublicDnsNamespaceCommand.d.ts +13 -6
- package/dist-types/commands/CreateServiceCommand.d.ts +9 -6
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +4 -2
- package/dist-types/commands/DeleteServiceCommand.d.ts +4 -2
- package/dist-types/commands/DeregisterInstanceCommand.d.ts +4 -2
- package/dist-types/commands/DiscoverInstancesCommand.d.ts +5 -3
- package/dist-types/commands/GetInstanceCommand.d.ts +2 -0
- package/dist-types/commands/GetInstancesHealthStatusCommand.d.ts +7 -4
- package/dist-types/commands/GetNamespaceCommand.d.ts +2 -0
- package/dist-types/commands/GetOperationCommand.d.ts +2 -0
- package/dist-types/commands/GetServiceCommand.d.ts +2 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +4 -1
- package/dist-types/commands/ListNamespacesCommand.d.ts +3 -1
- package/dist-types/commands/ListOperationsCommand.d.ts +2 -0
- package/dist-types/commands/ListServicesCommand.d.ts +4 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/RegisterInstanceCommand.d.ts +23 -17
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateHttpNamespaceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +8 -4
- package/dist-types/commands/UpdatePrivateDnsNamespaceCommand.d.ts +2 -0
- package/dist-types/commands/UpdatePublicDnsNamespaceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +11 -7
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +811 -651
- package/dist-types/runtimeConfig.browser.d.ts +5 -2
- package/dist-types/runtimeConfig.d.ts +5 -2
- package/dist-types/runtimeConfig.native.d.ts +5 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/ServiceDiscoveryClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/CreateHttpNamespaceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreatePrivateDnsNamespaceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreatePublicDnsNamespaceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeregisterInstanceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DiscoverInstancesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetInstancesHealthStatusCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/RegisterInstanceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateHttpNamespaceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdatePrivateDnsNamespaceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdatePublicDnsNamespaceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +2 -1
- package/dist-cjs/endpoints.js +0 -203
- package/dist-es/endpoints.js +0 -199
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -37,4 +39,5 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
|
|
|
37
39
|
signingRegion?: string | undefined;
|
|
38
40
|
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
39
41
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
Endpoint?: string | import("@aws-sdk/types").Provider<string> | undefined;
|
|
40
43
|
};
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -37,4 +39,5 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
|
|
|
37
39
|
signingRegion?: string | undefined;
|
|
38
40
|
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
39
41
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
Endpoint?: string | import("@aws-sdk/types").Provider<string> | undefined;
|
|
40
43
|
};
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -36,4 +38,5 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
|
|
|
36
38
|
signingRegion?: string | undefined;
|
|
37
39
|
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
38
40
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
41
|
+
Endpoint?: string | import("@aws-sdk/types").Provider<string> | undefined;
|
|
39
42
|
};
|
|
@@ -6,8 +6,10 @@ import { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -146,6 +147,11 @@ import {
|
|
|
146
147
|
UpdateServiceCommandInput,
|
|
147
148
|
UpdateServiceCommandOutput,
|
|
148
149
|
} from "./commands/UpdateServiceCommand";
|
|
150
|
+
import {
|
|
151
|
+
ClientInputEndpointParameters,
|
|
152
|
+
ClientResolvedEndpointParameters,
|
|
153
|
+
EndpointParameters,
|
|
154
|
+
} from "./endpoint/EndpointParameters";
|
|
149
155
|
export declare type ServiceInputTypes =
|
|
150
156
|
| CreateHttpNamespaceCommandInput
|
|
151
157
|
| CreatePrivateDnsNamespaceCommandInput
|
|
@@ -221,7 +227,6 @@ export interface ClientDefaults
|
|
|
221
227
|
serviceId?: string;
|
|
222
228
|
region?: string | __Provider<string>;
|
|
223
229
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
224
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
225
230
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
226
231
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
227
232
|
}
|
|
@@ -230,22 +235,24 @@ declare type ServiceDiscoveryClientConfigType = Partial<
|
|
|
230
235
|
> &
|
|
231
236
|
ClientDefaults &
|
|
232
237
|
RegionInputConfig &
|
|
233
|
-
|
|
238
|
+
EndpointInputConfig<EndpointParameters> &
|
|
234
239
|
RetryInputConfig &
|
|
235
240
|
HostHeaderInputConfig &
|
|
236
241
|
AwsAuthInputConfig &
|
|
237
|
-
UserAgentInputConfig
|
|
242
|
+
UserAgentInputConfig &
|
|
243
|
+
ClientInputEndpointParameters;
|
|
238
244
|
export interface ServiceDiscoveryClientConfig
|
|
239
245
|
extends ServiceDiscoveryClientConfigType {}
|
|
240
246
|
declare type ServiceDiscoveryClientResolvedConfigType =
|
|
241
247
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
242
248
|
Required<ClientDefaults> &
|
|
243
249
|
RegionResolvedConfig &
|
|
244
|
-
|
|
250
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
245
251
|
RetryResolvedConfig &
|
|
246
252
|
HostHeaderResolvedConfig &
|
|
247
253
|
AwsAuthResolvedConfig &
|
|
248
|
-
UserAgentResolvedConfig
|
|
254
|
+
UserAgentResolvedConfig &
|
|
255
|
+
ClientResolvedEndpointParameters;
|
|
249
256
|
export interface ServiceDiscoveryClientResolvedConfig
|
|
250
257
|
extends ServiceDiscoveryClientResolvedConfigType {}
|
|
251
258
|
export declare class ServiceDiscoveryClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreateHttpNamespaceCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateHttpNamespaceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateHttpNamespaceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreatePrivateDnsNamespaceCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreatePrivateDnsNamespaceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreatePrivateDnsNamespaceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreatePublicDnsNamespaceCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreatePublicDnsNamespaceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreatePublicDnsNamespaceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateServiceCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateServiceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateServiceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteNamespaceCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteNamespaceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteNamespaceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteServiceCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteServiceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteServiceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeregisterInstanceCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeregisterInstanceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeregisterInstanceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DiscoverInstancesCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DiscoverInstancesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DiscoverInstancesCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetInstanceCommand extends $Command<
|
|
|
21
22
|
ServiceDiscoveryClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetInstanceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetInstanceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetInstancesHealthStatusCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetInstancesHealthStatusCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetInstancesHealthStatusCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetNamespaceCommand extends $Command<
|
|
|
21
22
|
ServiceDiscoveryClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetNamespaceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetNamespaceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetOperationCommand extends $Command<
|
|
|
21
22
|
ServiceDiscoveryClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetOperationCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetOperationCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetServiceCommand extends $Command<
|
|
|
21
22
|
ServiceDiscoveryClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetServiceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetServiceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListInstancesCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListInstancesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListInstancesCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListNamespacesCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListNamespacesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListNamespacesCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListOperationsCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListOperationsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListOperationsCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListServicesCommand extends $Command<
|
|
|
21
22
|
ServiceDiscoveryClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListServicesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListServicesCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class RegisterInstanceCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: RegisterInstanceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: RegisterInstanceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class TagResourceCommand extends $Command<
|
|
|
21
22
|
ServiceDiscoveryClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: TagResourceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UntagResourceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UntagResourceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class UpdateHttpNamespaceCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: UpdateHttpNamespaceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateHttpNamespaceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class UpdateInstanceCustomHealthStatusCommand extends $Command<
|
|
|
21
22
|
ServiceDiscoveryClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: UpdateInstanceCustomHealthStatusCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: UpdateInstanceCustomHealthStatusCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class UpdatePrivateDnsNamespaceCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: UpdatePrivateDnsNamespaceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdatePrivateDnsNamespaceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class UpdatePublicDnsNamespaceCommand extends $Command<
|
|
|
25
26
|
ServiceDiscoveryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: UpdatePublicDnsNamespaceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdatePublicDnsNamespaceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class UpdateServiceCommand extends $Command<
|
|
|
24
25
|
ServiceDiscoveryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UpdateServiceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UpdateServiceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
EndpointParameters as __EndpointParameters,
|
|
3
|
+
Provider,
|
|
4
|
+
} from "@aws-sdk/types";
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
region?: string | Provider<string>;
|
|
7
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
Endpoint?: string | Provider<string>;
|
|
10
|
+
}
|
|
11
|
+
export declare type ClientResolvedEndpointParameters =
|
|
12
|
+
ClientInputEndpointParameters & {
|
|
13
|
+
defaultSigningName: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
16
|
+
options: T & ClientInputEndpointParameters
|
|
17
|
+
) => T &
|
|
18
|
+
ClientInputEndpointParameters & {
|
|
19
|
+
defaultSigningName: string;
|
|
20
|
+
};
|
|
21
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
22
|
+
Region: string;
|
|
23
|
+
UseDualStack?: boolean;
|
|
24
|
+
UseFIPS?: boolean;
|
|
25
|
+
Endpoint?: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { EndpointV2, Logger } from "@aws-sdk/types";
|
|
2
|
+
import { EndpointParameters } from "../endpoint/EndpointParameters";
|
|
3
|
+
export declare const defaultEndpointResolver: (
|
|
4
|
+
endpointParams: EndpointParameters,
|
|
5
|
+
context?: {
|
|
6
|
+
logger?: Logger;
|
|
7
|
+
}
|
|
8
|
+
) => EndpointV2;
|
|
@@ -265,6 +265,7 @@ export interface DnsProperties {
|
|
|
265
265
|
SOA?: SOA;
|
|
266
266
|
}
|
|
267
267
|
export declare enum FilterCondition {
|
|
268
|
+
BEGINS_WITH = "BEGINS_WITH",
|
|
268
269
|
BETWEEN = "BETWEEN",
|
|
269
270
|
EQ = "EQ",
|
|
270
271
|
IN = "IN",
|
|
@@ -384,6 +385,8 @@ export interface ListInstancesResponse {
|
|
|
384
385
|
NextToken?: string;
|
|
385
386
|
}
|
|
386
387
|
export declare enum NamespaceFilterName {
|
|
388
|
+
HTTP_NAME = "HTTP_NAME",
|
|
389
|
+
NAME = "NAME",
|
|
387
390
|
TYPE = "TYPE",
|
|
388
391
|
}
|
|
389
392
|
export interface NamespaceFilter {
|
|
@@ -38,12 +38,19 @@ export declare const getRuntimeConfig: (
|
|
|
38
38
|
disableHostPrefix: boolean;
|
|
39
39
|
logger: import("@aws-sdk/types").Logger;
|
|
40
40
|
serviceId: string;
|
|
41
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
41
|
endpoint?:
|
|
43
42
|
| string
|
|
44
43
|
| import("@aws-sdk/types").Endpoint
|
|
45
44
|
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| import("@aws-sdk/types").EndpointV2
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
46
47
|
| undefined;
|
|
48
|
+
endpointProvider: (
|
|
49
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
50
|
+
context?: {
|
|
51
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
52
|
+
}
|
|
53
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
54
|
tls?: boolean | undefined;
|
|
48
55
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
56
|
credentials?:
|
|
@@ -66,4 +73,5 @@ export declare const getRuntimeConfig: (
|
|
|
66
73
|
) => import("@aws-sdk/types").RequestSigner)
|
|
67
74
|
| undefined;
|
|
68
75
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
76
|
+
Endpoint?: string | import("@aws-sdk/types").Provider<string> | undefined;
|
|
69
77
|
};
|
|
@@ -38,12 +38,19 @@ export declare const getRuntimeConfig: (
|
|
|
38
38
|
disableHostPrefix: boolean;
|
|
39
39
|
logger: import("@aws-sdk/types").Logger;
|
|
40
40
|
serviceId: string;
|
|
41
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
41
|
endpoint?:
|
|
43
42
|
| string
|
|
44
43
|
| import("@aws-sdk/types").Endpoint
|
|
45
44
|
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| import("@aws-sdk/types").EndpointV2
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
46
47
|
| undefined;
|
|
48
|
+
endpointProvider: (
|
|
49
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
50
|
+
context?: {
|
|
51
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
52
|
+
}
|
|
53
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
54
|
tls?: boolean | undefined;
|
|
48
55
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
56
|
credentials?:
|
|
@@ -66,4 +73,5 @@ export declare const getRuntimeConfig: (
|
|
|
66
73
|
) => import("@aws-sdk/types").RequestSigner)
|
|
67
74
|
| undefined;
|
|
68
75
|
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
76
|
+
Endpoint?: string | import("@aws-sdk/types").Provider<string> | undefined;
|
|
69
77
|
};
|