@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.
Files changed (131) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +309 -0
  3. package/dist-cjs/NetworkMonitor.js +35 -0
  4. package/dist-cjs/NetworkMonitorClient.js +43 -0
  5. package/dist-cjs/commands/CreateMonitorCommand.js +51 -0
  6. package/dist-cjs/commands/CreateProbeCommand.js +51 -0
  7. package/dist-cjs/commands/DeleteMonitorCommand.js +51 -0
  8. package/dist-cjs/commands/DeleteProbeCommand.js +51 -0
  9. package/dist-cjs/commands/GetMonitorCommand.js +51 -0
  10. package/dist-cjs/commands/GetProbeCommand.js +51 -0
  11. package/dist-cjs/commands/ListMonitorsCommand.js +51 -0
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +51 -0
  13. package/dist-cjs/commands/TagResourceCommand.js +51 -0
  14. package/dist-cjs/commands/UntagResourceCommand.js +51 -0
  15. package/dist-cjs/commands/UpdateMonitorCommand.js +51 -0
  16. package/dist-cjs/commands/UpdateProbeCommand.js +51 -0
  17. package/dist-cjs/commands/index.js +15 -0
  18. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  19. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  20. package/dist-cjs/endpoint/ruleset.js +7 -0
  21. package/dist-cjs/extensionConfiguration.js +2 -0
  22. package/dist-cjs/index.js +12 -0
  23. package/dist-cjs/models/NetworkMonitorServiceException.js +12 -0
  24. package/dist-cjs/models/index.js +4 -0
  25. package/dist-cjs/models/models_0.js +122 -0
  26. package/dist-cjs/pagination/Interfaces.js +2 -0
  27. package/dist-cjs/pagination/ListMonitorsPaginator.js +7 -0
  28. package/dist-cjs/pagination/index.js +5 -0
  29. package/dist-cjs/protocols/Aws_restJson1.js +957 -0
  30. package/dist-cjs/runtimeConfig.browser.js +39 -0
  31. package/dist-cjs/runtimeConfig.js +50 -0
  32. package/dist-cjs/runtimeConfig.native.js +15 -0
  33. package/dist-cjs/runtimeConfig.shared.js +24 -0
  34. package/dist-cjs/runtimeExtensions.js +22 -0
  35. package/dist-es/NetworkMonitor.js +31 -0
  36. package/dist-es/NetworkMonitorClient.js +39 -0
  37. package/dist-es/commands/CreateMonitorCommand.js +47 -0
  38. package/dist-es/commands/CreateProbeCommand.js +47 -0
  39. package/dist-es/commands/DeleteMonitorCommand.js +47 -0
  40. package/dist-es/commands/DeleteProbeCommand.js +47 -0
  41. package/dist-es/commands/GetMonitorCommand.js +47 -0
  42. package/dist-es/commands/GetProbeCommand.js +47 -0
  43. package/dist-es/commands/ListMonitorsCommand.js +47 -0
  44. package/dist-es/commands/ListTagsForResourceCommand.js +47 -0
  45. package/dist-es/commands/TagResourceCommand.js +47 -0
  46. package/dist-es/commands/UntagResourceCommand.js +47 -0
  47. package/dist-es/commands/UpdateMonitorCommand.js +47 -0
  48. package/dist-es/commands/UpdateProbeCommand.js +47 -0
  49. package/dist-es/commands/index.js +12 -0
  50. package/dist-es/endpoint/EndpointParameters.js +8 -0
  51. package/dist-es/endpoint/endpointResolver.js +8 -0
  52. package/dist-es/endpoint/ruleset.js +4 -0
  53. package/dist-es/extensionConfiguration.js +1 -0
  54. package/dist-es/index.js +7 -0
  55. package/dist-es/models/NetworkMonitorServiceException.js +8 -0
  56. package/dist-es/models/index.js +1 -0
  57. package/dist-es/models/models_0.js +112 -0
  58. package/dist-es/pagination/Interfaces.js +1 -0
  59. package/dist-es/pagination/ListMonitorsPaginator.js +4 -0
  60. package/dist-es/pagination/index.js +2 -0
  61. package/dist-es/protocols/Aws_restJson1.js +930 -0
  62. package/dist-es/runtimeConfig.browser.js +34 -0
  63. package/dist-es/runtimeConfig.js +45 -0
  64. package/dist-es/runtimeConfig.native.js +11 -0
  65. package/dist-es/runtimeConfig.shared.js +20 -0
  66. package/dist-es/runtimeExtensions.js +18 -0
  67. package/dist-types/NetworkMonitor.d.ts +102 -0
  68. package/dist-types/NetworkMonitorClient.d.ts +189 -0
  69. package/dist-types/commands/CreateMonitorCommand.d.ts +114 -0
  70. package/dist-types/commands/CreateProbeCommand.d.ts +119 -0
  71. package/dist-types/commands/DeleteMonitorCommand.d.ts +86 -0
  72. package/dist-types/commands/DeleteProbeCommand.d.ts +90 -0
  73. package/dist-types/commands/GetMonitorCommand.d.ts +115 -0
  74. package/dist-types/commands/GetProbeCommand.d.ts +103 -0
  75. package/dist-types/commands/ListMonitorsCommand.d.ts +98 -0
  76. package/dist-types/commands/ListTagsForResourceCommand.d.ts +93 -0
  77. package/dist-types/commands/TagResourceCommand.d.ts +92 -0
  78. package/dist-types/commands/UntagResourceCommand.d.ts +92 -0
  79. package/dist-types/commands/UpdateMonitorCommand.d.ts +98 -0
  80. package/dist-types/commands/UpdateProbeCommand.d.ts +111 -0
  81. package/dist-types/commands/index.d.ts +12 -0
  82. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  83. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  84. package/dist-types/endpoint/ruleset.d.ts +2 -0
  85. package/dist-types/extensionConfiguration.d.ts +8 -0
  86. package/dist-types/index.d.ts +23 -0
  87. package/dist-types/models/NetworkMonitorServiceException.d.ts +13 -0
  88. package/dist-types/models/index.d.ts +1 -0
  89. package/dist-types/models/models_0.d.ts +902 -0
  90. package/dist-types/pagination/Interfaces.d.ts +8 -0
  91. package/dist-types/pagination/ListMonitorsPaginator.d.ts +7 -0
  92. package/dist-types/pagination/index.d.ts +2 -0
  93. package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
  94. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  95. package/dist-types/runtimeConfig.d.ts +46 -0
  96. package/dist-types/runtimeConfig.native.d.ts +45 -0
  97. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  98. package/dist-types/runtimeExtensions.d.ts +17 -0
  99. package/dist-types/ts3.4/NetworkMonitor.d.ts +211 -0
  100. package/dist-types/ts3.4/NetworkMonitorClient.d.ts +191 -0
  101. package/dist-types/ts3.4/commands/CreateMonitorCommand.d.ts +35 -0
  102. package/dist-types/ts3.4/commands/CreateProbeCommand.d.ts +35 -0
  103. package/dist-types/ts3.4/commands/DeleteMonitorCommand.d.ts +35 -0
  104. package/dist-types/ts3.4/commands/DeleteProbeCommand.d.ts +35 -0
  105. package/dist-types/ts3.4/commands/GetMonitorCommand.d.ts +35 -0
  106. package/dist-types/ts3.4/commands/GetProbeCommand.d.ts +35 -0
  107. package/dist-types/ts3.4/commands/ListMonitorsCommand.d.ts +35 -0
  108. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  109. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  110. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  111. package/dist-types/ts3.4/commands/UpdateMonitorCommand.d.ts +35 -0
  112. package/dist-types/ts3.4/commands/UpdateProbeCommand.d.ts +35 -0
  113. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  114. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  115. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  116. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  117. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  118. package/dist-types/ts3.4/index.d.ts +10 -0
  119. package/dist-types/ts3.4/models/NetworkMonitorServiceException.d.ts +8 -0
  120. package/dist-types/ts3.4/models/index.d.ts +1 -0
  121. package/dist-types/ts3.4/models/models_0.d.ts +254 -0
  122. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  123. package/dist-types/ts3.4/pagination/ListMonitorsPaginator.d.ts +11 -0
  124. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  125. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
  126. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  127. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  128. package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  129. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  130. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  131. package/package.json +103 -0
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,7 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ export interface NetworkMonitorExtensionConfiguration
5
+ extends HttpHandlerExtensionConfiguration,
6
+ DefaultExtensionConfiguration,
7
+ AwsRegionExtensionConfiguration {}
@@ -0,0 +1,10 @@
1
+ export * from "./NetworkMonitorClient";
2
+ export * from "./NetworkMonitor";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { NetworkMonitorExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models";
9
+ import "@aws-sdk/util-endpoints";
10
+ export { NetworkMonitorServiceException } from "./models/NetworkMonitorServiceException";
@@ -0,0 +1,8 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceException, __ServiceExceptionOptions };
6
+ export declare class NetworkMonitorServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,254 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { NetworkMonitorServiceException as __BaseException } from "./NetworkMonitorServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare const AddressFamily: {
11
+ readonly IPV4: "IPV4";
12
+ readonly IPV6: "IPV6";
13
+ };
14
+ export type AddressFamily = (typeof AddressFamily)[keyof typeof AddressFamily];
15
+ export declare class ConflictException extends __BaseException {
16
+ readonly name: "ConflictException";
17
+ readonly $fault: "client";
18
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
19
+ }
20
+ export declare const Protocol: {
21
+ readonly ICMP: "ICMP";
22
+ readonly TCP: "TCP";
23
+ };
24
+ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
25
+ export interface CreateMonitorProbeInput {
26
+ sourceArn: string | undefined;
27
+ destination: string | undefined;
28
+ destinationPort?: number;
29
+ protocol: Protocol | undefined;
30
+ packetSize?: number;
31
+ probeTags?: Record<string, string>;
32
+ }
33
+ export interface CreateMonitorInput {
34
+ monitorName: string | undefined;
35
+ probes?: CreateMonitorProbeInput[];
36
+ aggregationPeriod?: number;
37
+ clientToken?: string;
38
+ tags?: Record<string, string>;
39
+ }
40
+ export declare const MonitorState: {
41
+ readonly ACTIVE: "ACTIVE";
42
+ readonly DELETING: "DELETING";
43
+ readonly ERROR: "ERROR";
44
+ readonly INACTIVE: "INACTIVE";
45
+ readonly PENDING: "PENDING";
46
+ };
47
+ export type MonitorState = (typeof MonitorState)[keyof typeof MonitorState];
48
+ export interface CreateMonitorOutput {
49
+ monitorArn: string | undefined;
50
+ monitorName: string | undefined;
51
+ state: MonitorState | undefined;
52
+ aggregationPeriod?: number;
53
+ tags?: Record<string, string>;
54
+ }
55
+ export declare class InternalServerException extends __BaseException {
56
+ readonly name: "InternalServerException";
57
+ readonly $fault: "server";
58
+ $retryable: {};
59
+ constructor(
60
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
61
+ );
62
+ }
63
+ export declare class ServiceQuotaExceededException extends __BaseException {
64
+ readonly name: "ServiceQuotaExceededException";
65
+ readonly $fault: "client";
66
+ constructor(
67
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
68
+ );
69
+ }
70
+ export declare class ThrottlingException extends __BaseException {
71
+ readonly name: "ThrottlingException";
72
+ readonly $fault: "client";
73
+ $retryable: {
74
+ throttling: boolean;
75
+ };
76
+ constructor(
77
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
78
+ );
79
+ }
80
+ export declare class ValidationException extends __BaseException {
81
+ readonly name: "ValidationException";
82
+ readonly $fault: "client";
83
+ constructor(
84
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
85
+ );
86
+ }
87
+ export interface ProbeInput {
88
+ sourceArn: string | undefined;
89
+ destination: string | undefined;
90
+ destinationPort?: number;
91
+ protocol: Protocol | undefined;
92
+ packetSize?: number;
93
+ tags?: Record<string, string>;
94
+ }
95
+ export interface CreateProbeInput {
96
+ monitorName: string | undefined;
97
+ probe: ProbeInput | undefined;
98
+ clientToken?: string;
99
+ tags?: Record<string, string>;
100
+ }
101
+ export declare const ProbeState: {
102
+ readonly ACTIVE: "ACTIVE";
103
+ readonly DELETED: "DELETED";
104
+ readonly DELETING: "DELETING";
105
+ readonly ERROR: "ERROR";
106
+ readonly INACTIVE: "INACTIVE";
107
+ readonly PENDING: "PENDING";
108
+ };
109
+ export type ProbeState = (typeof ProbeState)[keyof typeof ProbeState];
110
+ export interface CreateProbeOutput {
111
+ probeId?: string;
112
+ probeArn?: string;
113
+ sourceArn: string | undefined;
114
+ destination: string | undefined;
115
+ destinationPort?: number;
116
+ protocol: Protocol | undefined;
117
+ packetSize?: number;
118
+ addressFamily?: AddressFamily;
119
+ vpcId?: string;
120
+ state?: ProbeState;
121
+ createdAt?: Date;
122
+ modifiedAt?: Date;
123
+ tags?: Record<string, string>;
124
+ }
125
+ export declare class ResourceNotFoundException extends __BaseException {
126
+ readonly name: "ResourceNotFoundException";
127
+ readonly $fault: "client";
128
+ constructor(
129
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
130
+ );
131
+ }
132
+ export interface DeleteMonitorInput {
133
+ monitorName: string | undefined;
134
+ }
135
+ export interface DeleteMonitorOutput {}
136
+ export interface DeleteProbeInput {
137
+ monitorName: string | undefined;
138
+ probeId: string | undefined;
139
+ }
140
+ export interface DeleteProbeOutput {}
141
+ export interface GetMonitorInput {
142
+ monitorName: string | undefined;
143
+ }
144
+ export interface Probe {
145
+ probeId?: string;
146
+ probeArn?: string;
147
+ sourceArn: string | undefined;
148
+ destination: string | undefined;
149
+ destinationPort?: number;
150
+ protocol: Protocol | undefined;
151
+ packetSize?: number;
152
+ addressFamily?: AddressFamily;
153
+ vpcId?: string;
154
+ state?: ProbeState;
155
+ createdAt?: Date;
156
+ modifiedAt?: Date;
157
+ tags?: Record<string, string>;
158
+ }
159
+ export interface GetMonitorOutput {
160
+ monitorArn: string | undefined;
161
+ monitorName: string | undefined;
162
+ state: MonitorState | undefined;
163
+ aggregationPeriod: number | undefined;
164
+ tags?: Record<string, string>;
165
+ probes?: Probe[];
166
+ createdAt: Date | undefined;
167
+ modifiedAt: Date | undefined;
168
+ }
169
+ export interface GetProbeInput {
170
+ monitorName: string | undefined;
171
+ probeId: string | undefined;
172
+ }
173
+ export interface GetProbeOutput {
174
+ probeId?: string;
175
+ probeArn?: string;
176
+ sourceArn: string | undefined;
177
+ destination: string | undefined;
178
+ destinationPort?: number;
179
+ protocol: Protocol | undefined;
180
+ packetSize?: number;
181
+ addressFamily?: AddressFamily;
182
+ vpcId?: string;
183
+ state?: ProbeState;
184
+ createdAt?: Date;
185
+ modifiedAt?: Date;
186
+ tags?: Record<string, string>;
187
+ }
188
+ export interface ListMonitorsInput {
189
+ nextToken?: string;
190
+ maxResults?: number;
191
+ state?: string;
192
+ }
193
+ export interface MonitorSummary {
194
+ monitorArn: string | undefined;
195
+ monitorName: string | undefined;
196
+ state: MonitorState | undefined;
197
+ aggregationPeriod?: number;
198
+ tags?: Record<string, string>;
199
+ }
200
+ export interface ListMonitorsOutput {
201
+ monitors: MonitorSummary[] | undefined;
202
+ nextToken?: string;
203
+ }
204
+ export interface ListTagsForResourceInput {
205
+ resourceArn: string | undefined;
206
+ }
207
+ export interface ListTagsForResourceOutput {
208
+ tags?: Record<string, string>;
209
+ }
210
+ export interface UpdateMonitorInput {
211
+ monitorName: string | undefined;
212
+ aggregationPeriod: number | undefined;
213
+ }
214
+ export interface UpdateMonitorOutput {
215
+ monitorArn: string | undefined;
216
+ monitorName: string | undefined;
217
+ state: MonitorState | undefined;
218
+ aggregationPeriod?: number;
219
+ tags?: Record<string, string>;
220
+ }
221
+ export interface UpdateProbeInput {
222
+ monitorName: string | undefined;
223
+ probeId: string | undefined;
224
+ state?: ProbeState;
225
+ destination?: string;
226
+ destinationPort?: number;
227
+ protocol?: Protocol;
228
+ packetSize?: number;
229
+ }
230
+ export interface UpdateProbeOutput {
231
+ probeId?: string;
232
+ probeArn?: string;
233
+ sourceArn: string | undefined;
234
+ destination: string | undefined;
235
+ destinationPort?: number;
236
+ protocol: Protocol | undefined;
237
+ packetSize?: number;
238
+ addressFamily?: AddressFamily;
239
+ vpcId?: string;
240
+ state?: ProbeState;
241
+ createdAt?: Date;
242
+ modifiedAt?: Date;
243
+ tags?: Record<string, string>;
244
+ }
245
+ export interface TagResourceInput {
246
+ resourceArn: string | undefined;
247
+ tags: Record<string, string> | undefined;
248
+ }
249
+ export interface TagResourceOutput {}
250
+ export interface UntagResourceInput {
251
+ resourceArn: string | undefined;
252
+ tagKeys: string[] | undefined;
253
+ }
254
+ export interface UntagResourceOutput {}
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { NetworkMonitorClient } from "../NetworkMonitorClient";
3
+ export interface NetworkMonitorPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: NetworkMonitorClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListMonitorsCommandInput,
4
+ ListMonitorsCommandOutput,
5
+ } from "../commands/ListMonitorsCommand";
6
+ import { NetworkMonitorPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListMonitors: (
8
+ config: NetworkMonitorPaginationConfiguration,
9
+ input: ListMonitorsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListMonitorsCommandOutput>;
@@ -0,0 +1,2 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListMonitorsPaginator";
@@ -0,0 +1,149 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateMonitorCommandInput,
8
+ CreateMonitorCommandOutput,
9
+ } from "../commands/CreateMonitorCommand";
10
+ import {
11
+ CreateProbeCommandInput,
12
+ CreateProbeCommandOutput,
13
+ } from "../commands/CreateProbeCommand";
14
+ import {
15
+ DeleteMonitorCommandInput,
16
+ DeleteMonitorCommandOutput,
17
+ } from "../commands/DeleteMonitorCommand";
18
+ import {
19
+ DeleteProbeCommandInput,
20
+ DeleteProbeCommandOutput,
21
+ } from "../commands/DeleteProbeCommand";
22
+ import {
23
+ GetMonitorCommandInput,
24
+ GetMonitorCommandOutput,
25
+ } from "../commands/GetMonitorCommand";
26
+ import {
27
+ GetProbeCommandInput,
28
+ GetProbeCommandOutput,
29
+ } from "../commands/GetProbeCommand";
30
+ import {
31
+ ListMonitorsCommandInput,
32
+ ListMonitorsCommandOutput,
33
+ } from "../commands/ListMonitorsCommand";
34
+ import {
35
+ ListTagsForResourceCommandInput,
36
+ ListTagsForResourceCommandOutput,
37
+ } from "../commands/ListTagsForResourceCommand";
38
+ import {
39
+ TagResourceCommandInput,
40
+ TagResourceCommandOutput,
41
+ } from "../commands/TagResourceCommand";
42
+ import {
43
+ UntagResourceCommandInput,
44
+ UntagResourceCommandOutput,
45
+ } from "../commands/UntagResourceCommand";
46
+ import {
47
+ UpdateMonitorCommandInput,
48
+ UpdateMonitorCommandOutput,
49
+ } from "../commands/UpdateMonitorCommand";
50
+ import {
51
+ UpdateProbeCommandInput,
52
+ UpdateProbeCommandOutput,
53
+ } from "../commands/UpdateProbeCommand";
54
+ export declare const se_CreateMonitorCommand: (
55
+ input: CreateMonitorCommandInput,
56
+ context: __SerdeContext
57
+ ) => Promise<__HttpRequest>;
58
+ export declare const se_CreateProbeCommand: (
59
+ input: CreateProbeCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const se_DeleteMonitorCommand: (
63
+ input: DeleteMonitorCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const se_DeleteProbeCommand: (
67
+ input: DeleteProbeCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const se_GetMonitorCommand: (
71
+ input: GetMonitorCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const se_GetProbeCommand: (
75
+ input: GetProbeCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const se_ListMonitorsCommand: (
79
+ input: ListMonitorsCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const se_ListTagsForResourceCommand: (
83
+ input: ListTagsForResourceCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const se_TagResourceCommand: (
87
+ input: TagResourceCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const se_UntagResourceCommand: (
91
+ input: UntagResourceCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const se_UpdateMonitorCommand: (
95
+ input: UpdateMonitorCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const se_UpdateProbeCommand: (
99
+ input: UpdateProbeCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const de_CreateMonitorCommand: (
103
+ output: __HttpResponse,
104
+ context: __SerdeContext
105
+ ) => Promise<CreateMonitorCommandOutput>;
106
+ export declare const de_CreateProbeCommand: (
107
+ output: __HttpResponse,
108
+ context: __SerdeContext
109
+ ) => Promise<CreateProbeCommandOutput>;
110
+ export declare const de_DeleteMonitorCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<DeleteMonitorCommandOutput>;
114
+ export declare const de_DeleteProbeCommand: (
115
+ output: __HttpResponse,
116
+ context: __SerdeContext
117
+ ) => Promise<DeleteProbeCommandOutput>;
118
+ export declare const de_GetMonitorCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<GetMonitorCommandOutput>;
122
+ export declare const de_GetProbeCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<GetProbeCommandOutput>;
126
+ export declare const de_ListMonitorsCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<ListMonitorsCommandOutput>;
130
+ export declare const de_ListTagsForResourceCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<ListTagsForResourceCommandOutput>;
134
+ export declare const de_TagResourceCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<TagResourceCommandOutput>;
138
+ export declare const de_UntagResourceCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<UntagResourceCommandOutput>;
142
+ export declare const de_UpdateMonitorCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<UpdateMonitorCommandOutput>;
146
+ export declare const de_UpdateProbeCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<UpdateProbeCommandOutput>;
@@ -0,0 +1,97 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { NetworkMonitorClientConfig } from "./NetworkMonitorClient";
3
+ export declare const getRuntimeConfig: (config: NetworkMonitorClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<any>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/types").RequestHandler<
24
+ import("@smithy/protocol-http").HttpRequest,
25
+ import("@smithy/protocol-http").HttpResponse,
26
+ import("@smithy/types").HttpHandlerOptions
27
+ > & {
28
+ updateHttpClientConfig(key: never, value: never): void;
29
+ httpHandlerConfigs(): {};
30
+ })
31
+ | RequestHandler;
32
+ retryMode: string | import("@smithy/types").Provider<string>;
33
+ sha256: import("@smithy/types").HashConstructor;
34
+ streamCollector: import("@smithy/types").StreamCollector;
35
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
36
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
37
+ apiVersion: string;
38
+ urlParser: import("@smithy/types").UrlParser;
39
+ base64Decoder: import("@smithy/types").Decoder;
40
+ base64Encoder: import("@smithy/types").Encoder;
41
+ utf8Decoder: import("@smithy/types").Decoder;
42
+ utf8Encoder: import("@smithy/types").Encoder;
43
+ disableHostPrefix: boolean;
44
+ serviceId: string;
45
+ logger: import("@smithy/types").Logger;
46
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger | undefined;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean | undefined;
71
+ retryStrategy?:
72
+ | import("@smithy/types").RetryStrategy
73
+ | import("@smithy/types").RetryStrategyV2
74
+ | undefined;
75
+ credentials?:
76
+ | import("@smithy/types").AwsCredentialIdentity
77
+ | import("@smithy/types").Provider<
78
+ import("@smithy/types").AwsCredentialIdentity
79
+ >
80
+ | undefined;
81
+ signer?:
82
+ | import("@smithy/types").RequestSigner
83
+ | ((
84
+ authScheme?: import("@smithy/types").AuthScheme | undefined
85
+ ) => Promise<import("@smithy/types").RequestSigner>)
86
+ | undefined;
87
+ signingEscapePath?: boolean | undefined;
88
+ systemClockOffset?: number | undefined;
89
+ signingRegion?: string | undefined;
90
+ signerConstructor?:
91
+ | (new (
92
+ options: import("@smithy/signature-v4").SignatureV4Init &
93
+ import("@smithy/signature-v4").SignatureV4CryptoInit
94
+ ) => import("@smithy/types").RequestSigner)
95
+ | undefined;
96
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
97
+ };
@@ -0,0 +1,97 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { NetworkMonitorClientConfig } from "./NetworkMonitorClient";
3
+ export declare const getRuntimeConfig: (config: NetworkMonitorClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<string>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/types").RequestHandler<
24
+ import("@smithy/protocol-http").HttpRequest,
25
+ import("@smithy/protocol-http").HttpResponse,
26
+ import("@smithy/types").HttpHandlerOptions
27
+ > & {
28
+ updateHttpClientConfig(key: never, value: never): void;
29
+ httpHandlerConfigs(): {};
30
+ })
31
+ | RequestHandler;
32
+ retryMode: string | import("@smithy/types").Provider<string>;
33
+ sha256: import("@smithy/types").HashConstructor;
34
+ streamCollector: import("@smithy/types").StreamCollector;
35
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
36
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
37
+ apiVersion: string;
38
+ urlParser: import("@smithy/types").UrlParser;
39
+ base64Decoder: import("@smithy/types").Decoder;
40
+ base64Encoder: import("@smithy/types").Encoder;
41
+ utf8Decoder: import("@smithy/types").Decoder;
42
+ utf8Encoder: import("@smithy/types").Encoder;
43
+ disableHostPrefix: boolean;
44
+ serviceId: string;
45
+ logger: import("@smithy/types").Logger;
46
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger | undefined;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean | undefined;
71
+ retryStrategy?:
72
+ | import("@smithy/types").RetryStrategy
73
+ | import("@smithy/types").RetryStrategyV2
74
+ | undefined;
75
+ credentials?:
76
+ | import("@smithy/types").AwsCredentialIdentity
77
+ | import("@smithy/types").Provider<
78
+ import("@smithy/types").AwsCredentialIdentity
79
+ >
80
+ | undefined;
81
+ signer?:
82
+ | import("@smithy/types").RequestSigner
83
+ | ((
84
+ authScheme?: import("@smithy/types").AuthScheme | undefined
85
+ ) => Promise<import("@smithy/types").RequestSigner>)
86
+ | undefined;
87
+ signingEscapePath?: boolean | undefined;
88
+ systemClockOffset?: number | undefined;
89
+ signingRegion?: string | undefined;
90
+ signerConstructor?:
91
+ | (new (
92
+ options: import("@smithy/signature-v4").SignatureV4Init &
93
+ import("@smithy/signature-v4").SignatureV4CryptoInit
94
+ ) => import("@smithy/types").RequestSigner)
95
+ | undefined;
96
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
97
+ };