@aws-sdk/client-networkmonitor 3.480.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/LICENSE +201 -0
- package/README.md +309 -0
- package/dist-cjs/NetworkMonitor.js +35 -0
- package/dist-cjs/NetworkMonitorClient.js +43 -0
- package/dist-cjs/commands/CreateMonitorCommand.js +51 -0
- package/dist-cjs/commands/CreateProbeCommand.js +51 -0
- package/dist-cjs/commands/DeleteMonitorCommand.js +51 -0
- package/dist-cjs/commands/DeleteProbeCommand.js +51 -0
- package/dist-cjs/commands/GetMonitorCommand.js +51 -0
- package/dist-cjs/commands/GetProbeCommand.js +51 -0
- package/dist-cjs/commands/ListMonitorsCommand.js +51 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +51 -0
- package/dist-cjs/commands/TagResourceCommand.js +51 -0
- package/dist-cjs/commands/UntagResourceCommand.js +51 -0
- package/dist-cjs/commands/UpdateMonitorCommand.js +51 -0
- package/dist-cjs/commands/UpdateProbeCommand.js +51 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/NetworkMonitorServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +122 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListMonitorsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_restJson1.js +957 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/NetworkMonitor.js +31 -0
- package/dist-es/NetworkMonitorClient.js +39 -0
- package/dist-es/commands/CreateMonitorCommand.js +47 -0
- package/dist-es/commands/CreateProbeCommand.js +47 -0
- package/dist-es/commands/DeleteMonitorCommand.js +47 -0
- package/dist-es/commands/DeleteProbeCommand.js +47 -0
- package/dist-es/commands/GetMonitorCommand.js +47 -0
- package/dist-es/commands/GetProbeCommand.js +47 -0
- package/dist-es/commands/ListMonitorsCommand.js +47 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +47 -0
- package/dist-es/commands/TagResourceCommand.js +47 -0
- package/dist-es/commands/UntagResourceCommand.js +47 -0
- package/dist-es/commands/UpdateMonitorCommand.js +47 -0
- package/dist-es/commands/UpdateProbeCommand.js +47 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/NetworkMonitorServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +112 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListMonitorsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +930 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/NetworkMonitor.d.ts +102 -0
- package/dist-types/NetworkMonitorClient.d.ts +189 -0
- package/dist-types/commands/CreateMonitorCommand.d.ts +114 -0
- package/dist-types/commands/CreateProbeCommand.d.ts +119 -0
- package/dist-types/commands/DeleteMonitorCommand.d.ts +86 -0
- package/dist-types/commands/DeleteProbeCommand.d.ts +90 -0
- package/dist-types/commands/GetMonitorCommand.d.ts +115 -0
- package/dist-types/commands/GetProbeCommand.d.ts +103 -0
- package/dist-types/commands/ListMonitorsCommand.d.ts +98 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +93 -0
- package/dist-types/commands/TagResourceCommand.d.ts +92 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +92 -0
- package/dist-types/commands/UpdateMonitorCommand.d.ts +98 -0
- package/dist-types/commands/UpdateProbeCommand.d.ts +111 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +23 -0
- package/dist-types/models/NetworkMonitorServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +902 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListMonitorsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/NetworkMonitor.d.ts +211 -0
- package/dist-types/ts3.4/NetworkMonitorClient.d.ts +191 -0
- package/dist-types/ts3.4/commands/CreateMonitorCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateProbeCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteMonitorCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteProbeCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetMonitorCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetProbeCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListMonitorsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateMonitorCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateProbeCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -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/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/NetworkMonitorServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +254 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListMonitorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +103 -0
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
AwsAuthInputConfig,
|
|
7
|
+
AwsAuthResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-signing";
|
|
9
|
+
import {
|
|
10
|
+
UserAgentInputConfig,
|
|
11
|
+
UserAgentResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
13
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
14
|
+
import {
|
|
15
|
+
RegionInputConfig,
|
|
16
|
+
RegionResolvedConfig,
|
|
17
|
+
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EndpointInputConfig,
|
|
20
|
+
EndpointResolvedConfig,
|
|
21
|
+
} from "@smithy/middleware-endpoint";
|
|
22
|
+
import {
|
|
23
|
+
RetryInputConfig,
|
|
24
|
+
RetryResolvedConfig,
|
|
25
|
+
} from "@smithy/middleware-retry";
|
|
26
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
27
|
+
import {
|
|
28
|
+
Client as __Client,
|
|
29
|
+
DefaultsMode as __DefaultsMode,
|
|
30
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
31
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
32
|
+
} from "@smithy/smithy-client";
|
|
33
|
+
import {
|
|
34
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
35
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
36
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
37
|
+
Decoder as __Decoder,
|
|
38
|
+
Encoder as __Encoder,
|
|
39
|
+
HashConstructor as __HashConstructor,
|
|
40
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
41
|
+
Logger as __Logger,
|
|
42
|
+
Provider as __Provider,
|
|
43
|
+
Provider,
|
|
44
|
+
StreamCollector as __StreamCollector,
|
|
45
|
+
UrlParser as __UrlParser,
|
|
46
|
+
UserAgent as __UserAgent,
|
|
47
|
+
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
CreateMonitorCommandInput,
|
|
50
|
+
CreateMonitorCommandOutput,
|
|
51
|
+
} from "./commands/CreateMonitorCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateProbeCommandInput,
|
|
54
|
+
CreateProbeCommandOutput,
|
|
55
|
+
} from "./commands/CreateProbeCommand";
|
|
56
|
+
import {
|
|
57
|
+
DeleteMonitorCommandInput,
|
|
58
|
+
DeleteMonitorCommandOutput,
|
|
59
|
+
} from "./commands/DeleteMonitorCommand";
|
|
60
|
+
import {
|
|
61
|
+
DeleteProbeCommandInput,
|
|
62
|
+
DeleteProbeCommandOutput,
|
|
63
|
+
} from "./commands/DeleteProbeCommand";
|
|
64
|
+
import {
|
|
65
|
+
GetMonitorCommandInput,
|
|
66
|
+
GetMonitorCommandOutput,
|
|
67
|
+
} from "./commands/GetMonitorCommand";
|
|
68
|
+
import {
|
|
69
|
+
GetProbeCommandInput,
|
|
70
|
+
GetProbeCommandOutput,
|
|
71
|
+
} from "./commands/GetProbeCommand";
|
|
72
|
+
import {
|
|
73
|
+
ListMonitorsCommandInput,
|
|
74
|
+
ListMonitorsCommandOutput,
|
|
75
|
+
} from "./commands/ListMonitorsCommand";
|
|
76
|
+
import {
|
|
77
|
+
ListTagsForResourceCommandInput,
|
|
78
|
+
ListTagsForResourceCommandOutput,
|
|
79
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
80
|
+
import {
|
|
81
|
+
TagResourceCommandInput,
|
|
82
|
+
TagResourceCommandOutput,
|
|
83
|
+
} from "./commands/TagResourceCommand";
|
|
84
|
+
import {
|
|
85
|
+
UntagResourceCommandInput,
|
|
86
|
+
UntagResourceCommandOutput,
|
|
87
|
+
} from "./commands/UntagResourceCommand";
|
|
88
|
+
import {
|
|
89
|
+
UpdateMonitorCommandInput,
|
|
90
|
+
UpdateMonitorCommandOutput,
|
|
91
|
+
} from "./commands/UpdateMonitorCommand";
|
|
92
|
+
import {
|
|
93
|
+
UpdateProbeCommandInput,
|
|
94
|
+
UpdateProbeCommandOutput,
|
|
95
|
+
} from "./commands/UpdateProbeCommand";
|
|
96
|
+
import {
|
|
97
|
+
ClientInputEndpointParameters,
|
|
98
|
+
ClientResolvedEndpointParameters,
|
|
99
|
+
EndpointParameters,
|
|
100
|
+
} from "./endpoint/EndpointParameters";
|
|
101
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
102
|
+
export { __Client };
|
|
103
|
+
export type ServiceInputTypes =
|
|
104
|
+
| CreateMonitorCommandInput
|
|
105
|
+
| CreateProbeCommandInput
|
|
106
|
+
| DeleteMonitorCommandInput
|
|
107
|
+
| DeleteProbeCommandInput
|
|
108
|
+
| GetMonitorCommandInput
|
|
109
|
+
| GetProbeCommandInput
|
|
110
|
+
| ListMonitorsCommandInput
|
|
111
|
+
| ListTagsForResourceCommandInput
|
|
112
|
+
| TagResourceCommandInput
|
|
113
|
+
| UntagResourceCommandInput
|
|
114
|
+
| UpdateMonitorCommandInput
|
|
115
|
+
| UpdateProbeCommandInput;
|
|
116
|
+
export type ServiceOutputTypes =
|
|
117
|
+
| CreateMonitorCommandOutput
|
|
118
|
+
| CreateProbeCommandOutput
|
|
119
|
+
| DeleteMonitorCommandOutput
|
|
120
|
+
| DeleteProbeCommandOutput
|
|
121
|
+
| GetMonitorCommandOutput
|
|
122
|
+
| GetProbeCommandOutput
|
|
123
|
+
| ListMonitorsCommandOutput
|
|
124
|
+
| ListTagsForResourceCommandOutput
|
|
125
|
+
| TagResourceCommandOutput
|
|
126
|
+
| UntagResourceCommandOutput
|
|
127
|
+
| UpdateMonitorCommandOutput
|
|
128
|
+
| UpdateProbeCommandOutput;
|
|
129
|
+
export interface ClientDefaults
|
|
130
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
131
|
+
requestHandler?: __HttpHandler;
|
|
132
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
133
|
+
urlParser?: __UrlParser;
|
|
134
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
135
|
+
streamCollector?: __StreamCollector;
|
|
136
|
+
base64Decoder?: __Decoder;
|
|
137
|
+
base64Encoder?: __Encoder;
|
|
138
|
+
utf8Decoder?: __Decoder;
|
|
139
|
+
utf8Encoder?: __Encoder;
|
|
140
|
+
runtime?: string;
|
|
141
|
+
disableHostPrefix?: boolean;
|
|
142
|
+
serviceId?: string;
|
|
143
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
144
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
145
|
+
region?: string | __Provider<string>;
|
|
146
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
147
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
148
|
+
maxAttempts?: number | __Provider<number>;
|
|
149
|
+
retryMode?: string | __Provider<string>;
|
|
150
|
+
logger?: __Logger;
|
|
151
|
+
extensions?: RuntimeExtension[];
|
|
152
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
153
|
+
}
|
|
154
|
+
export type NetworkMonitorClientConfigType = Partial<
|
|
155
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
156
|
+
> &
|
|
157
|
+
ClientDefaults &
|
|
158
|
+
RegionInputConfig &
|
|
159
|
+
EndpointInputConfig<EndpointParameters> &
|
|
160
|
+
RetryInputConfig &
|
|
161
|
+
HostHeaderInputConfig &
|
|
162
|
+
AwsAuthInputConfig &
|
|
163
|
+
UserAgentInputConfig &
|
|
164
|
+
ClientInputEndpointParameters;
|
|
165
|
+
export interface NetworkMonitorClientConfig
|
|
166
|
+
extends NetworkMonitorClientConfigType {}
|
|
167
|
+
export type NetworkMonitorClientResolvedConfigType =
|
|
168
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
169
|
+
Required<ClientDefaults> &
|
|
170
|
+
RuntimeExtensionsConfig &
|
|
171
|
+
RegionResolvedConfig &
|
|
172
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
173
|
+
RetryResolvedConfig &
|
|
174
|
+
HostHeaderResolvedConfig &
|
|
175
|
+
AwsAuthResolvedConfig &
|
|
176
|
+
UserAgentResolvedConfig &
|
|
177
|
+
ClientResolvedEndpointParameters;
|
|
178
|
+
export interface NetworkMonitorClientResolvedConfig
|
|
179
|
+
extends NetworkMonitorClientResolvedConfigType {}
|
|
180
|
+
export declare class NetworkMonitorClient extends __Client<
|
|
181
|
+
__HttpHandlerOptions,
|
|
182
|
+
ServiceInputTypes,
|
|
183
|
+
ServiceOutputTypes,
|
|
184
|
+
NetworkMonitorClientResolvedConfig
|
|
185
|
+
> {
|
|
186
|
+
readonly config: NetworkMonitorClientResolvedConfig;
|
|
187
|
+
constructor(
|
|
188
|
+
...[configuration]: __CheckOptionalClientConfig<NetworkMonitorClientConfig>
|
|
189
|
+
);
|
|
190
|
+
destroy(): void;
|
|
191
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface CreateMonitorCommandInput extends CreateMonitorInput {}
|
|
17
|
+
export interface CreateMonitorCommandOutput
|
|
18
|
+
extends CreateMonitorOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class CreateMonitorCommand extends $Command<
|
|
21
|
+
CreateMonitorCommandInput,
|
|
22
|
+
CreateMonitorCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: CreateMonitorCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: CreateMonitorCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateMonitorCommandInput, CreateMonitorCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { CreateProbeInput, CreateProbeOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface CreateProbeCommandInput extends CreateProbeInput {}
|
|
17
|
+
export interface CreateProbeCommandOutput
|
|
18
|
+
extends CreateProbeOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class CreateProbeCommand extends $Command<
|
|
21
|
+
CreateProbeCommandInput,
|
|
22
|
+
CreateProbeCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: CreateProbeCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: CreateProbeCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateProbeCommandInput, CreateProbeCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteMonitorCommandInput extends DeleteMonitorInput {}
|
|
17
|
+
export interface DeleteMonitorCommandOutput
|
|
18
|
+
extends DeleteMonitorOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class DeleteMonitorCommand extends $Command<
|
|
21
|
+
DeleteMonitorCommandInput,
|
|
22
|
+
DeleteMonitorCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: DeleteMonitorCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: DeleteMonitorCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteMonitorCommandInput, DeleteMonitorCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { DeleteProbeInput, DeleteProbeOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteProbeCommandInput extends DeleteProbeInput {}
|
|
17
|
+
export interface DeleteProbeCommandOutput
|
|
18
|
+
extends DeleteProbeOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class DeleteProbeCommand extends $Command<
|
|
21
|
+
DeleteProbeCommandInput,
|
|
22
|
+
DeleteProbeCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: DeleteProbeCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: DeleteProbeCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteProbeCommandInput, DeleteProbeCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { GetMonitorInput, GetMonitorOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetMonitorCommandInput extends GetMonitorInput {}
|
|
17
|
+
export interface GetMonitorCommandOutput
|
|
18
|
+
extends GetMonitorOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetMonitorCommand extends $Command<
|
|
21
|
+
GetMonitorCommandInput,
|
|
22
|
+
GetMonitorCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetMonitorCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetMonitorCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetMonitorCommandInput, GetMonitorCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { GetProbeInput, GetProbeOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetProbeCommandInput extends GetProbeInput {}
|
|
17
|
+
export interface GetProbeCommandOutput
|
|
18
|
+
extends GetProbeOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetProbeCommand extends $Command<
|
|
21
|
+
GetProbeCommandInput,
|
|
22
|
+
GetProbeCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetProbeCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetProbeCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetProbeCommandInput, GetProbeCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ListMonitorsCommandInput extends ListMonitorsInput {}
|
|
17
|
+
export interface ListMonitorsCommandOutput
|
|
18
|
+
extends ListMonitorsOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ListMonitorsCommand extends $Command<
|
|
21
|
+
ListMonitorsCommandInput,
|
|
22
|
+
ListMonitorsCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ListMonitorsCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ListMonitorsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListMonitorsCommandInput, ListMonitorsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListTagsForResourceInput,
|
|
11
|
+
ListTagsForResourceOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NetworkMonitorClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NetworkMonitorClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListTagsForResourceCommandInput
|
|
20
|
+
extends ListTagsForResourceInput {}
|
|
21
|
+
export interface ListTagsForResourceCommandOutput
|
|
22
|
+
extends ListTagsForResourceOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
25
|
+
ListTagsForResourceCommandInput,
|
|
26
|
+
ListTagsForResourceCommandOutput,
|
|
27
|
+
NetworkMonitorClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
17
|
+
export interface TagResourceCommandOutput
|
|
18
|
+
extends TagResourceOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class TagResourceCommand extends $Command<
|
|
21
|
+
TagResourceCommandInput,
|
|
22
|
+
TagResourceCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: TagResourceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: TagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
17
|
+
export interface UntagResourceCommandOutput
|
|
18
|
+
extends UntagResourceOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class UntagResourceCommand extends $Command<
|
|
21
|
+
UntagResourceCommandInput,
|
|
22
|
+
UntagResourceCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: UntagResourceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface UpdateMonitorCommandInput extends UpdateMonitorInput {}
|
|
17
|
+
export interface UpdateMonitorCommandOutput
|
|
18
|
+
extends UpdateMonitorOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class UpdateMonitorCommand extends $Command<
|
|
21
|
+
UpdateMonitorCommandInput,
|
|
22
|
+
UpdateMonitorCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: UpdateMonitorCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: UpdateMonitorCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateMonitorCommandInput, UpdateMonitorCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { UpdateProbeInput, UpdateProbeOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NetworkMonitorClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NetworkMonitorClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface UpdateProbeCommandInput extends UpdateProbeInput {}
|
|
17
|
+
export interface UpdateProbeCommandOutput
|
|
18
|
+
extends UpdateProbeOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class UpdateProbeCommand extends $Command<
|
|
21
|
+
UpdateProbeCommandInput,
|
|
22
|
+
UpdateProbeCommandOutput,
|
|
23
|
+
NetworkMonitorClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: UpdateProbeCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: UpdateProbeCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NetworkMonitorClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateProbeCommandInput, UpdateProbeCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./CreateMonitorCommand";
|
|
2
|
+
export * from "./CreateProbeCommand";
|
|
3
|
+
export * from "./DeleteMonitorCommand";
|
|
4
|
+
export * from "./DeleteProbeCommand";
|
|
5
|
+
export * from "./GetMonitorCommand";
|
|
6
|
+
export * from "./GetProbeCommand";
|
|
7
|
+
export * from "./ListMonitorsCommand";
|
|
8
|
+
export * from "./ListTagsForResourceCommand";
|
|
9
|
+
export * from "./TagResourceCommand";
|
|
10
|
+
export * from "./UntagResourceCommand";
|
|
11
|
+
export * from "./UpdateMonitorCommand";
|
|
12
|
+
export * from "./UpdateProbeCommand";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
+
Region?: string;
|
|
30
|
+
UseDualStack?: boolean;
|
|
31
|
+
UseFIPS?: boolean;
|
|
32
|
+
Endpoint?: string;
|
|
33
|
+
}
|