@aws-sdk/client-observabilityadmin 3.986.0 → 3.988.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/dist-cjs/index.js +59 -1333
- package/dist-cjs/models/ObservabilityAdminServiceException.js +12 -0
- package/dist-cjs/models/errors.js +150 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1016 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +73 -67
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ObservabilityAdminServiceException = require('./models/ObservabilityAdminServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1141 +113,6 @@ class ObservabilityAdminClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ObservabilityAdminServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ObservabilityAdminServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends ObservabilityAdminServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
amznErrorType;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
this.Message = opts.Message;
|
|
133
|
-
this.amznErrorType = opts.amznErrorType;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
class ConflictException extends ObservabilityAdminServiceException {
|
|
137
|
-
name = "ConflictException";
|
|
138
|
-
$fault = "client";
|
|
139
|
-
Message;
|
|
140
|
-
ResourceId;
|
|
141
|
-
ResourceType;
|
|
142
|
-
constructor(opts) {
|
|
143
|
-
super({
|
|
144
|
-
name: "ConflictException",
|
|
145
|
-
$fault: "client",
|
|
146
|
-
...opts,
|
|
147
|
-
});
|
|
148
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
149
|
-
this.Message = opts.Message;
|
|
150
|
-
this.ResourceId = opts.ResourceId;
|
|
151
|
-
this.ResourceType = opts.ResourceType;
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
class InternalServerException extends ObservabilityAdminServiceException {
|
|
155
|
-
name = "InternalServerException";
|
|
156
|
-
$fault = "server";
|
|
157
|
-
Message;
|
|
158
|
-
amznErrorType;
|
|
159
|
-
retryAfterSeconds;
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "InternalServerException",
|
|
163
|
-
$fault: "server",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
167
|
-
this.Message = opts.Message;
|
|
168
|
-
this.amznErrorType = opts.amznErrorType;
|
|
169
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
class ServiceQuotaExceededException extends ObservabilityAdminServiceException {
|
|
173
|
-
name = "ServiceQuotaExceededException";
|
|
174
|
-
$fault = "client";
|
|
175
|
-
Message;
|
|
176
|
-
ResourceId;
|
|
177
|
-
ResourceType;
|
|
178
|
-
ServiceCode;
|
|
179
|
-
QuotaCode;
|
|
180
|
-
amznErrorType;
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "ServiceQuotaExceededException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
188
|
-
this.Message = opts.Message;
|
|
189
|
-
this.ResourceId = opts.ResourceId;
|
|
190
|
-
this.ResourceType = opts.ResourceType;
|
|
191
|
-
this.ServiceCode = opts.ServiceCode;
|
|
192
|
-
this.QuotaCode = opts.QuotaCode;
|
|
193
|
-
this.amznErrorType = opts.amznErrorType;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
class TooManyRequestsException extends ObservabilityAdminServiceException {
|
|
197
|
-
name = "TooManyRequestsException";
|
|
198
|
-
$fault = "client";
|
|
199
|
-
Message;
|
|
200
|
-
constructor(opts) {
|
|
201
|
-
super({
|
|
202
|
-
name: "TooManyRequestsException",
|
|
203
|
-
$fault: "client",
|
|
204
|
-
...opts,
|
|
205
|
-
});
|
|
206
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
207
|
-
this.Message = opts.Message;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class ValidationException extends ObservabilityAdminServiceException {
|
|
211
|
-
name = "ValidationException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
Message;
|
|
214
|
-
Errors;
|
|
215
|
-
constructor(opts) {
|
|
216
|
-
super({
|
|
217
|
-
name: "ValidationException",
|
|
218
|
-
$fault: "client",
|
|
219
|
-
...opts,
|
|
220
|
-
});
|
|
221
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
222
|
-
this.Message = opts.Message;
|
|
223
|
-
this.Errors = opts.Errors;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
class ResourceNotFoundException extends ObservabilityAdminServiceException {
|
|
227
|
-
name = "ResourceNotFoundException";
|
|
228
|
-
$fault = "client";
|
|
229
|
-
Message;
|
|
230
|
-
ResourceId;
|
|
231
|
-
ResourceType;
|
|
232
|
-
constructor(opts) {
|
|
233
|
-
super({
|
|
234
|
-
name: "ResourceNotFoundException",
|
|
235
|
-
$fault: "client",
|
|
236
|
-
...opts,
|
|
237
|
-
});
|
|
238
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
239
|
-
this.Message = opts.Message;
|
|
240
|
-
this.ResourceId = opts.ResourceId;
|
|
241
|
-
this.ResourceType = opts.ResourceType;
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
class InvalidStateException extends ObservabilityAdminServiceException {
|
|
245
|
-
name = "InvalidStateException";
|
|
246
|
-
$fault = "client";
|
|
247
|
-
Message;
|
|
248
|
-
constructor(opts) {
|
|
249
|
-
super({
|
|
250
|
-
name: "InvalidStateException",
|
|
251
|
-
$fault: "client",
|
|
252
|
-
...opts,
|
|
253
|
-
});
|
|
254
|
-
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
255
|
-
this.Message = opts.Message;
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
const _A = "Action";
|
|
260
|
-
const _AC = "ActionCondition";
|
|
261
|
-
const _ADE = "AccessDeniedException";
|
|
262
|
-
const _AES = "AdvancedEventSelector";
|
|
263
|
-
const _AESd = "AdvancedEventSelectors";
|
|
264
|
-
const _AFS = "AdvancedFieldSelector";
|
|
265
|
-
const _AI = "AccountIdentifiers";
|
|
266
|
-
const _AIc = "AccountIdentifier";
|
|
267
|
-
const _AR = "AllRegions";
|
|
268
|
-
const _AREMVA = "AwsResourceExplorerManagedViewArn";
|
|
269
|
-
const _Ac = "Account";
|
|
270
|
-
const _Ar = "Arn";
|
|
271
|
-
const _B = "Behavior";
|
|
272
|
-
const _BC = "BackupConfiguration";
|
|
273
|
-
const _Bo = "Body";
|
|
274
|
-
const _C = "Condition";
|
|
275
|
-
const _CAI = "CreatorAccountId";
|
|
276
|
-
const _CCRFO = "CreateCentralizationRuleForOrganization";
|
|
277
|
-
const _CCRFOI = "CreateCentralizationRuleForOrganizationInput";
|
|
278
|
-
const _CCRFOO = "CreateCentralizationRuleForOrganizationOutput";
|
|
279
|
-
const _CE = "ConflictException";
|
|
280
|
-
const _CP = "CloudtrailParameters";
|
|
281
|
-
const _CR = "CentralizationRule";
|
|
282
|
-
const _CRD = "CentralizationRuleDestination";
|
|
283
|
-
const _CRS = "CentralizationRuleSource";
|
|
284
|
-
const _CRSe = "CentralizationRuleSummary";
|
|
285
|
-
const _CRSen = "CentralizationRuleSummaries";
|
|
286
|
-
const _CRr = "CreatedRegion";
|
|
287
|
-
const _CS = "ConfigurationSummary";
|
|
288
|
-
const _CSTI = "CreateS3TableIntegration";
|
|
289
|
-
const _CSTII = "CreateS3TableIntegrationInput";
|
|
290
|
-
const _CSTIO = "CreateS3TableIntegrationOutput";
|
|
291
|
-
const _CTP = "CreateTelemetryPipeline";
|
|
292
|
-
const _CTPI = "CreateTelemetryPipelineInput";
|
|
293
|
-
const _CTPO = "CreateTelemetryPipelineOutput";
|
|
294
|
-
const _CTR = "CreateTelemetryRule";
|
|
295
|
-
const _CTRFO = "CreateTelemetryRuleForOrganization";
|
|
296
|
-
const _CTRFOI = "CreateTelemetryRuleForOrganizationInput";
|
|
297
|
-
const _CTRFOO = "CreateTelemetryRuleForOrganizationOutput";
|
|
298
|
-
const _CTRI = "CreateTelemetryRuleInput";
|
|
299
|
-
const _CTRO = "CreateTelemetryRuleOutput";
|
|
300
|
-
const _CTS = "CreatedTimeStamp";
|
|
301
|
-
const _Co = "Configuration";
|
|
302
|
-
const _Con = "Conditions";
|
|
303
|
-
const _D = "Destination";
|
|
304
|
-
const _DAI = "DestinationAccountId";
|
|
305
|
-
const _DB = "DefaultBehavior";
|
|
306
|
-
const _DC = "DestinationConfiguration";
|
|
307
|
-
const _DCRFO = "DeleteCentralizationRuleForOrganization";
|
|
308
|
-
const _DCRFOI = "DeleteCentralizationRuleForOrganizationInput";
|
|
309
|
-
const _DLC = "DestinationLogsConfiguration";
|
|
310
|
-
const _DP = "DestinationPattern";
|
|
311
|
-
const _DR = "DestinationRegion";
|
|
312
|
-
const _DS = "DataSources";
|
|
313
|
-
const _DSTI = "DeleteS3TableIntegration";
|
|
314
|
-
const _DSTII = "DeleteS3TableIntegrationInput";
|
|
315
|
-
const _DSa = "DataSource";
|
|
316
|
-
const _DT = "DestinationType";
|
|
317
|
-
const _DTBA = "DestinationTableBucketArn";
|
|
318
|
-
const _DTP = "DeleteTelemetryPipeline";
|
|
319
|
-
const _DTPI = "DeleteTelemetryPipelineInput";
|
|
320
|
-
const _DTPO = "DeleteTelemetryPipelineOutput";
|
|
321
|
-
const _DTR = "DeleteTelemetryRule";
|
|
322
|
-
const _DTRFO = "DeleteTelemetryRuleForOrganization";
|
|
323
|
-
const _DTRFOI = "DeleteTelemetryRuleForOrganizationInput";
|
|
324
|
-
const _DTRI = "DeleteTelemetryRuleInput";
|
|
325
|
-
const _Da = "Data";
|
|
326
|
-
const _De = "Description";
|
|
327
|
-
const _E = "Equals";
|
|
328
|
-
const _ECRS = "EncryptionConflictResolutionStrategy";
|
|
329
|
-
const _ELBLBLP = "ELBLoadBalancerLoggingParameters";
|
|
330
|
-
const _ELGS = "EncryptedLogGroupStrategy";
|
|
331
|
-
const _ES = "EncryptionStrategy";
|
|
332
|
-
const _EW = "EndsWith";
|
|
333
|
-
const _En = "Encryption";
|
|
334
|
-
const _Er = "Error";
|
|
335
|
-
const _Err = "Errors";
|
|
336
|
-
const _F = "Field";
|
|
337
|
-
const _FD = "FieldDelimiter";
|
|
338
|
-
const _FM = "FieldMap";
|
|
339
|
-
const _FR = "FailureReason";
|
|
340
|
-
const _FS = "FieldSelectors";
|
|
341
|
-
const _FTM = "FieldToMatch";
|
|
342
|
-
const _Fi = "Filter";
|
|
343
|
-
const _Fil = "Filters";
|
|
344
|
-
const _GCRFO = "GetCentralizationRuleForOrganization";
|
|
345
|
-
const _GCRFOI = "GetCentralizationRuleForOrganizationInput";
|
|
346
|
-
const _GCRFOO = "GetCentralizationRuleForOrganizationOutput";
|
|
347
|
-
const _GSTI = "GetS3TableIntegration";
|
|
348
|
-
const _GSTII = "GetS3TableIntegrationInput";
|
|
349
|
-
const _GSTIO = "GetS3TableIntegrationOutput";
|
|
350
|
-
const _GTES = "GetTelemetryEnrichmentStatus";
|
|
351
|
-
const _GTESFO = "GetTelemetryEvaluationStatusForOrganization";
|
|
352
|
-
const _GTESFOO = "GetTelemetryEvaluationStatusForOrganizationOutput";
|
|
353
|
-
const _GTESO = "GetTelemetryEnrichmentStatusOutput";
|
|
354
|
-
const _GTESOe = "GetTelemetryEvaluationStatusOutput";
|
|
355
|
-
const _GTESe = "GetTelemetryEvaluationStatus";
|
|
356
|
-
const _GTP = "GetTelemetryPipeline";
|
|
357
|
-
const _GTPI = "GetTelemetryPipelineInput";
|
|
358
|
-
const _GTPO = "GetTelemetryPipelineOutput";
|
|
359
|
-
const _GTR = "GetTelemetryRule";
|
|
360
|
-
const _GTRFO = "GetTelemetryRuleForOrganization";
|
|
361
|
-
const _GTRFOI = "GetTelemetryRuleForOrganizationInput";
|
|
362
|
-
const _GTRFOO = "GetTelemetryRuleForOrganizationOutput";
|
|
363
|
-
const _GTRI = "GetTelemetryRuleInput";
|
|
364
|
-
const _GTRO = "GetTelemetryRuleOutput";
|
|
365
|
-
const _IS = "IntegrationSummary";
|
|
366
|
-
const _ISE = "InternalServerException";
|
|
367
|
-
const _ISEn = "InvalidStateException";
|
|
368
|
-
const _ISn = "IntegrationSummaries";
|
|
369
|
-
const _KKA = "KmsKeyArn";
|
|
370
|
-
const _LBC = "LogsBackupConfiguration";
|
|
371
|
-
const _LCRFO = "ListCentralizationRulesForOrganization";
|
|
372
|
-
const _LCRFOI = "ListCentralizationRulesForOrganizationInput";
|
|
373
|
-
const _LCRFOO = "ListCentralizationRulesForOrganizationOutput";
|
|
374
|
-
const _LDP = "LogDeliveryParameters";
|
|
375
|
-
const _LEC = "LogsEncryptionConfiguration";
|
|
376
|
-
const _LF = "LoggingFilter";
|
|
377
|
-
const _LFo = "LogFormat";
|
|
378
|
-
const _LGSC = "LogGroupSelectionCriteria";
|
|
379
|
-
const _LN = "LabelName";
|
|
380
|
-
const _LNC = "LabelNameCondition";
|
|
381
|
-
const _LRT = "ListResourceTelemetry";
|
|
382
|
-
const _LRTFO = "ListResourceTelemetryForOrganization";
|
|
383
|
-
const _LRTFOI = "ListResourceTelemetryForOrganizationInput";
|
|
384
|
-
const _LRTFOO = "ListResourceTelemetryForOrganizationOutput";
|
|
385
|
-
const _LRTI = "ListResourceTelemetryInput";
|
|
386
|
-
const _LRTO = "ListResourceTelemetryOutput";
|
|
387
|
-
const _LSTI = "ListS3TableIntegrations";
|
|
388
|
-
const _LSTII = "ListS3TableIntegrationsInput";
|
|
389
|
-
const _LSTIO = "ListS3TableIntegrationsOutput";
|
|
390
|
-
const _LT = "LogTypes";
|
|
391
|
-
const _LTFR = "ListTagsForResource";
|
|
392
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
393
|
-
const _LTFRO = "ListTagsForResourceOutput";
|
|
394
|
-
const _LTP = "ListTelemetryPipelines";
|
|
395
|
-
const _LTPI = "ListTelemetryPipelinesInput";
|
|
396
|
-
const _LTPO = "ListTelemetryPipelinesOutput";
|
|
397
|
-
const _LTR = "ListTelemetryRules";
|
|
398
|
-
const _LTRFO = "ListTelemetryRulesForOrganization";
|
|
399
|
-
const _LTRFOI = "ListTelemetryRulesForOrganizationInput";
|
|
400
|
-
const _LTRFOO = "ListTelemetryRulesForOrganizationOutput";
|
|
401
|
-
const _LTRI = "ListTelemetryRulesInput";
|
|
402
|
-
const _LTRO = "ListTelemetryRulesOutput";
|
|
403
|
-
const _LTo = "LogType";
|
|
404
|
-
const _LUTS = "LastUpdateTimeStamp";
|
|
405
|
-
const _M = "Message";
|
|
406
|
-
const _MAI = "MaxAggregationInterval";
|
|
407
|
-
const _MR = "MaxResults";
|
|
408
|
-
const _Me = "Method";
|
|
409
|
-
const _N = "Name";
|
|
410
|
-
const _NE = "NotEquals";
|
|
411
|
-
const _NEW = "NotEndsWith";
|
|
412
|
-
const _NSW = "NotStartsWith";
|
|
413
|
-
const _NT = "NextToken";
|
|
414
|
-
const _OF = "OutputFormat";
|
|
415
|
-
const _P = "Processors";
|
|
416
|
-
const _PC = "ProcessorCount";
|
|
417
|
-
const _PI = "PipelineIdentifier";
|
|
418
|
-
const _PO = "PipelineOutput";
|
|
419
|
-
const _POE = "PipelineOutputError";
|
|
420
|
-
const _POi = "PipelineOutputs";
|
|
421
|
-
const _PS = "PipelineSummaries";
|
|
422
|
-
const _Pi = "Pipeline";
|
|
423
|
-
const _QC = "QuotaCode";
|
|
424
|
-
const _QS = "QueryString";
|
|
425
|
-
const _R = "Region";
|
|
426
|
-
const _RA = "RuleArn";
|
|
427
|
-
const _RARN = "ResourceARN";
|
|
428
|
-
const _RA_ = "Retry-After";
|
|
429
|
-
const _RAo = "RoleArn";
|
|
430
|
-
const _RF = "RedactedFields";
|
|
431
|
-
const _RH = "RuleHealth";
|
|
432
|
-
const _RI = "ResourceId";
|
|
433
|
-
const _RID = "RetentionInDays";
|
|
434
|
-
const _RIP = "ResourceIdentifierPrefix";
|
|
435
|
-
const _RIe = "ResourceIdentifier";
|
|
436
|
-
const _RIu = "RuleIdentifier";
|
|
437
|
-
const _RN = "RuleName";
|
|
438
|
-
const _RNFE = "ResourceNotFoundException";
|
|
439
|
-
const _RNP = "RuleNamePrefix";
|
|
440
|
-
const _RT = "ResourceType";
|
|
441
|
-
const _RTe = "ResourceTypes";
|
|
442
|
-
const _RTes = "ResourceTags";
|
|
443
|
-
const _Re = "Regions";
|
|
444
|
-
const _Rea = "Reason";
|
|
445
|
-
const _Rec = "Record";
|
|
446
|
-
const _Reco = "Records";
|
|
447
|
-
const _Req = "Requirement";
|
|
448
|
-
const _Res = "Results";
|
|
449
|
-
const _Ru = "Rule";
|
|
450
|
-
const _S = "Source";
|
|
451
|
-
const _SA = "SseAlgorithm";
|
|
452
|
-
const _SAI = "SourceAccountIds";
|
|
453
|
-
const _SC = "ServiceCode";
|
|
454
|
-
const _SCe = "SelectionCriteria";
|
|
455
|
-
const _SH = "SingleHeader";
|
|
456
|
-
const _SLC = "SourceLogsConfiguration";
|
|
457
|
-
const _SOUI = "SourceOrganizationUnitIds";
|
|
458
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
459
|
-
const _SR = "StatusReason";
|
|
460
|
-
const _STE = "StartTelemetryEnrichment";
|
|
461
|
-
const _STEFO = "StartTelemetryEvaluationForOrganization";
|
|
462
|
-
const _STEFOt = "StopTelemetryEvaluationForOrganization";
|
|
463
|
-
const _STEO = "StartTelemetryEnrichmentOutput";
|
|
464
|
-
const _STEOt = "StopTelemetryEnrichmentOutput";
|
|
465
|
-
const _STEt = "StartTelemetryEvaluation";
|
|
466
|
-
const _STEto = "StopTelemetryEnrichment";
|
|
467
|
-
const _STEtop = "StopTelemetryEvaluation";
|
|
468
|
-
const _SW = "StartsWith";
|
|
469
|
-
const _Sc = "Scope";
|
|
470
|
-
const _Si = "Sinks";
|
|
471
|
-
const _So = "Sources";
|
|
472
|
-
const _St = "Status";
|
|
473
|
-
const _T = "Tags";
|
|
474
|
-
const _TC = "TelemetryConfigurations";
|
|
475
|
-
const _TCS = "TelemetryConfigurationState";
|
|
476
|
-
const _TCe = "TelemetryConfiguration";
|
|
477
|
-
const _TDC = "TelemetryDestinationConfiguration";
|
|
478
|
-
const _TK = "TagKeys";
|
|
479
|
-
const _TMRE = "TooManyRequestsException";
|
|
480
|
-
const _TP = "TelemetryPipeline";
|
|
481
|
-
const _TPC = "TelemetryPipelineConfiguration";
|
|
482
|
-
const _TPS = "TelemetryPipelineSummary";
|
|
483
|
-
const _TPSR = "TelemetryPipelineStatusReason";
|
|
484
|
-
const _TPSe = "TelemetryPipelineSummaries";
|
|
485
|
-
const _TR = "TelemetryRule";
|
|
486
|
-
const _TRI = "TagResourceInput";
|
|
487
|
-
const _TRS = "TelemetryRuleSummaries";
|
|
488
|
-
const _TRSe = "TelemetryRuleSummary";
|
|
489
|
-
const _TRa = "TagResource";
|
|
490
|
-
const _TST = "TelemetrySourceTypes";
|
|
491
|
-
const _TT = "TelemetryType";
|
|
492
|
-
const _TTP = "TestTelemetryPipeline";
|
|
493
|
-
const _TTPI = "TestTelemetryPipelineInput";
|
|
494
|
-
const _TTPO = "TestTelemetryPipelineOutput";
|
|
495
|
-
const _TTr = "TrafficType";
|
|
496
|
-
const _Ty = "Type";
|
|
497
|
-
const _UCRFO = "UpdateCentralizationRuleForOrganization";
|
|
498
|
-
const _UCRFOI = "UpdateCentralizationRuleForOrganizationInput";
|
|
499
|
-
const _UCRFOO = "UpdateCentralizationRuleForOrganizationOutput";
|
|
500
|
-
const _UP = "UriPath";
|
|
501
|
-
const _UR = "UntagResource";
|
|
502
|
-
const _URI = "UntagResourceInput";
|
|
503
|
-
const _UTP = "UpdateTelemetryPipeline";
|
|
504
|
-
const _UTPI = "UpdateTelemetryPipelineInput";
|
|
505
|
-
const _UTPO = "UpdateTelemetryPipelineOutput";
|
|
506
|
-
const _UTR = "UpdateTelemetryRule";
|
|
507
|
-
const _UTRFO = "UpdateTelemetryRuleForOrganization";
|
|
508
|
-
const _UTRFOI = "UpdateTelemetryRuleForOrganizationInput";
|
|
509
|
-
const _UTRFOO = "UpdateTelemetryRuleForOrganizationOutput";
|
|
510
|
-
const _UTRI = "UpdateTelemetryRuleInput";
|
|
511
|
-
const _UTRO = "UpdateTelemetryRuleOutput";
|
|
512
|
-
const _VE = "ValidationError";
|
|
513
|
-
const _VEa = "ValidationException";
|
|
514
|
-
const _VEal = "ValidationErrors";
|
|
515
|
-
const _VPCFLP = "VPCFlowLogParameters";
|
|
516
|
-
const _VTPC = "ValidateTelemetryPipelineConfiguration";
|
|
517
|
-
const _VTPCI = "ValidateTelemetryPipelineConfigurationInput";
|
|
518
|
-
const _VTPCO = "ValidateTelemetryPipelineConfigurationOutput";
|
|
519
|
-
const _WAFLP = "WAFLoggingParameters";
|
|
520
|
-
const _aET = "amznErrorType";
|
|
521
|
-
const _c = "client";
|
|
522
|
-
const _e = "error";
|
|
523
|
-
const _h = "http";
|
|
524
|
-
const _hE = "httpError";
|
|
525
|
-
const _hH = "httpHeader";
|
|
526
|
-
const _rAS = "retryAfterSeconds";
|
|
527
|
-
const _s = "server";
|
|
528
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.observabilityadmin";
|
|
529
|
-
const _xaE = "x-amzn-ErrorType";
|
|
530
|
-
const n0 = "com.amazonaws.observabilityadmin";
|
|
531
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
532
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
533
|
-
[_M, _aET],
|
|
534
|
-
[0, [0, { [_hH]: _xaE }]]
|
|
535
|
-
];
|
|
536
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
537
|
-
var ActionCondition$ = [3, n0, _AC,
|
|
538
|
-
0,
|
|
539
|
-
[_A],
|
|
540
|
-
[0]
|
|
541
|
-
];
|
|
542
|
-
var AdvancedEventSelector$ = [3, n0, _AES,
|
|
543
|
-
0,
|
|
544
|
-
[_FS, _N],
|
|
545
|
-
[() => FieldSelectors, 0], 1
|
|
546
|
-
];
|
|
547
|
-
var AdvancedFieldSelector$ = [3, n0, _AFS,
|
|
548
|
-
0,
|
|
549
|
-
[_F, _E, _SW, _EW, _NE, _NSW, _NEW],
|
|
550
|
-
[0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0], 1
|
|
551
|
-
];
|
|
552
|
-
var CentralizationRule$ = [3, n0, _CR,
|
|
553
|
-
0,
|
|
554
|
-
[_S, _D],
|
|
555
|
-
[() => CentralizationRuleSource$, () => CentralizationRuleDestination$], 2
|
|
556
|
-
];
|
|
557
|
-
var CentralizationRuleDestination$ = [3, n0, _CRD,
|
|
558
|
-
0,
|
|
559
|
-
[_R, _Ac, _DLC],
|
|
560
|
-
[0, 0, () => DestinationLogsConfiguration$], 1
|
|
561
|
-
];
|
|
562
|
-
var CentralizationRuleSource$ = [3, n0, _CRS,
|
|
563
|
-
0,
|
|
564
|
-
[_Re, _Sc, _SLC],
|
|
565
|
-
[64 | 0, 0, () => SourceLogsConfiguration$], 1
|
|
566
|
-
];
|
|
567
|
-
var CentralizationRuleSummary$ = [3, n0, _CRSe,
|
|
568
|
-
0,
|
|
569
|
-
[_RN, _RA, _CAI, _CTS, _CRr, _LUTS, _RH, _FR, _DAI, _DR],
|
|
570
|
-
[0, 0, 0, 1, 0, 1, 0, 0, 0, 0]
|
|
571
|
-
];
|
|
572
|
-
var CloudtrailParameters$ = [3, n0, _CP,
|
|
573
|
-
0,
|
|
574
|
-
[_AESd],
|
|
575
|
-
[() => AdvancedEventSelectors], 1
|
|
576
|
-
];
|
|
577
|
-
var Condition$ = [3, n0, _C,
|
|
578
|
-
0,
|
|
579
|
-
[_AC, _LNC],
|
|
580
|
-
[() => ActionCondition$, () => LabelNameCondition$]
|
|
581
|
-
];
|
|
582
|
-
var ConfigurationSummary$ = [3, n0, _CS,
|
|
583
|
-
0,
|
|
584
|
-
[_So, _DS, _P, _PC, _Si],
|
|
585
|
-
[() => Sources, () => DataSources, 64 | 0, 1, 64 | 0]
|
|
586
|
-
];
|
|
587
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
588
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
589
|
-
[_M, _RI, _RT],
|
|
590
|
-
[0, 0, 0]
|
|
591
|
-
];
|
|
592
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
593
|
-
var CreateCentralizationRuleForOrganizationInput$ = [3, n0, _CCRFOI,
|
|
594
|
-
0,
|
|
595
|
-
[_RN, _Ru, _T],
|
|
596
|
-
[0, () => CentralizationRule$, 128 | 0], 2
|
|
597
|
-
];
|
|
598
|
-
var CreateCentralizationRuleForOrganizationOutput$ = [3, n0, _CCRFOO,
|
|
599
|
-
0,
|
|
600
|
-
[_RA],
|
|
601
|
-
[0]
|
|
602
|
-
];
|
|
603
|
-
var CreateS3TableIntegrationInput$ = [3, n0, _CSTII,
|
|
604
|
-
0,
|
|
605
|
-
[_En, _RAo, _T],
|
|
606
|
-
[() => Encryption$, 0, 128 | 0], 2
|
|
607
|
-
];
|
|
608
|
-
var CreateS3TableIntegrationOutput$ = [3, n0, _CSTIO,
|
|
609
|
-
0,
|
|
610
|
-
[_Ar],
|
|
611
|
-
[0]
|
|
612
|
-
];
|
|
613
|
-
var CreateTelemetryPipelineInput$ = [3, n0, _CTPI,
|
|
614
|
-
0,
|
|
615
|
-
[_N, _Co, _T],
|
|
616
|
-
[0, () => TelemetryPipelineConfiguration$, 128 | 0], 2
|
|
617
|
-
];
|
|
618
|
-
var CreateTelemetryPipelineOutput$ = [3, n0, _CTPO,
|
|
619
|
-
0,
|
|
620
|
-
[_Ar],
|
|
621
|
-
[0]
|
|
622
|
-
];
|
|
623
|
-
var CreateTelemetryRuleForOrganizationInput$ = [3, n0, _CTRFOI,
|
|
624
|
-
0,
|
|
625
|
-
[_RN, _Ru, _T],
|
|
626
|
-
[0, () => TelemetryRule$, 128 | 0], 2
|
|
627
|
-
];
|
|
628
|
-
var CreateTelemetryRuleForOrganizationOutput$ = [3, n0, _CTRFOO,
|
|
629
|
-
0,
|
|
630
|
-
[_RA],
|
|
631
|
-
[0]
|
|
632
|
-
];
|
|
633
|
-
var CreateTelemetryRuleInput$ = [3, n0, _CTRI,
|
|
634
|
-
0,
|
|
635
|
-
[_RN, _Ru, _T],
|
|
636
|
-
[0, () => TelemetryRule$, 128 | 0], 2
|
|
637
|
-
];
|
|
638
|
-
var CreateTelemetryRuleOutput$ = [3, n0, _CTRO,
|
|
639
|
-
0,
|
|
640
|
-
[_RA],
|
|
641
|
-
[0]
|
|
642
|
-
];
|
|
643
|
-
var DataSource$ = [3, n0, _DSa,
|
|
644
|
-
0,
|
|
645
|
-
[_N, _Ty],
|
|
646
|
-
[0, 0]
|
|
647
|
-
];
|
|
648
|
-
var DeleteCentralizationRuleForOrganizationInput$ = [3, n0, _DCRFOI,
|
|
649
|
-
0,
|
|
650
|
-
[_RIu],
|
|
651
|
-
[0], 1
|
|
652
|
-
];
|
|
653
|
-
var DeleteS3TableIntegrationInput$ = [3, n0, _DSTII,
|
|
654
|
-
0,
|
|
655
|
-
[_Ar],
|
|
656
|
-
[0], 1
|
|
657
|
-
];
|
|
658
|
-
var DeleteTelemetryPipelineInput$ = [3, n0, _DTPI,
|
|
659
|
-
0,
|
|
660
|
-
[_PI],
|
|
661
|
-
[0], 1
|
|
662
|
-
];
|
|
663
|
-
var DeleteTelemetryPipelineOutput$ = [3, n0, _DTPO,
|
|
664
|
-
0,
|
|
665
|
-
[],
|
|
666
|
-
[]
|
|
667
|
-
];
|
|
668
|
-
var DeleteTelemetryRuleForOrganizationInput$ = [3, n0, _DTRFOI,
|
|
669
|
-
0,
|
|
670
|
-
[_RIu],
|
|
671
|
-
[0], 1
|
|
672
|
-
];
|
|
673
|
-
var DeleteTelemetryRuleInput$ = [3, n0, _DTRI,
|
|
674
|
-
0,
|
|
675
|
-
[_RIu],
|
|
676
|
-
[0], 1
|
|
677
|
-
];
|
|
678
|
-
var DestinationLogsConfiguration$ = [3, n0, _DLC,
|
|
679
|
-
0,
|
|
680
|
-
[_LEC, _BC],
|
|
681
|
-
[() => LogsEncryptionConfiguration$, () => LogsBackupConfiguration$]
|
|
682
|
-
];
|
|
683
|
-
var ELBLoadBalancerLoggingParameters$ = [3, n0, _ELBLBLP,
|
|
684
|
-
0,
|
|
685
|
-
[_OF, _FD],
|
|
686
|
-
[0, 0]
|
|
687
|
-
];
|
|
688
|
-
var Encryption$ = [3, n0, _En,
|
|
689
|
-
0,
|
|
690
|
-
[_SA, _KKA],
|
|
691
|
-
[0, 0], 1
|
|
692
|
-
];
|
|
693
|
-
var FieldToMatch$ = [3, n0, _FTM,
|
|
694
|
-
0,
|
|
695
|
-
[_SH, _UP, _QS, _Me],
|
|
696
|
-
[() => SingleHeader$, 0, 0, 0]
|
|
697
|
-
];
|
|
698
|
-
var Filter$ = [3, n0, _Fi,
|
|
699
|
-
0,
|
|
700
|
-
[_B, _Req, _Con],
|
|
701
|
-
[0, 0, () => Conditions]
|
|
702
|
-
];
|
|
703
|
-
var GetCentralizationRuleForOrganizationInput$ = [3, n0, _GCRFOI,
|
|
704
|
-
0,
|
|
705
|
-
[_RIu],
|
|
706
|
-
[0], 1
|
|
707
|
-
];
|
|
708
|
-
var GetCentralizationRuleForOrganizationOutput$ = [3, n0, _GCRFOO,
|
|
709
|
-
0,
|
|
710
|
-
[_RN, _RA, _CAI, _CTS, _CRr, _LUTS, _RH, _FR, _CR],
|
|
711
|
-
[0, 0, 0, 1, 0, 1, 0, 0, () => CentralizationRule$]
|
|
712
|
-
];
|
|
713
|
-
var GetS3TableIntegrationInput$ = [3, n0, _GSTII,
|
|
714
|
-
0,
|
|
715
|
-
[_Ar],
|
|
716
|
-
[0], 1
|
|
717
|
-
];
|
|
718
|
-
var GetS3TableIntegrationOutput$ = [3, n0, _GSTIO,
|
|
719
|
-
0,
|
|
720
|
-
[_Ar, _RAo, _St, _En, _DTBA, _CTS],
|
|
721
|
-
[0, 0, 0, () => Encryption$, 0, 1]
|
|
722
|
-
];
|
|
723
|
-
var GetTelemetryEnrichmentStatusOutput$ = [3, n0, _GTESO,
|
|
724
|
-
0,
|
|
725
|
-
[_St, _AREMVA],
|
|
726
|
-
[0, 0]
|
|
727
|
-
];
|
|
728
|
-
var GetTelemetryEvaluationStatusForOrganizationOutput$ = [3, n0, _GTESFOO,
|
|
729
|
-
0,
|
|
730
|
-
[_St, _FR],
|
|
731
|
-
[0, 0]
|
|
732
|
-
];
|
|
733
|
-
var GetTelemetryEvaluationStatusOutput$ = [3, n0, _GTESOe,
|
|
734
|
-
0,
|
|
735
|
-
[_St, _FR],
|
|
736
|
-
[0, 0]
|
|
737
|
-
];
|
|
738
|
-
var GetTelemetryPipelineInput$ = [3, n0, _GTPI,
|
|
739
|
-
0,
|
|
740
|
-
[_PI],
|
|
741
|
-
[0], 1
|
|
742
|
-
];
|
|
743
|
-
var GetTelemetryPipelineOutput$ = [3, n0, _GTPO,
|
|
744
|
-
0,
|
|
745
|
-
[_Pi],
|
|
746
|
-
[() => TelemetryPipeline$]
|
|
747
|
-
];
|
|
748
|
-
var GetTelemetryRuleForOrganizationInput$ = [3, n0, _GTRFOI,
|
|
749
|
-
0,
|
|
750
|
-
[_RIu],
|
|
751
|
-
[0], 1
|
|
752
|
-
];
|
|
753
|
-
var GetTelemetryRuleForOrganizationOutput$ = [3, n0, _GTRFOO,
|
|
754
|
-
0,
|
|
755
|
-
[_RN, _RA, _CTS, _LUTS, _TR],
|
|
756
|
-
[0, 0, 1, 1, () => TelemetryRule$]
|
|
757
|
-
];
|
|
758
|
-
var GetTelemetryRuleInput$ = [3, n0, _GTRI,
|
|
759
|
-
0,
|
|
760
|
-
[_RIu],
|
|
761
|
-
[0], 1
|
|
762
|
-
];
|
|
763
|
-
var GetTelemetryRuleOutput$ = [3, n0, _GTRO,
|
|
764
|
-
0,
|
|
765
|
-
[_RN, _RA, _CTS, _LUTS, _TR],
|
|
766
|
-
[0, 0, 1, 1, () => TelemetryRule$]
|
|
767
|
-
];
|
|
768
|
-
var IntegrationSummary$ = [3, n0, _IS,
|
|
769
|
-
0,
|
|
770
|
-
[_Ar, _St],
|
|
771
|
-
[0, 0]
|
|
772
|
-
];
|
|
773
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
774
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
775
|
-
[_M, _aET, _rAS],
|
|
776
|
-
[0, [0, { [_hH]: _xaE }], [1, { [_hH]: _RA_ }]]
|
|
777
|
-
];
|
|
778
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
779
|
-
var InvalidStateException$ = [-3, n0, _ISEn,
|
|
780
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
781
|
-
[_M],
|
|
782
|
-
[0]
|
|
783
|
-
];
|
|
784
|
-
schema.TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
|
|
785
|
-
var LabelNameCondition$ = [3, n0, _LNC,
|
|
786
|
-
0,
|
|
787
|
-
[_LN],
|
|
788
|
-
[0]
|
|
789
|
-
];
|
|
790
|
-
var ListCentralizationRulesForOrganizationInput$ = [3, n0, _LCRFOI,
|
|
791
|
-
0,
|
|
792
|
-
[_RNP, _AR, _MR, _NT],
|
|
793
|
-
[0, 2, 1, 0]
|
|
794
|
-
];
|
|
795
|
-
var ListCentralizationRulesForOrganizationOutput$ = [3, n0, _LCRFOO,
|
|
796
|
-
0,
|
|
797
|
-
[_CRSen, _NT],
|
|
798
|
-
[() => CentralizationRuleSummaries, 0]
|
|
799
|
-
];
|
|
800
|
-
var ListResourceTelemetryForOrganizationInput$ = [3, n0, _LRTFOI,
|
|
801
|
-
0,
|
|
802
|
-
[_AI, _RIP, _RTe, _TCS, _RTes, _MR, _NT],
|
|
803
|
-
[64 | 0, 0, 64 | 0, 128 | 0, 128 | 0, 1, 0]
|
|
804
|
-
];
|
|
805
|
-
var ListResourceTelemetryForOrganizationOutput$ = [3, n0, _LRTFOO,
|
|
806
|
-
0,
|
|
807
|
-
[_TC, _NT],
|
|
808
|
-
[() => TelemetryConfigurations, 0]
|
|
809
|
-
];
|
|
810
|
-
var ListResourceTelemetryInput$ = [3, n0, _LRTI,
|
|
811
|
-
0,
|
|
812
|
-
[_RIP, _RTe, _TCS, _RTes, _MR, _NT],
|
|
813
|
-
[0, 64 | 0, 128 | 0, 128 | 0, 1, 0]
|
|
814
|
-
];
|
|
815
|
-
var ListResourceTelemetryOutput$ = [3, n0, _LRTO,
|
|
816
|
-
0,
|
|
817
|
-
[_TC, _NT],
|
|
818
|
-
[() => TelemetryConfigurations, 0]
|
|
819
|
-
];
|
|
820
|
-
var ListS3TableIntegrationsInput$ = [3, n0, _LSTII,
|
|
821
|
-
0,
|
|
822
|
-
[_MR, _NT],
|
|
823
|
-
[1, 0]
|
|
824
|
-
];
|
|
825
|
-
var ListS3TableIntegrationsOutput$ = [3, n0, _LSTIO,
|
|
826
|
-
0,
|
|
827
|
-
[_ISn, _NT],
|
|
828
|
-
[() => IntegrationSummaries, 0]
|
|
829
|
-
];
|
|
830
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
831
|
-
0,
|
|
832
|
-
[_RARN],
|
|
833
|
-
[0], 1
|
|
834
|
-
];
|
|
835
|
-
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
836
|
-
0,
|
|
837
|
-
[_T],
|
|
838
|
-
[128 | 0], 1
|
|
839
|
-
];
|
|
840
|
-
var ListTelemetryPipelinesInput$ = [3, n0, _LTPI,
|
|
841
|
-
0,
|
|
842
|
-
[_MR, _NT],
|
|
843
|
-
[1, 0]
|
|
844
|
-
];
|
|
845
|
-
var ListTelemetryPipelinesOutput$ = [3, n0, _LTPO,
|
|
846
|
-
0,
|
|
847
|
-
[_PS, _NT],
|
|
848
|
-
[() => TelemetryPipelineSummaries, 0]
|
|
849
|
-
];
|
|
850
|
-
var ListTelemetryRulesForOrganizationInput$ = [3, n0, _LTRFOI,
|
|
851
|
-
0,
|
|
852
|
-
[_RNP, _SAI, _SOUI, _MR, _NT],
|
|
853
|
-
[0, 64 | 0, 64 | 0, 1, 0]
|
|
854
|
-
];
|
|
855
|
-
var ListTelemetryRulesForOrganizationOutput$ = [3, n0, _LTRFOO,
|
|
856
|
-
0,
|
|
857
|
-
[_TRS, _NT],
|
|
858
|
-
[() => TelemetryRuleSummaries, 0]
|
|
859
|
-
];
|
|
860
|
-
var ListTelemetryRulesInput$ = [3, n0, _LTRI,
|
|
861
|
-
0,
|
|
862
|
-
[_RNP, _MR, _NT],
|
|
863
|
-
[0, 1, 0]
|
|
864
|
-
];
|
|
865
|
-
var ListTelemetryRulesOutput$ = [3, n0, _LTRO,
|
|
866
|
-
0,
|
|
867
|
-
[_TRS, _NT],
|
|
868
|
-
[() => TelemetryRuleSummaries, 0]
|
|
869
|
-
];
|
|
870
|
-
var LogDeliveryParameters$ = [3, n0, _LDP,
|
|
871
|
-
0,
|
|
872
|
-
[_LT],
|
|
873
|
-
[64 | 0]
|
|
874
|
-
];
|
|
875
|
-
var LoggingFilter$ = [3, n0, _LF,
|
|
876
|
-
0,
|
|
877
|
-
[_Fil, _DB],
|
|
878
|
-
[() => Filters, 0]
|
|
879
|
-
];
|
|
880
|
-
var LogsBackupConfiguration$ = [3, n0, _LBC,
|
|
881
|
-
0,
|
|
882
|
-
[_R, _KKA],
|
|
883
|
-
[0, 0], 1
|
|
884
|
-
];
|
|
885
|
-
var LogsEncryptionConfiguration$ = [3, n0, _LEC,
|
|
886
|
-
0,
|
|
887
|
-
[_ES, _KKA, _ECRS],
|
|
888
|
-
[0, 0, 0], 1
|
|
889
|
-
];
|
|
890
|
-
var PipelineOutput$ = [3, n0, _PO,
|
|
891
|
-
0,
|
|
892
|
-
[_Rec, _Er],
|
|
893
|
-
[() => _Record$, () => PipelineOutputError$]
|
|
894
|
-
];
|
|
895
|
-
var PipelineOutputError$ = [3, n0, _POE,
|
|
896
|
-
0,
|
|
897
|
-
[_M],
|
|
898
|
-
[0]
|
|
899
|
-
];
|
|
900
|
-
var _Record$ = [3, n0, _Rec,
|
|
901
|
-
0,
|
|
902
|
-
[_Da, _Ty],
|
|
903
|
-
[0, 0]
|
|
904
|
-
];
|
|
905
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
906
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
907
|
-
[_M, _RI, _RT],
|
|
908
|
-
[0, 0, 0]
|
|
909
|
-
];
|
|
910
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
911
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
912
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
913
|
-
[_M, _RI, _RT, _SC, _QC, _aET],
|
|
914
|
-
[0, 0, 0, 0, 0, [0, { [_hH]: _xaE }]]
|
|
915
|
-
];
|
|
916
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
917
|
-
var SingleHeader$ = [3, n0, _SH,
|
|
918
|
-
0,
|
|
919
|
-
[_N],
|
|
920
|
-
[0]
|
|
921
|
-
];
|
|
922
|
-
var Source$ = [3, n0, _S,
|
|
923
|
-
0,
|
|
924
|
-
[_Ty],
|
|
925
|
-
[0]
|
|
926
|
-
];
|
|
927
|
-
var SourceLogsConfiguration$ = [3, n0, _SLC,
|
|
928
|
-
0,
|
|
929
|
-
[_LGSC, _ELGS],
|
|
930
|
-
[0, 0], 2
|
|
931
|
-
];
|
|
932
|
-
var StartTelemetryEnrichmentOutput$ = [3, n0, _STEO,
|
|
933
|
-
0,
|
|
934
|
-
[_St, _AREMVA],
|
|
935
|
-
[0, 0]
|
|
936
|
-
];
|
|
937
|
-
var StopTelemetryEnrichmentOutput$ = [3, n0, _STEOt,
|
|
938
|
-
0,
|
|
939
|
-
[_St],
|
|
940
|
-
[0]
|
|
941
|
-
];
|
|
942
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
943
|
-
0,
|
|
944
|
-
[_RARN, _T],
|
|
945
|
-
[0, 128 | 0], 2
|
|
946
|
-
];
|
|
947
|
-
var TelemetryConfiguration$ = [3, n0, _TCe,
|
|
948
|
-
0,
|
|
949
|
-
[_AIc, _TCS, _RT, _RIe, _RTes, _LUTS],
|
|
950
|
-
[0, 128 | 0, 0, 0, 128 | 0, 1]
|
|
951
|
-
];
|
|
952
|
-
var TelemetryDestinationConfiguration$ = [3, n0, _TDC,
|
|
953
|
-
0,
|
|
954
|
-
[_DT, _DP, _RID, _VPCFLP, _CP, _ELBLBLP, _WAFLP, _LDP],
|
|
955
|
-
[0, 0, 1, () => VPCFlowLogParameters$, () => CloudtrailParameters$, () => ELBLoadBalancerLoggingParameters$, () => WAFLoggingParameters$, () => LogDeliveryParameters$]
|
|
956
|
-
];
|
|
957
|
-
var TelemetryPipeline$ = [3, n0, _TP,
|
|
958
|
-
0,
|
|
959
|
-
[_CTS, _LUTS, _Ar, _N, _Co, _St, _SR, _T],
|
|
960
|
-
[1, 1, 0, 0, () => TelemetryPipelineConfiguration$, 0, () => TelemetryPipelineStatusReason$, 128 | 0]
|
|
961
|
-
];
|
|
962
|
-
var TelemetryPipelineConfiguration$ = [3, n0, _TPC,
|
|
963
|
-
0,
|
|
964
|
-
[_Bo],
|
|
965
|
-
[0], 1
|
|
966
|
-
];
|
|
967
|
-
var TelemetryPipelineStatusReason$ = [3, n0, _TPSR,
|
|
968
|
-
0,
|
|
969
|
-
[_De],
|
|
970
|
-
[0]
|
|
971
|
-
];
|
|
972
|
-
var TelemetryPipelineSummary$ = [3, n0, _TPS,
|
|
973
|
-
0,
|
|
974
|
-
[_CTS, _LUTS, _Ar, _N, _St, _T, _CS],
|
|
975
|
-
[1, 1, 0, 0, 0, 128 | 0, () => ConfigurationSummary$]
|
|
976
|
-
];
|
|
977
|
-
var TelemetryRule$ = [3, n0, _TR,
|
|
978
|
-
0,
|
|
979
|
-
[_TT, _RT, _TST, _DC, _Sc, _SCe],
|
|
980
|
-
[0, 0, 64 | 0, () => TelemetryDestinationConfiguration$, 0, 0], 1
|
|
981
|
-
];
|
|
982
|
-
var TelemetryRuleSummary$ = [3, n0, _TRSe,
|
|
983
|
-
0,
|
|
984
|
-
[_RN, _RA, _CTS, _LUTS, _RT, _TT, _TST],
|
|
985
|
-
[0, 0, 1, 1, 0, 0, 64 | 0]
|
|
986
|
-
];
|
|
987
|
-
var TestTelemetryPipelineInput$ = [3, n0, _TTPI,
|
|
988
|
-
0,
|
|
989
|
-
[_Reco, _Co],
|
|
990
|
-
[() => Records, () => TelemetryPipelineConfiguration$], 2
|
|
991
|
-
];
|
|
992
|
-
var TestTelemetryPipelineOutput$ = [3, n0, _TTPO,
|
|
993
|
-
0,
|
|
994
|
-
[_Res],
|
|
995
|
-
[() => PipelineOutputs]
|
|
996
|
-
];
|
|
997
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
998
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
999
|
-
[_M],
|
|
1000
|
-
[0]
|
|
1001
|
-
];
|
|
1002
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1003
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
1004
|
-
0,
|
|
1005
|
-
[_RARN, _TK],
|
|
1006
|
-
[0, 64 | 0], 2
|
|
1007
|
-
];
|
|
1008
|
-
var UpdateCentralizationRuleForOrganizationInput$ = [3, n0, _UCRFOI,
|
|
1009
|
-
0,
|
|
1010
|
-
[_RIu, _Ru],
|
|
1011
|
-
[0, () => CentralizationRule$], 2
|
|
1012
|
-
];
|
|
1013
|
-
var UpdateCentralizationRuleForOrganizationOutput$ = [3, n0, _UCRFOO,
|
|
1014
|
-
0,
|
|
1015
|
-
[_RA],
|
|
1016
|
-
[0]
|
|
1017
|
-
];
|
|
1018
|
-
var UpdateTelemetryPipelineInput$ = [3, n0, _UTPI,
|
|
1019
|
-
0,
|
|
1020
|
-
[_PI, _Co],
|
|
1021
|
-
[0, () => TelemetryPipelineConfiguration$], 2
|
|
1022
|
-
];
|
|
1023
|
-
var UpdateTelemetryPipelineOutput$ = [3, n0, _UTPO,
|
|
1024
|
-
0,
|
|
1025
|
-
[],
|
|
1026
|
-
[]
|
|
1027
|
-
];
|
|
1028
|
-
var UpdateTelemetryRuleForOrganizationInput$ = [3, n0, _UTRFOI,
|
|
1029
|
-
0,
|
|
1030
|
-
[_RIu, _Ru],
|
|
1031
|
-
[0, () => TelemetryRule$], 2
|
|
1032
|
-
];
|
|
1033
|
-
var UpdateTelemetryRuleForOrganizationOutput$ = [3, n0, _UTRFOO,
|
|
1034
|
-
0,
|
|
1035
|
-
[_RA],
|
|
1036
|
-
[0]
|
|
1037
|
-
];
|
|
1038
|
-
var UpdateTelemetryRuleInput$ = [3, n0, _UTRI,
|
|
1039
|
-
0,
|
|
1040
|
-
[_RIu, _Ru],
|
|
1041
|
-
[0, () => TelemetryRule$], 2
|
|
1042
|
-
];
|
|
1043
|
-
var UpdateTelemetryRuleOutput$ = [3, n0, _UTRO,
|
|
1044
|
-
0,
|
|
1045
|
-
[_RA],
|
|
1046
|
-
[0]
|
|
1047
|
-
];
|
|
1048
|
-
var ValidateTelemetryPipelineConfigurationInput$ = [3, n0, _VTPCI,
|
|
1049
|
-
0,
|
|
1050
|
-
[_Co],
|
|
1051
|
-
[() => TelemetryPipelineConfiguration$], 1
|
|
1052
|
-
];
|
|
1053
|
-
var ValidateTelemetryPipelineConfigurationOutput$ = [3, n0, _VTPCO,
|
|
1054
|
-
0,
|
|
1055
|
-
[_Err],
|
|
1056
|
-
[() => ValidationErrors]
|
|
1057
|
-
];
|
|
1058
|
-
var ValidationError$ = [3, n0, _VE,
|
|
1059
|
-
0,
|
|
1060
|
-
[_M, _Rea, _FM],
|
|
1061
|
-
[0, 0, 128 | 0]
|
|
1062
|
-
];
|
|
1063
|
-
var ValidationException$ = [-3, n0, _VEa,
|
|
1064
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1065
|
-
[_M, _Err],
|
|
1066
|
-
[0, () => ValidationErrors]
|
|
1067
|
-
];
|
|
1068
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1069
|
-
var VPCFlowLogParameters$ = [3, n0, _VPCFLP,
|
|
1070
|
-
0,
|
|
1071
|
-
[_LFo, _TTr, _MAI],
|
|
1072
|
-
[0, 0, 1]
|
|
1073
|
-
];
|
|
1074
|
-
var WAFLoggingParameters$ = [3, n0, _WAFLP,
|
|
1075
|
-
0,
|
|
1076
|
-
[_RF, _LF, _LTo],
|
|
1077
|
-
[() => RedactedFields, () => LoggingFilter$, 0]
|
|
1078
|
-
];
|
|
1079
|
-
var __Unit = "unit";
|
|
1080
|
-
var ObservabilityAdminServiceException$ = [-3, _sm, "ObservabilityAdminServiceException", 0, [], []];
|
|
1081
|
-
schema.TypeRegistry.for(_sm).registerError(ObservabilityAdminServiceException$, ObservabilityAdminServiceException);
|
|
1082
|
-
var AdvancedEventSelectors = [1, n0, _AESd,
|
|
1083
|
-
0, () => AdvancedEventSelector$
|
|
1084
|
-
];
|
|
1085
|
-
var CentralizationRuleSummaries = [1, n0, _CRSen,
|
|
1086
|
-
0, () => CentralizationRuleSummary$
|
|
1087
|
-
];
|
|
1088
|
-
var Conditions = [1, n0, _Con,
|
|
1089
|
-
0, () => Condition$
|
|
1090
|
-
];
|
|
1091
|
-
var DataSources = [1, n0, _DS,
|
|
1092
|
-
0, () => DataSource$
|
|
1093
|
-
];
|
|
1094
|
-
var FieldSelectors = [1, n0, _FS,
|
|
1095
|
-
0, () => AdvancedFieldSelector$
|
|
1096
|
-
];
|
|
1097
|
-
var Filters = [1, n0, _Fil,
|
|
1098
|
-
0, () => Filter$
|
|
1099
|
-
];
|
|
1100
|
-
var IntegrationSummaries = [1, n0, _ISn,
|
|
1101
|
-
0, () => IntegrationSummary$
|
|
1102
|
-
];
|
|
1103
|
-
var PipelineOutputs = [1, n0, _POi,
|
|
1104
|
-
0, () => PipelineOutput$
|
|
1105
|
-
];
|
|
1106
|
-
var Records = [1, n0, _Reco,
|
|
1107
|
-
0, () => _Record$
|
|
1108
|
-
];
|
|
1109
|
-
var RedactedFields = [1, n0, _RF,
|
|
1110
|
-
0, () => FieldToMatch$
|
|
1111
|
-
];
|
|
1112
|
-
var Sources = [1, n0, _So,
|
|
1113
|
-
0, () => Source$
|
|
1114
|
-
];
|
|
1115
|
-
var TelemetryConfigurations = [1, n0, _TC,
|
|
1116
|
-
0, () => TelemetryConfiguration$
|
|
1117
|
-
];
|
|
1118
|
-
var TelemetryPipelineSummaries = [1, n0, _TPSe,
|
|
1119
|
-
0, () => TelemetryPipelineSummary$
|
|
1120
|
-
];
|
|
1121
|
-
var TelemetryRuleSummaries = [1, n0, _TRS,
|
|
1122
|
-
0, () => TelemetryRuleSummary$
|
|
1123
|
-
];
|
|
1124
|
-
var ValidationErrors = [1, n0, _VEal,
|
|
1125
|
-
0, () => ValidationError$
|
|
1126
|
-
];
|
|
1127
|
-
var CreateCentralizationRuleForOrganization$ = [9, n0, _CCRFO,
|
|
1128
|
-
{ [_h]: ["POST", "/CreateCentralizationRuleForOrganization", 200] }, () => CreateCentralizationRuleForOrganizationInput$, () => CreateCentralizationRuleForOrganizationOutput$
|
|
1129
|
-
];
|
|
1130
|
-
var CreateS3TableIntegration$ = [9, n0, _CSTI,
|
|
1131
|
-
{ [_h]: ["POST", "/CreateS3TableIntegration", 200] }, () => CreateS3TableIntegrationInput$, () => CreateS3TableIntegrationOutput$
|
|
1132
|
-
];
|
|
1133
|
-
var CreateTelemetryPipeline$ = [9, n0, _CTP,
|
|
1134
|
-
{ [_h]: ["POST", "/CreateTelemetryPipeline", 200] }, () => CreateTelemetryPipelineInput$, () => CreateTelemetryPipelineOutput$
|
|
1135
|
-
];
|
|
1136
|
-
var CreateTelemetryRule$ = [9, n0, _CTR,
|
|
1137
|
-
{ [_h]: ["POST", "/CreateTelemetryRule", 200] }, () => CreateTelemetryRuleInput$, () => CreateTelemetryRuleOutput$
|
|
1138
|
-
];
|
|
1139
|
-
var CreateTelemetryRuleForOrganization$ = [9, n0, _CTRFO,
|
|
1140
|
-
{ [_h]: ["POST", "/CreateTelemetryRuleForOrganization", 200] }, () => CreateTelemetryRuleForOrganizationInput$, () => CreateTelemetryRuleForOrganizationOutput$
|
|
1141
|
-
];
|
|
1142
|
-
var DeleteCentralizationRuleForOrganization$ = [9, n0, _DCRFO,
|
|
1143
|
-
{ [_h]: ["POST", "/DeleteCentralizationRuleForOrganization", 200] }, () => DeleteCentralizationRuleForOrganizationInput$, () => __Unit
|
|
1144
|
-
];
|
|
1145
|
-
var DeleteS3TableIntegration$ = [9, n0, _DSTI,
|
|
1146
|
-
{ [_h]: ["POST", "/DeleteS3TableIntegration", 204] }, () => DeleteS3TableIntegrationInput$, () => __Unit
|
|
1147
|
-
];
|
|
1148
|
-
var DeleteTelemetryPipeline$ = [9, n0, _DTP,
|
|
1149
|
-
{ [_h]: ["POST", "/DeleteTelemetryPipeline", 200] }, () => DeleteTelemetryPipelineInput$, () => DeleteTelemetryPipelineOutput$
|
|
1150
|
-
];
|
|
1151
|
-
var DeleteTelemetryRule$ = [9, n0, _DTR,
|
|
1152
|
-
{ [_h]: ["POST", "/DeleteTelemetryRule", 200] }, () => DeleteTelemetryRuleInput$, () => __Unit
|
|
1153
|
-
];
|
|
1154
|
-
var DeleteTelemetryRuleForOrganization$ = [9, n0, _DTRFO,
|
|
1155
|
-
{ [_h]: ["POST", "/DeleteTelemetryRuleForOrganization", 200] }, () => DeleteTelemetryRuleForOrganizationInput$, () => __Unit
|
|
1156
|
-
];
|
|
1157
|
-
var GetCentralizationRuleForOrganization$ = [9, n0, _GCRFO,
|
|
1158
|
-
{ [_h]: ["POST", "/GetCentralizationRuleForOrganization", 200] }, () => GetCentralizationRuleForOrganizationInput$, () => GetCentralizationRuleForOrganizationOutput$
|
|
1159
|
-
];
|
|
1160
|
-
var GetS3TableIntegration$ = [9, n0, _GSTI,
|
|
1161
|
-
{ [_h]: ["POST", "/GetS3TableIntegration", 200] }, () => GetS3TableIntegrationInput$, () => GetS3TableIntegrationOutput$
|
|
1162
|
-
];
|
|
1163
|
-
var GetTelemetryEnrichmentStatus$ = [9, n0, _GTES,
|
|
1164
|
-
{ [_h]: ["POST", "/GetTelemetryEnrichmentStatus", 200] }, () => __Unit, () => GetTelemetryEnrichmentStatusOutput$
|
|
1165
|
-
];
|
|
1166
|
-
var GetTelemetryEvaluationStatus$ = [9, n0, _GTESe,
|
|
1167
|
-
{ [_h]: ["POST", "/GetTelemetryEvaluationStatus", 200] }, () => __Unit, () => GetTelemetryEvaluationStatusOutput$
|
|
1168
|
-
];
|
|
1169
|
-
var GetTelemetryEvaluationStatusForOrganization$ = [9, n0, _GTESFO,
|
|
1170
|
-
{ [_h]: ["POST", "/GetTelemetryEvaluationStatusForOrganization", 200] }, () => __Unit, () => GetTelemetryEvaluationStatusForOrganizationOutput$
|
|
1171
|
-
];
|
|
1172
|
-
var GetTelemetryPipeline$ = [9, n0, _GTP,
|
|
1173
|
-
{ [_h]: ["POST", "/GetTelemetryPipeline", 200] }, () => GetTelemetryPipelineInput$, () => GetTelemetryPipelineOutput$
|
|
1174
|
-
];
|
|
1175
|
-
var GetTelemetryRule$ = [9, n0, _GTR,
|
|
1176
|
-
{ [_h]: ["POST", "/GetTelemetryRule", 200] }, () => GetTelemetryRuleInput$, () => GetTelemetryRuleOutput$
|
|
1177
|
-
];
|
|
1178
|
-
var GetTelemetryRuleForOrganization$ = [9, n0, _GTRFO,
|
|
1179
|
-
{ [_h]: ["POST", "/GetTelemetryRuleForOrganization", 200] }, () => GetTelemetryRuleForOrganizationInput$, () => GetTelemetryRuleForOrganizationOutput$
|
|
1180
|
-
];
|
|
1181
|
-
var ListCentralizationRulesForOrganization$ = [9, n0, _LCRFO,
|
|
1182
|
-
{ [_h]: ["POST", "/ListCentralizationRulesForOrganization", 200] }, () => ListCentralizationRulesForOrganizationInput$, () => ListCentralizationRulesForOrganizationOutput$
|
|
1183
|
-
];
|
|
1184
|
-
var ListResourceTelemetry$ = [9, n0, _LRT,
|
|
1185
|
-
{ [_h]: ["POST", "/ListResourceTelemetry", 200] }, () => ListResourceTelemetryInput$, () => ListResourceTelemetryOutput$
|
|
1186
|
-
];
|
|
1187
|
-
var ListResourceTelemetryForOrganization$ = [9, n0, _LRTFO,
|
|
1188
|
-
{ [_h]: ["POST", "/ListResourceTelemetryForOrganization", 200] }, () => ListResourceTelemetryForOrganizationInput$, () => ListResourceTelemetryForOrganizationOutput$
|
|
1189
|
-
];
|
|
1190
|
-
var ListS3TableIntegrations$ = [9, n0, _LSTI,
|
|
1191
|
-
{ [_h]: ["POST", "/ListS3TableIntegrations", 200] }, () => ListS3TableIntegrationsInput$, () => ListS3TableIntegrationsOutput$
|
|
1192
|
-
];
|
|
1193
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1194
|
-
{ [_h]: ["POST", "/ListTagsForResource", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1195
|
-
];
|
|
1196
|
-
var ListTelemetryPipelines$ = [9, n0, _LTP,
|
|
1197
|
-
{ [_h]: ["POST", "/ListTelemetryPipelines", 200] }, () => ListTelemetryPipelinesInput$, () => ListTelemetryPipelinesOutput$
|
|
1198
|
-
];
|
|
1199
|
-
var ListTelemetryRules$ = [9, n0, _LTR,
|
|
1200
|
-
{ [_h]: ["POST", "/ListTelemetryRules", 200] }, () => ListTelemetryRulesInput$, () => ListTelemetryRulesOutput$
|
|
1201
|
-
];
|
|
1202
|
-
var ListTelemetryRulesForOrganization$ = [9, n0, _LTRFO,
|
|
1203
|
-
{ [_h]: ["POST", "/ListTelemetryRulesForOrganization", 200] }, () => ListTelemetryRulesForOrganizationInput$, () => ListTelemetryRulesForOrganizationOutput$
|
|
1204
|
-
];
|
|
1205
|
-
var StartTelemetryEnrichment$ = [9, n0, _STE,
|
|
1206
|
-
{ [_h]: ["POST", "/StartTelemetryEnrichment", 202] }, () => __Unit, () => StartTelemetryEnrichmentOutput$
|
|
1207
|
-
];
|
|
1208
|
-
var StartTelemetryEvaluation$ = [9, n0, _STEt,
|
|
1209
|
-
{ [_h]: ["POST", "/StartTelemetryEvaluation", 200] }, () => __Unit, () => __Unit
|
|
1210
|
-
];
|
|
1211
|
-
var StartTelemetryEvaluationForOrganization$ = [9, n0, _STEFO,
|
|
1212
|
-
{ [_h]: ["POST", "/StartTelemetryEvaluationForOrganization", 200] }, () => __Unit, () => __Unit
|
|
1213
|
-
];
|
|
1214
|
-
var StopTelemetryEnrichment$ = [9, n0, _STEto,
|
|
1215
|
-
{ [_h]: ["POST", "/StopTelemetryEnrichment", 202] }, () => __Unit, () => StopTelemetryEnrichmentOutput$
|
|
1216
|
-
];
|
|
1217
|
-
var StopTelemetryEvaluation$ = [9, n0, _STEtop,
|
|
1218
|
-
{ [_h]: ["POST", "/StopTelemetryEvaluation", 200] }, () => __Unit, () => __Unit
|
|
1219
|
-
];
|
|
1220
|
-
var StopTelemetryEvaluationForOrganization$ = [9, n0, _STEFOt,
|
|
1221
|
-
{ [_h]: ["POST", "/StopTelemetryEvaluationForOrganization", 200] }, () => __Unit, () => __Unit
|
|
1222
|
-
];
|
|
1223
|
-
var TagResource$ = [9, n0, _TRa,
|
|
1224
|
-
{ [_h]: ["POST", "/TagResource", 200] }, () => TagResourceInput$, () => __Unit
|
|
1225
|
-
];
|
|
1226
|
-
var TestTelemetryPipeline$ = [9, n0, _TTP,
|
|
1227
|
-
{ [_h]: ["POST", "/TestTelemetryPipeline", 200] }, () => TestTelemetryPipelineInput$, () => TestTelemetryPipelineOutput$
|
|
1228
|
-
];
|
|
1229
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1230
|
-
{ [_h]: ["POST", "/UntagResource", 200] }, () => UntagResourceInput$, () => __Unit
|
|
1231
|
-
];
|
|
1232
|
-
var UpdateCentralizationRuleForOrganization$ = [9, n0, _UCRFO,
|
|
1233
|
-
{ [_h]: ["POST", "/UpdateCentralizationRuleForOrganization", 200] }, () => UpdateCentralizationRuleForOrganizationInput$, () => UpdateCentralizationRuleForOrganizationOutput$
|
|
1234
|
-
];
|
|
1235
|
-
var UpdateTelemetryPipeline$ = [9, n0, _UTP,
|
|
1236
|
-
{ [_h]: ["POST", "/UpdateTelemetryPipeline", 200] }, () => UpdateTelemetryPipelineInput$, () => UpdateTelemetryPipelineOutput$
|
|
1237
|
-
];
|
|
1238
|
-
var UpdateTelemetryRule$ = [9, n0, _UTR,
|
|
1239
|
-
{ [_h]: ["POST", "/UpdateTelemetryRule", 200] }, () => UpdateTelemetryRuleInput$, () => UpdateTelemetryRuleOutput$
|
|
1240
|
-
];
|
|
1241
|
-
var UpdateTelemetryRuleForOrganization$ = [9, n0, _UTRFO,
|
|
1242
|
-
{ [_h]: ["POST", "/UpdateTelemetryRuleForOrganization", 200] }, () => UpdateTelemetryRuleForOrganizationInput$, () => UpdateTelemetryRuleForOrganizationOutput$
|
|
1243
|
-
];
|
|
1244
|
-
var ValidateTelemetryPipelineConfiguration$ = [9, n0, _VTPC,
|
|
1245
|
-
{ [_h]: ["POST", "/ValidateTelemetryPipelineConfiguration", 200] }, () => ValidateTelemetryPipelineConfigurationInput$, () => ValidateTelemetryPipelineConfigurationOutput$
|
|
1246
|
-
];
|
|
1247
|
-
|
|
1248
116
|
class CreateCentralizationRuleForOrganizationCommand extends smithyClient.Command
|
|
1249
117
|
.classBuilder()
|
|
1250
118
|
.ep(commonParams)
|
|
@@ -1253,7 +121,7 @@ class CreateCentralizationRuleForOrganizationCommand extends smithyClient.Comman
|
|
|
1253
121
|
})
|
|
1254
122
|
.s("ObservabilityAdmin", "CreateCentralizationRuleForOrganization", {})
|
|
1255
123
|
.n("ObservabilityAdminClient", "CreateCentralizationRuleForOrganizationCommand")
|
|
1256
|
-
.sc(CreateCentralizationRuleForOrganization$)
|
|
124
|
+
.sc(schemas_0.CreateCentralizationRuleForOrganization$)
|
|
1257
125
|
.build() {
|
|
1258
126
|
}
|
|
1259
127
|
|
|
@@ -1265,7 +133,7 @@ class CreateS3TableIntegrationCommand extends smithyClient.Command
|
|
|
1265
133
|
})
|
|
1266
134
|
.s("ObservabilityAdmin", "CreateS3TableIntegration", {})
|
|
1267
135
|
.n("ObservabilityAdminClient", "CreateS3TableIntegrationCommand")
|
|
1268
|
-
.sc(CreateS3TableIntegration$)
|
|
136
|
+
.sc(schemas_0.CreateS3TableIntegration$)
|
|
1269
137
|
.build() {
|
|
1270
138
|
}
|
|
1271
139
|
|
|
@@ -1277,7 +145,7 @@ class CreateTelemetryPipelineCommand extends smithyClient.Command
|
|
|
1277
145
|
})
|
|
1278
146
|
.s("ObservabilityAdmin", "CreateTelemetryPipeline", {})
|
|
1279
147
|
.n("ObservabilityAdminClient", "CreateTelemetryPipelineCommand")
|
|
1280
|
-
.sc(CreateTelemetryPipeline$)
|
|
148
|
+
.sc(schemas_0.CreateTelemetryPipeline$)
|
|
1281
149
|
.build() {
|
|
1282
150
|
}
|
|
1283
151
|
|
|
@@ -1289,7 +157,7 @@ class CreateTelemetryRuleCommand extends smithyClient.Command
|
|
|
1289
157
|
})
|
|
1290
158
|
.s("ObservabilityAdmin", "CreateTelemetryRule", {})
|
|
1291
159
|
.n("ObservabilityAdminClient", "CreateTelemetryRuleCommand")
|
|
1292
|
-
.sc(CreateTelemetryRule$)
|
|
160
|
+
.sc(schemas_0.CreateTelemetryRule$)
|
|
1293
161
|
.build() {
|
|
1294
162
|
}
|
|
1295
163
|
|
|
@@ -1301,7 +169,7 @@ class CreateTelemetryRuleForOrganizationCommand extends smithyClient.Command
|
|
|
1301
169
|
})
|
|
1302
170
|
.s("ObservabilityAdmin", "CreateTelemetryRuleForOrganization", {})
|
|
1303
171
|
.n("ObservabilityAdminClient", "CreateTelemetryRuleForOrganizationCommand")
|
|
1304
|
-
.sc(CreateTelemetryRuleForOrganization$)
|
|
172
|
+
.sc(schemas_0.CreateTelemetryRuleForOrganization$)
|
|
1305
173
|
.build() {
|
|
1306
174
|
}
|
|
1307
175
|
|
|
@@ -1313,7 +181,7 @@ class DeleteCentralizationRuleForOrganizationCommand extends smithyClient.Comman
|
|
|
1313
181
|
})
|
|
1314
182
|
.s("ObservabilityAdmin", "DeleteCentralizationRuleForOrganization", {})
|
|
1315
183
|
.n("ObservabilityAdminClient", "DeleteCentralizationRuleForOrganizationCommand")
|
|
1316
|
-
.sc(DeleteCentralizationRuleForOrganization$)
|
|
184
|
+
.sc(schemas_0.DeleteCentralizationRuleForOrganization$)
|
|
1317
185
|
.build() {
|
|
1318
186
|
}
|
|
1319
187
|
|
|
@@ -1325,7 +193,7 @@ class DeleteS3TableIntegrationCommand extends smithyClient.Command
|
|
|
1325
193
|
})
|
|
1326
194
|
.s("ObservabilityAdmin", "DeleteS3TableIntegration", {})
|
|
1327
195
|
.n("ObservabilityAdminClient", "DeleteS3TableIntegrationCommand")
|
|
1328
|
-
.sc(DeleteS3TableIntegration$)
|
|
196
|
+
.sc(schemas_0.DeleteS3TableIntegration$)
|
|
1329
197
|
.build() {
|
|
1330
198
|
}
|
|
1331
199
|
|
|
@@ -1337,7 +205,7 @@ class DeleteTelemetryPipelineCommand extends smithyClient.Command
|
|
|
1337
205
|
})
|
|
1338
206
|
.s("ObservabilityAdmin", "DeleteTelemetryPipeline", {})
|
|
1339
207
|
.n("ObservabilityAdminClient", "DeleteTelemetryPipelineCommand")
|
|
1340
|
-
.sc(DeleteTelemetryPipeline$)
|
|
208
|
+
.sc(schemas_0.DeleteTelemetryPipeline$)
|
|
1341
209
|
.build() {
|
|
1342
210
|
}
|
|
1343
211
|
|
|
@@ -1349,7 +217,7 @@ class DeleteTelemetryRuleCommand extends smithyClient.Command
|
|
|
1349
217
|
})
|
|
1350
218
|
.s("ObservabilityAdmin", "DeleteTelemetryRule", {})
|
|
1351
219
|
.n("ObservabilityAdminClient", "DeleteTelemetryRuleCommand")
|
|
1352
|
-
.sc(DeleteTelemetryRule$)
|
|
220
|
+
.sc(schemas_0.DeleteTelemetryRule$)
|
|
1353
221
|
.build() {
|
|
1354
222
|
}
|
|
1355
223
|
|
|
@@ -1361,7 +229,7 @@ class DeleteTelemetryRuleForOrganizationCommand extends smithyClient.Command
|
|
|
1361
229
|
})
|
|
1362
230
|
.s("ObservabilityAdmin", "DeleteTelemetryRuleForOrganization", {})
|
|
1363
231
|
.n("ObservabilityAdminClient", "DeleteTelemetryRuleForOrganizationCommand")
|
|
1364
|
-
.sc(DeleteTelemetryRuleForOrganization$)
|
|
232
|
+
.sc(schemas_0.DeleteTelemetryRuleForOrganization$)
|
|
1365
233
|
.build() {
|
|
1366
234
|
}
|
|
1367
235
|
|
|
@@ -1373,7 +241,7 @@ class GetCentralizationRuleForOrganizationCommand extends smithyClient.Command
|
|
|
1373
241
|
})
|
|
1374
242
|
.s("ObservabilityAdmin", "GetCentralizationRuleForOrganization", {})
|
|
1375
243
|
.n("ObservabilityAdminClient", "GetCentralizationRuleForOrganizationCommand")
|
|
1376
|
-
.sc(GetCentralizationRuleForOrganization$)
|
|
244
|
+
.sc(schemas_0.GetCentralizationRuleForOrganization$)
|
|
1377
245
|
.build() {
|
|
1378
246
|
}
|
|
1379
247
|
|
|
@@ -1385,7 +253,7 @@ class GetS3TableIntegrationCommand extends smithyClient.Command
|
|
|
1385
253
|
})
|
|
1386
254
|
.s("ObservabilityAdmin", "GetS3TableIntegration", {})
|
|
1387
255
|
.n("ObservabilityAdminClient", "GetS3TableIntegrationCommand")
|
|
1388
|
-
.sc(GetS3TableIntegration$)
|
|
256
|
+
.sc(schemas_0.GetS3TableIntegration$)
|
|
1389
257
|
.build() {
|
|
1390
258
|
}
|
|
1391
259
|
|
|
@@ -1397,7 +265,7 @@ class GetTelemetryEnrichmentStatusCommand extends smithyClient.Command
|
|
|
1397
265
|
})
|
|
1398
266
|
.s("ObservabilityAdmin", "GetTelemetryEnrichmentStatus", {})
|
|
1399
267
|
.n("ObservabilityAdminClient", "GetTelemetryEnrichmentStatusCommand")
|
|
1400
|
-
.sc(GetTelemetryEnrichmentStatus$)
|
|
268
|
+
.sc(schemas_0.GetTelemetryEnrichmentStatus$)
|
|
1401
269
|
.build() {
|
|
1402
270
|
}
|
|
1403
271
|
|
|
@@ -1409,7 +277,7 @@ class GetTelemetryEvaluationStatusCommand extends smithyClient.Command
|
|
|
1409
277
|
})
|
|
1410
278
|
.s("ObservabilityAdmin", "GetTelemetryEvaluationStatus", {})
|
|
1411
279
|
.n("ObservabilityAdminClient", "GetTelemetryEvaluationStatusCommand")
|
|
1412
|
-
.sc(GetTelemetryEvaluationStatus$)
|
|
280
|
+
.sc(schemas_0.GetTelemetryEvaluationStatus$)
|
|
1413
281
|
.build() {
|
|
1414
282
|
}
|
|
1415
283
|
|
|
@@ -1421,7 +289,7 @@ class GetTelemetryEvaluationStatusForOrganizationCommand extends smithyClient.Co
|
|
|
1421
289
|
})
|
|
1422
290
|
.s("ObservabilityAdmin", "GetTelemetryEvaluationStatusForOrganization", {})
|
|
1423
291
|
.n("ObservabilityAdminClient", "GetTelemetryEvaluationStatusForOrganizationCommand")
|
|
1424
|
-
.sc(GetTelemetryEvaluationStatusForOrganization$)
|
|
292
|
+
.sc(schemas_0.GetTelemetryEvaluationStatusForOrganization$)
|
|
1425
293
|
.build() {
|
|
1426
294
|
}
|
|
1427
295
|
|
|
@@ -1433,7 +301,7 @@ class GetTelemetryPipelineCommand extends smithyClient.Command
|
|
|
1433
301
|
})
|
|
1434
302
|
.s("ObservabilityAdmin", "GetTelemetryPipeline", {})
|
|
1435
303
|
.n("ObservabilityAdminClient", "GetTelemetryPipelineCommand")
|
|
1436
|
-
.sc(GetTelemetryPipeline$)
|
|
304
|
+
.sc(schemas_0.GetTelemetryPipeline$)
|
|
1437
305
|
.build() {
|
|
1438
306
|
}
|
|
1439
307
|
|
|
@@ -1445,7 +313,7 @@ class GetTelemetryRuleCommand extends smithyClient.Command
|
|
|
1445
313
|
})
|
|
1446
314
|
.s("ObservabilityAdmin", "GetTelemetryRule", {})
|
|
1447
315
|
.n("ObservabilityAdminClient", "GetTelemetryRuleCommand")
|
|
1448
|
-
.sc(GetTelemetryRule$)
|
|
316
|
+
.sc(schemas_0.GetTelemetryRule$)
|
|
1449
317
|
.build() {
|
|
1450
318
|
}
|
|
1451
319
|
|
|
@@ -1457,7 +325,7 @@ class GetTelemetryRuleForOrganizationCommand extends smithyClient.Command
|
|
|
1457
325
|
})
|
|
1458
326
|
.s("ObservabilityAdmin", "GetTelemetryRuleForOrganization", {})
|
|
1459
327
|
.n("ObservabilityAdminClient", "GetTelemetryRuleForOrganizationCommand")
|
|
1460
|
-
.sc(GetTelemetryRuleForOrganization$)
|
|
328
|
+
.sc(schemas_0.GetTelemetryRuleForOrganization$)
|
|
1461
329
|
.build() {
|
|
1462
330
|
}
|
|
1463
331
|
|
|
@@ -1469,7 +337,7 @@ class ListCentralizationRulesForOrganizationCommand extends smithyClient.Command
|
|
|
1469
337
|
})
|
|
1470
338
|
.s("ObservabilityAdmin", "ListCentralizationRulesForOrganization", {})
|
|
1471
339
|
.n("ObservabilityAdminClient", "ListCentralizationRulesForOrganizationCommand")
|
|
1472
|
-
.sc(ListCentralizationRulesForOrganization$)
|
|
340
|
+
.sc(schemas_0.ListCentralizationRulesForOrganization$)
|
|
1473
341
|
.build() {
|
|
1474
342
|
}
|
|
1475
343
|
|
|
@@ -1481,7 +349,7 @@ class ListResourceTelemetryCommand extends smithyClient.Command
|
|
|
1481
349
|
})
|
|
1482
350
|
.s("ObservabilityAdmin", "ListResourceTelemetry", {})
|
|
1483
351
|
.n("ObservabilityAdminClient", "ListResourceTelemetryCommand")
|
|
1484
|
-
.sc(ListResourceTelemetry$)
|
|
352
|
+
.sc(schemas_0.ListResourceTelemetry$)
|
|
1485
353
|
.build() {
|
|
1486
354
|
}
|
|
1487
355
|
|
|
@@ -1493,7 +361,7 @@ class ListResourceTelemetryForOrganizationCommand extends smithyClient.Command
|
|
|
1493
361
|
})
|
|
1494
362
|
.s("ObservabilityAdmin", "ListResourceTelemetryForOrganization", {})
|
|
1495
363
|
.n("ObservabilityAdminClient", "ListResourceTelemetryForOrganizationCommand")
|
|
1496
|
-
.sc(ListResourceTelemetryForOrganization$)
|
|
364
|
+
.sc(schemas_0.ListResourceTelemetryForOrganization$)
|
|
1497
365
|
.build() {
|
|
1498
366
|
}
|
|
1499
367
|
|
|
@@ -1505,7 +373,7 @@ class ListS3TableIntegrationsCommand extends smithyClient.Command
|
|
|
1505
373
|
})
|
|
1506
374
|
.s("ObservabilityAdmin", "ListS3TableIntegrations", {})
|
|
1507
375
|
.n("ObservabilityAdminClient", "ListS3TableIntegrationsCommand")
|
|
1508
|
-
.sc(ListS3TableIntegrations$)
|
|
376
|
+
.sc(schemas_0.ListS3TableIntegrations$)
|
|
1509
377
|
.build() {
|
|
1510
378
|
}
|
|
1511
379
|
|
|
@@ -1517,7 +385,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1517
385
|
})
|
|
1518
386
|
.s("ObservabilityAdmin", "ListTagsForResource", {})
|
|
1519
387
|
.n("ObservabilityAdminClient", "ListTagsForResourceCommand")
|
|
1520
|
-
.sc(ListTagsForResource$)
|
|
388
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1521
389
|
.build() {
|
|
1522
390
|
}
|
|
1523
391
|
|
|
@@ -1529,7 +397,7 @@ class ListTelemetryPipelinesCommand extends smithyClient.Command
|
|
|
1529
397
|
})
|
|
1530
398
|
.s("ObservabilityAdmin", "ListTelemetryPipelines", {})
|
|
1531
399
|
.n("ObservabilityAdminClient", "ListTelemetryPipelinesCommand")
|
|
1532
|
-
.sc(ListTelemetryPipelines$)
|
|
400
|
+
.sc(schemas_0.ListTelemetryPipelines$)
|
|
1533
401
|
.build() {
|
|
1534
402
|
}
|
|
1535
403
|
|
|
@@ -1541,7 +409,7 @@ class ListTelemetryRulesCommand extends smithyClient.Command
|
|
|
1541
409
|
})
|
|
1542
410
|
.s("ObservabilityAdmin", "ListTelemetryRules", {})
|
|
1543
411
|
.n("ObservabilityAdminClient", "ListTelemetryRulesCommand")
|
|
1544
|
-
.sc(ListTelemetryRules$)
|
|
412
|
+
.sc(schemas_0.ListTelemetryRules$)
|
|
1545
413
|
.build() {
|
|
1546
414
|
}
|
|
1547
415
|
|
|
@@ -1553,7 +421,7 @@ class ListTelemetryRulesForOrganizationCommand extends smithyClient.Command
|
|
|
1553
421
|
})
|
|
1554
422
|
.s("ObservabilityAdmin", "ListTelemetryRulesForOrganization", {})
|
|
1555
423
|
.n("ObservabilityAdminClient", "ListTelemetryRulesForOrganizationCommand")
|
|
1556
|
-
.sc(ListTelemetryRulesForOrganization$)
|
|
424
|
+
.sc(schemas_0.ListTelemetryRulesForOrganization$)
|
|
1557
425
|
.build() {
|
|
1558
426
|
}
|
|
1559
427
|
|
|
@@ -1565,7 +433,7 @@ class StartTelemetryEnrichmentCommand extends smithyClient.Command
|
|
|
1565
433
|
})
|
|
1566
434
|
.s("ObservabilityAdmin", "StartTelemetryEnrichment", {})
|
|
1567
435
|
.n("ObservabilityAdminClient", "StartTelemetryEnrichmentCommand")
|
|
1568
|
-
.sc(StartTelemetryEnrichment$)
|
|
436
|
+
.sc(schemas_0.StartTelemetryEnrichment$)
|
|
1569
437
|
.build() {
|
|
1570
438
|
}
|
|
1571
439
|
|
|
@@ -1577,7 +445,7 @@ class StartTelemetryEvaluationCommand extends smithyClient.Command
|
|
|
1577
445
|
})
|
|
1578
446
|
.s("ObservabilityAdmin", "StartTelemetryEvaluation", {})
|
|
1579
447
|
.n("ObservabilityAdminClient", "StartTelemetryEvaluationCommand")
|
|
1580
|
-
.sc(StartTelemetryEvaluation$)
|
|
448
|
+
.sc(schemas_0.StartTelemetryEvaluation$)
|
|
1581
449
|
.build() {
|
|
1582
450
|
}
|
|
1583
451
|
|
|
@@ -1589,7 +457,7 @@ class StartTelemetryEvaluationForOrganizationCommand extends smithyClient.Comman
|
|
|
1589
457
|
})
|
|
1590
458
|
.s("ObservabilityAdmin", "StartTelemetryEvaluationForOrganization", {})
|
|
1591
459
|
.n("ObservabilityAdminClient", "StartTelemetryEvaluationForOrganizationCommand")
|
|
1592
|
-
.sc(StartTelemetryEvaluationForOrganization$)
|
|
460
|
+
.sc(schemas_0.StartTelemetryEvaluationForOrganization$)
|
|
1593
461
|
.build() {
|
|
1594
462
|
}
|
|
1595
463
|
|
|
@@ -1601,7 +469,7 @@ class StopTelemetryEnrichmentCommand extends smithyClient.Command
|
|
|
1601
469
|
})
|
|
1602
470
|
.s("ObservabilityAdmin", "StopTelemetryEnrichment", {})
|
|
1603
471
|
.n("ObservabilityAdminClient", "StopTelemetryEnrichmentCommand")
|
|
1604
|
-
.sc(StopTelemetryEnrichment$)
|
|
472
|
+
.sc(schemas_0.StopTelemetryEnrichment$)
|
|
1605
473
|
.build() {
|
|
1606
474
|
}
|
|
1607
475
|
|
|
@@ -1613,7 +481,7 @@ class StopTelemetryEvaluationCommand extends smithyClient.Command
|
|
|
1613
481
|
})
|
|
1614
482
|
.s("ObservabilityAdmin", "StopTelemetryEvaluation", {})
|
|
1615
483
|
.n("ObservabilityAdminClient", "StopTelemetryEvaluationCommand")
|
|
1616
|
-
.sc(StopTelemetryEvaluation$)
|
|
484
|
+
.sc(schemas_0.StopTelemetryEvaluation$)
|
|
1617
485
|
.build() {
|
|
1618
486
|
}
|
|
1619
487
|
|
|
@@ -1625,7 +493,7 @@ class StopTelemetryEvaluationForOrganizationCommand extends smithyClient.Command
|
|
|
1625
493
|
})
|
|
1626
494
|
.s("ObservabilityAdmin", "StopTelemetryEvaluationForOrganization", {})
|
|
1627
495
|
.n("ObservabilityAdminClient", "StopTelemetryEvaluationForOrganizationCommand")
|
|
1628
|
-
.sc(StopTelemetryEvaluationForOrganization$)
|
|
496
|
+
.sc(schemas_0.StopTelemetryEvaluationForOrganization$)
|
|
1629
497
|
.build() {
|
|
1630
498
|
}
|
|
1631
499
|
|
|
@@ -1637,7 +505,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1637
505
|
})
|
|
1638
506
|
.s("ObservabilityAdmin", "TagResource", {})
|
|
1639
507
|
.n("ObservabilityAdminClient", "TagResourceCommand")
|
|
1640
|
-
.sc(TagResource$)
|
|
508
|
+
.sc(schemas_0.TagResource$)
|
|
1641
509
|
.build() {
|
|
1642
510
|
}
|
|
1643
511
|
|
|
@@ -1649,7 +517,7 @@ class TestTelemetryPipelineCommand extends smithyClient.Command
|
|
|
1649
517
|
})
|
|
1650
518
|
.s("ObservabilityAdmin", "TestTelemetryPipeline", {})
|
|
1651
519
|
.n("ObservabilityAdminClient", "TestTelemetryPipelineCommand")
|
|
1652
|
-
.sc(TestTelemetryPipeline$)
|
|
520
|
+
.sc(schemas_0.TestTelemetryPipeline$)
|
|
1653
521
|
.build() {
|
|
1654
522
|
}
|
|
1655
523
|
|
|
@@ -1661,7 +529,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1661
529
|
})
|
|
1662
530
|
.s("ObservabilityAdmin", "UntagResource", {})
|
|
1663
531
|
.n("ObservabilityAdminClient", "UntagResourceCommand")
|
|
1664
|
-
.sc(UntagResource$)
|
|
532
|
+
.sc(schemas_0.UntagResource$)
|
|
1665
533
|
.build() {
|
|
1666
534
|
}
|
|
1667
535
|
|
|
@@ -1673,7 +541,7 @@ class UpdateCentralizationRuleForOrganizationCommand extends smithyClient.Comman
|
|
|
1673
541
|
})
|
|
1674
542
|
.s("ObservabilityAdmin", "UpdateCentralizationRuleForOrganization", {})
|
|
1675
543
|
.n("ObservabilityAdminClient", "UpdateCentralizationRuleForOrganizationCommand")
|
|
1676
|
-
.sc(UpdateCentralizationRuleForOrganization$)
|
|
544
|
+
.sc(schemas_0.UpdateCentralizationRuleForOrganization$)
|
|
1677
545
|
.build() {
|
|
1678
546
|
}
|
|
1679
547
|
|
|
@@ -1685,7 +553,7 @@ class UpdateTelemetryPipelineCommand extends smithyClient.Command
|
|
|
1685
553
|
})
|
|
1686
554
|
.s("ObservabilityAdmin", "UpdateTelemetryPipeline", {})
|
|
1687
555
|
.n("ObservabilityAdminClient", "UpdateTelemetryPipelineCommand")
|
|
1688
|
-
.sc(UpdateTelemetryPipeline$)
|
|
556
|
+
.sc(schemas_0.UpdateTelemetryPipeline$)
|
|
1689
557
|
.build() {
|
|
1690
558
|
}
|
|
1691
559
|
|
|
@@ -1697,7 +565,7 @@ class UpdateTelemetryRuleCommand extends smithyClient.Command
|
|
|
1697
565
|
})
|
|
1698
566
|
.s("ObservabilityAdmin", "UpdateTelemetryRule", {})
|
|
1699
567
|
.n("ObservabilityAdminClient", "UpdateTelemetryRuleCommand")
|
|
1700
|
-
.sc(UpdateTelemetryRule$)
|
|
568
|
+
.sc(schemas_0.UpdateTelemetryRule$)
|
|
1701
569
|
.build() {
|
|
1702
570
|
}
|
|
1703
571
|
|
|
@@ -1709,7 +577,7 @@ class UpdateTelemetryRuleForOrganizationCommand extends smithyClient.Command
|
|
|
1709
577
|
})
|
|
1710
578
|
.s("ObservabilityAdmin", "UpdateTelemetryRuleForOrganization", {})
|
|
1711
579
|
.n("ObservabilityAdminClient", "UpdateTelemetryRuleForOrganizationCommand")
|
|
1712
|
-
.sc(UpdateTelemetryRuleForOrganization$)
|
|
580
|
+
.sc(schemas_0.UpdateTelemetryRuleForOrganization$)
|
|
1713
581
|
.build() {
|
|
1714
582
|
}
|
|
1715
583
|
|
|
@@ -1721,7 +589,7 @@ class ValidateTelemetryPipelineConfigurationCommand extends smithyClient.Command
|
|
|
1721
589
|
})
|
|
1722
590
|
.s("ObservabilityAdmin", "ValidateTelemetryPipelineConfiguration", {})
|
|
1723
591
|
.n("ObservabilityAdminClient", "ValidateTelemetryPipelineConfigurationCommand")
|
|
1724
|
-
.sc(ValidateTelemetryPipelineConfiguration$)
|
|
592
|
+
.sc(schemas_0.ValidateTelemetryPipelineConfiguration$)
|
|
1725
593
|
.build() {
|
|
1726
594
|
}
|
|
1727
595
|
|
|
@@ -1921,228 +789,74 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1921
789
|
enumerable: true,
|
|
1922
790
|
get: function () { return smithyClient.Client; }
|
|
1923
791
|
});
|
|
1924
|
-
exports
|
|
1925
|
-
|
|
792
|
+
Object.defineProperty(exports, "ObservabilityAdminServiceException", {
|
|
793
|
+
enumerable: true,
|
|
794
|
+
get: function () { return ObservabilityAdminServiceException.ObservabilityAdminServiceException; }
|
|
795
|
+
});
|
|
1926
796
|
exports.Action = Action;
|
|
1927
|
-
exports.ActionCondition$ = ActionCondition$;
|
|
1928
|
-
exports.AdvancedEventSelector$ = AdvancedEventSelector$;
|
|
1929
|
-
exports.AdvancedFieldSelector$ = AdvancedFieldSelector$;
|
|
1930
797
|
exports.CentralizationFailureReason = CentralizationFailureReason;
|
|
1931
|
-
exports.CentralizationRule$ = CentralizationRule$;
|
|
1932
|
-
exports.CentralizationRuleDestination$ = CentralizationRuleDestination$;
|
|
1933
|
-
exports.CentralizationRuleSource$ = CentralizationRuleSource$;
|
|
1934
|
-
exports.CentralizationRuleSummary$ = CentralizationRuleSummary$;
|
|
1935
|
-
exports.CloudtrailParameters$ = CloudtrailParameters$;
|
|
1936
|
-
exports.Condition$ = Condition$;
|
|
1937
|
-
exports.ConfigurationSummary$ = ConfigurationSummary$;
|
|
1938
|
-
exports.ConflictException = ConflictException;
|
|
1939
|
-
exports.ConflictException$ = ConflictException$;
|
|
1940
|
-
exports.CreateCentralizationRuleForOrganization$ = CreateCentralizationRuleForOrganization$;
|
|
1941
798
|
exports.CreateCentralizationRuleForOrganizationCommand = CreateCentralizationRuleForOrganizationCommand;
|
|
1942
|
-
exports.CreateCentralizationRuleForOrganizationInput$ = CreateCentralizationRuleForOrganizationInput$;
|
|
1943
|
-
exports.CreateCentralizationRuleForOrganizationOutput$ = CreateCentralizationRuleForOrganizationOutput$;
|
|
1944
|
-
exports.CreateS3TableIntegration$ = CreateS3TableIntegration$;
|
|
1945
799
|
exports.CreateS3TableIntegrationCommand = CreateS3TableIntegrationCommand;
|
|
1946
|
-
exports.CreateS3TableIntegrationInput$ = CreateS3TableIntegrationInput$;
|
|
1947
|
-
exports.CreateS3TableIntegrationOutput$ = CreateS3TableIntegrationOutput$;
|
|
1948
|
-
exports.CreateTelemetryPipeline$ = CreateTelemetryPipeline$;
|
|
1949
800
|
exports.CreateTelemetryPipelineCommand = CreateTelemetryPipelineCommand;
|
|
1950
|
-
exports.CreateTelemetryPipelineInput$ = CreateTelemetryPipelineInput$;
|
|
1951
|
-
exports.CreateTelemetryPipelineOutput$ = CreateTelemetryPipelineOutput$;
|
|
1952
|
-
exports.CreateTelemetryRule$ = CreateTelemetryRule$;
|
|
1953
801
|
exports.CreateTelemetryRuleCommand = CreateTelemetryRuleCommand;
|
|
1954
|
-
exports.CreateTelemetryRuleForOrganization$ = CreateTelemetryRuleForOrganization$;
|
|
1955
802
|
exports.CreateTelemetryRuleForOrganizationCommand = CreateTelemetryRuleForOrganizationCommand;
|
|
1956
|
-
exports.CreateTelemetryRuleForOrganizationInput$ = CreateTelemetryRuleForOrganizationInput$;
|
|
1957
|
-
exports.CreateTelemetryRuleForOrganizationOutput$ = CreateTelemetryRuleForOrganizationOutput$;
|
|
1958
|
-
exports.CreateTelemetryRuleInput$ = CreateTelemetryRuleInput$;
|
|
1959
|
-
exports.CreateTelemetryRuleOutput$ = CreateTelemetryRuleOutput$;
|
|
1960
|
-
exports.DataSource$ = DataSource$;
|
|
1961
|
-
exports.DeleteCentralizationRuleForOrganization$ = DeleteCentralizationRuleForOrganization$;
|
|
1962
803
|
exports.DeleteCentralizationRuleForOrganizationCommand = DeleteCentralizationRuleForOrganizationCommand;
|
|
1963
|
-
exports.DeleteCentralizationRuleForOrganizationInput$ = DeleteCentralizationRuleForOrganizationInput$;
|
|
1964
|
-
exports.DeleteS3TableIntegration$ = DeleteS3TableIntegration$;
|
|
1965
804
|
exports.DeleteS3TableIntegrationCommand = DeleteS3TableIntegrationCommand;
|
|
1966
|
-
exports.DeleteS3TableIntegrationInput$ = DeleteS3TableIntegrationInput$;
|
|
1967
|
-
exports.DeleteTelemetryPipeline$ = DeleteTelemetryPipeline$;
|
|
1968
805
|
exports.DeleteTelemetryPipelineCommand = DeleteTelemetryPipelineCommand;
|
|
1969
|
-
exports.DeleteTelemetryPipelineInput$ = DeleteTelemetryPipelineInput$;
|
|
1970
|
-
exports.DeleteTelemetryPipelineOutput$ = DeleteTelemetryPipelineOutput$;
|
|
1971
|
-
exports.DeleteTelemetryRule$ = DeleteTelemetryRule$;
|
|
1972
806
|
exports.DeleteTelemetryRuleCommand = DeleteTelemetryRuleCommand;
|
|
1973
|
-
exports.DeleteTelemetryRuleForOrganization$ = DeleteTelemetryRuleForOrganization$;
|
|
1974
807
|
exports.DeleteTelemetryRuleForOrganizationCommand = DeleteTelemetryRuleForOrganizationCommand;
|
|
1975
|
-
exports.DeleteTelemetryRuleForOrganizationInput$ = DeleteTelemetryRuleForOrganizationInput$;
|
|
1976
|
-
exports.DeleteTelemetryRuleInput$ = DeleteTelemetryRuleInput$;
|
|
1977
|
-
exports.DestinationLogsConfiguration$ = DestinationLogsConfiguration$;
|
|
1978
808
|
exports.DestinationType = DestinationType;
|
|
1979
|
-
exports.ELBLoadBalancerLoggingParameters$ = ELBLoadBalancerLoggingParameters$;
|
|
1980
809
|
exports.EncryptedLogGroupStrategy = EncryptedLogGroupStrategy;
|
|
1981
|
-
exports.Encryption$ = Encryption$;
|
|
1982
810
|
exports.EncryptionConflictResolutionStrategy = EncryptionConflictResolutionStrategy;
|
|
1983
811
|
exports.EncryptionStrategy = EncryptionStrategy;
|
|
1984
|
-
exports.FieldToMatch$ = FieldToMatch$;
|
|
1985
|
-
exports.Filter$ = Filter$;
|
|
1986
812
|
exports.FilterBehavior = FilterBehavior;
|
|
1987
813
|
exports.FilterRequirement = FilterRequirement;
|
|
1988
|
-
exports.GetCentralizationRuleForOrganization$ = GetCentralizationRuleForOrganization$;
|
|
1989
814
|
exports.GetCentralizationRuleForOrganizationCommand = GetCentralizationRuleForOrganizationCommand;
|
|
1990
|
-
exports.GetCentralizationRuleForOrganizationInput$ = GetCentralizationRuleForOrganizationInput$;
|
|
1991
|
-
exports.GetCentralizationRuleForOrganizationOutput$ = GetCentralizationRuleForOrganizationOutput$;
|
|
1992
|
-
exports.GetS3TableIntegration$ = GetS3TableIntegration$;
|
|
1993
815
|
exports.GetS3TableIntegrationCommand = GetS3TableIntegrationCommand;
|
|
1994
|
-
exports.GetS3TableIntegrationInput$ = GetS3TableIntegrationInput$;
|
|
1995
|
-
exports.GetS3TableIntegrationOutput$ = GetS3TableIntegrationOutput$;
|
|
1996
|
-
exports.GetTelemetryEnrichmentStatus$ = GetTelemetryEnrichmentStatus$;
|
|
1997
816
|
exports.GetTelemetryEnrichmentStatusCommand = GetTelemetryEnrichmentStatusCommand;
|
|
1998
|
-
exports.GetTelemetryEnrichmentStatusOutput$ = GetTelemetryEnrichmentStatusOutput$;
|
|
1999
|
-
exports.GetTelemetryEvaluationStatus$ = GetTelemetryEvaluationStatus$;
|
|
2000
817
|
exports.GetTelemetryEvaluationStatusCommand = GetTelemetryEvaluationStatusCommand;
|
|
2001
|
-
exports.GetTelemetryEvaluationStatusForOrganization$ = GetTelemetryEvaluationStatusForOrganization$;
|
|
2002
818
|
exports.GetTelemetryEvaluationStatusForOrganizationCommand = GetTelemetryEvaluationStatusForOrganizationCommand;
|
|
2003
|
-
exports.GetTelemetryEvaluationStatusForOrganizationOutput$ = GetTelemetryEvaluationStatusForOrganizationOutput$;
|
|
2004
|
-
exports.GetTelemetryEvaluationStatusOutput$ = GetTelemetryEvaluationStatusOutput$;
|
|
2005
|
-
exports.GetTelemetryPipeline$ = GetTelemetryPipeline$;
|
|
2006
819
|
exports.GetTelemetryPipelineCommand = GetTelemetryPipelineCommand;
|
|
2007
|
-
exports.GetTelemetryPipelineInput$ = GetTelemetryPipelineInput$;
|
|
2008
|
-
exports.GetTelemetryPipelineOutput$ = GetTelemetryPipelineOutput$;
|
|
2009
|
-
exports.GetTelemetryRule$ = GetTelemetryRule$;
|
|
2010
820
|
exports.GetTelemetryRuleCommand = GetTelemetryRuleCommand;
|
|
2011
|
-
exports.GetTelemetryRuleForOrganization$ = GetTelemetryRuleForOrganization$;
|
|
2012
821
|
exports.GetTelemetryRuleForOrganizationCommand = GetTelemetryRuleForOrganizationCommand;
|
|
2013
|
-
exports.GetTelemetryRuleForOrganizationInput$ = GetTelemetryRuleForOrganizationInput$;
|
|
2014
|
-
exports.GetTelemetryRuleForOrganizationOutput$ = GetTelemetryRuleForOrganizationOutput$;
|
|
2015
|
-
exports.GetTelemetryRuleInput$ = GetTelemetryRuleInput$;
|
|
2016
|
-
exports.GetTelemetryRuleOutput$ = GetTelemetryRuleOutput$;
|
|
2017
822
|
exports.IntegrationStatus = IntegrationStatus;
|
|
2018
|
-
exports.IntegrationSummary$ = IntegrationSummary$;
|
|
2019
|
-
exports.InternalServerException = InternalServerException;
|
|
2020
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2021
|
-
exports.InvalidStateException = InvalidStateException;
|
|
2022
|
-
exports.InvalidStateException$ = InvalidStateException$;
|
|
2023
|
-
exports.LabelNameCondition$ = LabelNameCondition$;
|
|
2024
|
-
exports.ListCentralizationRulesForOrganization$ = ListCentralizationRulesForOrganization$;
|
|
2025
823
|
exports.ListCentralizationRulesForOrganizationCommand = ListCentralizationRulesForOrganizationCommand;
|
|
2026
|
-
exports.ListCentralizationRulesForOrganizationInput$ = ListCentralizationRulesForOrganizationInput$;
|
|
2027
|
-
exports.ListCentralizationRulesForOrganizationOutput$ = ListCentralizationRulesForOrganizationOutput$;
|
|
2028
|
-
exports.ListResourceTelemetry$ = ListResourceTelemetry$;
|
|
2029
824
|
exports.ListResourceTelemetryCommand = ListResourceTelemetryCommand;
|
|
2030
|
-
exports.ListResourceTelemetryForOrganization$ = ListResourceTelemetryForOrganization$;
|
|
2031
825
|
exports.ListResourceTelemetryForOrganizationCommand = ListResourceTelemetryForOrganizationCommand;
|
|
2032
|
-
exports.ListResourceTelemetryForOrganizationInput$ = ListResourceTelemetryForOrganizationInput$;
|
|
2033
|
-
exports.ListResourceTelemetryForOrganizationOutput$ = ListResourceTelemetryForOrganizationOutput$;
|
|
2034
|
-
exports.ListResourceTelemetryInput$ = ListResourceTelemetryInput$;
|
|
2035
|
-
exports.ListResourceTelemetryOutput$ = ListResourceTelemetryOutput$;
|
|
2036
|
-
exports.ListS3TableIntegrations$ = ListS3TableIntegrations$;
|
|
2037
826
|
exports.ListS3TableIntegrationsCommand = ListS3TableIntegrationsCommand;
|
|
2038
|
-
exports.ListS3TableIntegrationsInput$ = ListS3TableIntegrationsInput$;
|
|
2039
|
-
exports.ListS3TableIntegrationsOutput$ = ListS3TableIntegrationsOutput$;
|
|
2040
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2041
827
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2042
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2043
|
-
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2044
|
-
exports.ListTelemetryPipelines$ = ListTelemetryPipelines$;
|
|
2045
828
|
exports.ListTelemetryPipelinesCommand = ListTelemetryPipelinesCommand;
|
|
2046
|
-
exports.ListTelemetryPipelinesInput$ = ListTelemetryPipelinesInput$;
|
|
2047
|
-
exports.ListTelemetryPipelinesOutput$ = ListTelemetryPipelinesOutput$;
|
|
2048
|
-
exports.ListTelemetryRules$ = ListTelemetryRules$;
|
|
2049
829
|
exports.ListTelemetryRulesCommand = ListTelemetryRulesCommand;
|
|
2050
|
-
exports.ListTelemetryRulesForOrganization$ = ListTelemetryRulesForOrganization$;
|
|
2051
830
|
exports.ListTelemetryRulesForOrganizationCommand = ListTelemetryRulesForOrganizationCommand;
|
|
2052
|
-
exports.ListTelemetryRulesForOrganizationInput$ = ListTelemetryRulesForOrganizationInput$;
|
|
2053
|
-
exports.ListTelemetryRulesForOrganizationOutput$ = ListTelemetryRulesForOrganizationOutput$;
|
|
2054
|
-
exports.ListTelemetryRulesInput$ = ListTelemetryRulesInput$;
|
|
2055
|
-
exports.ListTelemetryRulesOutput$ = ListTelemetryRulesOutput$;
|
|
2056
|
-
exports.LogDeliveryParameters$ = LogDeliveryParameters$;
|
|
2057
831
|
exports.LogType = LogType;
|
|
2058
|
-
exports.LoggingFilter$ = LoggingFilter$;
|
|
2059
|
-
exports.LogsBackupConfiguration$ = LogsBackupConfiguration$;
|
|
2060
|
-
exports.LogsEncryptionConfiguration$ = LogsEncryptionConfiguration$;
|
|
2061
832
|
exports.ObservabilityAdmin = ObservabilityAdmin;
|
|
2062
833
|
exports.ObservabilityAdminClient = ObservabilityAdminClient;
|
|
2063
|
-
exports.ObservabilityAdminServiceException = ObservabilityAdminServiceException;
|
|
2064
|
-
exports.ObservabilityAdminServiceException$ = ObservabilityAdminServiceException$;
|
|
2065
834
|
exports.OutputFormat = OutputFormat;
|
|
2066
|
-
exports.PipelineOutput$ = PipelineOutput$;
|
|
2067
|
-
exports.PipelineOutputError$ = PipelineOutputError$;
|
|
2068
835
|
exports.RecordFormat = RecordFormat;
|
|
2069
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2070
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2071
836
|
exports.ResourceType = ResourceType;
|
|
2072
837
|
exports.RuleHealth = RuleHealth;
|
|
2073
838
|
exports.SSEAlgorithm = SSEAlgorithm;
|
|
2074
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2075
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2076
|
-
exports.SingleHeader$ = SingleHeader$;
|
|
2077
|
-
exports.Source$ = Source$;
|
|
2078
|
-
exports.SourceLogsConfiguration$ = SourceLogsConfiguration$;
|
|
2079
|
-
exports.StartTelemetryEnrichment$ = StartTelemetryEnrichment$;
|
|
2080
839
|
exports.StartTelemetryEnrichmentCommand = StartTelemetryEnrichmentCommand;
|
|
2081
|
-
exports.StartTelemetryEnrichmentOutput$ = StartTelemetryEnrichmentOutput$;
|
|
2082
|
-
exports.StartTelemetryEvaluation$ = StartTelemetryEvaluation$;
|
|
2083
840
|
exports.StartTelemetryEvaluationCommand = StartTelemetryEvaluationCommand;
|
|
2084
|
-
exports.StartTelemetryEvaluationForOrganization$ = StartTelemetryEvaluationForOrganization$;
|
|
2085
841
|
exports.StartTelemetryEvaluationForOrganizationCommand = StartTelemetryEvaluationForOrganizationCommand;
|
|
2086
842
|
exports.Status = Status;
|
|
2087
|
-
exports.StopTelemetryEnrichment$ = StopTelemetryEnrichment$;
|
|
2088
843
|
exports.StopTelemetryEnrichmentCommand = StopTelemetryEnrichmentCommand;
|
|
2089
|
-
exports.StopTelemetryEnrichmentOutput$ = StopTelemetryEnrichmentOutput$;
|
|
2090
|
-
exports.StopTelemetryEvaluation$ = StopTelemetryEvaluation$;
|
|
2091
844
|
exports.StopTelemetryEvaluationCommand = StopTelemetryEvaluationCommand;
|
|
2092
|
-
exports.StopTelemetryEvaluationForOrganization$ = StopTelemetryEvaluationForOrganization$;
|
|
2093
845
|
exports.StopTelemetryEvaluationForOrganizationCommand = StopTelemetryEvaluationForOrganizationCommand;
|
|
2094
|
-
exports.TagResource$ = TagResource$;
|
|
2095
846
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2096
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
2097
|
-
exports.TelemetryConfiguration$ = TelemetryConfiguration$;
|
|
2098
|
-
exports.TelemetryDestinationConfiguration$ = TelemetryDestinationConfiguration$;
|
|
2099
847
|
exports.TelemetryEnrichmentStatus = TelemetryEnrichmentStatus;
|
|
2100
|
-
exports.TelemetryPipeline$ = TelemetryPipeline$;
|
|
2101
|
-
exports.TelemetryPipelineConfiguration$ = TelemetryPipelineConfiguration$;
|
|
2102
848
|
exports.TelemetryPipelineStatus = TelemetryPipelineStatus;
|
|
2103
|
-
exports.TelemetryPipelineStatusReason$ = TelemetryPipelineStatusReason$;
|
|
2104
|
-
exports.TelemetryPipelineSummary$ = TelemetryPipelineSummary$;
|
|
2105
|
-
exports.TelemetryRule$ = TelemetryRule$;
|
|
2106
|
-
exports.TelemetryRuleSummary$ = TelemetryRuleSummary$;
|
|
2107
849
|
exports.TelemetrySourceType = TelemetrySourceType;
|
|
2108
850
|
exports.TelemetryState = TelemetryState;
|
|
2109
851
|
exports.TelemetryType = TelemetryType;
|
|
2110
|
-
exports.TestTelemetryPipeline$ = TestTelemetryPipeline$;
|
|
2111
852
|
exports.TestTelemetryPipelineCommand = TestTelemetryPipelineCommand;
|
|
2112
|
-
exports.TestTelemetryPipelineInput$ = TestTelemetryPipelineInput$;
|
|
2113
|
-
exports.TestTelemetryPipelineOutput$ = TestTelemetryPipelineOutput$;
|
|
2114
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
2115
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
2116
|
-
exports.UntagResource$ = UntagResource$;
|
|
2117
853
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2118
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2119
|
-
exports.UpdateCentralizationRuleForOrganization$ = UpdateCentralizationRuleForOrganization$;
|
|
2120
854
|
exports.UpdateCentralizationRuleForOrganizationCommand = UpdateCentralizationRuleForOrganizationCommand;
|
|
2121
|
-
exports.UpdateCentralizationRuleForOrganizationInput$ = UpdateCentralizationRuleForOrganizationInput$;
|
|
2122
|
-
exports.UpdateCentralizationRuleForOrganizationOutput$ = UpdateCentralizationRuleForOrganizationOutput$;
|
|
2123
|
-
exports.UpdateTelemetryPipeline$ = UpdateTelemetryPipeline$;
|
|
2124
855
|
exports.UpdateTelemetryPipelineCommand = UpdateTelemetryPipelineCommand;
|
|
2125
|
-
exports.UpdateTelemetryPipelineInput$ = UpdateTelemetryPipelineInput$;
|
|
2126
|
-
exports.UpdateTelemetryPipelineOutput$ = UpdateTelemetryPipelineOutput$;
|
|
2127
|
-
exports.UpdateTelemetryRule$ = UpdateTelemetryRule$;
|
|
2128
856
|
exports.UpdateTelemetryRuleCommand = UpdateTelemetryRuleCommand;
|
|
2129
|
-
exports.UpdateTelemetryRuleForOrganization$ = UpdateTelemetryRuleForOrganization$;
|
|
2130
857
|
exports.UpdateTelemetryRuleForOrganizationCommand = UpdateTelemetryRuleForOrganizationCommand;
|
|
2131
|
-
exports.UpdateTelemetryRuleForOrganizationInput$ = UpdateTelemetryRuleForOrganizationInput$;
|
|
2132
|
-
exports.UpdateTelemetryRuleForOrganizationOutput$ = UpdateTelemetryRuleForOrganizationOutput$;
|
|
2133
|
-
exports.UpdateTelemetryRuleInput$ = UpdateTelemetryRuleInput$;
|
|
2134
|
-
exports.UpdateTelemetryRuleOutput$ = UpdateTelemetryRuleOutput$;
|
|
2135
|
-
exports.VPCFlowLogParameters$ = VPCFlowLogParameters$;
|
|
2136
|
-
exports.ValidateTelemetryPipelineConfiguration$ = ValidateTelemetryPipelineConfiguration$;
|
|
2137
858
|
exports.ValidateTelemetryPipelineConfigurationCommand = ValidateTelemetryPipelineConfigurationCommand;
|
|
2138
|
-
exports.ValidateTelemetryPipelineConfigurationInput$ = ValidateTelemetryPipelineConfigurationInput$;
|
|
2139
|
-
exports.ValidateTelemetryPipelineConfigurationOutput$ = ValidateTelemetryPipelineConfigurationOutput$;
|
|
2140
|
-
exports.ValidationError$ = ValidationError$;
|
|
2141
|
-
exports.ValidationException = ValidationException;
|
|
2142
|
-
exports.ValidationException$ = ValidationException$;
|
|
2143
859
|
exports.WAFLogType = WAFLogType;
|
|
2144
|
-
exports.WAFLoggingParameters$ = WAFLoggingParameters$;
|
|
2145
|
-
exports._Record$ = _Record$;
|
|
2146
860
|
exports.paginateListCentralizationRulesForOrganization = paginateListCentralizationRulesForOrganization;
|
|
2147
861
|
exports.paginateListResourceTelemetry = paginateListResourceTelemetry;
|
|
2148
862
|
exports.paginateListResourceTelemetryForOrganization = paginateListResourceTelemetryForOrganization;
|
|
@@ -2150,3 +864,15 @@ exports.paginateListS3TableIntegrations = paginateListS3TableIntegrations;
|
|
|
2150
864
|
exports.paginateListTelemetryPipelines = paginateListTelemetryPipelines;
|
|
2151
865
|
exports.paginateListTelemetryRules = paginateListTelemetryRules;
|
|
2152
866
|
exports.paginateListTelemetryRulesForOrganization = paginateListTelemetryRulesForOrganization;
|
|
867
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
868
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
869
|
+
enumerable: true,
|
|
870
|
+
get: function () { return schemas_0[k]; }
|
|
871
|
+
});
|
|
872
|
+
});
|
|
873
|
+
Object.keys(errors).forEach(function (k) {
|
|
874
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
875
|
+
enumerable: true,
|
|
876
|
+
get: function () { return errors[k]; }
|
|
877
|
+
});
|
|
878
|
+
});
|