@aws-sdk/client-observabilityadmin 3.908.0 → 3.910.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/README.md +25 -4
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +131 -0
- package/dist-es/ObservabilityAdmin.js +6 -0
- package/dist-es/commands/GetTelemetryEnrichmentStatusCommand.js +22 -0
- package/dist-es/commands/StartTelemetryEnrichmentCommand.js +22 -0
- package/dist-es/commands/StopTelemetryEnrichmentCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +68 -0
- package/dist-types/ObservabilityAdmin.d.ts +25 -4
- package/dist-types/ObservabilityAdminClient.d.ts +6 -6
- package/dist-types/commands/CreateCentralizationRuleForOrganizationCommand.d.ts +6 -18
- package/dist-types/commands/CreateTelemetryRuleCommand.d.ts +7 -21
- package/dist-types/commands/CreateTelemetryRuleForOrganizationCommand.d.ts +7 -21
- package/dist-types/commands/DeleteCentralizationRuleForOrganizationCommand.d.ts +5 -15
- package/dist-types/commands/DeleteTelemetryRuleCommand.d.ts +6 -18
- package/dist-types/commands/DeleteTelemetryRuleForOrganizationCommand.d.ts +6 -18
- package/dist-types/commands/GetCentralizationRuleForOrganizationCommand.d.ts +5 -15
- package/dist-types/commands/GetTelemetryEnrichmentStatusCommand.d.ts +85 -0
- package/dist-types/commands/GetTelemetryEvaluationStatusCommand.d.ts +4 -12
- package/dist-types/commands/GetTelemetryEvaluationStatusForOrganizationCommand.d.ts +5 -15
- package/dist-types/commands/GetTelemetryRuleCommand.d.ts +6 -18
- package/dist-types/commands/GetTelemetryRuleForOrganizationCommand.d.ts +6 -18
- package/dist-types/commands/ListCentralizationRulesForOrganizationCommand.d.ts +4 -12
- package/dist-types/commands/ListResourceTelemetryCommand.d.ts +5 -15
- package/dist-types/commands/ListResourceTelemetryForOrganizationCommand.d.ts +5 -15
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -18
- package/dist-types/commands/ListTelemetryRulesCommand.d.ts +5 -15
- package/dist-types/commands/ListTelemetryRulesForOrganizationCommand.d.ts +5 -15
- package/dist-types/commands/StartTelemetryEnrichmentCommand.d.ts +85 -0
- package/dist-types/commands/StartTelemetryEvaluationCommand.d.ts +5 -15
- package/dist-types/commands/StartTelemetryEvaluationForOrganizationCommand.d.ts +5 -15
- package/dist-types/commands/StopTelemetryEnrichmentCommand.d.ts +84 -0
- package/dist-types/commands/StopTelemetryEvaluationCommand.d.ts +5 -15
- package/dist-types/commands/StopTelemetryEvaluationForOrganizationCommand.d.ts +5 -15
- package/dist-types/commands/TagResourceCommand.d.ts +7 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -18
- package/dist-types/commands/UpdateCentralizationRuleForOrganizationCommand.d.ts +6 -18
- package/dist-types/commands/UpdateTelemetryRuleCommand.d.ts +7 -21
- package/dist-types/commands/UpdateTelemetryRuleForOrganizationCommand.d.ts +7 -21
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +1 -4
- package/dist-types/models/models_0.d.ts +159 -318
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/ObservabilityAdmin.d.ts +54 -0
- package/dist-types/ts3.4/ObservabilityAdminClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetTelemetryEnrichmentStatusCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StartTelemetryEnrichmentCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StopTelemetryEnrichmentCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +33 -33
|
@@ -7,6 +7,7 @@ import { DeleteCentralizationRuleForOrganizationCommandInput, DeleteCentralizati
|
|
|
7
7
|
import { DeleteTelemetryRuleCommandInput, DeleteTelemetryRuleCommandOutput } from "../commands/DeleteTelemetryRuleCommand";
|
|
8
8
|
import { DeleteTelemetryRuleForOrganizationCommandInput, DeleteTelemetryRuleForOrganizationCommandOutput } from "../commands/DeleteTelemetryRuleForOrganizationCommand";
|
|
9
9
|
import { GetCentralizationRuleForOrganizationCommandInput, GetCentralizationRuleForOrganizationCommandOutput } from "../commands/GetCentralizationRuleForOrganizationCommand";
|
|
10
|
+
import { GetTelemetryEnrichmentStatusCommandInput, GetTelemetryEnrichmentStatusCommandOutput } from "../commands/GetTelemetryEnrichmentStatusCommand";
|
|
10
11
|
import { GetTelemetryEvaluationStatusCommandInput, GetTelemetryEvaluationStatusCommandOutput } from "../commands/GetTelemetryEvaluationStatusCommand";
|
|
11
12
|
import { GetTelemetryEvaluationStatusForOrganizationCommandInput, GetTelemetryEvaluationStatusForOrganizationCommandOutput } from "../commands/GetTelemetryEvaluationStatusForOrganizationCommand";
|
|
12
13
|
import { GetTelemetryRuleCommandInput, GetTelemetryRuleCommandOutput } from "../commands/GetTelemetryRuleCommand";
|
|
@@ -17,8 +18,10 @@ import { ListResourceTelemetryForOrganizationCommandInput, ListResourceTelemetry
|
|
|
17
18
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
18
19
|
import { ListTelemetryRulesCommandInput, ListTelemetryRulesCommandOutput } from "../commands/ListTelemetryRulesCommand";
|
|
19
20
|
import { ListTelemetryRulesForOrganizationCommandInput, ListTelemetryRulesForOrganizationCommandOutput } from "../commands/ListTelemetryRulesForOrganizationCommand";
|
|
21
|
+
import { StartTelemetryEnrichmentCommandInput, StartTelemetryEnrichmentCommandOutput } from "../commands/StartTelemetryEnrichmentCommand";
|
|
20
22
|
import { StartTelemetryEvaluationCommandInput, StartTelemetryEvaluationCommandOutput } from "../commands/StartTelemetryEvaluationCommand";
|
|
21
23
|
import { StartTelemetryEvaluationForOrganizationCommandInput, StartTelemetryEvaluationForOrganizationCommandOutput } from "../commands/StartTelemetryEvaluationForOrganizationCommand";
|
|
24
|
+
import { StopTelemetryEnrichmentCommandInput, StopTelemetryEnrichmentCommandOutput } from "../commands/StopTelemetryEnrichmentCommand";
|
|
22
25
|
import { StopTelemetryEvaluationCommandInput, StopTelemetryEvaluationCommandOutput } from "../commands/StopTelemetryEvaluationCommand";
|
|
23
26
|
import { StopTelemetryEvaluationForOrganizationCommandInput, StopTelemetryEvaluationForOrganizationCommandOutput } from "../commands/StopTelemetryEvaluationForOrganizationCommand";
|
|
24
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
@@ -54,6 +57,10 @@ export declare const se_DeleteTelemetryRuleForOrganizationCommand: (input: Delet
|
|
|
54
57
|
* serializeAws_restJson1GetCentralizationRuleForOrganizationCommand
|
|
55
58
|
*/
|
|
56
59
|
export declare const se_GetCentralizationRuleForOrganizationCommand: (input: GetCentralizationRuleForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
+
/**
|
|
61
|
+
* serializeAws_restJson1GetTelemetryEnrichmentStatusCommand
|
|
62
|
+
*/
|
|
63
|
+
export declare const se_GetTelemetryEnrichmentStatusCommand: (input: GetTelemetryEnrichmentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
64
|
/**
|
|
58
65
|
* serializeAws_restJson1GetTelemetryEvaluationStatusCommand
|
|
59
66
|
*/
|
|
@@ -94,6 +101,10 @@ export declare const se_ListTelemetryRulesCommand: (input: ListTelemetryRulesCom
|
|
|
94
101
|
* serializeAws_restJson1ListTelemetryRulesForOrganizationCommand
|
|
95
102
|
*/
|
|
96
103
|
export declare const se_ListTelemetryRulesForOrganizationCommand: (input: ListTelemetryRulesForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
+
/**
|
|
105
|
+
* serializeAws_restJson1StartTelemetryEnrichmentCommand
|
|
106
|
+
*/
|
|
107
|
+
export declare const se_StartTelemetryEnrichmentCommand: (input: StartTelemetryEnrichmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
108
|
/**
|
|
98
109
|
* serializeAws_restJson1StartTelemetryEvaluationCommand
|
|
99
110
|
*/
|
|
@@ -102,6 +113,10 @@ export declare const se_StartTelemetryEvaluationCommand: (input: StartTelemetryE
|
|
|
102
113
|
* serializeAws_restJson1StartTelemetryEvaluationForOrganizationCommand
|
|
103
114
|
*/
|
|
104
115
|
export declare const se_StartTelemetryEvaluationForOrganizationCommand: (input: StartTelemetryEvaluationForOrganizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
/**
|
|
117
|
+
* serializeAws_restJson1StopTelemetryEnrichmentCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const se_StopTelemetryEnrichmentCommand: (input: StopTelemetryEnrichmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
120
|
/**
|
|
106
121
|
* serializeAws_restJson1StopTelemetryEvaluationCommand
|
|
107
122
|
*/
|
|
@@ -158,6 +173,10 @@ export declare const de_DeleteTelemetryRuleForOrganizationCommand: (output: __Ht
|
|
|
158
173
|
* deserializeAws_restJson1GetCentralizationRuleForOrganizationCommand
|
|
159
174
|
*/
|
|
160
175
|
export declare const de_GetCentralizationRuleForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCentralizationRuleForOrganizationCommandOutput>;
|
|
176
|
+
/**
|
|
177
|
+
* deserializeAws_restJson1GetTelemetryEnrichmentStatusCommand
|
|
178
|
+
*/
|
|
179
|
+
export declare const de_GetTelemetryEnrichmentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTelemetryEnrichmentStatusCommandOutput>;
|
|
161
180
|
/**
|
|
162
181
|
* deserializeAws_restJson1GetTelemetryEvaluationStatusCommand
|
|
163
182
|
*/
|
|
@@ -198,6 +217,10 @@ export declare const de_ListTelemetryRulesCommand: (output: __HttpResponse, cont
|
|
|
198
217
|
* deserializeAws_restJson1ListTelemetryRulesForOrganizationCommand
|
|
199
218
|
*/
|
|
200
219
|
export declare const de_ListTelemetryRulesForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTelemetryRulesForOrganizationCommandOutput>;
|
|
220
|
+
/**
|
|
221
|
+
* deserializeAws_restJson1StartTelemetryEnrichmentCommand
|
|
222
|
+
*/
|
|
223
|
+
export declare const de_StartTelemetryEnrichmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartTelemetryEnrichmentCommandOutput>;
|
|
201
224
|
/**
|
|
202
225
|
* deserializeAws_restJson1StartTelemetryEvaluationCommand
|
|
203
226
|
*/
|
|
@@ -206,6 +229,10 @@ export declare const de_StartTelemetryEvaluationCommand: (output: __HttpResponse
|
|
|
206
229
|
* deserializeAws_restJson1StartTelemetryEvaluationForOrganizationCommand
|
|
207
230
|
*/
|
|
208
231
|
export declare const de_StartTelemetryEvaluationForOrganizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartTelemetryEvaluationForOrganizationCommandOutput>;
|
|
232
|
+
/**
|
|
233
|
+
* deserializeAws_restJson1StopTelemetryEnrichmentCommand
|
|
234
|
+
*/
|
|
235
|
+
export declare const de_StopTelemetryEnrichmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopTelemetryEnrichmentCommandOutput>;
|
|
209
236
|
/**
|
|
210
237
|
* deserializeAws_restJson1StopTelemetryEvaluationCommand
|
|
211
238
|
*/
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
GetCentralizationRuleForOrganizationCommandInput,
|
|
28
28
|
GetCentralizationRuleForOrganizationCommandOutput,
|
|
29
29
|
} from "./commands/GetCentralizationRuleForOrganizationCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetTelemetryEnrichmentStatusCommandInput,
|
|
32
|
+
GetTelemetryEnrichmentStatusCommandOutput,
|
|
33
|
+
} from "./commands/GetTelemetryEnrichmentStatusCommand";
|
|
30
34
|
import {
|
|
31
35
|
GetTelemetryEvaluationStatusCommandInput,
|
|
32
36
|
GetTelemetryEvaluationStatusCommandOutput,
|
|
@@ -67,6 +71,10 @@ import {
|
|
|
67
71
|
ListTelemetryRulesForOrganizationCommandInput,
|
|
68
72
|
ListTelemetryRulesForOrganizationCommandOutput,
|
|
69
73
|
} from "./commands/ListTelemetryRulesForOrganizationCommand";
|
|
74
|
+
import {
|
|
75
|
+
StartTelemetryEnrichmentCommandInput,
|
|
76
|
+
StartTelemetryEnrichmentCommandOutput,
|
|
77
|
+
} from "./commands/StartTelemetryEnrichmentCommand";
|
|
70
78
|
import {
|
|
71
79
|
StartTelemetryEvaluationCommandInput,
|
|
72
80
|
StartTelemetryEvaluationCommandOutput,
|
|
@@ -75,6 +83,10 @@ import {
|
|
|
75
83
|
StartTelemetryEvaluationForOrganizationCommandInput,
|
|
76
84
|
StartTelemetryEvaluationForOrganizationCommandOutput,
|
|
77
85
|
} from "./commands/StartTelemetryEvaluationForOrganizationCommand";
|
|
86
|
+
import {
|
|
87
|
+
StopTelemetryEnrichmentCommandInput,
|
|
88
|
+
StopTelemetryEnrichmentCommandOutput,
|
|
89
|
+
} from "./commands/StopTelemetryEnrichmentCommand";
|
|
78
90
|
import {
|
|
79
91
|
StopTelemetryEvaluationCommandInput,
|
|
80
92
|
StopTelemetryEvaluationCommandOutput,
|
|
@@ -226,6 +238,20 @@ export interface ObservabilityAdmin {
|
|
|
226
238
|
data?: GetCentralizationRuleForOrganizationCommandOutput
|
|
227
239
|
) => void
|
|
228
240
|
): void;
|
|
241
|
+
getTelemetryEnrichmentStatus(): Promise<GetTelemetryEnrichmentStatusCommandOutput>;
|
|
242
|
+
getTelemetryEnrichmentStatus(
|
|
243
|
+
args: GetTelemetryEnrichmentStatusCommandInput,
|
|
244
|
+
options?: __HttpHandlerOptions
|
|
245
|
+
): Promise<GetTelemetryEnrichmentStatusCommandOutput>;
|
|
246
|
+
getTelemetryEnrichmentStatus(
|
|
247
|
+
args: GetTelemetryEnrichmentStatusCommandInput,
|
|
248
|
+
cb: (err: any, data?: GetTelemetryEnrichmentStatusCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
getTelemetryEnrichmentStatus(
|
|
251
|
+
args: GetTelemetryEnrichmentStatusCommandInput,
|
|
252
|
+
options: __HttpHandlerOptions,
|
|
253
|
+
cb: (err: any, data?: GetTelemetryEnrichmentStatusCommandOutput) => void
|
|
254
|
+
): void;
|
|
229
255
|
getTelemetryEvaluationStatus(): Promise<GetTelemetryEvaluationStatusCommandOutput>;
|
|
230
256
|
getTelemetryEvaluationStatus(
|
|
231
257
|
args: GetTelemetryEvaluationStatusCommandInput,
|
|
@@ -387,6 +413,20 @@ export interface ObservabilityAdmin {
|
|
|
387
413
|
data?: ListTelemetryRulesForOrganizationCommandOutput
|
|
388
414
|
) => void
|
|
389
415
|
): void;
|
|
416
|
+
startTelemetryEnrichment(): Promise<StartTelemetryEnrichmentCommandOutput>;
|
|
417
|
+
startTelemetryEnrichment(
|
|
418
|
+
args: StartTelemetryEnrichmentCommandInput,
|
|
419
|
+
options?: __HttpHandlerOptions
|
|
420
|
+
): Promise<StartTelemetryEnrichmentCommandOutput>;
|
|
421
|
+
startTelemetryEnrichment(
|
|
422
|
+
args: StartTelemetryEnrichmentCommandInput,
|
|
423
|
+
cb: (err: any, data?: StartTelemetryEnrichmentCommandOutput) => void
|
|
424
|
+
): void;
|
|
425
|
+
startTelemetryEnrichment(
|
|
426
|
+
args: StartTelemetryEnrichmentCommandInput,
|
|
427
|
+
options: __HttpHandlerOptions,
|
|
428
|
+
cb: (err: any, data?: StartTelemetryEnrichmentCommandOutput) => void
|
|
429
|
+
): void;
|
|
390
430
|
startTelemetryEvaluation(): Promise<StartTelemetryEvaluationCommandOutput>;
|
|
391
431
|
startTelemetryEvaluation(
|
|
392
432
|
args: StartTelemetryEvaluationCommandInput,
|
|
@@ -421,6 +461,20 @@ export interface ObservabilityAdmin {
|
|
|
421
461
|
data?: StartTelemetryEvaluationForOrganizationCommandOutput
|
|
422
462
|
) => void
|
|
423
463
|
): void;
|
|
464
|
+
stopTelemetryEnrichment(): Promise<StopTelemetryEnrichmentCommandOutput>;
|
|
465
|
+
stopTelemetryEnrichment(
|
|
466
|
+
args: StopTelemetryEnrichmentCommandInput,
|
|
467
|
+
options?: __HttpHandlerOptions
|
|
468
|
+
): Promise<StopTelemetryEnrichmentCommandOutput>;
|
|
469
|
+
stopTelemetryEnrichment(
|
|
470
|
+
args: StopTelemetryEnrichmentCommandInput,
|
|
471
|
+
cb: (err: any, data?: StopTelemetryEnrichmentCommandOutput) => void
|
|
472
|
+
): void;
|
|
473
|
+
stopTelemetryEnrichment(
|
|
474
|
+
args: StopTelemetryEnrichmentCommandInput,
|
|
475
|
+
options: __HttpHandlerOptions,
|
|
476
|
+
cb: (err: any, data?: StopTelemetryEnrichmentCommandOutput) => void
|
|
477
|
+
): void;
|
|
424
478
|
stopTelemetryEvaluation(): Promise<StopTelemetryEvaluationCommandOutput>;
|
|
425
479
|
stopTelemetryEvaluation(
|
|
426
480
|
args: StopTelemetryEvaluationCommandInput,
|
|
@@ -73,6 +73,10 @@ import {
|
|
|
73
73
|
GetCentralizationRuleForOrganizationCommandInput,
|
|
74
74
|
GetCentralizationRuleForOrganizationCommandOutput,
|
|
75
75
|
} from "./commands/GetCentralizationRuleForOrganizationCommand";
|
|
76
|
+
import {
|
|
77
|
+
GetTelemetryEnrichmentStatusCommandInput,
|
|
78
|
+
GetTelemetryEnrichmentStatusCommandOutput,
|
|
79
|
+
} from "./commands/GetTelemetryEnrichmentStatusCommand";
|
|
76
80
|
import {
|
|
77
81
|
GetTelemetryEvaluationStatusCommandInput,
|
|
78
82
|
GetTelemetryEvaluationStatusCommandOutput,
|
|
@@ -113,6 +117,10 @@ import {
|
|
|
113
117
|
ListTelemetryRulesForOrganizationCommandInput,
|
|
114
118
|
ListTelemetryRulesForOrganizationCommandOutput,
|
|
115
119
|
} from "./commands/ListTelemetryRulesForOrganizationCommand";
|
|
120
|
+
import {
|
|
121
|
+
StartTelemetryEnrichmentCommandInput,
|
|
122
|
+
StartTelemetryEnrichmentCommandOutput,
|
|
123
|
+
} from "./commands/StartTelemetryEnrichmentCommand";
|
|
116
124
|
import {
|
|
117
125
|
StartTelemetryEvaluationCommandInput,
|
|
118
126
|
StartTelemetryEvaluationCommandOutput,
|
|
@@ -121,6 +129,10 @@ import {
|
|
|
121
129
|
StartTelemetryEvaluationForOrganizationCommandInput,
|
|
122
130
|
StartTelemetryEvaluationForOrganizationCommandOutput,
|
|
123
131
|
} from "./commands/StartTelemetryEvaluationForOrganizationCommand";
|
|
132
|
+
import {
|
|
133
|
+
StopTelemetryEnrichmentCommandInput,
|
|
134
|
+
StopTelemetryEnrichmentCommandOutput,
|
|
135
|
+
} from "./commands/StopTelemetryEnrichmentCommand";
|
|
124
136
|
import {
|
|
125
137
|
StopTelemetryEvaluationCommandInput,
|
|
126
138
|
StopTelemetryEvaluationCommandOutput,
|
|
@@ -164,6 +176,7 @@ export type ServiceInputTypes =
|
|
|
164
176
|
| DeleteTelemetryRuleCommandInput
|
|
165
177
|
| DeleteTelemetryRuleForOrganizationCommandInput
|
|
166
178
|
| GetCentralizationRuleForOrganizationCommandInput
|
|
179
|
+
| GetTelemetryEnrichmentStatusCommandInput
|
|
167
180
|
| GetTelemetryEvaluationStatusCommandInput
|
|
168
181
|
| GetTelemetryEvaluationStatusForOrganizationCommandInput
|
|
169
182
|
| GetTelemetryRuleCommandInput
|
|
@@ -174,8 +187,10 @@ export type ServiceInputTypes =
|
|
|
174
187
|
| ListTagsForResourceCommandInput
|
|
175
188
|
| ListTelemetryRulesCommandInput
|
|
176
189
|
| ListTelemetryRulesForOrganizationCommandInput
|
|
190
|
+
| StartTelemetryEnrichmentCommandInput
|
|
177
191
|
| StartTelemetryEvaluationCommandInput
|
|
178
192
|
| StartTelemetryEvaluationForOrganizationCommandInput
|
|
193
|
+
| StopTelemetryEnrichmentCommandInput
|
|
179
194
|
| StopTelemetryEvaluationCommandInput
|
|
180
195
|
| StopTelemetryEvaluationForOrganizationCommandInput
|
|
181
196
|
| TagResourceCommandInput
|
|
@@ -191,6 +206,7 @@ export type ServiceOutputTypes =
|
|
|
191
206
|
| DeleteTelemetryRuleCommandOutput
|
|
192
207
|
| DeleteTelemetryRuleForOrganizationCommandOutput
|
|
193
208
|
| GetCentralizationRuleForOrganizationCommandOutput
|
|
209
|
+
| GetTelemetryEnrichmentStatusCommandOutput
|
|
194
210
|
| GetTelemetryEvaluationStatusCommandOutput
|
|
195
211
|
| GetTelemetryEvaluationStatusForOrganizationCommandOutput
|
|
196
212
|
| GetTelemetryRuleCommandOutput
|
|
@@ -201,8 +217,10 @@ export type ServiceOutputTypes =
|
|
|
201
217
|
| ListTagsForResourceCommandOutput
|
|
202
218
|
| ListTelemetryRulesCommandOutput
|
|
203
219
|
| ListTelemetryRulesForOrganizationCommandOutput
|
|
220
|
+
| StartTelemetryEnrichmentCommandOutput
|
|
204
221
|
| StartTelemetryEvaluationCommandOutput
|
|
205
222
|
| StartTelemetryEvaluationForOrganizationCommandOutput
|
|
223
|
+
| StopTelemetryEnrichmentCommandOutput
|
|
206
224
|
| StopTelemetryEvaluationCommandOutput
|
|
207
225
|
| StopTelemetryEvaluationForOrganizationCommandOutput
|
|
208
226
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetTelemetryEnrichmentStatusOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ObservabilityAdminClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../ObservabilityAdminClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetTelemetryEnrichmentStatusCommandInput {}
|
|
12
|
+
export interface GetTelemetryEnrichmentStatusCommandOutput
|
|
13
|
+
extends GetTelemetryEnrichmentStatusOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetTelemetryEnrichmentStatusCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetTelemetryEnrichmentStatusCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetTelemetryEnrichmentStatusCommandInput,
|
|
20
|
+
GetTelemetryEnrichmentStatusCommandOutput,
|
|
21
|
+
ObservabilityAdminClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [GetTelemetryEnrichmentStatusCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetTelemetryEnrichmentStatusCommandInput,
|
|
29
|
+
GetTelemetryEnrichmentStatusCommandOutput,
|
|
30
|
+
ObservabilityAdminClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetTelemetryEnrichmentStatusCommand extends GetTelemetryEnrichmentStatusCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: {};
|
|
40
|
+
output: GetTelemetryEnrichmentStatusOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetTelemetryEnrichmentStatusCommandInput;
|
|
44
|
+
output: GetTelemetryEnrichmentStatusCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { StartTelemetryEnrichmentOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ObservabilityAdminClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../ObservabilityAdminClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StartTelemetryEnrichmentCommandInput {}
|
|
12
|
+
export interface StartTelemetryEnrichmentCommandOutput
|
|
13
|
+
extends StartTelemetryEnrichmentOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const StartTelemetryEnrichmentCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: StartTelemetryEnrichmentCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
StartTelemetryEnrichmentCommandInput,
|
|
20
|
+
StartTelemetryEnrichmentCommandOutput,
|
|
21
|
+
ObservabilityAdminClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [StartTelemetryEnrichmentCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
StartTelemetryEnrichmentCommandInput,
|
|
29
|
+
StartTelemetryEnrichmentCommandOutput,
|
|
30
|
+
ObservabilityAdminClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class StartTelemetryEnrichmentCommand extends StartTelemetryEnrichmentCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: {};
|
|
40
|
+
output: StartTelemetryEnrichmentOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: StartTelemetryEnrichmentCommandInput;
|
|
44
|
+
output: StartTelemetryEnrichmentCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { StopTelemetryEnrichmentOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ObservabilityAdminClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../ObservabilityAdminClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StopTelemetryEnrichmentCommandInput {}
|
|
12
|
+
export interface StopTelemetryEnrichmentCommandOutput
|
|
13
|
+
extends StopTelemetryEnrichmentOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const StopTelemetryEnrichmentCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: StopTelemetryEnrichmentCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
StopTelemetryEnrichmentCommandInput,
|
|
20
|
+
StopTelemetryEnrichmentCommandOutput,
|
|
21
|
+
ObservabilityAdminClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [StopTelemetryEnrichmentCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
StopTelemetryEnrichmentCommandInput,
|
|
29
|
+
StopTelemetryEnrichmentCommandOutput,
|
|
30
|
+
ObservabilityAdminClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class StopTelemetryEnrichmentCommand extends StopTelemetryEnrichmentCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: {};
|
|
40
|
+
output: StopTelemetryEnrichmentOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: StopTelemetryEnrichmentCommandInput;
|
|
44
|
+
output: StopTelemetryEnrichmentCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./DeleteCentralizationRuleForOrganizationCommand";
|
|
|
5
5
|
export * from "./DeleteTelemetryRuleCommand";
|
|
6
6
|
export * from "./DeleteTelemetryRuleForOrganizationCommand";
|
|
7
7
|
export * from "./GetCentralizationRuleForOrganizationCommand";
|
|
8
|
+
export * from "./GetTelemetryEnrichmentStatusCommand";
|
|
8
9
|
export * from "./GetTelemetryEvaluationStatusCommand";
|
|
9
10
|
export * from "./GetTelemetryEvaluationStatusForOrganizationCommand";
|
|
10
11
|
export * from "./GetTelemetryRuleCommand";
|
|
@@ -15,8 +16,10 @@ export * from "./ListResourceTelemetryForOrganizationCommand";
|
|
|
15
16
|
export * from "./ListTagsForResourceCommand";
|
|
16
17
|
export * from "./ListTelemetryRulesCommand";
|
|
17
18
|
export * from "./ListTelemetryRulesForOrganizationCommand";
|
|
19
|
+
export * from "./StartTelemetryEnrichmentCommand";
|
|
18
20
|
export * from "./StartTelemetryEvaluationCommand";
|
|
19
21
|
export * from "./StartTelemetryEvaluationForOrganizationCommand";
|
|
22
|
+
export * from "./StopTelemetryEnrichmentCommand";
|
|
20
23
|
export * from "./StopTelemetryEvaluationCommand";
|
|
21
24
|
export * from "./StopTelemetryEvaluationForOrganizationCommand";
|
|
22
25
|
export * from "./TagResourceCommand";
|
|
@@ -215,6 +215,17 @@ export interface GetCentralizationRuleForOrganizationOutput {
|
|
|
215
215
|
FailureReason?: CentralizationFailureReason | undefined;
|
|
216
216
|
CentralizationRule?: CentralizationRule | undefined;
|
|
217
217
|
}
|
|
218
|
+
export declare const TelemetryEnrichmentStatus: {
|
|
219
|
+
readonly IMPAIRED: "Impaired";
|
|
220
|
+
readonly RUNNING: "Running";
|
|
221
|
+
readonly STOPPED: "Stopped";
|
|
222
|
+
};
|
|
223
|
+
export type TelemetryEnrichmentStatus =
|
|
224
|
+
(typeof TelemetryEnrichmentStatus)[keyof typeof TelemetryEnrichmentStatus];
|
|
225
|
+
export interface GetTelemetryEnrichmentStatusOutput {
|
|
226
|
+
Status?: TelemetryEnrichmentStatus | undefined;
|
|
227
|
+
AwsResourceExplorerManagedViewArn?: string | undefined;
|
|
228
|
+
}
|
|
218
229
|
export declare const Status: {
|
|
219
230
|
readonly FAILED_START: "FAILED_START";
|
|
220
231
|
readonly FAILED_STOP: "FAILED_STOP";
|
|
@@ -343,6 +354,13 @@ export interface ListTelemetryRulesForOrganizationOutput {
|
|
|
343
354
|
TelemetryRuleSummaries?: TelemetryRuleSummary[] | undefined;
|
|
344
355
|
NextToken?: string | undefined;
|
|
345
356
|
}
|
|
357
|
+
export interface StartTelemetryEnrichmentOutput {
|
|
358
|
+
Status?: TelemetryEnrichmentStatus | undefined;
|
|
359
|
+
AwsResourceExplorerManagedViewArn?: string | undefined;
|
|
360
|
+
}
|
|
361
|
+
export interface StopTelemetryEnrichmentOutput {
|
|
362
|
+
Status?: TelemetryEnrichmentStatus | undefined;
|
|
363
|
+
}
|
|
346
364
|
export interface TagResourceInput {
|
|
347
365
|
ResourceARN: string | undefined;
|
|
348
366
|
Tags: Record<string, string> | undefined;
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
GetCentralizationRuleForOrganizationCommandInput,
|
|
32
32
|
GetCentralizationRuleForOrganizationCommandOutput,
|
|
33
33
|
} from "../commands/GetCentralizationRuleForOrganizationCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetTelemetryEnrichmentStatusCommandInput,
|
|
36
|
+
GetTelemetryEnrichmentStatusCommandOutput,
|
|
37
|
+
} from "../commands/GetTelemetryEnrichmentStatusCommand";
|
|
34
38
|
import {
|
|
35
39
|
GetTelemetryEvaluationStatusCommandInput,
|
|
36
40
|
GetTelemetryEvaluationStatusCommandOutput,
|
|
@@ -71,6 +75,10 @@ import {
|
|
|
71
75
|
ListTelemetryRulesForOrganizationCommandInput,
|
|
72
76
|
ListTelemetryRulesForOrganizationCommandOutput,
|
|
73
77
|
} from "../commands/ListTelemetryRulesForOrganizationCommand";
|
|
78
|
+
import {
|
|
79
|
+
StartTelemetryEnrichmentCommandInput,
|
|
80
|
+
StartTelemetryEnrichmentCommandOutput,
|
|
81
|
+
} from "../commands/StartTelemetryEnrichmentCommand";
|
|
74
82
|
import {
|
|
75
83
|
StartTelemetryEvaluationCommandInput,
|
|
76
84
|
StartTelemetryEvaluationCommandOutput,
|
|
@@ -79,6 +87,10 @@ import {
|
|
|
79
87
|
StartTelemetryEvaluationForOrganizationCommandInput,
|
|
80
88
|
StartTelemetryEvaluationForOrganizationCommandOutput,
|
|
81
89
|
} from "../commands/StartTelemetryEvaluationForOrganizationCommand";
|
|
90
|
+
import {
|
|
91
|
+
StopTelemetryEnrichmentCommandInput,
|
|
92
|
+
StopTelemetryEnrichmentCommandOutput,
|
|
93
|
+
} from "../commands/StopTelemetryEnrichmentCommand";
|
|
82
94
|
import {
|
|
83
95
|
StopTelemetryEvaluationCommandInput,
|
|
84
96
|
StopTelemetryEvaluationCommandOutput,
|
|
@@ -135,6 +147,10 @@ export declare const se_GetCentralizationRuleForOrganizationCommand: (
|
|
|
135
147
|
input: GetCentralizationRuleForOrganizationCommandInput,
|
|
136
148
|
context: __SerdeContext
|
|
137
149
|
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_GetTelemetryEnrichmentStatusCommand: (
|
|
151
|
+
input: GetTelemetryEnrichmentStatusCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
138
154
|
export declare const se_GetTelemetryEvaluationStatusCommand: (
|
|
139
155
|
input: GetTelemetryEvaluationStatusCommandInput,
|
|
140
156
|
context: __SerdeContext
|
|
@@ -175,6 +191,10 @@ export declare const se_ListTelemetryRulesForOrganizationCommand: (
|
|
|
175
191
|
input: ListTelemetryRulesForOrganizationCommandInput,
|
|
176
192
|
context: __SerdeContext
|
|
177
193
|
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_StartTelemetryEnrichmentCommand: (
|
|
195
|
+
input: StartTelemetryEnrichmentCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
178
198
|
export declare const se_StartTelemetryEvaluationCommand: (
|
|
179
199
|
input: StartTelemetryEvaluationCommandInput,
|
|
180
200
|
context: __SerdeContext
|
|
@@ -183,6 +203,10 @@ export declare const se_StartTelemetryEvaluationForOrganizationCommand: (
|
|
|
183
203
|
input: StartTelemetryEvaluationForOrganizationCommandInput,
|
|
184
204
|
context: __SerdeContext
|
|
185
205
|
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const se_StopTelemetryEnrichmentCommand: (
|
|
207
|
+
input: StopTelemetryEnrichmentCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
186
210
|
export declare const se_StopTelemetryEvaluationCommand: (
|
|
187
211
|
input: StopTelemetryEvaluationCommandInput,
|
|
188
212
|
context: __SerdeContext
|
|
@@ -239,6 +263,10 @@ export declare const de_GetCentralizationRuleForOrganizationCommand: (
|
|
|
239
263
|
output: __HttpResponse,
|
|
240
264
|
context: __SerdeContext
|
|
241
265
|
) => Promise<GetCentralizationRuleForOrganizationCommandOutput>;
|
|
266
|
+
export declare const de_GetTelemetryEnrichmentStatusCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<GetTelemetryEnrichmentStatusCommandOutput>;
|
|
242
270
|
export declare const de_GetTelemetryEvaluationStatusCommand: (
|
|
243
271
|
output: __HttpResponse,
|
|
244
272
|
context: __SerdeContext
|
|
@@ -279,6 +307,10 @@ export declare const de_ListTelemetryRulesForOrganizationCommand: (
|
|
|
279
307
|
output: __HttpResponse,
|
|
280
308
|
context: __SerdeContext
|
|
281
309
|
) => Promise<ListTelemetryRulesForOrganizationCommandOutput>;
|
|
310
|
+
export declare const de_StartTelemetryEnrichmentCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<StartTelemetryEnrichmentCommandOutput>;
|
|
282
314
|
export declare const de_StartTelemetryEvaluationCommand: (
|
|
283
315
|
output: __HttpResponse,
|
|
284
316
|
context: __SerdeContext
|
|
@@ -287,6 +319,10 @@ export declare const de_StartTelemetryEvaluationForOrganizationCommand: (
|
|
|
287
319
|
output: __HttpResponse,
|
|
288
320
|
context: __SerdeContext
|
|
289
321
|
) => Promise<StartTelemetryEvaluationForOrganizationCommandOutput>;
|
|
322
|
+
export declare const de_StopTelemetryEnrichmentCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<StopTelemetryEnrichmentCommandOutput>;
|
|
290
326
|
export declare const de_StopTelemetryEvaluationCommand: (
|
|
291
327
|
output: __HttpResponse,
|
|
292
328
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-observabilityadmin",
|
|
3
3
|
"description": "AWS SDK for JavaScript Observabilityadmin Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.910.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-observabilityadmin",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.3.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.910.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.910.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.910.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.910.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.910.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.910.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.910.0",
|
|
30
|
+
"@aws-sdk/types": "3.910.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.910.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.910.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.910.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.3.2",
|
|
35
|
+
"@smithy/core": "^3.16.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.3",
|
|
37
|
+
"@smithy/hash-node": "^4.2.2",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.2",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.2",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.3",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.3",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.2",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.2",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.2",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.1",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.2",
|
|
47
|
+
"@smithy/smithy-client": "^4.8.1",
|
|
48
|
+
"@smithy/types": "^4.7.1",
|
|
49
|
+
"@smithy/url-parser": "^4.2.2",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.2",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.3",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.2",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.2",
|
|
57
|
+
"@smithy/util-retry": "^4.2.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|