@aws-sdk/client-observabilityadmin 3.1074.0 → 3.1076.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 +1547 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ObservabilityAdminServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -139
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1188
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultObservabilityAdminHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "observabilityadmin",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultObservabilityAdminHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1335 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://observabilityadmin-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://observabilityadmin-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://observabilityadmin.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://observabilityadmin.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class ObservabilityAdminServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, ObservabilityAdminServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends ObservabilityAdminServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
amznErrorType;
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "AccessDeniedException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
151
|
+
this.Message = opts.Message;
|
|
152
|
+
this.amznErrorType = opts.amznErrorType;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class ConflictException extends ObservabilityAdminServiceException {
|
|
156
|
+
name = "ConflictException";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
Message;
|
|
159
|
+
ResourceId;
|
|
160
|
+
ResourceType;
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "ConflictException",
|
|
164
|
+
$fault: "client",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
168
|
+
this.Message = opts.Message;
|
|
169
|
+
this.ResourceId = opts.ResourceId;
|
|
170
|
+
this.ResourceType = opts.ResourceType;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
class InternalServerException extends ObservabilityAdminServiceException {
|
|
174
|
+
name = "InternalServerException";
|
|
175
|
+
$fault = "server";
|
|
176
|
+
Message;
|
|
177
|
+
amznErrorType;
|
|
178
|
+
retryAfterSeconds;
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "InternalServerException",
|
|
182
|
+
$fault: "server",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
186
|
+
this.Message = opts.Message;
|
|
187
|
+
this.amznErrorType = opts.amznErrorType;
|
|
188
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class ServiceQuotaExceededException extends ObservabilityAdminServiceException {
|
|
192
|
+
name = "ServiceQuotaExceededException";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
Message;
|
|
195
|
+
ResourceId;
|
|
196
|
+
ResourceType;
|
|
197
|
+
ServiceCode;
|
|
198
|
+
QuotaCode;
|
|
199
|
+
amznErrorType;
|
|
200
|
+
constructor(opts) {
|
|
201
|
+
super({
|
|
202
|
+
name: "ServiceQuotaExceededException",
|
|
203
|
+
$fault: "client",
|
|
204
|
+
...opts,
|
|
205
|
+
});
|
|
206
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
207
|
+
this.Message = opts.Message;
|
|
208
|
+
this.ResourceId = opts.ResourceId;
|
|
209
|
+
this.ResourceType = opts.ResourceType;
|
|
210
|
+
this.ServiceCode = opts.ServiceCode;
|
|
211
|
+
this.QuotaCode = opts.QuotaCode;
|
|
212
|
+
this.amznErrorType = opts.amznErrorType;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class TooManyRequestsException extends ObservabilityAdminServiceException {
|
|
216
|
+
name = "TooManyRequestsException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
Message;
|
|
219
|
+
constructor(opts) {
|
|
220
|
+
super({
|
|
221
|
+
name: "TooManyRequestsException",
|
|
222
|
+
$fault: "client",
|
|
223
|
+
...opts,
|
|
224
|
+
});
|
|
225
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
226
|
+
this.Message = opts.Message;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
class ValidationException extends ObservabilityAdminServiceException {
|
|
230
|
+
name = "ValidationException";
|
|
231
|
+
$fault = "client";
|
|
232
|
+
Message;
|
|
233
|
+
Errors;
|
|
234
|
+
constructor(opts) {
|
|
235
|
+
super({
|
|
236
|
+
name: "ValidationException",
|
|
237
|
+
$fault: "client",
|
|
238
|
+
...opts,
|
|
239
|
+
});
|
|
240
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
241
|
+
this.Message = opts.Message;
|
|
242
|
+
this.Errors = opts.Errors;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
class ResourceNotFoundException extends ObservabilityAdminServiceException {
|
|
246
|
+
name = "ResourceNotFoundException";
|
|
247
|
+
$fault = "client";
|
|
248
|
+
Message;
|
|
249
|
+
ResourceId;
|
|
250
|
+
ResourceType;
|
|
251
|
+
constructor(opts) {
|
|
252
|
+
super({
|
|
253
|
+
name: "ResourceNotFoundException",
|
|
254
|
+
$fault: "client",
|
|
255
|
+
...opts,
|
|
256
|
+
});
|
|
257
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
258
|
+
this.Message = opts.Message;
|
|
259
|
+
this.ResourceId = opts.ResourceId;
|
|
260
|
+
this.ResourceType = opts.ResourceType;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class InvalidStateException extends ObservabilityAdminServiceException {
|
|
264
|
+
name = "InvalidStateException";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
Message;
|
|
267
|
+
constructor(opts) {
|
|
268
|
+
super({
|
|
269
|
+
name: "InvalidStateException",
|
|
270
|
+
$fault: "client",
|
|
271
|
+
...opts,
|
|
272
|
+
});
|
|
273
|
+
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
274
|
+
this.Message = opts.Message;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
const _A = "Action";
|
|
279
|
+
const _AC = "ActionCondition";
|
|
280
|
+
const _ADE = "AccessDeniedException";
|
|
281
|
+
const _AES = "AdvancedEventSelector";
|
|
282
|
+
const _AESd = "AdvancedEventSelectors";
|
|
283
|
+
const _AFS = "AdvancedFieldSelector";
|
|
284
|
+
const _AFU = "AllowFieldUpdates";
|
|
285
|
+
const _AI = "AccountIdentifiers";
|
|
286
|
+
const _AIc = "AccountIdentifier";
|
|
287
|
+
const _AR = "AllRegions";
|
|
288
|
+
const _AREMVA = "AwsResourceExplorerManagedViewArn";
|
|
289
|
+
const _Ac = "Account";
|
|
290
|
+
const _Ar = "Arn";
|
|
291
|
+
const _B = "Behavior";
|
|
292
|
+
const _BC = "BackupConfiguration";
|
|
293
|
+
const _Bo = "Body";
|
|
294
|
+
const _C = "Condition";
|
|
295
|
+
const _CAI = "CreatorAccountId";
|
|
296
|
+
const _CCRFO = "CreateCentralizationRuleForOrganization";
|
|
297
|
+
const _CCRFOI = "CreateCentralizationRuleForOrganizationInput";
|
|
298
|
+
const _CCRFOO = "CreateCentralizationRuleForOrganizationOutput";
|
|
299
|
+
const _CE = "ConflictException";
|
|
300
|
+
const _CP = "CloudtrailParameters";
|
|
301
|
+
const _CR = "CentralizationRule";
|
|
302
|
+
const _CRD = "CentralizationRuleDestination";
|
|
303
|
+
const _CRS = "CentralizationRuleSource";
|
|
304
|
+
const _CRSe = "CentralizationRuleSummary";
|
|
305
|
+
const _CRSen = "CentralizationRuleSummaries";
|
|
306
|
+
const _CRr = "CreatedRegion";
|
|
307
|
+
const _CS = "ConfigurationSummary";
|
|
308
|
+
const _CSTI = "CreateS3TableIntegration";
|
|
309
|
+
const _CSTII = "CreateS3TableIntegrationInput";
|
|
310
|
+
const _CSTIO = "CreateS3TableIntegrationOutput";
|
|
311
|
+
const _CTP = "CreateTelemetryPipeline";
|
|
312
|
+
const _CTPI = "CreateTelemetryPipelineInput";
|
|
313
|
+
const _CTPO = "CreateTelemetryPipelineOutput";
|
|
314
|
+
const _CTR = "CreateTelemetryRule";
|
|
315
|
+
const _CTRFO = "CreateTelemetryRuleForOrganization";
|
|
316
|
+
const _CTRFOI = "CreateTelemetryRuleForOrganizationInput";
|
|
317
|
+
const _CTRFOO = "CreateTelemetryRuleForOrganizationOutput";
|
|
318
|
+
const _CTRI = "CreateTelemetryRuleInput";
|
|
319
|
+
const _CTRO = "CreateTelemetryRuleOutput";
|
|
320
|
+
const _CTS = "CreatedTimeStamp";
|
|
321
|
+
const _Co = "Configuration";
|
|
322
|
+
const _Con = "Conditions";
|
|
323
|
+
const _D = "Destination";
|
|
324
|
+
const _DAI = "DestinationAccountId";
|
|
325
|
+
const _DB = "DefaultBehavior";
|
|
326
|
+
const _DC = "DestinationConfiguration";
|
|
327
|
+
const _DCRFO = "DeleteCentralizationRuleForOrganization";
|
|
328
|
+
const _DCRFOI = "DeleteCentralizationRuleForOrganizationInput";
|
|
329
|
+
const _DLC = "DestinationLogsConfiguration";
|
|
330
|
+
const _DMC = "DestinationMetricsConfiguration";
|
|
331
|
+
const _DP = "DestinationPattern";
|
|
332
|
+
const _DR = "DestinationRegion";
|
|
333
|
+
const _DS = "DataSources";
|
|
334
|
+
const _DSSC = "DataSourceSelectionCriteria";
|
|
335
|
+
const _DSTI = "DeleteS3TableIntegration";
|
|
336
|
+
const _DSTII = "DeleteS3TableIntegrationInput";
|
|
337
|
+
const _DSa = "DataSource";
|
|
338
|
+
const _DT = "DestinationType";
|
|
339
|
+
const _DTBA = "DestinationTableBucketArn";
|
|
340
|
+
const _DTP = "DeleteTelemetryPipeline";
|
|
341
|
+
const _DTPI = "DeleteTelemetryPipelineInput";
|
|
342
|
+
const _DTPO = "DeleteTelemetryPipelineOutput";
|
|
343
|
+
const _DTR = "DeleteTelemetryRule";
|
|
344
|
+
const _DTRFO = "DeleteTelemetryRuleForOrganization";
|
|
345
|
+
const _DTRFOI = "DeleteTelemetryRuleForOrganizationInput";
|
|
346
|
+
const _DTRI = "DeleteTelemetryRuleInput";
|
|
347
|
+
const _Da = "Data";
|
|
348
|
+
const _De = "Description";
|
|
349
|
+
const _E = "Errors";
|
|
350
|
+
const _ECRS = "EncryptionConflictResolutionStrategy";
|
|
351
|
+
const _ELBLBLP = "ELBLoadBalancerLoggingParameters";
|
|
352
|
+
const _ELGS = "EncryptedLogGroupStrategy";
|
|
353
|
+
const _EM = "EnhancedMonitoring";
|
|
354
|
+
const _ES = "EncryptionStrategy";
|
|
355
|
+
const _EW = "EndsWith";
|
|
356
|
+
const _En = "Encryption";
|
|
357
|
+
const _Eq = "Equals";
|
|
358
|
+
const _Er = "Error";
|
|
359
|
+
const _F = "Field";
|
|
360
|
+
const _FD = "FieldDelimiter";
|
|
361
|
+
const _FM = "FieldMap";
|
|
362
|
+
const _FR = "FailureReason";
|
|
363
|
+
const _FS = "FieldSelectors";
|
|
364
|
+
const _FTM = "FieldToMatch";
|
|
365
|
+
const _Fi = "Filter";
|
|
366
|
+
const _Fil = "Filters";
|
|
367
|
+
const _GCRFO = "GetCentralizationRuleForOrganization";
|
|
368
|
+
const _GCRFOI = "GetCentralizationRuleForOrganizationInput";
|
|
369
|
+
const _GCRFOO = "GetCentralizationRuleForOrganizationOutput";
|
|
370
|
+
const _GSTI = "GetS3TableIntegration";
|
|
371
|
+
const _GSTII = "GetS3TableIntegrationInput";
|
|
372
|
+
const _GSTIO = "GetS3TableIntegrationOutput";
|
|
373
|
+
const _GTES = "GetTelemetryEnrichmentStatus";
|
|
374
|
+
const _GTESFO = "GetTelemetryEvaluationStatusForOrganization";
|
|
375
|
+
const _GTESFOO = "GetTelemetryEvaluationStatusForOrganizationOutput";
|
|
376
|
+
const _GTESO = "GetTelemetryEnrichmentStatusOutput";
|
|
377
|
+
const _GTESOe = "GetTelemetryEvaluationStatusOutput";
|
|
378
|
+
const _GTESe = "GetTelemetryEvaluationStatus";
|
|
379
|
+
const _GTP = "GetTelemetryPipeline";
|
|
380
|
+
const _GTPI = "GetTelemetryPipelineInput";
|
|
381
|
+
const _GTPO = "GetTelemetryPipelineOutput";
|
|
382
|
+
const _GTR = "GetTelemetryRule";
|
|
383
|
+
const _GTRFO = "GetTelemetryRuleForOrganization";
|
|
384
|
+
const _GTRFOI = "GetTelemetryRuleForOrganizationInput";
|
|
385
|
+
const _GTRFOO = "GetTelemetryRuleForOrganizationOutput";
|
|
386
|
+
const _GTRI = "GetTelemetryRuleInput";
|
|
387
|
+
const _GTRO = "GetTelemetryRuleOutput";
|
|
388
|
+
const _HR = "HomeRegion";
|
|
389
|
+
const _IR = "IsReplicated";
|
|
390
|
+
const _IS = "IntegrationSummary";
|
|
391
|
+
const _ISE = "InternalServerException";
|
|
392
|
+
const _ISEn = "InvalidStateException";
|
|
393
|
+
const _ISn = "IntegrationSummaries";
|
|
394
|
+
const _KKA = "KmsKeyArn";
|
|
395
|
+
const _LBC = "LogsBackupConfiguration";
|
|
396
|
+
const _LCRFO = "ListCentralizationRulesForOrganization";
|
|
397
|
+
const _LCRFOI = "ListCentralizationRulesForOrganizationInput";
|
|
398
|
+
const _LCRFOO = "ListCentralizationRulesForOrganizationOutput";
|
|
399
|
+
const _LDP = "LogDeliveryParameters";
|
|
400
|
+
const _LEC = "LogsEncryptionConfiguration";
|
|
401
|
+
const _LF = "LoggingFilter";
|
|
402
|
+
const _LFo = "LogFormat";
|
|
403
|
+
const _LGNC = "LogGroupNameConfiguration";
|
|
404
|
+
const _LGNP = "LogGroupNamePattern";
|
|
405
|
+
const _LGSC = "LogGroupSelectionCriteria";
|
|
406
|
+
const _LN = "LabelName";
|
|
407
|
+
const _LNC = "LabelNameCondition";
|
|
408
|
+
const _LRT = "ListResourceTelemetry";
|
|
409
|
+
const _LRTFO = "ListResourceTelemetryForOrganization";
|
|
410
|
+
const _LRTFOI = "ListResourceTelemetryForOrganizationInput";
|
|
411
|
+
const _LRTFOO = "ListResourceTelemetryForOrganizationOutput";
|
|
412
|
+
const _LRTI = "ListResourceTelemetryInput";
|
|
413
|
+
const _LRTO = "ListResourceTelemetryOutput";
|
|
414
|
+
const _LSTI = "ListS3TableIntegrations";
|
|
415
|
+
const _LSTII = "ListS3TableIntegrationsInput";
|
|
416
|
+
const _LSTIO = "ListS3TableIntegrationsOutput";
|
|
417
|
+
const _LT = "LogTypes";
|
|
418
|
+
const _LTFR = "ListTagsForResource";
|
|
419
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
420
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
421
|
+
const _LTP = "ListTelemetryPipelines";
|
|
422
|
+
const _LTPI = "ListTelemetryPipelinesInput";
|
|
423
|
+
const _LTPO = "ListTelemetryPipelinesOutput";
|
|
424
|
+
const _LTR = "ListTelemetryRules";
|
|
425
|
+
const _LTRFO = "ListTelemetryRulesForOrganization";
|
|
426
|
+
const _LTRFOI = "ListTelemetryRulesForOrganizationInput";
|
|
427
|
+
const _LTRFOO = "ListTelemetryRulesForOrganizationOutput";
|
|
428
|
+
const _LTRI = "ListTelemetryRulesInput";
|
|
429
|
+
const _LTRO = "ListTelemetryRulesOutput";
|
|
430
|
+
const _LTo = "LogType";
|
|
431
|
+
const _LUTS = "LastUpdateTimeStamp";
|
|
432
|
+
const _M = "Message";
|
|
433
|
+
const _MAI = "MaxAggregationInterval";
|
|
434
|
+
const _MBC = "MetricsBackupConfiguration";
|
|
435
|
+
const _MMP = "MskMonitoringParameters";
|
|
436
|
+
const _MR = "MaxResults";
|
|
437
|
+
const _MSC = "MetricsSelectionCriteria";
|
|
438
|
+
const _Me = "Method";
|
|
439
|
+
const _N = "Name";
|
|
440
|
+
const _NE = "NotEquals";
|
|
441
|
+
const _NEW = "NotEndsWith";
|
|
442
|
+
const _NSW = "NotStartsWith";
|
|
443
|
+
const _NT = "NextToken";
|
|
444
|
+
const _OF = "OutputFormat";
|
|
445
|
+
const _P = "Processors";
|
|
446
|
+
const _PC = "ProcessorCount";
|
|
447
|
+
const _PI = "PipelineIdentifier";
|
|
448
|
+
const _PO = "PipelineOutput";
|
|
449
|
+
const _POE = "PipelineOutputError";
|
|
450
|
+
const _POi = "PipelineOutputs";
|
|
451
|
+
const _PS = "PipelineSummaries";
|
|
452
|
+
const _Pi = "Pipeline";
|
|
453
|
+
const _QC = "QuotaCode";
|
|
454
|
+
const _QS = "QueryString";
|
|
455
|
+
const _R = "Region";
|
|
456
|
+
const _RA = "Retry-After";
|
|
457
|
+
const _RARN = "ResourceARN";
|
|
458
|
+
const _RAo = "RoleArn";
|
|
459
|
+
const _RAu = "RuleArn";
|
|
460
|
+
const _RF = "RedactedFields";
|
|
461
|
+
const _RH = "RuleHealth";
|
|
462
|
+
const _RI = "ResourceId";
|
|
463
|
+
const _RID = "RetentionInDays";
|
|
464
|
+
const _RIP = "ResourceIdentifierPrefix";
|
|
465
|
+
const _RIe = "ResourceIdentifier";
|
|
466
|
+
const _RIu = "RuleIdentifier";
|
|
467
|
+
const _RN = "RuleName";
|
|
468
|
+
const _RNFE = "ResourceNotFoundException";
|
|
469
|
+
const _RNP = "RuleNamePrefix";
|
|
470
|
+
const _RS = "RegionStatuses";
|
|
471
|
+
const _RSe = "RegionStatus";
|
|
472
|
+
const _RT = "ResourceType";
|
|
473
|
+
const _RTe = "ResourceTypes";
|
|
474
|
+
const _RTes = "ResourceTags";
|
|
475
|
+
const _Re = "Regions";
|
|
476
|
+
const _Rea = "Reason";
|
|
477
|
+
const _Rec = "Record";
|
|
478
|
+
const _Reco = "Records";
|
|
479
|
+
const _Req = "Requirement";
|
|
480
|
+
const _Res = "Results";
|
|
481
|
+
const _Ru = "Rule";
|
|
482
|
+
const _S = "Source";
|
|
483
|
+
const _SA = "SseAlgorithm";
|
|
484
|
+
const _SAI = "SourceAccountIds";
|
|
485
|
+
const _SC = "ServiceCode";
|
|
486
|
+
const _SCe = "SelectionCriteria";
|
|
487
|
+
const _SH = "SingleHeader";
|
|
488
|
+
const _SLC = "SourceLogsConfiguration";
|
|
489
|
+
const _SMC = "SourceMetricsConfiguration";
|
|
490
|
+
const _SOUI = "SourceOrganizationUnitIds";
|
|
491
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
492
|
+
const _SR = "StatusReason";
|
|
493
|
+
const _STE = "StartTelemetryEnrichment";
|
|
494
|
+
const _STEFO = "StartTelemetryEvaluationForOrganization";
|
|
495
|
+
const _STEFOI = "StartTelemetryEvaluationForOrganizationInput";
|
|
496
|
+
const _STEFOt = "StopTelemetryEvaluationForOrganization";
|
|
497
|
+
const _STEI = "StartTelemetryEvaluationInput";
|
|
498
|
+
const _STEO = "StartTelemetryEnrichmentOutput";
|
|
499
|
+
const _STEOt = "StopTelemetryEnrichmentOutput";
|
|
500
|
+
const _STEt = "StartTelemetryEvaluation";
|
|
501
|
+
const _STEto = "StopTelemetryEnrichment";
|
|
502
|
+
const _STEtop = "StopTelemetryEvaluation";
|
|
503
|
+
const _SW = "StartsWith";
|
|
504
|
+
const _Sc = "Scope";
|
|
505
|
+
const _Si = "Sinks";
|
|
506
|
+
const _So = "Sources";
|
|
507
|
+
const _St = "Status";
|
|
508
|
+
const _T = "Tags";
|
|
509
|
+
const _TC = "TelemetryConfigurations";
|
|
510
|
+
const _TCS = "TelemetryConfigurationState";
|
|
511
|
+
const _TCe = "TelemetryConfiguration";
|
|
512
|
+
const _TDC = "TelemetryDestinationConfiguration";
|
|
513
|
+
const _TK = "TagKeys";
|
|
514
|
+
const _TMRE = "TooManyRequestsException";
|
|
515
|
+
const _TP = "TelemetryPipeline";
|
|
516
|
+
const _TPC = "TelemetryPipelineConfiguration";
|
|
517
|
+
const _TPS = "TelemetryPipelineSummary";
|
|
518
|
+
const _TPSR = "TelemetryPipelineStatusReason";
|
|
519
|
+
const _TPSe = "TelemetryPipelineSummaries";
|
|
520
|
+
const _TR = "TelemetryRule";
|
|
521
|
+
const _TRI = "TagResourceInput";
|
|
522
|
+
const _TRS = "TelemetryRuleSummaries";
|
|
523
|
+
const _TRSe = "TelemetryRuleSummary";
|
|
524
|
+
const _TRa = "TagResource";
|
|
525
|
+
const _TST = "TelemetrySourceType";
|
|
526
|
+
const _TSTe = "TelemetrySourceTypes";
|
|
527
|
+
const _TT = "TelemetryType";
|
|
528
|
+
const _TTP = "TestTelemetryPipeline";
|
|
529
|
+
const _TTPI = "TestTelemetryPipelineInput";
|
|
530
|
+
const _TTPO = "TestTelemetryPipelineOutput";
|
|
531
|
+
const _TTr = "TrafficType";
|
|
532
|
+
const _Ty = "Type";
|
|
533
|
+
const _UCRFO = "UpdateCentralizationRuleForOrganization";
|
|
534
|
+
const _UCRFOI = "UpdateCentralizationRuleForOrganizationInput";
|
|
535
|
+
const _UCRFOO = "UpdateCentralizationRuleForOrganizationOutput";
|
|
536
|
+
const _UP = "UriPath";
|
|
537
|
+
const _UR = "UntagResource";
|
|
538
|
+
const _URI = "UntagResourceInput";
|
|
539
|
+
const _UTP = "UpdateTelemetryPipeline";
|
|
540
|
+
const _UTPI = "UpdateTelemetryPipelineInput";
|
|
541
|
+
const _UTPO = "UpdateTelemetryPipelineOutput";
|
|
542
|
+
const _UTR = "UpdateTelemetryRule";
|
|
543
|
+
const _UTRFO = "UpdateTelemetryRuleForOrganization";
|
|
544
|
+
const _UTRFOI = "UpdateTelemetryRuleForOrganizationInput";
|
|
545
|
+
const _UTRFOO = "UpdateTelemetryRuleForOrganizationOutput";
|
|
546
|
+
const _UTRI = "UpdateTelemetryRuleInput";
|
|
547
|
+
const _UTRO = "UpdateTelemetryRuleOutput";
|
|
548
|
+
const _VE = "ValidationException";
|
|
549
|
+
const _VEa = "ValidationError";
|
|
550
|
+
const _VEal = "ValidationErrors";
|
|
551
|
+
const _VPCFLP = "VPCFlowLogParameters";
|
|
552
|
+
const _VTPC = "ValidateTelemetryPipelineConfiguration";
|
|
553
|
+
const _VTPCI = "ValidateTelemetryPipelineConfigurationInput";
|
|
554
|
+
const _VTPCO = "ValidateTelemetryPipelineConfigurationOutput";
|
|
555
|
+
const _WAFLP = "WAFLoggingParameters";
|
|
556
|
+
const _aET = "amznErrorType";
|
|
557
|
+
const _c = "client";
|
|
558
|
+
const _e = "error";
|
|
559
|
+
const _h = "http";
|
|
560
|
+
const _hE = "httpError";
|
|
561
|
+
const _hH = "httpHeader";
|
|
562
|
+
const _rAS = "retryAfterSeconds";
|
|
563
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.observabilityadmin";
|
|
564
|
+
const _se = "server";
|
|
565
|
+
const _xaE = "x-amzn-ErrorType";
|
|
566
|
+
const n0 = "com.amazonaws.observabilityadmin";
|
|
567
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
568
|
+
var ObservabilityAdminServiceException$ = [-3, _s, "ObservabilityAdminServiceException", 0, [], []];
|
|
569
|
+
_s_registry.registerError(ObservabilityAdminServiceException$, ObservabilityAdminServiceException);
|
|
570
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
571
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
572
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
573
|
+
[_M, _aET],
|
|
574
|
+
[0, [0, { [_hH]: _xaE }]]
|
|
575
|
+
];
|
|
576
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
577
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
578
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
579
|
+
[_M, _RI, _RT],
|
|
580
|
+
[0, 0, 0]
|
|
581
|
+
];
|
|
582
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
583
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
584
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
585
|
+
[_M, _aET, _rAS],
|
|
586
|
+
[0, [0, { [_hH]: _xaE }], [1, { [_hH]: _RA }]]
|
|
587
|
+
];
|
|
588
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
589
|
+
var InvalidStateException$ = [-3, n0, _ISEn,
|
|
590
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
591
|
+
[_M],
|
|
592
|
+
[0]
|
|
593
|
+
];
|
|
594
|
+
n0_registry.registerError(InvalidStateException$, InvalidStateException);
|
|
595
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
596
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
597
|
+
[_M, _RI, _RT],
|
|
598
|
+
[0, 0, 0]
|
|
599
|
+
];
|
|
600
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
601
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
602
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
603
|
+
[_M, _RI, _RT, _SC, _QC, _aET],
|
|
604
|
+
[0, 0, 0, 0, 0, [0, { [_hH]: _xaE }]]
|
|
605
|
+
];
|
|
606
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
607
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
608
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
609
|
+
[_M],
|
|
610
|
+
[0]
|
|
611
|
+
];
|
|
612
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
613
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
614
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
615
|
+
[_M, _E],
|
|
616
|
+
[0, () => ValidationErrors]
|
|
617
|
+
];
|
|
618
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
619
|
+
const errorTypeRegistries = [
|
|
620
|
+
_s_registry,
|
|
621
|
+
n0_registry,
|
|
622
|
+
];
|
|
623
|
+
var ActionCondition$ = [3, n0, _AC,
|
|
624
|
+
0,
|
|
625
|
+
[_A],
|
|
626
|
+
[0]
|
|
627
|
+
];
|
|
628
|
+
var AdvancedEventSelector$ = [3, n0, _AES,
|
|
629
|
+
0,
|
|
630
|
+
[_FS, _N],
|
|
631
|
+
[() => FieldSelectors, 0], 1
|
|
632
|
+
];
|
|
633
|
+
var AdvancedFieldSelector$ = [3, n0, _AFS,
|
|
634
|
+
0,
|
|
635
|
+
[_F, _Eq, _SW, _EW, _NE, _NSW, _NEW],
|
|
636
|
+
[0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0], 1
|
|
637
|
+
];
|
|
638
|
+
var CentralizationRule$ = [3, n0, _CR,
|
|
639
|
+
0,
|
|
640
|
+
[_S, _D],
|
|
641
|
+
[() => CentralizationRuleSource$, () => CentralizationRuleDestination$], 2
|
|
642
|
+
];
|
|
643
|
+
var CentralizationRuleDestination$ = [3, n0, _CRD,
|
|
644
|
+
0,
|
|
645
|
+
[_R, _Ac, _DLC, _DMC],
|
|
646
|
+
[0, 0, () => DestinationLogsConfiguration$, () => DestinationMetricsConfiguration$], 1
|
|
647
|
+
];
|
|
648
|
+
var CentralizationRuleSource$ = [3, n0, _CRS,
|
|
649
|
+
0,
|
|
650
|
+
[_Re, _Sc, _SLC, _SMC],
|
|
651
|
+
[64 | 0, 0, () => SourceLogsConfiguration$, () => SourceMetricsConfiguration$], 1
|
|
652
|
+
];
|
|
653
|
+
var CentralizationRuleSummary$ = [3, n0, _CRSe,
|
|
654
|
+
0,
|
|
655
|
+
[_RN, _RAu, _CAI, _CTS, _CRr, _LUTS, _RH, _FR, _DAI, _DR],
|
|
656
|
+
[0, 0, 0, 1, 0, 1, 0, 0, 0, 0]
|
|
657
|
+
];
|
|
658
|
+
var CloudtrailParameters$ = [3, n0, _CP,
|
|
659
|
+
0,
|
|
660
|
+
[_AESd],
|
|
661
|
+
[() => AdvancedEventSelectors], 1
|
|
662
|
+
];
|
|
663
|
+
var Condition$ = [3, n0, _C,
|
|
664
|
+
0,
|
|
665
|
+
[_AC, _LNC],
|
|
666
|
+
[() => ActionCondition$, () => LabelNameCondition$]
|
|
667
|
+
];
|
|
668
|
+
var ConfigurationSummary$ = [3, n0, _CS,
|
|
669
|
+
0,
|
|
670
|
+
[_So, _DS, _P, _PC, _Si],
|
|
671
|
+
[() => Sources, () => DataSources, 64 | 0, 1, 64 | 0]
|
|
672
|
+
];
|
|
673
|
+
var CreateCentralizationRuleForOrganizationInput$ = [3, n0, _CCRFOI,
|
|
674
|
+
0,
|
|
675
|
+
[_RN, _Ru, _T],
|
|
676
|
+
[0, () => CentralizationRule$, 128 | 0], 2
|
|
677
|
+
];
|
|
678
|
+
var CreateCentralizationRuleForOrganizationOutput$ = [3, n0, _CCRFOO,
|
|
679
|
+
0,
|
|
680
|
+
[_RAu],
|
|
681
|
+
[0]
|
|
682
|
+
];
|
|
683
|
+
var CreateS3TableIntegrationInput$ = [3, n0, _CSTII,
|
|
684
|
+
0,
|
|
685
|
+
[_En, _RAo, _T],
|
|
686
|
+
[() => Encryption$, 0, 128 | 0], 2
|
|
687
|
+
];
|
|
688
|
+
var CreateS3TableIntegrationOutput$ = [3, n0, _CSTIO,
|
|
689
|
+
0,
|
|
690
|
+
[_Ar],
|
|
691
|
+
[0]
|
|
692
|
+
];
|
|
693
|
+
var CreateTelemetryPipelineInput$ = [3, n0, _CTPI,
|
|
694
|
+
0,
|
|
695
|
+
[_N, _Co, _T],
|
|
696
|
+
[0, () => TelemetryPipelineConfiguration$, 128 | 0], 2
|
|
697
|
+
];
|
|
698
|
+
var CreateTelemetryPipelineOutput$ = [3, n0, _CTPO,
|
|
699
|
+
0,
|
|
700
|
+
[_Ar],
|
|
701
|
+
[0]
|
|
702
|
+
];
|
|
703
|
+
var CreateTelemetryRuleForOrganizationInput$ = [3, n0, _CTRFOI,
|
|
704
|
+
0,
|
|
705
|
+
[_RN, _Ru, _T],
|
|
706
|
+
[0, () => TelemetryRule$, 128 | 0], 2
|
|
707
|
+
];
|
|
708
|
+
var CreateTelemetryRuleForOrganizationOutput$ = [3, n0, _CTRFOO,
|
|
709
|
+
0,
|
|
710
|
+
[_RAu],
|
|
711
|
+
[0]
|
|
712
|
+
];
|
|
713
|
+
var CreateTelemetryRuleInput$ = [3, n0, _CTRI,
|
|
714
|
+
0,
|
|
715
|
+
[_RN, _Ru, _T],
|
|
716
|
+
[0, () => TelemetryRule$, 128 | 0], 2
|
|
717
|
+
];
|
|
718
|
+
var CreateTelemetryRuleOutput$ = [3, n0, _CTRO,
|
|
719
|
+
0,
|
|
720
|
+
[_RAu],
|
|
721
|
+
[0]
|
|
722
|
+
];
|
|
723
|
+
var DataSource$ = [3, n0, _DSa,
|
|
724
|
+
0,
|
|
725
|
+
[_N, _Ty],
|
|
726
|
+
[0, 0]
|
|
727
|
+
];
|
|
728
|
+
var DeleteCentralizationRuleForOrganizationInput$ = [3, n0, _DCRFOI,
|
|
729
|
+
0,
|
|
730
|
+
[_RIu],
|
|
731
|
+
[0], 1
|
|
732
|
+
];
|
|
733
|
+
var DeleteS3TableIntegrationInput$ = [3, n0, _DSTII,
|
|
734
|
+
0,
|
|
735
|
+
[_Ar],
|
|
736
|
+
[0], 1
|
|
737
|
+
];
|
|
738
|
+
var DeleteTelemetryPipelineInput$ = [3, n0, _DTPI,
|
|
739
|
+
0,
|
|
740
|
+
[_PI],
|
|
741
|
+
[0], 1
|
|
742
|
+
];
|
|
743
|
+
var DeleteTelemetryPipelineOutput$ = [3, n0, _DTPO,
|
|
744
|
+
0,
|
|
745
|
+
[],
|
|
746
|
+
[]
|
|
747
|
+
];
|
|
748
|
+
var DeleteTelemetryRuleForOrganizationInput$ = [3, n0, _DTRFOI,
|
|
749
|
+
0,
|
|
750
|
+
[_RIu],
|
|
751
|
+
[0], 1
|
|
752
|
+
];
|
|
753
|
+
var DeleteTelemetryRuleInput$ = [3, n0, _DTRI,
|
|
754
|
+
0,
|
|
755
|
+
[_RIu],
|
|
756
|
+
[0], 1
|
|
757
|
+
];
|
|
758
|
+
var DestinationLogsConfiguration$ = [3, n0, _DLC,
|
|
759
|
+
0,
|
|
760
|
+
[_LEC, _BC, _LGNC],
|
|
761
|
+
[() => LogsEncryptionConfiguration$, () => LogsBackupConfiguration$, () => LogGroupNameConfiguration$]
|
|
762
|
+
];
|
|
763
|
+
var DestinationMetricsConfiguration$ = [3, n0, _DMC,
|
|
764
|
+
0,
|
|
765
|
+
[_BC],
|
|
766
|
+
[() => MetricsBackupConfiguration$]
|
|
767
|
+
];
|
|
768
|
+
var ELBLoadBalancerLoggingParameters$ = [3, n0, _ELBLBLP,
|
|
769
|
+
0,
|
|
770
|
+
[_OF, _FD],
|
|
771
|
+
[0, 0]
|
|
772
|
+
];
|
|
773
|
+
var Encryption$ = [3, n0, _En,
|
|
774
|
+
0,
|
|
775
|
+
[_SA, _KKA],
|
|
776
|
+
[0, 0], 1
|
|
777
|
+
];
|
|
778
|
+
var FieldToMatch$ = [3, n0, _FTM,
|
|
779
|
+
0,
|
|
780
|
+
[_SH, _UP, _QS, _Me],
|
|
781
|
+
[() => SingleHeader$, 0, 0, 0]
|
|
782
|
+
];
|
|
783
|
+
var Filter$ = [3, n0, _Fi,
|
|
784
|
+
0,
|
|
785
|
+
[_B, _Req, _Con],
|
|
786
|
+
[0, 0, () => Conditions]
|
|
787
|
+
];
|
|
788
|
+
var GetCentralizationRuleForOrganizationInput$ = [3, n0, _GCRFOI,
|
|
789
|
+
0,
|
|
790
|
+
[_RIu],
|
|
791
|
+
[0], 1
|
|
792
|
+
];
|
|
793
|
+
var GetCentralizationRuleForOrganizationOutput$ = [3, n0, _GCRFOO,
|
|
794
|
+
0,
|
|
795
|
+
[_RN, _RAu, _CAI, _CTS, _CRr, _LUTS, _RH, _FR, _CR],
|
|
796
|
+
[0, 0, 0, 1, 0, 1, 0, 0, () => CentralizationRule$]
|
|
797
|
+
];
|
|
798
|
+
var GetS3TableIntegrationInput$ = [3, n0, _GSTII,
|
|
799
|
+
0,
|
|
800
|
+
[_Ar],
|
|
801
|
+
[0], 1
|
|
802
|
+
];
|
|
803
|
+
var GetS3TableIntegrationOutput$ = [3, n0, _GSTIO,
|
|
804
|
+
0,
|
|
805
|
+
[_Ar, _RAo, _St, _En, _DTBA, _CTS],
|
|
806
|
+
[0, 0, 0, () => Encryption$, 0, 1]
|
|
807
|
+
];
|
|
808
|
+
var GetTelemetryEnrichmentStatusOutput$ = [3, n0, _GTESO,
|
|
809
|
+
0,
|
|
810
|
+
[_St, _AREMVA],
|
|
811
|
+
[0, 0]
|
|
812
|
+
];
|
|
813
|
+
var GetTelemetryEvaluationStatusForOrganizationOutput$ = [3, n0, _GTESFOO,
|
|
814
|
+
0,
|
|
815
|
+
[_St, _FR, _HR, _RS],
|
|
816
|
+
[0, 0, 0, () => RegionStatuses]
|
|
817
|
+
];
|
|
818
|
+
var GetTelemetryEvaluationStatusOutput$ = [3, n0, _GTESOe,
|
|
819
|
+
0,
|
|
820
|
+
[_St, _FR, _HR, _RS],
|
|
821
|
+
[0, 0, 0, () => RegionStatuses]
|
|
822
|
+
];
|
|
823
|
+
var GetTelemetryPipelineInput$ = [3, n0, _GTPI,
|
|
824
|
+
0,
|
|
825
|
+
[_PI],
|
|
826
|
+
[0], 1
|
|
827
|
+
];
|
|
828
|
+
var GetTelemetryPipelineOutput$ = [3, n0, _GTPO,
|
|
829
|
+
0,
|
|
830
|
+
[_Pi],
|
|
831
|
+
[() => TelemetryPipeline$]
|
|
832
|
+
];
|
|
833
|
+
var GetTelemetryRuleForOrganizationInput$ = [3, n0, _GTRFOI,
|
|
834
|
+
0,
|
|
835
|
+
[_RIu],
|
|
836
|
+
[0], 1
|
|
837
|
+
];
|
|
838
|
+
var GetTelemetryRuleForOrganizationOutput$ = [3, n0, _GTRFOO,
|
|
839
|
+
0,
|
|
840
|
+
[_RN, _RAu, _CTS, _LUTS, _TR, _HR, _IR, _RS],
|
|
841
|
+
[0, 0, 1, 1, () => TelemetryRule$, 0, 2, () => RegionStatuses]
|
|
842
|
+
];
|
|
843
|
+
var GetTelemetryRuleInput$ = [3, n0, _GTRI,
|
|
844
|
+
0,
|
|
845
|
+
[_RIu],
|
|
846
|
+
[0], 1
|
|
847
|
+
];
|
|
848
|
+
var GetTelemetryRuleOutput$ = [3, n0, _GTRO,
|
|
849
|
+
0,
|
|
850
|
+
[_RN, _RAu, _CTS, _LUTS, _TR, _HR, _IR, _RS],
|
|
851
|
+
[0, 0, 1, 1, () => TelemetryRule$, 0, 2, () => RegionStatuses]
|
|
852
|
+
];
|
|
853
|
+
var IntegrationSummary$ = [3, n0, _IS,
|
|
854
|
+
0,
|
|
855
|
+
[_Ar, _St],
|
|
856
|
+
[0, 0]
|
|
857
|
+
];
|
|
858
|
+
var LabelNameCondition$ = [3, n0, _LNC,
|
|
859
|
+
0,
|
|
860
|
+
[_LN],
|
|
861
|
+
[0]
|
|
862
|
+
];
|
|
863
|
+
var ListCentralizationRulesForOrganizationInput$ = [3, n0, _LCRFOI,
|
|
864
|
+
0,
|
|
865
|
+
[_RNP, _AR, _MR, _NT],
|
|
866
|
+
[0, 2, 1, 0]
|
|
867
|
+
];
|
|
868
|
+
var ListCentralizationRulesForOrganizationOutput$ = [3, n0, _LCRFOO,
|
|
869
|
+
0,
|
|
870
|
+
[_CRSen, _NT],
|
|
871
|
+
[() => CentralizationRuleSummaries, 0]
|
|
872
|
+
];
|
|
873
|
+
var ListResourceTelemetryForOrganizationInput$ = [3, n0, _LRTFOI,
|
|
874
|
+
0,
|
|
875
|
+
[_AI, _RIP, _RTe, _TCS, _RTes, _MR, _NT],
|
|
876
|
+
[64 | 0, 0, 64 | 0, 128 | 0, 128 | 0, 1, 0]
|
|
877
|
+
];
|
|
878
|
+
var ListResourceTelemetryForOrganizationOutput$ = [3, n0, _LRTFOO,
|
|
879
|
+
0,
|
|
880
|
+
[_TC, _NT],
|
|
881
|
+
[() => TelemetryConfigurations, 0]
|
|
882
|
+
];
|
|
883
|
+
var ListResourceTelemetryInput$ = [3, n0, _LRTI,
|
|
884
|
+
0,
|
|
885
|
+
[_RIP, _RTe, _TCS, _RTes, _MR, _NT],
|
|
886
|
+
[0, 64 | 0, 128 | 0, 128 | 0, 1, 0]
|
|
887
|
+
];
|
|
888
|
+
var ListResourceTelemetryOutput$ = [3, n0, _LRTO,
|
|
889
|
+
0,
|
|
890
|
+
[_TC, _NT],
|
|
891
|
+
[() => TelemetryConfigurations, 0]
|
|
892
|
+
];
|
|
893
|
+
var ListS3TableIntegrationsInput$ = [3, n0, _LSTII,
|
|
894
|
+
0,
|
|
895
|
+
[_MR, _NT],
|
|
896
|
+
[1, 0]
|
|
897
|
+
];
|
|
898
|
+
var ListS3TableIntegrationsOutput$ = [3, n0, _LSTIO,
|
|
899
|
+
0,
|
|
900
|
+
[_ISn, _NT],
|
|
901
|
+
[() => IntegrationSummaries, 0]
|
|
902
|
+
];
|
|
903
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
904
|
+
0,
|
|
905
|
+
[_RARN],
|
|
906
|
+
[0], 1
|
|
907
|
+
];
|
|
908
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
909
|
+
0,
|
|
910
|
+
[_T],
|
|
911
|
+
[128 | 0], 1
|
|
912
|
+
];
|
|
913
|
+
var ListTelemetryPipelinesInput$ = [3, n0, _LTPI,
|
|
914
|
+
0,
|
|
915
|
+
[_MR, _NT],
|
|
916
|
+
[1, 0]
|
|
917
|
+
];
|
|
918
|
+
var ListTelemetryPipelinesOutput$ = [3, n0, _LTPO,
|
|
919
|
+
0,
|
|
920
|
+
[_PS, _NT],
|
|
921
|
+
[() => TelemetryPipelineSummaries, 0]
|
|
922
|
+
];
|
|
923
|
+
var ListTelemetryRulesForOrganizationInput$ = [3, n0, _LTRFOI,
|
|
924
|
+
0,
|
|
925
|
+
[_RNP, _SAI, _SOUI, _MR, _NT],
|
|
926
|
+
[0, 64 | 0, 64 | 0, 1, 0]
|
|
927
|
+
];
|
|
928
|
+
var ListTelemetryRulesForOrganizationOutput$ = [3, n0, _LTRFOO,
|
|
929
|
+
0,
|
|
930
|
+
[_TRS, _NT],
|
|
931
|
+
[() => TelemetryRuleSummaries, 0]
|
|
932
|
+
];
|
|
933
|
+
var ListTelemetryRulesInput$ = [3, n0, _LTRI,
|
|
934
|
+
0,
|
|
935
|
+
[_RNP, _MR, _NT],
|
|
936
|
+
[0, 1, 0]
|
|
937
|
+
];
|
|
938
|
+
var ListTelemetryRulesOutput$ = [3, n0, _LTRO,
|
|
939
|
+
0,
|
|
940
|
+
[_TRS, _NT],
|
|
941
|
+
[() => TelemetryRuleSummaries, 0]
|
|
942
|
+
];
|
|
943
|
+
var LogDeliveryParameters$ = [3, n0, _LDP,
|
|
944
|
+
0,
|
|
945
|
+
[_LT],
|
|
946
|
+
[64 | 0]
|
|
947
|
+
];
|
|
948
|
+
var LoggingFilter$ = [3, n0, _LF,
|
|
949
|
+
0,
|
|
950
|
+
[_Fil, _DB],
|
|
951
|
+
[() => Filters, 0]
|
|
952
|
+
];
|
|
953
|
+
var LogGroupNameConfiguration$ = [3, n0, _LGNC,
|
|
954
|
+
0,
|
|
955
|
+
[_LGNP],
|
|
956
|
+
[0], 1
|
|
957
|
+
];
|
|
958
|
+
var LogsBackupConfiguration$ = [3, n0, _LBC,
|
|
959
|
+
0,
|
|
960
|
+
[_R, _KKA],
|
|
961
|
+
[0, 0], 1
|
|
962
|
+
];
|
|
963
|
+
var LogsEncryptionConfiguration$ = [3, n0, _LEC,
|
|
964
|
+
0,
|
|
965
|
+
[_ES, _KKA, _ECRS],
|
|
966
|
+
[0, 0, 0], 1
|
|
967
|
+
];
|
|
968
|
+
var MetricsBackupConfiguration$ = [3, n0, _MBC,
|
|
969
|
+
0,
|
|
970
|
+
[_R],
|
|
971
|
+
[0], 1
|
|
972
|
+
];
|
|
973
|
+
var MskMonitoringParameters$ = [3, n0, _MMP,
|
|
974
|
+
0,
|
|
975
|
+
[_EM],
|
|
976
|
+
[0]
|
|
977
|
+
];
|
|
978
|
+
var PipelineOutput$ = [3, n0, _PO,
|
|
979
|
+
0,
|
|
980
|
+
[_Rec, _Er],
|
|
981
|
+
[() => _Record$, () => PipelineOutputError$]
|
|
982
|
+
];
|
|
983
|
+
var PipelineOutputError$ = [3, n0, _POE,
|
|
984
|
+
0,
|
|
985
|
+
[_M],
|
|
986
|
+
[0]
|
|
987
|
+
];
|
|
988
|
+
var _Record$ = [3, n0, _Rec,
|
|
989
|
+
0,
|
|
990
|
+
[_Da, _Ty],
|
|
991
|
+
[0, 0]
|
|
992
|
+
];
|
|
993
|
+
var RegionStatus$ = [3, n0, _RSe,
|
|
994
|
+
0,
|
|
995
|
+
[_R, _St, _FR, _RAu],
|
|
996
|
+
[0, 0, 0, 0]
|
|
997
|
+
];
|
|
998
|
+
var SingleHeader$ = [3, n0, _SH,
|
|
999
|
+
0,
|
|
1000
|
+
[_N],
|
|
1001
|
+
[0]
|
|
1002
|
+
];
|
|
1003
|
+
var Source$ = [3, n0, _S,
|
|
1004
|
+
0,
|
|
1005
|
+
[_Ty],
|
|
1006
|
+
[0]
|
|
1007
|
+
];
|
|
1008
|
+
var SourceLogsConfiguration$ = [3, n0, _SLC,
|
|
1009
|
+
0,
|
|
1010
|
+
[_ELGS, _LGSC, _DSSC],
|
|
1011
|
+
[0, 0, 0], 1
|
|
1012
|
+
];
|
|
1013
|
+
var SourceMetricsConfiguration$ = [3, n0, _SMC,
|
|
1014
|
+
0,
|
|
1015
|
+
[_MSC],
|
|
1016
|
+
[0]
|
|
1017
|
+
];
|
|
1018
|
+
var StartTelemetryEnrichmentOutput$ = [3, n0, _STEO,
|
|
1019
|
+
0,
|
|
1020
|
+
[_St, _AREMVA],
|
|
1021
|
+
[0, 0]
|
|
1022
|
+
];
|
|
1023
|
+
var StartTelemetryEvaluationForOrganizationInput$ = [3, n0, _STEFOI,
|
|
1024
|
+
0,
|
|
1025
|
+
[_Re, _AR],
|
|
1026
|
+
[64 | 0, 2]
|
|
1027
|
+
];
|
|
1028
|
+
var StartTelemetryEvaluationInput$ = [3, n0, _STEI,
|
|
1029
|
+
0,
|
|
1030
|
+
[_Re, _AR],
|
|
1031
|
+
[64 | 0, 2]
|
|
1032
|
+
];
|
|
1033
|
+
var StopTelemetryEnrichmentOutput$ = [3, n0, _STEOt,
|
|
1034
|
+
0,
|
|
1035
|
+
[_St],
|
|
1036
|
+
[0]
|
|
1037
|
+
];
|
|
1038
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
1039
|
+
0,
|
|
1040
|
+
[_RARN, _T],
|
|
1041
|
+
[0, 128 | 0], 2
|
|
1042
|
+
];
|
|
1043
|
+
var TelemetryConfiguration$ = [3, n0, _TCe,
|
|
1044
|
+
0,
|
|
1045
|
+
[_AIc, _TCS, _RT, _RIe, _RTes, _LUTS, _TST],
|
|
1046
|
+
[0, 128 | 0, 0, 0, 128 | 0, 1, 0]
|
|
1047
|
+
];
|
|
1048
|
+
var TelemetryDestinationConfiguration$ = [3, n0, _TDC,
|
|
1049
|
+
0,
|
|
1050
|
+
[_DT, _DP, _RID, _VPCFLP, _CP, _ELBLBLP, _WAFLP, _LDP, _MMP],
|
|
1051
|
+
[0, 0, 1, () => VPCFlowLogParameters$, () => CloudtrailParameters$, () => ELBLoadBalancerLoggingParameters$, () => WAFLoggingParameters$, () => LogDeliveryParameters$, () => MskMonitoringParameters$]
|
|
1052
|
+
];
|
|
1053
|
+
var TelemetryPipeline$ = [3, n0, _TP,
|
|
1054
|
+
0,
|
|
1055
|
+
[_CTS, _LUTS, _Ar, _N, _Co, _St, _SR, _T],
|
|
1056
|
+
[1, 1, 0, 0, () => TelemetryPipelineConfiguration$, 0, () => TelemetryPipelineStatusReason$, 128 | 0]
|
|
1057
|
+
];
|
|
1058
|
+
var TelemetryPipelineConfiguration$ = [3, n0, _TPC,
|
|
1059
|
+
0,
|
|
1060
|
+
[_Bo],
|
|
1061
|
+
[0], 1
|
|
1062
|
+
];
|
|
1063
|
+
var TelemetryPipelineStatusReason$ = [3, n0, _TPSR,
|
|
1064
|
+
0,
|
|
1065
|
+
[_De],
|
|
1066
|
+
[0]
|
|
1067
|
+
];
|
|
1068
|
+
var TelemetryPipelineSummary$ = [3, n0, _TPS,
|
|
1069
|
+
0,
|
|
1070
|
+
[_CTS, _LUTS, _Ar, _N, _St, _T, _CS],
|
|
1071
|
+
[1, 1, 0, 0, 0, 128 | 0, () => ConfigurationSummary$]
|
|
1072
|
+
];
|
|
1073
|
+
var TelemetryRule$ = [3, n0, _TR,
|
|
1074
|
+
0,
|
|
1075
|
+
[_TT, _RT, _TSTe, _DC, _Sc, _SCe, _AFU, _Re, _AR],
|
|
1076
|
+
[0, 0, 64 | 0, () => TelemetryDestinationConfiguration$, 0, 0, 2, 64 | 0, 2], 1
|
|
1077
|
+
];
|
|
1078
|
+
var TelemetryRuleSummary$ = [3, n0, _TRSe,
|
|
1079
|
+
0,
|
|
1080
|
+
[_RN, _RAu, _CTS, _LUTS, _RT, _TT, _TSTe],
|
|
1081
|
+
[0, 0, 1, 1, 0, 0, 64 | 0]
|
|
1082
|
+
];
|
|
1083
|
+
var TestTelemetryPipelineInput$ = [3, n0, _TTPI,
|
|
1084
|
+
0,
|
|
1085
|
+
[_Reco, _Co],
|
|
1086
|
+
[() => Records, () => TelemetryPipelineConfiguration$], 2
|
|
1087
|
+
];
|
|
1088
|
+
var TestTelemetryPipelineOutput$ = [3, n0, _TTPO,
|
|
1089
|
+
0,
|
|
1090
|
+
[_Res],
|
|
1091
|
+
[() => PipelineOutputs]
|
|
1092
|
+
];
|
|
1093
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
1094
|
+
0,
|
|
1095
|
+
[_RARN, _TK],
|
|
1096
|
+
[0, 64 | 0], 2
|
|
1097
|
+
];
|
|
1098
|
+
var UpdateCentralizationRuleForOrganizationInput$ = [3, n0, _UCRFOI,
|
|
1099
|
+
0,
|
|
1100
|
+
[_RIu, _Ru],
|
|
1101
|
+
[0, () => CentralizationRule$], 2
|
|
1102
|
+
];
|
|
1103
|
+
var UpdateCentralizationRuleForOrganizationOutput$ = [3, n0, _UCRFOO,
|
|
1104
|
+
0,
|
|
1105
|
+
[_RAu],
|
|
1106
|
+
[0]
|
|
1107
|
+
];
|
|
1108
|
+
var UpdateTelemetryPipelineInput$ = [3, n0, _UTPI,
|
|
1109
|
+
0,
|
|
1110
|
+
[_PI, _Co],
|
|
1111
|
+
[0, () => TelemetryPipelineConfiguration$], 2
|
|
1112
|
+
];
|
|
1113
|
+
var UpdateTelemetryPipelineOutput$ = [3, n0, _UTPO,
|
|
1114
|
+
0,
|
|
1115
|
+
[],
|
|
1116
|
+
[]
|
|
1117
|
+
];
|
|
1118
|
+
var UpdateTelemetryRuleForOrganizationInput$ = [3, n0, _UTRFOI,
|
|
1119
|
+
0,
|
|
1120
|
+
[_RIu, _Ru],
|
|
1121
|
+
[0, () => TelemetryRule$], 2
|
|
1122
|
+
];
|
|
1123
|
+
var UpdateTelemetryRuleForOrganizationOutput$ = [3, n0, _UTRFOO,
|
|
1124
|
+
0,
|
|
1125
|
+
[_RAu],
|
|
1126
|
+
[0]
|
|
1127
|
+
];
|
|
1128
|
+
var UpdateTelemetryRuleInput$ = [3, n0, _UTRI,
|
|
1129
|
+
0,
|
|
1130
|
+
[_RIu, _Ru],
|
|
1131
|
+
[0, () => TelemetryRule$], 2
|
|
1132
|
+
];
|
|
1133
|
+
var UpdateTelemetryRuleOutput$ = [3, n0, _UTRO,
|
|
1134
|
+
0,
|
|
1135
|
+
[_RAu],
|
|
1136
|
+
[0]
|
|
1137
|
+
];
|
|
1138
|
+
var ValidateTelemetryPipelineConfigurationInput$ = [3, n0, _VTPCI,
|
|
1139
|
+
0,
|
|
1140
|
+
[_Co],
|
|
1141
|
+
[() => TelemetryPipelineConfiguration$], 1
|
|
1142
|
+
];
|
|
1143
|
+
var ValidateTelemetryPipelineConfigurationOutput$ = [3, n0, _VTPCO,
|
|
1144
|
+
0,
|
|
1145
|
+
[_E],
|
|
1146
|
+
[() => ValidationErrors]
|
|
1147
|
+
];
|
|
1148
|
+
var ValidationError$ = [3, n0, _VEa,
|
|
1149
|
+
0,
|
|
1150
|
+
[_M, _Rea, _FM],
|
|
1151
|
+
[0, 0, 128 | 0]
|
|
1152
|
+
];
|
|
1153
|
+
var VPCFlowLogParameters$ = [3, n0, _VPCFLP,
|
|
1154
|
+
0,
|
|
1155
|
+
[_LFo, _TTr, _MAI],
|
|
1156
|
+
[0, 0, 1]
|
|
1157
|
+
];
|
|
1158
|
+
var WAFLoggingParameters$ = [3, n0, _WAFLP,
|
|
1159
|
+
0,
|
|
1160
|
+
[_RF, _LF, _LTo],
|
|
1161
|
+
[() => RedactedFields, () => LoggingFilter$, 0]
|
|
1162
|
+
];
|
|
1163
|
+
var __Unit = "unit";
|
|
1164
|
+
var AdvancedEventSelectors = [1, n0, _AESd,
|
|
1165
|
+
0, () => AdvancedEventSelector$
|
|
1166
|
+
];
|
|
1167
|
+
var CentralizationRuleSummaries = [1, n0, _CRSen,
|
|
1168
|
+
0, () => CentralizationRuleSummary$
|
|
1169
|
+
];
|
|
1170
|
+
var Conditions = [1, n0, _Con,
|
|
1171
|
+
0, () => Condition$
|
|
1172
|
+
];
|
|
1173
|
+
var DataSources = [1, n0, _DS,
|
|
1174
|
+
0, () => DataSource$
|
|
1175
|
+
];
|
|
1176
|
+
var FieldSelectors = [1, n0, _FS,
|
|
1177
|
+
0, () => AdvancedFieldSelector$
|
|
1178
|
+
];
|
|
1179
|
+
var Filters = [1, n0, _Fil,
|
|
1180
|
+
0, () => Filter$
|
|
1181
|
+
];
|
|
1182
|
+
var IntegrationSummaries = [1, n0, _ISn,
|
|
1183
|
+
0, () => IntegrationSummary$
|
|
1184
|
+
];
|
|
1185
|
+
var PipelineOutputs = [1, n0, _POi,
|
|
1186
|
+
0, () => PipelineOutput$
|
|
1187
|
+
];
|
|
1188
|
+
var Records = [1, n0, _Reco,
|
|
1189
|
+
0, () => _Record$
|
|
1190
|
+
];
|
|
1191
|
+
var RedactedFields = [1, n0, _RF,
|
|
1192
|
+
0, () => FieldToMatch$
|
|
1193
|
+
];
|
|
1194
|
+
var RegionStatuses = [1, n0, _RS,
|
|
1195
|
+
0, () => RegionStatus$
|
|
1196
|
+
];
|
|
1197
|
+
var Sources = [1, n0, _So,
|
|
1198
|
+
0, () => Source$
|
|
1199
|
+
];
|
|
1200
|
+
var TelemetryConfigurations = [1, n0, _TC,
|
|
1201
|
+
0, () => TelemetryConfiguration$
|
|
1202
|
+
];
|
|
1203
|
+
var TelemetryPipelineSummaries = [1, n0, _TPSe,
|
|
1204
|
+
0, () => TelemetryPipelineSummary$
|
|
1205
|
+
];
|
|
1206
|
+
var TelemetryRuleSummaries = [1, n0, _TRS,
|
|
1207
|
+
0, () => TelemetryRuleSummary$
|
|
1208
|
+
];
|
|
1209
|
+
var ValidationErrors = [1, n0, _VEal,
|
|
1210
|
+
0, () => ValidationError$
|
|
1211
|
+
];
|
|
1212
|
+
var CreateCentralizationRuleForOrganization$ = [9, n0, _CCRFO,
|
|
1213
|
+
{ [_h]: ["POST", "/CreateCentralizationRuleForOrganization", 200] }, () => CreateCentralizationRuleForOrganizationInput$, () => CreateCentralizationRuleForOrganizationOutput$
|
|
1214
|
+
];
|
|
1215
|
+
var CreateS3TableIntegration$ = [9, n0, _CSTI,
|
|
1216
|
+
{ [_h]: ["POST", "/CreateS3TableIntegration", 200] }, () => CreateS3TableIntegrationInput$, () => CreateS3TableIntegrationOutput$
|
|
1217
|
+
];
|
|
1218
|
+
var CreateTelemetryPipeline$ = [9, n0, _CTP,
|
|
1219
|
+
{ [_h]: ["POST", "/CreateTelemetryPipeline", 200] }, () => CreateTelemetryPipelineInput$, () => CreateTelemetryPipelineOutput$
|
|
1220
|
+
];
|
|
1221
|
+
var CreateTelemetryRule$ = [9, n0, _CTR,
|
|
1222
|
+
{ [_h]: ["POST", "/CreateTelemetryRule", 200] }, () => CreateTelemetryRuleInput$, () => CreateTelemetryRuleOutput$
|
|
1223
|
+
];
|
|
1224
|
+
var CreateTelemetryRuleForOrganization$ = [9, n0, _CTRFO,
|
|
1225
|
+
{ [_h]: ["POST", "/CreateTelemetryRuleForOrganization", 200] }, () => CreateTelemetryRuleForOrganizationInput$, () => CreateTelemetryRuleForOrganizationOutput$
|
|
1226
|
+
];
|
|
1227
|
+
var DeleteCentralizationRuleForOrganization$ = [9, n0, _DCRFO,
|
|
1228
|
+
{ [_h]: ["POST", "/DeleteCentralizationRuleForOrganization", 200] }, () => DeleteCentralizationRuleForOrganizationInput$, () => __Unit
|
|
1229
|
+
];
|
|
1230
|
+
var DeleteS3TableIntegration$ = [9, n0, _DSTI,
|
|
1231
|
+
{ [_h]: ["POST", "/DeleteS3TableIntegration", 204] }, () => DeleteS3TableIntegrationInput$, () => __Unit
|
|
1232
|
+
];
|
|
1233
|
+
var DeleteTelemetryPipeline$ = [9, n0, _DTP,
|
|
1234
|
+
{ [_h]: ["POST", "/DeleteTelemetryPipeline", 200] }, () => DeleteTelemetryPipelineInput$, () => DeleteTelemetryPipelineOutput$
|
|
1235
|
+
];
|
|
1236
|
+
var DeleteTelemetryRule$ = [9, n0, _DTR,
|
|
1237
|
+
{ [_h]: ["POST", "/DeleteTelemetryRule", 200] }, () => DeleteTelemetryRuleInput$, () => __Unit
|
|
1238
|
+
];
|
|
1239
|
+
var DeleteTelemetryRuleForOrganization$ = [9, n0, _DTRFO,
|
|
1240
|
+
{ [_h]: ["POST", "/DeleteTelemetryRuleForOrganization", 200] }, () => DeleteTelemetryRuleForOrganizationInput$, () => __Unit
|
|
1241
|
+
];
|
|
1242
|
+
var GetCentralizationRuleForOrganization$ = [9, n0, _GCRFO,
|
|
1243
|
+
{ [_h]: ["POST", "/GetCentralizationRuleForOrganization", 200] }, () => GetCentralizationRuleForOrganizationInput$, () => GetCentralizationRuleForOrganizationOutput$
|
|
1244
|
+
];
|
|
1245
|
+
var GetS3TableIntegration$ = [9, n0, _GSTI,
|
|
1246
|
+
{ [_h]: ["POST", "/GetS3TableIntegration", 200] }, () => GetS3TableIntegrationInput$, () => GetS3TableIntegrationOutput$
|
|
1247
|
+
];
|
|
1248
|
+
var GetTelemetryEnrichmentStatus$ = [9, n0, _GTES,
|
|
1249
|
+
{ [_h]: ["POST", "/GetTelemetryEnrichmentStatus", 200] }, () => __Unit, () => GetTelemetryEnrichmentStatusOutput$
|
|
1250
|
+
];
|
|
1251
|
+
var GetTelemetryEvaluationStatus$ = [9, n0, _GTESe,
|
|
1252
|
+
{ [_h]: ["POST", "/GetTelemetryEvaluationStatus", 200] }, () => __Unit, () => GetTelemetryEvaluationStatusOutput$
|
|
1253
|
+
];
|
|
1254
|
+
var GetTelemetryEvaluationStatusForOrganization$ = [9, n0, _GTESFO,
|
|
1255
|
+
{ [_h]: ["POST", "/GetTelemetryEvaluationStatusForOrganization", 200] }, () => __Unit, () => GetTelemetryEvaluationStatusForOrganizationOutput$
|
|
1256
|
+
];
|
|
1257
|
+
var GetTelemetryPipeline$ = [9, n0, _GTP,
|
|
1258
|
+
{ [_h]: ["POST", "/GetTelemetryPipeline", 200] }, () => GetTelemetryPipelineInput$, () => GetTelemetryPipelineOutput$
|
|
1259
|
+
];
|
|
1260
|
+
var GetTelemetryRule$ = [9, n0, _GTR,
|
|
1261
|
+
{ [_h]: ["POST", "/GetTelemetryRule", 200] }, () => GetTelemetryRuleInput$, () => GetTelemetryRuleOutput$
|
|
1262
|
+
];
|
|
1263
|
+
var GetTelemetryRuleForOrganization$ = [9, n0, _GTRFO,
|
|
1264
|
+
{ [_h]: ["POST", "/GetTelemetryRuleForOrganization", 200] }, () => GetTelemetryRuleForOrganizationInput$, () => GetTelemetryRuleForOrganizationOutput$
|
|
1265
|
+
];
|
|
1266
|
+
var ListCentralizationRulesForOrganization$ = [9, n0, _LCRFO,
|
|
1267
|
+
{ [_h]: ["POST", "/ListCentralizationRulesForOrganization", 200] }, () => ListCentralizationRulesForOrganizationInput$, () => ListCentralizationRulesForOrganizationOutput$
|
|
1268
|
+
];
|
|
1269
|
+
var ListResourceTelemetry$ = [9, n0, _LRT,
|
|
1270
|
+
{ [_h]: ["POST", "/ListResourceTelemetry", 200] }, () => ListResourceTelemetryInput$, () => ListResourceTelemetryOutput$
|
|
1271
|
+
];
|
|
1272
|
+
var ListResourceTelemetryForOrganization$ = [9, n0, _LRTFO,
|
|
1273
|
+
{ [_h]: ["POST", "/ListResourceTelemetryForOrganization", 200] }, () => ListResourceTelemetryForOrganizationInput$, () => ListResourceTelemetryForOrganizationOutput$
|
|
1274
|
+
];
|
|
1275
|
+
var ListS3TableIntegrations$ = [9, n0, _LSTI,
|
|
1276
|
+
{ [_h]: ["POST", "/ListS3TableIntegrations", 200] }, () => ListS3TableIntegrationsInput$, () => ListS3TableIntegrationsOutput$
|
|
1277
|
+
];
|
|
1278
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1279
|
+
{ [_h]: ["POST", "/ListTagsForResource", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1280
|
+
];
|
|
1281
|
+
var ListTelemetryPipelines$ = [9, n0, _LTP,
|
|
1282
|
+
{ [_h]: ["POST", "/ListTelemetryPipelines", 200] }, () => ListTelemetryPipelinesInput$, () => ListTelemetryPipelinesOutput$
|
|
1283
|
+
];
|
|
1284
|
+
var ListTelemetryRules$ = [9, n0, _LTR,
|
|
1285
|
+
{ [_h]: ["POST", "/ListTelemetryRules", 200] }, () => ListTelemetryRulesInput$, () => ListTelemetryRulesOutput$
|
|
1286
|
+
];
|
|
1287
|
+
var ListTelemetryRulesForOrganization$ = [9, n0, _LTRFO,
|
|
1288
|
+
{ [_h]: ["POST", "/ListTelemetryRulesForOrganization", 200] }, () => ListTelemetryRulesForOrganizationInput$, () => ListTelemetryRulesForOrganizationOutput$
|
|
1289
|
+
];
|
|
1290
|
+
var StartTelemetryEnrichment$ = [9, n0, _STE,
|
|
1291
|
+
{ [_h]: ["POST", "/StartTelemetryEnrichment", 202] }, () => __Unit, () => StartTelemetryEnrichmentOutput$
|
|
1292
|
+
];
|
|
1293
|
+
var StartTelemetryEvaluation$ = [9, n0, _STEt,
|
|
1294
|
+
{ [_h]: ["POST", "/StartTelemetryEvaluation", 200] }, () => StartTelemetryEvaluationInput$, () => __Unit
|
|
1295
|
+
];
|
|
1296
|
+
var StartTelemetryEvaluationForOrganization$ = [9, n0, _STEFO,
|
|
1297
|
+
{ [_h]: ["POST", "/StartTelemetryEvaluationForOrganization", 200] }, () => StartTelemetryEvaluationForOrganizationInput$, () => __Unit
|
|
1298
|
+
];
|
|
1299
|
+
var StopTelemetryEnrichment$ = [9, n0, _STEto,
|
|
1300
|
+
{ [_h]: ["POST", "/StopTelemetryEnrichment", 202] }, () => __Unit, () => StopTelemetryEnrichmentOutput$
|
|
1301
|
+
];
|
|
1302
|
+
var StopTelemetryEvaluation$ = [9, n0, _STEtop,
|
|
1303
|
+
{ [_h]: ["POST", "/StopTelemetryEvaluation", 200] }, () => __Unit, () => __Unit
|
|
1304
|
+
];
|
|
1305
|
+
var StopTelemetryEvaluationForOrganization$ = [9, n0, _STEFOt,
|
|
1306
|
+
{ [_h]: ["POST", "/StopTelemetryEvaluationForOrganization", 200] }, () => __Unit, () => __Unit
|
|
1307
|
+
];
|
|
1308
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1309
|
+
{ [_h]: ["POST", "/TagResource", 200] }, () => TagResourceInput$, () => __Unit
|
|
1310
|
+
];
|
|
1311
|
+
var TestTelemetryPipeline$ = [9, n0, _TTP,
|
|
1312
|
+
{ [_h]: ["POST", "/TestTelemetryPipeline", 200] }, () => TestTelemetryPipelineInput$, () => TestTelemetryPipelineOutput$
|
|
1313
|
+
];
|
|
1314
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1315
|
+
{ [_h]: ["POST", "/UntagResource", 200] }, () => UntagResourceInput$, () => __Unit
|
|
1316
|
+
];
|
|
1317
|
+
var UpdateCentralizationRuleForOrganization$ = [9, n0, _UCRFO,
|
|
1318
|
+
{ [_h]: ["POST", "/UpdateCentralizationRuleForOrganization", 200] }, () => UpdateCentralizationRuleForOrganizationInput$, () => UpdateCentralizationRuleForOrganizationOutput$
|
|
1319
|
+
];
|
|
1320
|
+
var UpdateTelemetryPipeline$ = [9, n0, _UTP,
|
|
1321
|
+
{ [_h]: ["POST", "/UpdateTelemetryPipeline", 200] }, () => UpdateTelemetryPipelineInput$, () => UpdateTelemetryPipelineOutput$
|
|
1322
|
+
];
|
|
1323
|
+
var UpdateTelemetryRule$ = [9, n0, _UTR,
|
|
1324
|
+
{ [_h]: ["POST", "/UpdateTelemetryRule", 200] }, () => UpdateTelemetryRuleInput$, () => UpdateTelemetryRuleOutput$
|
|
1325
|
+
];
|
|
1326
|
+
var UpdateTelemetryRuleForOrganization$ = [9, n0, _UTRFO,
|
|
1327
|
+
{ [_h]: ["POST", "/UpdateTelemetryRuleForOrganization", 200] }, () => UpdateTelemetryRuleForOrganizationInput$, () => UpdateTelemetryRuleForOrganizationOutput$
|
|
1328
|
+
];
|
|
1329
|
+
var ValidateTelemetryPipelineConfiguration$ = [9, n0, _VTPC,
|
|
1330
|
+
{ [_h]: ["POST", "/ValidateTelemetryPipelineConfiguration", 200] }, () => ValidateTelemetryPipelineConfigurationInput$, () => ValidateTelemetryPipelineConfigurationOutput$
|
|
1331
|
+
];
|
|
1332
|
+
|
|
1333
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1334
|
+
return {
|
|
1335
|
+
apiVersion: "2018-05-10",
|
|
1336
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1337
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1338
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1339
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1340
|
+
extensions: config?.extensions ?? [],
|
|
1341
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultObservabilityAdminHttpAuthSchemeProvider,
|
|
1342
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1343
|
+
{
|
|
1344
|
+
schemeId: "aws.auth#sigv4",
|
|
1345
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1346
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1347
|
+
},
|
|
1348
|
+
],
|
|
1349
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1350
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1351
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1352
|
+
defaultNamespace: "com.amazonaws.observabilityadmin",
|
|
1353
|
+
errorTypeRegistries,
|
|
1354
|
+
version: "2018-05-10",
|
|
1355
|
+
serviceTarget: "ObservabilityAdmin",
|
|
1356
|
+
},
|
|
1357
|
+
serviceId: config?.serviceId ?? "ObservabilityAdmin",
|
|
1358
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1359
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1360
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1361
|
+
};
|
|
1362
|
+
};
|
|
1363
|
+
|
|
1364
|
+
const getRuntimeConfig = (config) => {
|
|
1365
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1366
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1367
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1368
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1369
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1370
|
+
const loaderConfig = {
|
|
1371
|
+
profile: config?.profile,
|
|
1372
|
+
logger: clientSharedValues.logger,
|
|
1373
|
+
};
|
|
1374
|
+
return {
|
|
1375
|
+
...clientSharedValues,
|
|
1376
|
+
...config,
|
|
1377
|
+
runtime: "node",
|
|
1378
|
+
defaultsMode,
|
|
1379
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1380
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1381
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1382
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1383
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1384
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1385
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1386
|
+
retryMode: config?.retryMode ??
|
|
1387
|
+
loadConfig({
|
|
1388
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1389
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1390
|
+
}, config),
|
|
1391
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1392
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1393
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1394
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1395
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1396
|
+
};
|
|
1397
|
+
};
|
|
1398
|
+
|
|
34
1399
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1400
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1401
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -796,71 +2161,238 @@ const RecordFormat = {
|
|
|
796
2161
|
STRING: "STRING",
|
|
797
2162
|
};
|
|
798
2163
|
|
|
2164
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2165
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
799
2166
|
exports.Action = Action;
|
|
2167
|
+
exports.ActionCondition$ = ActionCondition$;
|
|
2168
|
+
exports.AdvancedEventSelector$ = AdvancedEventSelector$;
|
|
2169
|
+
exports.AdvancedFieldSelector$ = AdvancedFieldSelector$;
|
|
800
2170
|
exports.CentralizationFailureReason = CentralizationFailureReason;
|
|
2171
|
+
exports.CentralizationRule$ = CentralizationRule$;
|
|
2172
|
+
exports.CentralizationRuleDestination$ = CentralizationRuleDestination$;
|
|
2173
|
+
exports.CentralizationRuleSource$ = CentralizationRuleSource$;
|
|
2174
|
+
exports.CentralizationRuleSummary$ = CentralizationRuleSummary$;
|
|
2175
|
+
exports.CloudtrailParameters$ = CloudtrailParameters$;
|
|
2176
|
+
exports.Condition$ = Condition$;
|
|
2177
|
+
exports.ConfigurationSummary$ = ConfigurationSummary$;
|
|
2178
|
+
exports.ConflictException = ConflictException;
|
|
2179
|
+
exports.ConflictException$ = ConflictException$;
|
|
2180
|
+
exports.CreateCentralizationRuleForOrganization$ = CreateCentralizationRuleForOrganization$;
|
|
801
2181
|
exports.CreateCentralizationRuleForOrganizationCommand = CreateCentralizationRuleForOrganizationCommand;
|
|
2182
|
+
exports.CreateCentralizationRuleForOrganizationInput$ = CreateCentralizationRuleForOrganizationInput$;
|
|
2183
|
+
exports.CreateCentralizationRuleForOrganizationOutput$ = CreateCentralizationRuleForOrganizationOutput$;
|
|
2184
|
+
exports.CreateS3TableIntegration$ = CreateS3TableIntegration$;
|
|
802
2185
|
exports.CreateS3TableIntegrationCommand = CreateS3TableIntegrationCommand;
|
|
2186
|
+
exports.CreateS3TableIntegrationInput$ = CreateS3TableIntegrationInput$;
|
|
2187
|
+
exports.CreateS3TableIntegrationOutput$ = CreateS3TableIntegrationOutput$;
|
|
2188
|
+
exports.CreateTelemetryPipeline$ = CreateTelemetryPipeline$;
|
|
803
2189
|
exports.CreateTelemetryPipelineCommand = CreateTelemetryPipelineCommand;
|
|
2190
|
+
exports.CreateTelemetryPipelineInput$ = CreateTelemetryPipelineInput$;
|
|
2191
|
+
exports.CreateTelemetryPipelineOutput$ = CreateTelemetryPipelineOutput$;
|
|
2192
|
+
exports.CreateTelemetryRule$ = CreateTelemetryRule$;
|
|
804
2193
|
exports.CreateTelemetryRuleCommand = CreateTelemetryRuleCommand;
|
|
2194
|
+
exports.CreateTelemetryRuleForOrganization$ = CreateTelemetryRuleForOrganization$;
|
|
805
2195
|
exports.CreateTelemetryRuleForOrganizationCommand = CreateTelemetryRuleForOrganizationCommand;
|
|
2196
|
+
exports.CreateTelemetryRuleForOrganizationInput$ = CreateTelemetryRuleForOrganizationInput$;
|
|
2197
|
+
exports.CreateTelemetryRuleForOrganizationOutput$ = CreateTelemetryRuleForOrganizationOutput$;
|
|
2198
|
+
exports.CreateTelemetryRuleInput$ = CreateTelemetryRuleInput$;
|
|
2199
|
+
exports.CreateTelemetryRuleOutput$ = CreateTelemetryRuleOutput$;
|
|
2200
|
+
exports.DataSource$ = DataSource$;
|
|
2201
|
+
exports.DeleteCentralizationRuleForOrganization$ = DeleteCentralizationRuleForOrganization$;
|
|
806
2202
|
exports.DeleteCentralizationRuleForOrganizationCommand = DeleteCentralizationRuleForOrganizationCommand;
|
|
2203
|
+
exports.DeleteCentralizationRuleForOrganizationInput$ = DeleteCentralizationRuleForOrganizationInput$;
|
|
2204
|
+
exports.DeleteS3TableIntegration$ = DeleteS3TableIntegration$;
|
|
807
2205
|
exports.DeleteS3TableIntegrationCommand = DeleteS3TableIntegrationCommand;
|
|
2206
|
+
exports.DeleteS3TableIntegrationInput$ = DeleteS3TableIntegrationInput$;
|
|
2207
|
+
exports.DeleteTelemetryPipeline$ = DeleteTelemetryPipeline$;
|
|
808
2208
|
exports.DeleteTelemetryPipelineCommand = DeleteTelemetryPipelineCommand;
|
|
2209
|
+
exports.DeleteTelemetryPipelineInput$ = DeleteTelemetryPipelineInput$;
|
|
2210
|
+
exports.DeleteTelemetryPipelineOutput$ = DeleteTelemetryPipelineOutput$;
|
|
2211
|
+
exports.DeleteTelemetryRule$ = DeleteTelemetryRule$;
|
|
809
2212
|
exports.DeleteTelemetryRuleCommand = DeleteTelemetryRuleCommand;
|
|
2213
|
+
exports.DeleteTelemetryRuleForOrganization$ = DeleteTelemetryRuleForOrganization$;
|
|
810
2214
|
exports.DeleteTelemetryRuleForOrganizationCommand = DeleteTelemetryRuleForOrganizationCommand;
|
|
2215
|
+
exports.DeleteTelemetryRuleForOrganizationInput$ = DeleteTelemetryRuleForOrganizationInput$;
|
|
2216
|
+
exports.DeleteTelemetryRuleInput$ = DeleteTelemetryRuleInput$;
|
|
2217
|
+
exports.DestinationLogsConfiguration$ = DestinationLogsConfiguration$;
|
|
2218
|
+
exports.DestinationMetricsConfiguration$ = DestinationMetricsConfiguration$;
|
|
811
2219
|
exports.DestinationType = DestinationType;
|
|
2220
|
+
exports.ELBLoadBalancerLoggingParameters$ = ELBLoadBalancerLoggingParameters$;
|
|
812
2221
|
exports.EncryptedLogGroupStrategy = EncryptedLogGroupStrategy;
|
|
2222
|
+
exports.Encryption$ = Encryption$;
|
|
813
2223
|
exports.EncryptionConflictResolutionStrategy = EncryptionConflictResolutionStrategy;
|
|
814
2224
|
exports.EncryptionStrategy = EncryptionStrategy;
|
|
2225
|
+
exports.FieldToMatch$ = FieldToMatch$;
|
|
2226
|
+
exports.Filter$ = Filter$;
|
|
815
2227
|
exports.FilterBehavior = FilterBehavior;
|
|
816
2228
|
exports.FilterRequirement = FilterRequirement;
|
|
2229
|
+
exports.GetCentralizationRuleForOrganization$ = GetCentralizationRuleForOrganization$;
|
|
817
2230
|
exports.GetCentralizationRuleForOrganizationCommand = GetCentralizationRuleForOrganizationCommand;
|
|
2231
|
+
exports.GetCentralizationRuleForOrganizationInput$ = GetCentralizationRuleForOrganizationInput$;
|
|
2232
|
+
exports.GetCentralizationRuleForOrganizationOutput$ = GetCentralizationRuleForOrganizationOutput$;
|
|
2233
|
+
exports.GetS3TableIntegration$ = GetS3TableIntegration$;
|
|
818
2234
|
exports.GetS3TableIntegrationCommand = GetS3TableIntegrationCommand;
|
|
2235
|
+
exports.GetS3TableIntegrationInput$ = GetS3TableIntegrationInput$;
|
|
2236
|
+
exports.GetS3TableIntegrationOutput$ = GetS3TableIntegrationOutput$;
|
|
2237
|
+
exports.GetTelemetryEnrichmentStatus$ = GetTelemetryEnrichmentStatus$;
|
|
819
2238
|
exports.GetTelemetryEnrichmentStatusCommand = GetTelemetryEnrichmentStatusCommand;
|
|
2239
|
+
exports.GetTelemetryEnrichmentStatusOutput$ = GetTelemetryEnrichmentStatusOutput$;
|
|
2240
|
+
exports.GetTelemetryEvaluationStatus$ = GetTelemetryEvaluationStatus$;
|
|
820
2241
|
exports.GetTelemetryEvaluationStatusCommand = GetTelemetryEvaluationStatusCommand;
|
|
2242
|
+
exports.GetTelemetryEvaluationStatusForOrganization$ = GetTelemetryEvaluationStatusForOrganization$;
|
|
821
2243
|
exports.GetTelemetryEvaluationStatusForOrganizationCommand = GetTelemetryEvaluationStatusForOrganizationCommand;
|
|
2244
|
+
exports.GetTelemetryEvaluationStatusForOrganizationOutput$ = GetTelemetryEvaluationStatusForOrganizationOutput$;
|
|
2245
|
+
exports.GetTelemetryEvaluationStatusOutput$ = GetTelemetryEvaluationStatusOutput$;
|
|
2246
|
+
exports.GetTelemetryPipeline$ = GetTelemetryPipeline$;
|
|
822
2247
|
exports.GetTelemetryPipelineCommand = GetTelemetryPipelineCommand;
|
|
2248
|
+
exports.GetTelemetryPipelineInput$ = GetTelemetryPipelineInput$;
|
|
2249
|
+
exports.GetTelemetryPipelineOutput$ = GetTelemetryPipelineOutput$;
|
|
2250
|
+
exports.GetTelemetryRule$ = GetTelemetryRule$;
|
|
823
2251
|
exports.GetTelemetryRuleCommand = GetTelemetryRuleCommand;
|
|
2252
|
+
exports.GetTelemetryRuleForOrganization$ = GetTelemetryRuleForOrganization$;
|
|
824
2253
|
exports.GetTelemetryRuleForOrganizationCommand = GetTelemetryRuleForOrganizationCommand;
|
|
2254
|
+
exports.GetTelemetryRuleForOrganizationInput$ = GetTelemetryRuleForOrganizationInput$;
|
|
2255
|
+
exports.GetTelemetryRuleForOrganizationOutput$ = GetTelemetryRuleForOrganizationOutput$;
|
|
2256
|
+
exports.GetTelemetryRuleInput$ = GetTelemetryRuleInput$;
|
|
2257
|
+
exports.GetTelemetryRuleOutput$ = GetTelemetryRuleOutput$;
|
|
825
2258
|
exports.IntegrationStatus = IntegrationStatus;
|
|
2259
|
+
exports.IntegrationSummary$ = IntegrationSummary$;
|
|
2260
|
+
exports.InternalServerException = InternalServerException;
|
|
2261
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2262
|
+
exports.InvalidStateException = InvalidStateException;
|
|
2263
|
+
exports.InvalidStateException$ = InvalidStateException$;
|
|
2264
|
+
exports.LabelNameCondition$ = LabelNameCondition$;
|
|
2265
|
+
exports.ListCentralizationRulesForOrganization$ = ListCentralizationRulesForOrganization$;
|
|
826
2266
|
exports.ListCentralizationRulesForOrganizationCommand = ListCentralizationRulesForOrganizationCommand;
|
|
2267
|
+
exports.ListCentralizationRulesForOrganizationInput$ = ListCentralizationRulesForOrganizationInput$;
|
|
2268
|
+
exports.ListCentralizationRulesForOrganizationOutput$ = ListCentralizationRulesForOrganizationOutput$;
|
|
2269
|
+
exports.ListResourceTelemetry$ = ListResourceTelemetry$;
|
|
827
2270
|
exports.ListResourceTelemetryCommand = ListResourceTelemetryCommand;
|
|
2271
|
+
exports.ListResourceTelemetryForOrganization$ = ListResourceTelemetryForOrganization$;
|
|
828
2272
|
exports.ListResourceTelemetryForOrganizationCommand = ListResourceTelemetryForOrganizationCommand;
|
|
2273
|
+
exports.ListResourceTelemetryForOrganizationInput$ = ListResourceTelemetryForOrganizationInput$;
|
|
2274
|
+
exports.ListResourceTelemetryForOrganizationOutput$ = ListResourceTelemetryForOrganizationOutput$;
|
|
2275
|
+
exports.ListResourceTelemetryInput$ = ListResourceTelemetryInput$;
|
|
2276
|
+
exports.ListResourceTelemetryOutput$ = ListResourceTelemetryOutput$;
|
|
2277
|
+
exports.ListS3TableIntegrations$ = ListS3TableIntegrations$;
|
|
829
2278
|
exports.ListS3TableIntegrationsCommand = ListS3TableIntegrationsCommand;
|
|
2279
|
+
exports.ListS3TableIntegrationsInput$ = ListS3TableIntegrationsInput$;
|
|
2280
|
+
exports.ListS3TableIntegrationsOutput$ = ListS3TableIntegrationsOutput$;
|
|
2281
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
830
2282
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2283
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2284
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2285
|
+
exports.ListTelemetryPipelines$ = ListTelemetryPipelines$;
|
|
831
2286
|
exports.ListTelemetryPipelinesCommand = ListTelemetryPipelinesCommand;
|
|
2287
|
+
exports.ListTelemetryPipelinesInput$ = ListTelemetryPipelinesInput$;
|
|
2288
|
+
exports.ListTelemetryPipelinesOutput$ = ListTelemetryPipelinesOutput$;
|
|
2289
|
+
exports.ListTelemetryRules$ = ListTelemetryRules$;
|
|
832
2290
|
exports.ListTelemetryRulesCommand = ListTelemetryRulesCommand;
|
|
2291
|
+
exports.ListTelemetryRulesForOrganization$ = ListTelemetryRulesForOrganization$;
|
|
833
2292
|
exports.ListTelemetryRulesForOrganizationCommand = ListTelemetryRulesForOrganizationCommand;
|
|
2293
|
+
exports.ListTelemetryRulesForOrganizationInput$ = ListTelemetryRulesForOrganizationInput$;
|
|
2294
|
+
exports.ListTelemetryRulesForOrganizationOutput$ = ListTelemetryRulesForOrganizationOutput$;
|
|
2295
|
+
exports.ListTelemetryRulesInput$ = ListTelemetryRulesInput$;
|
|
2296
|
+
exports.ListTelemetryRulesOutput$ = ListTelemetryRulesOutput$;
|
|
2297
|
+
exports.LogDeliveryParameters$ = LogDeliveryParameters$;
|
|
2298
|
+
exports.LogGroupNameConfiguration$ = LogGroupNameConfiguration$;
|
|
834
2299
|
exports.LogType = LogType;
|
|
2300
|
+
exports.LoggingFilter$ = LoggingFilter$;
|
|
2301
|
+
exports.LogsBackupConfiguration$ = LogsBackupConfiguration$;
|
|
2302
|
+
exports.LogsEncryptionConfiguration$ = LogsEncryptionConfiguration$;
|
|
2303
|
+
exports.MetricsBackupConfiguration$ = MetricsBackupConfiguration$;
|
|
835
2304
|
exports.MskEnhancedMonitoringLevel = MskEnhancedMonitoringLevel;
|
|
2305
|
+
exports.MskMonitoringParameters$ = MskMonitoringParameters$;
|
|
836
2306
|
exports.ObservabilityAdmin = ObservabilityAdmin;
|
|
837
2307
|
exports.ObservabilityAdminClient = ObservabilityAdminClient;
|
|
2308
|
+
exports.ObservabilityAdminServiceException = ObservabilityAdminServiceException;
|
|
2309
|
+
exports.ObservabilityAdminServiceException$ = ObservabilityAdminServiceException$;
|
|
838
2310
|
exports.OutputFormat = OutputFormat;
|
|
2311
|
+
exports.PipelineOutput$ = PipelineOutput$;
|
|
2312
|
+
exports.PipelineOutputError$ = PipelineOutputError$;
|
|
839
2313
|
exports.RecordFormat = RecordFormat;
|
|
2314
|
+
exports.RegionStatus$ = RegionStatus$;
|
|
2315
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2316
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
840
2317
|
exports.ResourceType = ResourceType;
|
|
841
2318
|
exports.RuleHealth = RuleHealth;
|
|
842
2319
|
exports.SSEAlgorithm = SSEAlgorithm;
|
|
2320
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2321
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2322
|
+
exports.SingleHeader$ = SingleHeader$;
|
|
2323
|
+
exports.Source$ = Source$;
|
|
2324
|
+
exports.SourceLogsConfiguration$ = SourceLogsConfiguration$;
|
|
2325
|
+
exports.SourceMetricsConfiguration$ = SourceMetricsConfiguration$;
|
|
2326
|
+
exports.StartTelemetryEnrichment$ = StartTelemetryEnrichment$;
|
|
843
2327
|
exports.StartTelemetryEnrichmentCommand = StartTelemetryEnrichmentCommand;
|
|
2328
|
+
exports.StartTelemetryEnrichmentOutput$ = StartTelemetryEnrichmentOutput$;
|
|
2329
|
+
exports.StartTelemetryEvaluation$ = StartTelemetryEvaluation$;
|
|
844
2330
|
exports.StartTelemetryEvaluationCommand = StartTelemetryEvaluationCommand;
|
|
2331
|
+
exports.StartTelemetryEvaluationForOrganization$ = StartTelemetryEvaluationForOrganization$;
|
|
845
2332
|
exports.StartTelemetryEvaluationForOrganizationCommand = StartTelemetryEvaluationForOrganizationCommand;
|
|
2333
|
+
exports.StartTelemetryEvaluationForOrganizationInput$ = StartTelemetryEvaluationForOrganizationInput$;
|
|
2334
|
+
exports.StartTelemetryEvaluationInput$ = StartTelemetryEvaluationInput$;
|
|
846
2335
|
exports.Status = Status;
|
|
2336
|
+
exports.StopTelemetryEnrichment$ = StopTelemetryEnrichment$;
|
|
847
2337
|
exports.StopTelemetryEnrichmentCommand = StopTelemetryEnrichmentCommand;
|
|
2338
|
+
exports.StopTelemetryEnrichmentOutput$ = StopTelemetryEnrichmentOutput$;
|
|
2339
|
+
exports.StopTelemetryEvaluation$ = StopTelemetryEvaluation$;
|
|
848
2340
|
exports.StopTelemetryEvaluationCommand = StopTelemetryEvaluationCommand;
|
|
2341
|
+
exports.StopTelemetryEvaluationForOrganization$ = StopTelemetryEvaluationForOrganization$;
|
|
849
2342
|
exports.StopTelemetryEvaluationForOrganizationCommand = StopTelemetryEvaluationForOrganizationCommand;
|
|
2343
|
+
exports.TagResource$ = TagResource$;
|
|
850
2344
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2345
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
2346
|
+
exports.TelemetryConfiguration$ = TelemetryConfiguration$;
|
|
2347
|
+
exports.TelemetryDestinationConfiguration$ = TelemetryDestinationConfiguration$;
|
|
851
2348
|
exports.TelemetryEnrichmentStatus = TelemetryEnrichmentStatus;
|
|
2349
|
+
exports.TelemetryPipeline$ = TelemetryPipeline$;
|
|
2350
|
+
exports.TelemetryPipelineConfiguration$ = TelemetryPipelineConfiguration$;
|
|
852
2351
|
exports.TelemetryPipelineStatus = TelemetryPipelineStatus;
|
|
2352
|
+
exports.TelemetryPipelineStatusReason$ = TelemetryPipelineStatusReason$;
|
|
2353
|
+
exports.TelemetryPipelineSummary$ = TelemetryPipelineSummary$;
|
|
2354
|
+
exports.TelemetryRule$ = TelemetryRule$;
|
|
2355
|
+
exports.TelemetryRuleSummary$ = TelemetryRuleSummary$;
|
|
853
2356
|
exports.TelemetrySourceType = TelemetrySourceType;
|
|
854
2357
|
exports.TelemetryState = TelemetryState;
|
|
855
2358
|
exports.TelemetryType = TelemetryType;
|
|
2359
|
+
exports.TestTelemetryPipeline$ = TestTelemetryPipeline$;
|
|
856
2360
|
exports.TestTelemetryPipelineCommand = TestTelemetryPipelineCommand;
|
|
2361
|
+
exports.TestTelemetryPipelineInput$ = TestTelemetryPipelineInput$;
|
|
2362
|
+
exports.TestTelemetryPipelineOutput$ = TestTelemetryPipelineOutput$;
|
|
2363
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
2364
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
2365
|
+
exports.UntagResource$ = UntagResource$;
|
|
857
2366
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2367
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2368
|
+
exports.UpdateCentralizationRuleForOrganization$ = UpdateCentralizationRuleForOrganization$;
|
|
858
2369
|
exports.UpdateCentralizationRuleForOrganizationCommand = UpdateCentralizationRuleForOrganizationCommand;
|
|
2370
|
+
exports.UpdateCentralizationRuleForOrganizationInput$ = UpdateCentralizationRuleForOrganizationInput$;
|
|
2371
|
+
exports.UpdateCentralizationRuleForOrganizationOutput$ = UpdateCentralizationRuleForOrganizationOutput$;
|
|
2372
|
+
exports.UpdateTelemetryPipeline$ = UpdateTelemetryPipeline$;
|
|
859
2373
|
exports.UpdateTelemetryPipelineCommand = UpdateTelemetryPipelineCommand;
|
|
2374
|
+
exports.UpdateTelemetryPipelineInput$ = UpdateTelemetryPipelineInput$;
|
|
2375
|
+
exports.UpdateTelemetryPipelineOutput$ = UpdateTelemetryPipelineOutput$;
|
|
2376
|
+
exports.UpdateTelemetryRule$ = UpdateTelemetryRule$;
|
|
860
2377
|
exports.UpdateTelemetryRuleCommand = UpdateTelemetryRuleCommand;
|
|
2378
|
+
exports.UpdateTelemetryRuleForOrganization$ = UpdateTelemetryRuleForOrganization$;
|
|
861
2379
|
exports.UpdateTelemetryRuleForOrganizationCommand = UpdateTelemetryRuleForOrganizationCommand;
|
|
2380
|
+
exports.UpdateTelemetryRuleForOrganizationInput$ = UpdateTelemetryRuleForOrganizationInput$;
|
|
2381
|
+
exports.UpdateTelemetryRuleForOrganizationOutput$ = UpdateTelemetryRuleForOrganizationOutput$;
|
|
2382
|
+
exports.UpdateTelemetryRuleInput$ = UpdateTelemetryRuleInput$;
|
|
2383
|
+
exports.UpdateTelemetryRuleOutput$ = UpdateTelemetryRuleOutput$;
|
|
2384
|
+
exports.VPCFlowLogParameters$ = VPCFlowLogParameters$;
|
|
2385
|
+
exports.ValidateTelemetryPipelineConfiguration$ = ValidateTelemetryPipelineConfiguration$;
|
|
862
2386
|
exports.ValidateTelemetryPipelineConfigurationCommand = ValidateTelemetryPipelineConfigurationCommand;
|
|
2387
|
+
exports.ValidateTelemetryPipelineConfigurationInput$ = ValidateTelemetryPipelineConfigurationInput$;
|
|
2388
|
+
exports.ValidateTelemetryPipelineConfigurationOutput$ = ValidateTelemetryPipelineConfigurationOutput$;
|
|
2389
|
+
exports.ValidationError$ = ValidationError$;
|
|
2390
|
+
exports.ValidationException = ValidationException;
|
|
2391
|
+
exports.ValidationException$ = ValidationException$;
|
|
863
2392
|
exports.WAFLogType = WAFLogType;
|
|
2393
|
+
exports.WAFLoggingParameters$ = WAFLoggingParameters$;
|
|
2394
|
+
exports._Record$ = _Record$;
|
|
2395
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
864
2396
|
exports.paginateListCentralizationRulesForOrganization = paginateListCentralizationRulesForOrganization;
|
|
865
2397
|
exports.paginateListResourceTelemetry = paginateListResourceTelemetry;
|
|
866
2398
|
exports.paginateListResourceTelemetryForOrganization = paginateListResourceTelemetryForOrganization;
|