@aws-sdk/client-application-discovery-service 3.1075.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 +1375 -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/ApplicationDiscoveryServiceServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -121
- 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 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1047
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 { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultApplicationDiscoveryServiceHttpAuthSchemeParametersProvider = 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: "discovery",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultApplicationDiscoveryServiceHttpAuthSchemeProvider = (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,1196 @@ 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://discovery-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://discovery-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://discovery.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://discovery.{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 ApplicationDiscoveryServiceServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, ApplicationDiscoveryServiceServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AuthorizationErrorException extends ApplicationDiscoveryServiceServiceException {
|
|
140
|
+
name = "AuthorizationErrorException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AuthorizationErrorException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AuthorizationErrorException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class HomeRegionNotSetException extends ApplicationDiscoveryServiceServiceException {
|
|
152
|
+
name = "HomeRegionNotSetException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "HomeRegionNotSetException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, HomeRegionNotSetException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class InvalidParameterException extends ApplicationDiscoveryServiceServiceException {
|
|
164
|
+
name = "InvalidParameterException";
|
|
165
|
+
$fault = "client";
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "InvalidParameterException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class InvalidParameterValueException extends ApplicationDiscoveryServiceServiceException {
|
|
176
|
+
name = "InvalidParameterValueException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
constructor(opts) {
|
|
179
|
+
super({
|
|
180
|
+
name: "InvalidParameterValueException",
|
|
181
|
+
$fault: "client",
|
|
182
|
+
...opts,
|
|
183
|
+
});
|
|
184
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class ServerInternalErrorException extends ApplicationDiscoveryServiceServiceException {
|
|
188
|
+
name = "ServerInternalErrorException";
|
|
189
|
+
$fault = "server";
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "ServerInternalErrorException",
|
|
193
|
+
$fault: "server",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, ServerInternalErrorException.prototype);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
class ResourceNotFoundException extends ApplicationDiscoveryServiceServiceException {
|
|
200
|
+
name = "ResourceNotFoundException";
|
|
201
|
+
$fault = "client";
|
|
202
|
+
constructor(opts) {
|
|
203
|
+
super({
|
|
204
|
+
name: "ResourceNotFoundException",
|
|
205
|
+
$fault: "client",
|
|
206
|
+
...opts,
|
|
207
|
+
});
|
|
208
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
class OperationNotPermittedException extends ApplicationDiscoveryServiceServiceException {
|
|
212
|
+
name = "OperationNotPermittedException";
|
|
213
|
+
$fault = "client";
|
|
214
|
+
constructor(opts) {
|
|
215
|
+
super({
|
|
216
|
+
name: "OperationNotPermittedException",
|
|
217
|
+
$fault: "client",
|
|
218
|
+
...opts,
|
|
219
|
+
});
|
|
220
|
+
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class LimitExceededException extends ApplicationDiscoveryServiceServiceException {
|
|
224
|
+
name = "LimitExceededException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
constructor(opts) {
|
|
227
|
+
super({
|
|
228
|
+
name: "LimitExceededException",
|
|
229
|
+
$fault: "client",
|
|
230
|
+
...opts,
|
|
231
|
+
});
|
|
232
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
class ConflictErrorException extends ApplicationDiscoveryServiceServiceException {
|
|
236
|
+
name = "ConflictErrorException";
|
|
237
|
+
$fault = "client";
|
|
238
|
+
constructor(opts) {
|
|
239
|
+
super({
|
|
240
|
+
name: "ConflictErrorException",
|
|
241
|
+
$fault: "client",
|
|
242
|
+
...opts,
|
|
243
|
+
});
|
|
244
|
+
Object.setPrototypeOf(this, ConflictErrorException.prototype);
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
class ResourceInUseException extends ApplicationDiscoveryServiceServiceException {
|
|
248
|
+
name = "ResourceInUseException";
|
|
249
|
+
$fault = "client";
|
|
250
|
+
constructor(opts) {
|
|
251
|
+
super({
|
|
252
|
+
name: "ResourceInUseException",
|
|
253
|
+
$fault: "client",
|
|
254
|
+
...opts,
|
|
255
|
+
});
|
|
256
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
const _ACITA = "AssociateConfigurationItemsToApplication";
|
|
261
|
+
const _ACITAR = "AssociateConfigurationItemsToApplicationRequest";
|
|
262
|
+
const _ACITARs = "AssociateConfigurationItemsToApplicationResponse";
|
|
263
|
+
const _ACS = "AgentConfigurationStatus";
|
|
264
|
+
const _ACSL = "AgentConfigurationStatusList";
|
|
265
|
+
const _AEE = "AuthorizationErrorException";
|
|
266
|
+
const _AI = "AgentInfo";
|
|
267
|
+
const _AIg = "AgentsInfo";
|
|
268
|
+
const _ANI = "AgentNetworkInfo";
|
|
269
|
+
const _ANIL = "AgentNetworkInfoList";
|
|
270
|
+
const _BDA = "BatchDeleteAgents";
|
|
271
|
+
const _BDAE = "BatchDeleteAgentError";
|
|
272
|
+
const _BDAEa = "BatchDeleteAgentErrors";
|
|
273
|
+
const _BDAR = "BatchDeleteAgentsRequest";
|
|
274
|
+
const _BDARa = "BatchDeleteAgentsResponse";
|
|
275
|
+
const _BDCT = "BatchDeleteConfigurationTask";
|
|
276
|
+
const _BDID = "BatchDeleteImportData";
|
|
277
|
+
const _BDIDE = "BatchDeleteImportDataError";
|
|
278
|
+
const _BDIDEL = "BatchDeleteImportDataErrorList";
|
|
279
|
+
const _BDIDR = "BatchDeleteImportDataRequest";
|
|
280
|
+
const _BDIDRa = "BatchDeleteImportDataResponse";
|
|
281
|
+
const _C = "Configurations";
|
|
282
|
+
const _CA = "CreateApplication";
|
|
283
|
+
const _CACI = "CustomerAgentlessCollectorInfo";
|
|
284
|
+
const _CAI = "CustomerAgentInfo";
|
|
285
|
+
const _CAR = "CreateApplicationRequest";
|
|
286
|
+
const _CARr = "CreateApplicationResponse";
|
|
287
|
+
const _CCI = "CustomerConnectorInfo";
|
|
288
|
+
const _CED = "ContinuousExportDescription";
|
|
289
|
+
const _CEDo = "ContinuousExportDescriptions";
|
|
290
|
+
const _CEE = "ConflictErrorException";
|
|
291
|
+
const _CMCI = "CustomerMeCollectorInfo";
|
|
292
|
+
const _CT = "ConfigurationTag";
|
|
293
|
+
const _CTR = "CreateTagsRequest";
|
|
294
|
+
const _CTRr = "CreateTagsResponse";
|
|
295
|
+
const _CTS = "ConfigurationTagSet";
|
|
296
|
+
const _CTr = "CreateTags";
|
|
297
|
+
const _DA = "DeleteAgent";
|
|
298
|
+
const _DAR = "DeleteApplicationsRequest";
|
|
299
|
+
const _DARe = "DeleteApplicationsResponse";
|
|
300
|
+
const _DARes = "DescribeAgentsRequest";
|
|
301
|
+
const _DAResc = "DescribeAgentsResponse";
|
|
302
|
+
const _DAe = "DeleteAgents";
|
|
303
|
+
const _DAel = "DeleteApplications";
|
|
304
|
+
const _DAes = "DescribeAgents";
|
|
305
|
+
const _DBDCT = "DescribeBatchDeleteConfigurationTask";
|
|
306
|
+
const _DBDCTR = "DescribeBatchDeleteConfigurationTaskRequest";
|
|
307
|
+
const _DBDCTRe = "DescribeBatchDeleteConfigurationTaskResponse";
|
|
308
|
+
const _DC = "DescribeConfigurations";
|
|
309
|
+
const _DCA = "DescribeConfigurationsAttributes";
|
|
310
|
+
const _DCE = "DescribeContinuousExports";
|
|
311
|
+
const _DCER = "DescribeContinuousExportsRequest";
|
|
312
|
+
const _DCERe = "DescribeContinuousExportsResponse";
|
|
313
|
+
const _DCIFA = "DisassociateConfigurationItemsFromApplication";
|
|
314
|
+
const _DCIFAR = "DisassociateConfigurationItemsFromApplicationRequest";
|
|
315
|
+
const _DCIFARi = "DisassociateConfigurationItemsFromApplicationResponse";
|
|
316
|
+
const _DCR = "DescribeConfigurationsRequest";
|
|
317
|
+
const _DCRe = "DescribeConfigurationsResponse";
|
|
318
|
+
const _DEC = "DescribeExportConfigurations";
|
|
319
|
+
const _DECR = "DescribeExportConfigurationsRequest";
|
|
320
|
+
const _DECRe = "DescribeExportConfigurationsResponse";
|
|
321
|
+
const _DET = "DescribeExportTasks";
|
|
322
|
+
const _DETR = "DescribeExportTasksRequest";
|
|
323
|
+
const _DETRe = "DescribeExportTasksResponse";
|
|
324
|
+
const _DIT = "DescribeImportTasks";
|
|
325
|
+
const _DITFL = "DescribeImportTasksFilterList";
|
|
326
|
+
const _DITR = "DescribeImportTasksRequest";
|
|
327
|
+
const _DITRe = "DescribeImportTasksResponse";
|
|
328
|
+
const _DT = "DeleteTags";
|
|
329
|
+
const _DTR = "DeleteTagsRequest";
|
|
330
|
+
const _DTRe = "DeleteTagsResponse";
|
|
331
|
+
const _DTRes = "DescribeTagsRequest";
|
|
332
|
+
const _DTResc = "DescribeTagsResponse";
|
|
333
|
+
const _DTe = "DescribeTags";
|
|
334
|
+
const _DW = "DeletionWarning";
|
|
335
|
+
const _DWL = "DeletionWarningsList";
|
|
336
|
+
const _EC = "ExportConfigurations";
|
|
337
|
+
const _ECR = "ExportConfigurationsResponse";
|
|
338
|
+
const _EF = "ExportFilter";
|
|
339
|
+
const _EFx = "ExportFilters";
|
|
340
|
+
const _EI = "ExportInfo";
|
|
341
|
+
const _EIx = "ExportsInfo";
|
|
342
|
+
const _EP = "ExportPreferences";
|
|
343
|
+
const _EREP = "Ec2RecommendationsExportPreferences";
|
|
344
|
+
const _F = "Filter";
|
|
345
|
+
const _FC = "FailedConfiguration";
|
|
346
|
+
const _FCL = "FailedConfigurationList";
|
|
347
|
+
const _FV = "FilterValues";
|
|
348
|
+
const _Fi = "Filters";
|
|
349
|
+
const _GDS = "GetDiscoverySummary";
|
|
350
|
+
const _GDSR = "GetDiscoverySummaryRequest";
|
|
351
|
+
const _GDSRe = "GetDiscoverySummaryResponse";
|
|
352
|
+
const _HRNSE = "HomeRegionNotSetException";
|
|
353
|
+
const _IPE = "InvalidParameterException";
|
|
354
|
+
const _IPVE = "InvalidParameterValueException";
|
|
355
|
+
const _IT = "ImportTask";
|
|
356
|
+
const _ITF = "ImportTaskFilter";
|
|
357
|
+
const _ITL = "ImportTaskList";
|
|
358
|
+
const _LC = "ListConfigurations";
|
|
359
|
+
const _LCR = "ListConfigurationsRequest";
|
|
360
|
+
const _LCRi = "ListConfigurationsResponse";
|
|
361
|
+
const _LEE = "LimitExceededException";
|
|
362
|
+
const _LSN = "ListServerNeighbors";
|
|
363
|
+
const _LSNR = "ListServerNeighborsRequest";
|
|
364
|
+
const _LSNRi = "ListServerNeighborsResponse";
|
|
365
|
+
const _NCD = "NeighborConnectionDetail";
|
|
366
|
+
const _NDL = "NeighborDetailsList";
|
|
367
|
+
const _OBE = "OrderByElement";
|
|
368
|
+
const _OBL = "OrderByList";
|
|
369
|
+
const _ONPE = "OperationNotPermittedException";
|
|
370
|
+
const _RIO = "ReservedInstanceOptions";
|
|
371
|
+
const _RIUE = "ResourceInUseException";
|
|
372
|
+
const _RNFE = "ResourceNotFoundException";
|
|
373
|
+
const _SBDCT = "StartBatchDeleteConfigurationTask";
|
|
374
|
+
const _SBDCTR = "StartBatchDeleteConfigurationTaskRequest";
|
|
375
|
+
const _SBDCTRt = "StartBatchDeleteConfigurationTaskResponse";
|
|
376
|
+
const _SCE = "StartContinuousExport";
|
|
377
|
+
const _SCER = "StartContinuousExportRequest";
|
|
378
|
+
const _SCERt = "StartContinuousExportResponse";
|
|
379
|
+
const _SCERto = "StopContinuousExportRequest";
|
|
380
|
+
const _SCERtop = "StopContinuousExportResponse";
|
|
381
|
+
const _SCEt = "StopContinuousExport";
|
|
382
|
+
const _SDCBAI = "StartDataCollectionByAgentIds";
|
|
383
|
+
const _SDCBAIR = "StartDataCollectionByAgentIdsRequest";
|
|
384
|
+
const _SDCBAIRt = "StartDataCollectionByAgentIdsResponse";
|
|
385
|
+
const _SDCBAIRto = "StopDataCollectionByAgentIdsRequest";
|
|
386
|
+
const _SDCBAIRtop = "StopDataCollectionByAgentIdsResponse";
|
|
387
|
+
const _SDCBAIt = "StopDataCollectionByAgentIds";
|
|
388
|
+
const _SET = "StartExportTask";
|
|
389
|
+
const _SETR = "StartExportTaskRequest";
|
|
390
|
+
const _SETRt = "StartExportTaskResponse";
|
|
391
|
+
const _SIEE = "ServerInternalErrorException";
|
|
392
|
+
const _SIT = "StartImportTask";
|
|
393
|
+
const _SITR = "StartImportTaskRequest";
|
|
394
|
+
const _SITRt = "StartImportTaskResponse";
|
|
395
|
+
const _T = "Tag";
|
|
396
|
+
const _TF = "TagFilter";
|
|
397
|
+
const _TFa = "TagFilters";
|
|
398
|
+
const _TS = "TagSet";
|
|
399
|
+
const _UA = "UpdateApplication";
|
|
400
|
+
const _UAR = "UpdateApplicationRequest";
|
|
401
|
+
const _UARp = "UpdateApplicationResponse";
|
|
402
|
+
const _UMB = "UsageMetricBasis";
|
|
403
|
+
const _a = "applications";
|
|
404
|
+
const _aA = "activeAgents";
|
|
405
|
+
const _aAC = "activeAgentlessCollectors";
|
|
406
|
+
const _aC = "activeConnectors";
|
|
407
|
+
const _aCI = "applicationConfigurationId";
|
|
408
|
+
const _aCS = "agentlessCollectorSummary";
|
|
409
|
+
const _aCSg = "agentsConfigurationStatus";
|
|
410
|
+
const _aI = "agentId";
|
|
411
|
+
const _aIF = "applicationImportFailure";
|
|
412
|
+
const _aIS = "applicationImportSuccess";
|
|
413
|
+
const _aIg = "agentIds";
|
|
414
|
+
const _aIge = "agentsInfo";
|
|
415
|
+
const _aMC = "activeMeCollectors";
|
|
416
|
+
const _aNIL = "agentNetworkInfoList";
|
|
417
|
+
const _aS = "agentSummary";
|
|
418
|
+
const _aT = "agentType";
|
|
419
|
+
const _bLA = "blackListedAgents";
|
|
420
|
+
const _bLC = "blackListedConnectors";
|
|
421
|
+
const _c = "client";
|
|
422
|
+
const _cC = "connectionsCount";
|
|
423
|
+
const _cDU = "configurationsDownloadUrl";
|
|
424
|
+
const _cI = "connectorId";
|
|
425
|
+
const _cIo = "configurationIds";
|
|
426
|
+
const _cIon = "configurationId";
|
|
427
|
+
const _cPMB = "cpuPerformanceMetricBasis";
|
|
428
|
+
const _cRT = "clientRequestToken";
|
|
429
|
+
const _cS = "collectionStatus";
|
|
430
|
+
const _cSo = "connectorSummary";
|
|
431
|
+
const _cT = "configurationType";
|
|
432
|
+
const _co = "configurations";
|
|
433
|
+
const _con = "condition";
|
|
434
|
+
const _d = "description";
|
|
435
|
+
const _dA = "deleteAgents";
|
|
436
|
+
const _dC = "deletedConfigurations";
|
|
437
|
+
const _dH = "deleteHistory";
|
|
438
|
+
const _dLAC = "denyListedAgentlessCollectors";
|
|
439
|
+
const _dLMC = "denyListedMeCollectors";
|
|
440
|
+
const _dP = "destinationPort";
|
|
441
|
+
const _dS = "dataSource";
|
|
442
|
+
const _dSI = "destinationServerId";
|
|
443
|
+
const _dW = "deletionWarnings";
|
|
444
|
+
const _de = "descriptions";
|
|
445
|
+
const _e = "error";
|
|
446
|
+
const _eAFEZ = "errorsAndFailedEntriesZip";
|
|
447
|
+
const _eC = "errorCode";
|
|
448
|
+
const _eD = "errorDescription";
|
|
449
|
+
const _eDF = "exportDataFormat";
|
|
450
|
+
const _eI = "exportId";
|
|
451
|
+
const _eIT = "excludedInstanceTypes";
|
|
452
|
+
const _eIx = "exportIds";
|
|
453
|
+
const _eIxp = "exportsInfo";
|
|
454
|
+
const _eM = "errorMessage";
|
|
455
|
+
const _eRP = "ec2RecommendationsPreferences";
|
|
456
|
+
const _eRT = "exportRequestTime";
|
|
457
|
+
const _eS = "exportStatus";
|
|
458
|
+
const _eSC = "errorStatusCode";
|
|
459
|
+
const _eT = "endTime";
|
|
460
|
+
const _en = "enabled";
|
|
461
|
+
const _er = "errors";
|
|
462
|
+
const _f = "force";
|
|
463
|
+
const _fC = "failedConfigurations";
|
|
464
|
+
const _fCi = "fileClassification";
|
|
465
|
+
const _fN = "fieldName";
|
|
466
|
+
const _fi = "filters";
|
|
467
|
+
const _h = "health";
|
|
468
|
+
const _hA = "healthyAgents";
|
|
469
|
+
const _hAC = "healthyAgentlessCollectors";
|
|
470
|
+
const _hC = "healthyConnectors";
|
|
471
|
+
const _hE = "httpError";
|
|
472
|
+
const _hMC = "healthyMeCollectors";
|
|
473
|
+
const _hN = "hostName";
|
|
474
|
+
const _i = "item";
|
|
475
|
+
const _iA = "ipAddress";
|
|
476
|
+
const _iCT = "importCompletionTime";
|
|
477
|
+
const _iDT = "importDeletedTime";
|
|
478
|
+
const _iRT = "importRequestTime";
|
|
479
|
+
const _iT = "isTruncated";
|
|
480
|
+
const _iTI = "importTaskId";
|
|
481
|
+
const _iTIm = "importTaskIds";
|
|
482
|
+
const _iU = "importUrl";
|
|
483
|
+
const _k = "key";
|
|
484
|
+
const _kDC = "knownDependencyCount";
|
|
485
|
+
const _lHPT = "lastHealthPingTime";
|
|
486
|
+
const _m = "message";
|
|
487
|
+
const _mA = "macAddress";
|
|
488
|
+
const _mCS = "meCollectorSummary";
|
|
489
|
+
const _mR = "maxResults";
|
|
490
|
+
const _n = "name";
|
|
491
|
+
const _nCI = "neighborConfigurationIds";
|
|
492
|
+
const _nT = "nextToken";
|
|
493
|
+
const _ne = "neighbors";
|
|
494
|
+
const _oB = "orderBy";
|
|
495
|
+
const _oC = "offeringClass";
|
|
496
|
+
const _oS = "operationSucceeded";
|
|
497
|
+
const _p = "preferences";
|
|
498
|
+
const _pA = "percentageAdjust";
|
|
499
|
+
const _pIN = "portInformationNeeded";
|
|
500
|
+
const _pO = "purchasingOption";
|
|
501
|
+
const _pR = "preferredRegion";
|
|
502
|
+
const _rC = "requestedConfigurations";
|
|
503
|
+
const _rET = "requestedEndTime";
|
|
504
|
+
const _rIO = "reservedInstanceOptions";
|
|
505
|
+
const _rPMB = "ramPerformanceMetricBasis";
|
|
506
|
+
const _rST = "requestedStartTime";
|
|
507
|
+
const _rT = "registeredTime";
|
|
508
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.applicationdiscoveryservice";
|
|
509
|
+
const _sA = "shutdownAgents";
|
|
510
|
+
const _sAC = "shutdownAgentlessCollectors";
|
|
511
|
+
const _sB = "s3Bucket";
|
|
512
|
+
const _sC = "shutdownConnectors";
|
|
513
|
+
const _sD = "statusDetail";
|
|
514
|
+
const _sIF = "serverImportFailure";
|
|
515
|
+
const _sIS = "serverImportSuccess";
|
|
516
|
+
const _sM = "statusMessage";
|
|
517
|
+
const _sMC = "shutdownMeCollectors";
|
|
518
|
+
const _sMT = "serversMappedtoTags";
|
|
519
|
+
const _sMTA = "serversMappedToApplications";
|
|
520
|
+
const _sO = "sortOrder";
|
|
521
|
+
const _sSC = "schemaStorageConfig";
|
|
522
|
+
const _sSI = "sourceServerId";
|
|
523
|
+
const _sT = "startTime";
|
|
524
|
+
const _sTt = "stopTime";
|
|
525
|
+
const _se = "server";
|
|
526
|
+
const _ser = "servers";
|
|
527
|
+
const _st = "status";
|
|
528
|
+
const _t = "tags";
|
|
529
|
+
const _tA = "totalAgents";
|
|
530
|
+
const _tAC = "totalAgentlessCollectors";
|
|
531
|
+
const _tC = "totalConnectors";
|
|
532
|
+
const _tI = "taskId";
|
|
533
|
+
const _tL = "termLength";
|
|
534
|
+
const _tMC = "totalMeCollectors";
|
|
535
|
+
const _tOC = "timeOfCreation";
|
|
536
|
+
const _tP = "transportProtocol";
|
|
537
|
+
const _ta = "task";
|
|
538
|
+
const _tas = "tasks";
|
|
539
|
+
const _te = "tenancy";
|
|
540
|
+
const _uA = "unhealthyAgents";
|
|
541
|
+
const _uAC = "unhealthyAgentlessCollectors";
|
|
542
|
+
const _uACn = "unknownAgentlessCollectors";
|
|
543
|
+
const _uAn = "unknownAgents";
|
|
544
|
+
const _uC = "unhealthyConnectors";
|
|
545
|
+
const _uCn = "unknownConnectors";
|
|
546
|
+
const _uMC = "unhealthyMeCollectors";
|
|
547
|
+
const _uMCn = "unknownMeCollectors";
|
|
548
|
+
const _v = "version";
|
|
549
|
+
const _va = "value";
|
|
550
|
+
const _val = "values";
|
|
551
|
+
const _w = "wave";
|
|
552
|
+
const _wC = "warningCode";
|
|
553
|
+
const _wT = "warningText";
|
|
554
|
+
const _xN = "xmlName";
|
|
555
|
+
const n0 = "com.amazonaws.applicationdiscoveryservice";
|
|
556
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
557
|
+
var ApplicationDiscoveryServiceServiceException$ = [-3, _s, "ApplicationDiscoveryServiceServiceException", 0, [], []];
|
|
558
|
+
_s_registry.registerError(ApplicationDiscoveryServiceServiceException$, ApplicationDiscoveryServiceServiceException);
|
|
559
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
560
|
+
var AuthorizationErrorException$ = [-3, n0, _AEE,
|
|
561
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
562
|
+
[_m],
|
|
563
|
+
[0]
|
|
564
|
+
];
|
|
565
|
+
n0_registry.registerError(AuthorizationErrorException$, AuthorizationErrorException);
|
|
566
|
+
var ConflictErrorException$ = [-3, n0, _CEE,
|
|
567
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
568
|
+
[_m],
|
|
569
|
+
[0]
|
|
570
|
+
];
|
|
571
|
+
n0_registry.registerError(ConflictErrorException$, ConflictErrorException);
|
|
572
|
+
var HomeRegionNotSetException$ = [-3, n0, _HRNSE,
|
|
573
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
574
|
+
[_m],
|
|
575
|
+
[0]
|
|
576
|
+
];
|
|
577
|
+
n0_registry.registerError(HomeRegionNotSetException$, HomeRegionNotSetException);
|
|
578
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
579
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
580
|
+
[_m],
|
|
581
|
+
[0]
|
|
582
|
+
];
|
|
583
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
584
|
+
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
585
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
586
|
+
[_m],
|
|
587
|
+
[0]
|
|
588
|
+
];
|
|
589
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
590
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
591
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
592
|
+
[_m],
|
|
593
|
+
[0]
|
|
594
|
+
];
|
|
595
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
596
|
+
var OperationNotPermittedException$ = [-3, n0, _ONPE,
|
|
597
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
598
|
+
[_m],
|
|
599
|
+
[0]
|
|
600
|
+
];
|
|
601
|
+
n0_registry.registerError(OperationNotPermittedException$, OperationNotPermittedException);
|
|
602
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
603
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
604
|
+
[_m],
|
|
605
|
+
[0]
|
|
606
|
+
];
|
|
607
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
608
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
609
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
610
|
+
[_m],
|
|
611
|
+
[0]
|
|
612
|
+
];
|
|
613
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
614
|
+
var ServerInternalErrorException$ = [-3, n0, _SIEE,
|
|
615
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
616
|
+
[_m],
|
|
617
|
+
[0]
|
|
618
|
+
];
|
|
619
|
+
n0_registry.registerError(ServerInternalErrorException$, ServerInternalErrorException);
|
|
620
|
+
const errorTypeRegistries = [
|
|
621
|
+
_s_registry,
|
|
622
|
+
n0_registry,
|
|
623
|
+
];
|
|
624
|
+
var AgentConfigurationStatus$ = [3, n0, _ACS,
|
|
625
|
+
0,
|
|
626
|
+
[_aI, _oS, _d],
|
|
627
|
+
[0, 2, 0]
|
|
628
|
+
];
|
|
629
|
+
var AgentInfo$ = [3, n0, _AI,
|
|
630
|
+
0,
|
|
631
|
+
[_aI, _hN, _aNIL, _cI, _v, _h, _lHPT, _cS, _aT, _rT],
|
|
632
|
+
[0, 0, [() => AgentNetworkInfoList, 0], 0, 0, 0, 0, 0, 0, 0]
|
|
633
|
+
];
|
|
634
|
+
var AgentNetworkInfo$ = [3, n0, _ANI,
|
|
635
|
+
8,
|
|
636
|
+
[_iA, _mA],
|
|
637
|
+
[0, 0]
|
|
638
|
+
];
|
|
639
|
+
var AssociateConfigurationItemsToApplicationRequest$ = [3, n0, _ACITAR,
|
|
640
|
+
0,
|
|
641
|
+
[_aCI, _cIo],
|
|
642
|
+
[0, 64 | 0], 2
|
|
643
|
+
];
|
|
644
|
+
var AssociateConfigurationItemsToApplicationResponse$ = [3, n0, _ACITARs,
|
|
645
|
+
0,
|
|
646
|
+
[],
|
|
647
|
+
[]
|
|
648
|
+
];
|
|
649
|
+
var BatchDeleteAgentError$ = [3, n0, _BDAE,
|
|
650
|
+
0,
|
|
651
|
+
[_aI, _eM, _eC],
|
|
652
|
+
[0, 0, 0], 3
|
|
653
|
+
];
|
|
654
|
+
var BatchDeleteAgentsRequest$ = [3, n0, _BDAR,
|
|
655
|
+
0,
|
|
656
|
+
[_dA],
|
|
657
|
+
[() => DeleteAgents], 1
|
|
658
|
+
];
|
|
659
|
+
var BatchDeleteAgentsResponse$ = [3, n0, _BDARa,
|
|
660
|
+
0,
|
|
661
|
+
[_er],
|
|
662
|
+
[() => BatchDeleteAgentErrors]
|
|
663
|
+
];
|
|
664
|
+
var BatchDeleteConfigurationTask$ = [3, n0, _BDCT,
|
|
665
|
+
0,
|
|
666
|
+
[_tI, _st, _sT, _eT, _cT, _rC, _dC, _fC, _dW],
|
|
667
|
+
[0, 0, 4, 4, 0, 64 | 0, 64 | 0, () => FailedConfigurationList, () => DeletionWarningsList]
|
|
668
|
+
];
|
|
669
|
+
var BatchDeleteImportDataError$ = [3, n0, _BDIDE,
|
|
670
|
+
0,
|
|
671
|
+
[_iTI, _eC, _eD],
|
|
672
|
+
[0, 0, 0]
|
|
673
|
+
];
|
|
674
|
+
var BatchDeleteImportDataRequest$ = [3, n0, _BDIDR,
|
|
675
|
+
0,
|
|
676
|
+
[_iTIm, _dH],
|
|
677
|
+
[64 | 0, 2], 1
|
|
678
|
+
];
|
|
679
|
+
var BatchDeleteImportDataResponse$ = [3, n0, _BDIDRa,
|
|
680
|
+
0,
|
|
681
|
+
[_er],
|
|
682
|
+
[() => BatchDeleteImportDataErrorList]
|
|
683
|
+
];
|
|
684
|
+
var ConfigurationTag$ = [3, n0, _CT,
|
|
685
|
+
0,
|
|
686
|
+
[_cT, _cIon, _k, _va, _tOC],
|
|
687
|
+
[0, 0, 0, 0, 4]
|
|
688
|
+
];
|
|
689
|
+
var ContinuousExportDescription$ = [3, n0, _CED,
|
|
690
|
+
0,
|
|
691
|
+
[_eI, _st, _sD, _sB, _sT, _sTt, _dS, _sSC],
|
|
692
|
+
[0, 0, 0, 0, 4, 4, 0, 128 | 0]
|
|
693
|
+
];
|
|
694
|
+
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
695
|
+
0,
|
|
696
|
+
[_n, _d, _w],
|
|
697
|
+
[0, 0, 0], 1
|
|
698
|
+
];
|
|
699
|
+
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
700
|
+
0,
|
|
701
|
+
[_cIon],
|
|
702
|
+
[0]
|
|
703
|
+
];
|
|
704
|
+
var CreateTagsRequest$ = [3, n0, _CTR,
|
|
705
|
+
0,
|
|
706
|
+
[_cIo, _t],
|
|
707
|
+
[64 | 0, [() => TagSet, 0]], 2
|
|
708
|
+
];
|
|
709
|
+
var CreateTagsResponse$ = [3, n0, _CTRr,
|
|
710
|
+
0,
|
|
711
|
+
[],
|
|
712
|
+
[]
|
|
713
|
+
];
|
|
714
|
+
var CustomerAgentInfo$ = [3, n0, _CAI,
|
|
715
|
+
0,
|
|
716
|
+
[_aA, _hA, _bLA, _sA, _uA, _tA, _uAn],
|
|
717
|
+
[1, 1, 1, 1, 1, 1, 1], 7
|
|
718
|
+
];
|
|
719
|
+
var CustomerAgentlessCollectorInfo$ = [3, n0, _CACI,
|
|
720
|
+
0,
|
|
721
|
+
[_aAC, _hAC, _dLAC, _sAC, _uAC, _tAC, _uACn],
|
|
722
|
+
[1, 1, 1, 1, 1, 1, 1], 7
|
|
723
|
+
];
|
|
724
|
+
var CustomerConnectorInfo$ = [3, n0, _CCI,
|
|
725
|
+
0,
|
|
726
|
+
[_aC, _hC, _bLC, _sC, _uC, _tC, _uCn],
|
|
727
|
+
[1, 1, 1, 1, 1, 1, 1], 7
|
|
728
|
+
];
|
|
729
|
+
var CustomerMeCollectorInfo$ = [3, n0, _CMCI,
|
|
730
|
+
0,
|
|
731
|
+
[_aMC, _hMC, _dLMC, _sMC, _uMC, _tMC, _uMCn],
|
|
732
|
+
[1, 1, 1, 1, 1, 1, 1], 7
|
|
733
|
+
];
|
|
734
|
+
var DeleteAgent$ = [3, n0, _DA,
|
|
735
|
+
0,
|
|
736
|
+
[_aI, _f],
|
|
737
|
+
[0, 2], 1
|
|
738
|
+
];
|
|
739
|
+
var DeleteApplicationsRequest$ = [3, n0, _DAR,
|
|
740
|
+
0,
|
|
741
|
+
[_cIo],
|
|
742
|
+
[64 | 0], 1
|
|
743
|
+
];
|
|
744
|
+
var DeleteApplicationsResponse$ = [3, n0, _DARe,
|
|
745
|
+
0,
|
|
746
|
+
[],
|
|
747
|
+
[]
|
|
748
|
+
];
|
|
749
|
+
var DeleteTagsRequest$ = [3, n0, _DTR,
|
|
750
|
+
0,
|
|
751
|
+
[_cIo, _t],
|
|
752
|
+
[64 | 0, [() => TagSet, 0]], 1
|
|
753
|
+
];
|
|
754
|
+
var DeleteTagsResponse$ = [3, n0, _DTRe,
|
|
755
|
+
0,
|
|
756
|
+
[],
|
|
757
|
+
[]
|
|
758
|
+
];
|
|
759
|
+
var DeletionWarning$ = [3, n0, _DW,
|
|
760
|
+
0,
|
|
761
|
+
[_cIon, _wC, _wT],
|
|
762
|
+
[0, 1, 0]
|
|
763
|
+
];
|
|
764
|
+
var DescribeAgentsRequest$ = [3, n0, _DARes,
|
|
765
|
+
0,
|
|
766
|
+
[_aIg, _fi, _mR, _nT],
|
|
767
|
+
[64 | 0, [() => Filters, 0], 1, 0]
|
|
768
|
+
];
|
|
769
|
+
var DescribeAgentsResponse$ = [3, n0, _DAResc,
|
|
770
|
+
0,
|
|
771
|
+
[_aIge, _nT],
|
|
772
|
+
[[() => AgentsInfo, 0], 0]
|
|
773
|
+
];
|
|
774
|
+
var DescribeBatchDeleteConfigurationTaskRequest$ = [3, n0, _DBDCTR,
|
|
775
|
+
0,
|
|
776
|
+
[_tI],
|
|
777
|
+
[0], 1
|
|
778
|
+
];
|
|
779
|
+
var DescribeBatchDeleteConfigurationTaskResponse$ = [3, n0, _DBDCTRe,
|
|
780
|
+
0,
|
|
781
|
+
[_ta],
|
|
782
|
+
[() => BatchDeleteConfigurationTask$]
|
|
783
|
+
];
|
|
784
|
+
var DescribeConfigurationsRequest$ = [3, n0, _DCR,
|
|
785
|
+
0,
|
|
786
|
+
[_cIo],
|
|
787
|
+
[64 | 0], 1
|
|
788
|
+
];
|
|
789
|
+
var DescribeConfigurationsResponse$ = [3, n0, _DCRe,
|
|
790
|
+
0,
|
|
791
|
+
[_co],
|
|
792
|
+
[[1, n0, _DCA, 0, 128 | 0]]
|
|
793
|
+
];
|
|
794
|
+
var DescribeContinuousExportsRequest$ = [3, n0, _DCER,
|
|
795
|
+
0,
|
|
796
|
+
[_eIx, _mR, _nT],
|
|
797
|
+
[64 | 0, 1, 0]
|
|
798
|
+
];
|
|
799
|
+
var DescribeContinuousExportsResponse$ = [3, n0, _DCERe,
|
|
800
|
+
0,
|
|
801
|
+
[_de, _nT],
|
|
802
|
+
[() => ContinuousExportDescriptions, 0]
|
|
803
|
+
];
|
|
804
|
+
var DescribeExportConfigurationsRequest$ = [3, n0, _DECR,
|
|
805
|
+
0,
|
|
806
|
+
[_eIx, _mR, _nT],
|
|
807
|
+
[64 | 0, 1, 0]
|
|
808
|
+
];
|
|
809
|
+
var DescribeExportConfigurationsResponse$ = [3, n0, _DECRe,
|
|
810
|
+
0,
|
|
811
|
+
[_eIxp, _nT],
|
|
812
|
+
[() => ExportsInfo, 0]
|
|
813
|
+
];
|
|
814
|
+
var DescribeExportTasksRequest$ = [3, n0, _DETR,
|
|
815
|
+
0,
|
|
816
|
+
[_eIx, _fi, _mR, _nT],
|
|
817
|
+
[64 | 0, [() => ExportFilters, 0], 1, 0]
|
|
818
|
+
];
|
|
819
|
+
var DescribeExportTasksResponse$ = [3, n0, _DETRe,
|
|
820
|
+
0,
|
|
821
|
+
[_eIxp, _nT],
|
|
822
|
+
[() => ExportsInfo, 0]
|
|
823
|
+
];
|
|
824
|
+
var DescribeImportTasksRequest$ = [3, n0, _DITR,
|
|
825
|
+
0,
|
|
826
|
+
[_fi, _mR, _nT],
|
|
827
|
+
[() => DescribeImportTasksFilterList, 1, 0]
|
|
828
|
+
];
|
|
829
|
+
var DescribeImportTasksResponse$ = [3, n0, _DITRe,
|
|
830
|
+
0,
|
|
831
|
+
[_nT, _tas],
|
|
832
|
+
[0, () => ImportTaskList]
|
|
833
|
+
];
|
|
834
|
+
var DescribeTagsRequest$ = [3, n0, _DTRes,
|
|
835
|
+
0,
|
|
836
|
+
[_fi, _mR, _nT],
|
|
837
|
+
[[() => TagFilters, 0], 1, 0]
|
|
838
|
+
];
|
|
839
|
+
var DescribeTagsResponse$ = [3, n0, _DTResc,
|
|
840
|
+
0,
|
|
841
|
+
[_t, _nT],
|
|
842
|
+
[[() => ConfigurationTagSet, 0], 0]
|
|
843
|
+
];
|
|
844
|
+
var DisassociateConfigurationItemsFromApplicationRequest$ = [3, n0, _DCIFAR,
|
|
845
|
+
0,
|
|
846
|
+
[_aCI, _cIo],
|
|
847
|
+
[0, 64 | 0], 2
|
|
848
|
+
];
|
|
849
|
+
var DisassociateConfigurationItemsFromApplicationResponse$ = [3, n0, _DCIFARi,
|
|
850
|
+
0,
|
|
851
|
+
[],
|
|
852
|
+
[]
|
|
853
|
+
];
|
|
854
|
+
var Ec2RecommendationsExportPreferences$ = [3, n0, _EREP,
|
|
855
|
+
0,
|
|
856
|
+
[_en, _cPMB, _rPMB, _te, _eIT, _pR, _rIO],
|
|
857
|
+
[2, () => UsageMetricBasis$, () => UsageMetricBasis$, 0, 64 | 0, 0, () => ReservedInstanceOptions$]
|
|
858
|
+
];
|
|
859
|
+
var ExportConfigurationsResponse$ = [3, n0, _ECR,
|
|
860
|
+
0,
|
|
861
|
+
[_eI],
|
|
862
|
+
[0]
|
|
863
|
+
];
|
|
864
|
+
var ExportFilter$ = [3, n0, _EF,
|
|
865
|
+
0,
|
|
866
|
+
[_n, _val, _con],
|
|
867
|
+
[0, [() => FilterValues, 0], 0], 3
|
|
868
|
+
];
|
|
869
|
+
var ExportInfo$ = [3, n0, _EI,
|
|
870
|
+
0,
|
|
871
|
+
[_eI, _eS, _sM, _eRT, _cDU, _iT, _rST, _rET],
|
|
872
|
+
[0, 0, 0, 4, 0, 2, 4, 4], 4
|
|
873
|
+
];
|
|
874
|
+
var FailedConfiguration$ = [3, n0, _FC,
|
|
875
|
+
0,
|
|
876
|
+
[_cIon, _eSC, _eM],
|
|
877
|
+
[0, 1, 0]
|
|
878
|
+
];
|
|
879
|
+
var Filter$ = [3, n0, _F,
|
|
880
|
+
0,
|
|
881
|
+
[_n, _val, _con],
|
|
882
|
+
[0, [() => FilterValues, 0], 0], 3
|
|
883
|
+
];
|
|
884
|
+
var GetDiscoverySummaryRequest$ = [3, n0, _GDSR,
|
|
885
|
+
0,
|
|
886
|
+
[],
|
|
887
|
+
[]
|
|
888
|
+
];
|
|
889
|
+
var GetDiscoverySummaryResponse$ = [3, n0, _GDSRe,
|
|
890
|
+
0,
|
|
891
|
+
[_ser, _a, _sMTA, _sMT, _aS, _cSo, _mCS, _aCS],
|
|
892
|
+
[1, 1, 1, 1, () => CustomerAgentInfo$, () => CustomerConnectorInfo$, () => CustomerMeCollectorInfo$, () => CustomerAgentlessCollectorInfo$]
|
|
893
|
+
];
|
|
894
|
+
var ImportTask$ = [3, n0, _IT,
|
|
895
|
+
0,
|
|
896
|
+
[_iTI, _cRT, _n, _iU, _st, _iRT, _iCT, _iDT, _fCi, _sIS, _sIF, _aIS, _aIF, _eAFEZ],
|
|
897
|
+
[0, 0, 0, 0, 0, 4, 4, 4, 0, 1, 1, 1, 1, 0]
|
|
898
|
+
];
|
|
899
|
+
var ImportTaskFilter$ = [3, n0, _ITF,
|
|
900
|
+
0,
|
|
901
|
+
[_n, _val],
|
|
902
|
+
[0, 64 | 0]
|
|
903
|
+
];
|
|
904
|
+
var ListConfigurationsRequest$ = [3, n0, _LCR,
|
|
905
|
+
0,
|
|
906
|
+
[_cT, _fi, _mR, _nT, _oB],
|
|
907
|
+
[0, [() => Filters, 0], 1, 0, () => OrderByList], 1
|
|
908
|
+
];
|
|
909
|
+
var ListConfigurationsResponse$ = [3, n0, _LCRi,
|
|
910
|
+
0,
|
|
911
|
+
[_co, _nT],
|
|
912
|
+
[[1, n0, _C, 0, 128 | 0], 0]
|
|
913
|
+
];
|
|
914
|
+
var ListServerNeighborsRequest$ = [3, n0, _LSNR,
|
|
915
|
+
0,
|
|
916
|
+
[_cIon, _pIN, _nCI, _mR, _nT],
|
|
917
|
+
[0, 2, 64 | 0, 1, 0], 1
|
|
918
|
+
];
|
|
919
|
+
var ListServerNeighborsResponse$ = [3, n0, _LSNRi,
|
|
920
|
+
0,
|
|
921
|
+
[_ne, _nT, _kDC],
|
|
922
|
+
[() => NeighborDetailsList, 0, 1], 1
|
|
923
|
+
];
|
|
924
|
+
var NeighborConnectionDetail$ = [3, n0, _NCD,
|
|
925
|
+
0,
|
|
926
|
+
[_sSI, _dSI, _cC, _dP, _tP],
|
|
927
|
+
[0, 0, 1, 1, 0], 3
|
|
928
|
+
];
|
|
929
|
+
var OrderByElement$ = [3, n0, _OBE,
|
|
930
|
+
0,
|
|
931
|
+
[_fN, _sO],
|
|
932
|
+
[0, 0], 1
|
|
933
|
+
];
|
|
934
|
+
var ReservedInstanceOptions$ = [3, n0, _RIO,
|
|
935
|
+
0,
|
|
936
|
+
[_pO, _oC, _tL],
|
|
937
|
+
[0, 0, 0], 3
|
|
938
|
+
];
|
|
939
|
+
var StartBatchDeleteConfigurationTaskRequest$ = [3, n0, _SBDCTR,
|
|
940
|
+
0,
|
|
941
|
+
[_cT, _cIo],
|
|
942
|
+
[0, 64 | 0], 2
|
|
943
|
+
];
|
|
944
|
+
var StartBatchDeleteConfigurationTaskResponse$ = [3, n0, _SBDCTRt,
|
|
945
|
+
0,
|
|
946
|
+
[_tI],
|
|
947
|
+
[0]
|
|
948
|
+
];
|
|
949
|
+
var StartContinuousExportRequest$ = [3, n0, _SCER,
|
|
950
|
+
0,
|
|
951
|
+
[],
|
|
952
|
+
[]
|
|
953
|
+
];
|
|
954
|
+
var StartContinuousExportResponse$ = [3, n0, _SCERt,
|
|
955
|
+
0,
|
|
956
|
+
[_eI, _sB, _sT, _dS, _sSC],
|
|
957
|
+
[0, 0, 4, 0, 128 | 0]
|
|
958
|
+
];
|
|
959
|
+
var StartDataCollectionByAgentIdsRequest$ = [3, n0, _SDCBAIR,
|
|
960
|
+
0,
|
|
961
|
+
[_aIg],
|
|
962
|
+
[64 | 0], 1
|
|
963
|
+
];
|
|
964
|
+
var StartDataCollectionByAgentIdsResponse$ = [3, n0, _SDCBAIRt,
|
|
965
|
+
0,
|
|
966
|
+
[_aCSg],
|
|
967
|
+
[() => AgentConfigurationStatusList]
|
|
968
|
+
];
|
|
969
|
+
var StartExportTaskRequest$ = [3, n0, _SETR,
|
|
970
|
+
0,
|
|
971
|
+
[_eDF, _fi, _sT, _eT, _p],
|
|
972
|
+
[64 | 0, [() => ExportFilters, 0], 4, 4, () => ExportPreferences$]
|
|
973
|
+
];
|
|
974
|
+
var StartExportTaskResponse$ = [3, n0, _SETRt,
|
|
975
|
+
0,
|
|
976
|
+
[_eI],
|
|
977
|
+
[0]
|
|
978
|
+
];
|
|
979
|
+
var StartImportTaskRequest$ = [3, n0, _SITR,
|
|
980
|
+
0,
|
|
981
|
+
[_n, _iU, _cRT],
|
|
982
|
+
[0, 0, [0, 4]], 2
|
|
983
|
+
];
|
|
984
|
+
var StartImportTaskResponse$ = [3, n0, _SITRt,
|
|
985
|
+
0,
|
|
986
|
+
[_ta],
|
|
987
|
+
[() => ImportTask$]
|
|
988
|
+
];
|
|
989
|
+
var StopContinuousExportRequest$ = [3, n0, _SCERto,
|
|
990
|
+
0,
|
|
991
|
+
[_eI],
|
|
992
|
+
[0], 1
|
|
993
|
+
];
|
|
994
|
+
var StopContinuousExportResponse$ = [3, n0, _SCERtop,
|
|
995
|
+
0,
|
|
996
|
+
[_sT, _sTt],
|
|
997
|
+
[4, 4]
|
|
998
|
+
];
|
|
999
|
+
var StopDataCollectionByAgentIdsRequest$ = [3, n0, _SDCBAIRto,
|
|
1000
|
+
0,
|
|
1001
|
+
[_aIg],
|
|
1002
|
+
[64 | 0], 1
|
|
1003
|
+
];
|
|
1004
|
+
var StopDataCollectionByAgentIdsResponse$ = [3, n0, _SDCBAIRtop,
|
|
1005
|
+
0,
|
|
1006
|
+
[_aCSg],
|
|
1007
|
+
[() => AgentConfigurationStatusList]
|
|
1008
|
+
];
|
|
1009
|
+
var Tag$ = [3, n0, _T,
|
|
1010
|
+
0,
|
|
1011
|
+
[_k, _va],
|
|
1012
|
+
[0, 0], 2
|
|
1013
|
+
];
|
|
1014
|
+
var TagFilter$ = [3, n0, _TF,
|
|
1015
|
+
0,
|
|
1016
|
+
[_n, _val],
|
|
1017
|
+
[0, [() => FilterValues, 0]], 2
|
|
1018
|
+
];
|
|
1019
|
+
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
1020
|
+
0,
|
|
1021
|
+
[_cIon, _n, _d, _w],
|
|
1022
|
+
[0, 0, 0, 0], 1
|
|
1023
|
+
];
|
|
1024
|
+
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
1025
|
+
0,
|
|
1026
|
+
[],
|
|
1027
|
+
[]
|
|
1028
|
+
];
|
|
1029
|
+
var UsageMetricBasis$ = [3, n0, _UMB,
|
|
1030
|
+
0,
|
|
1031
|
+
[_n, _pA],
|
|
1032
|
+
[0, 1]
|
|
1033
|
+
];
|
|
1034
|
+
var __Unit = "unit";
|
|
1035
|
+
var AgentConfigurationStatusList = [1, n0, _ACSL,
|
|
1036
|
+
0, () => AgentConfigurationStatus$
|
|
1037
|
+
];
|
|
1038
|
+
var AgentNetworkInfoList = [1, n0, _ANIL,
|
|
1039
|
+
0, [() => AgentNetworkInfo$,
|
|
1040
|
+
0]
|
|
1041
|
+
];
|
|
1042
|
+
var AgentsInfo = [1, n0, _AIg,
|
|
1043
|
+
0, [() => AgentInfo$,
|
|
1044
|
+
0]
|
|
1045
|
+
];
|
|
1046
|
+
var BatchDeleteAgentErrors = [1, n0, _BDAEa,
|
|
1047
|
+
0, () => BatchDeleteAgentError$
|
|
1048
|
+
];
|
|
1049
|
+
var BatchDeleteImportDataErrorList = [1, n0, _BDIDEL,
|
|
1050
|
+
0, () => BatchDeleteImportDataError$
|
|
1051
|
+
];
|
|
1052
|
+
var ConfigurationTagSet = [1, n0, _CTS,
|
|
1053
|
+
0, [() => ConfigurationTag$,
|
|
1054
|
+
{ [_xN]: _i }]
|
|
1055
|
+
];
|
|
1056
|
+
var ContinuousExportDescriptions = [1, n0, _CEDo,
|
|
1057
|
+
0, () => ContinuousExportDescription$
|
|
1058
|
+
];
|
|
1059
|
+
var DeleteAgents = [1, n0, _DAe,
|
|
1060
|
+
0, () => DeleteAgent$
|
|
1061
|
+
];
|
|
1062
|
+
var DeletionWarningsList = [1, n0, _DWL,
|
|
1063
|
+
0, () => DeletionWarning$
|
|
1064
|
+
];
|
|
1065
|
+
var DescribeImportTasksFilterList = [1, n0, _DITFL,
|
|
1066
|
+
0, () => ImportTaskFilter$
|
|
1067
|
+
];
|
|
1068
|
+
var ExportFilters = [1, n0, _EFx,
|
|
1069
|
+
0, [() => ExportFilter$,
|
|
1070
|
+
0]
|
|
1071
|
+
];
|
|
1072
|
+
var ExportsInfo = [1, n0, _EIx,
|
|
1073
|
+
0, () => ExportInfo$
|
|
1074
|
+
];
|
|
1075
|
+
var FailedConfigurationList = [1, n0, _FCL,
|
|
1076
|
+
0, () => FailedConfiguration$
|
|
1077
|
+
];
|
|
1078
|
+
var Filters = [1, n0, _Fi,
|
|
1079
|
+
0, [() => Filter$,
|
|
1080
|
+
0]
|
|
1081
|
+
];
|
|
1082
|
+
var FilterValues = [1, n0, _FV,
|
|
1083
|
+
0, [0,
|
|
1084
|
+
{ [_xN]: _i }]
|
|
1085
|
+
];
|
|
1086
|
+
var ImportTaskList = [1, n0, _ITL,
|
|
1087
|
+
0, () => ImportTask$
|
|
1088
|
+
];
|
|
1089
|
+
var NeighborDetailsList = [1, n0, _NDL,
|
|
1090
|
+
0, () => NeighborConnectionDetail$
|
|
1091
|
+
];
|
|
1092
|
+
var OrderByList = [1, n0, _OBL,
|
|
1093
|
+
0, () => OrderByElement$
|
|
1094
|
+
];
|
|
1095
|
+
var TagFilters = [1, n0, _TFa,
|
|
1096
|
+
0, [() => TagFilter$,
|
|
1097
|
+
0]
|
|
1098
|
+
];
|
|
1099
|
+
var TagSet = [1, n0, _TS,
|
|
1100
|
+
0, [() => Tag$,
|
|
1101
|
+
{ [_xN]: _i }]
|
|
1102
|
+
];
|
|
1103
|
+
var ExportPreferences$ = [4, n0, _EP,
|
|
1104
|
+
0,
|
|
1105
|
+
[_eRP],
|
|
1106
|
+
[() => Ec2RecommendationsExportPreferences$]
|
|
1107
|
+
];
|
|
1108
|
+
var AssociateConfigurationItemsToApplication$ = [9, n0, _ACITA,
|
|
1109
|
+
0, () => AssociateConfigurationItemsToApplicationRequest$, () => AssociateConfigurationItemsToApplicationResponse$
|
|
1110
|
+
];
|
|
1111
|
+
var BatchDeleteAgents$ = [9, n0, _BDA,
|
|
1112
|
+
0, () => BatchDeleteAgentsRequest$, () => BatchDeleteAgentsResponse$
|
|
1113
|
+
];
|
|
1114
|
+
var BatchDeleteImportData$ = [9, n0, _BDID,
|
|
1115
|
+
0, () => BatchDeleteImportDataRequest$, () => BatchDeleteImportDataResponse$
|
|
1116
|
+
];
|
|
1117
|
+
var CreateApplication$ = [9, n0, _CA,
|
|
1118
|
+
0, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
1119
|
+
];
|
|
1120
|
+
var CreateTags$ = [9, n0, _CTr,
|
|
1121
|
+
0, () => CreateTagsRequest$, () => CreateTagsResponse$
|
|
1122
|
+
];
|
|
1123
|
+
var DeleteApplications$ = [9, n0, _DAel,
|
|
1124
|
+
0, () => DeleteApplicationsRequest$, () => DeleteApplicationsResponse$
|
|
1125
|
+
];
|
|
1126
|
+
var DeleteTags$ = [9, n0, _DT,
|
|
1127
|
+
0, () => DeleteTagsRequest$, () => DeleteTagsResponse$
|
|
1128
|
+
];
|
|
1129
|
+
var DescribeAgents$ = [9, n0, _DAes,
|
|
1130
|
+
0, () => DescribeAgentsRequest$, () => DescribeAgentsResponse$
|
|
1131
|
+
];
|
|
1132
|
+
var DescribeBatchDeleteConfigurationTask$ = [9, n0, _DBDCT,
|
|
1133
|
+
0, () => DescribeBatchDeleteConfigurationTaskRequest$, () => DescribeBatchDeleteConfigurationTaskResponse$
|
|
1134
|
+
];
|
|
1135
|
+
var DescribeConfigurations$ = [9, n0, _DC,
|
|
1136
|
+
0, () => DescribeConfigurationsRequest$, () => DescribeConfigurationsResponse$
|
|
1137
|
+
];
|
|
1138
|
+
var DescribeContinuousExports$ = [9, n0, _DCE,
|
|
1139
|
+
0, () => DescribeContinuousExportsRequest$, () => DescribeContinuousExportsResponse$
|
|
1140
|
+
];
|
|
1141
|
+
var DescribeExportConfigurations$ = [9, n0, _DEC,
|
|
1142
|
+
0, () => DescribeExportConfigurationsRequest$, () => DescribeExportConfigurationsResponse$
|
|
1143
|
+
];
|
|
1144
|
+
var DescribeExportTasks$ = [9, n0, _DET,
|
|
1145
|
+
0, () => DescribeExportTasksRequest$, () => DescribeExportTasksResponse$
|
|
1146
|
+
];
|
|
1147
|
+
var DescribeImportTasks$ = [9, n0, _DIT,
|
|
1148
|
+
0, () => DescribeImportTasksRequest$, () => DescribeImportTasksResponse$
|
|
1149
|
+
];
|
|
1150
|
+
var DescribeTags$ = [9, n0, _DTe,
|
|
1151
|
+
0, () => DescribeTagsRequest$, () => DescribeTagsResponse$
|
|
1152
|
+
];
|
|
1153
|
+
var DisassociateConfigurationItemsFromApplication$ = [9, n0, _DCIFA,
|
|
1154
|
+
0, () => DisassociateConfigurationItemsFromApplicationRequest$, () => DisassociateConfigurationItemsFromApplicationResponse$
|
|
1155
|
+
];
|
|
1156
|
+
var ExportConfigurations$ = [9, n0, _EC,
|
|
1157
|
+
0, () => __Unit, () => ExportConfigurationsResponse$
|
|
1158
|
+
];
|
|
1159
|
+
var GetDiscoverySummary$ = [9, n0, _GDS,
|
|
1160
|
+
0, () => GetDiscoverySummaryRequest$, () => GetDiscoverySummaryResponse$
|
|
1161
|
+
];
|
|
1162
|
+
var ListConfigurations$ = [9, n0, _LC,
|
|
1163
|
+
0, () => ListConfigurationsRequest$, () => ListConfigurationsResponse$
|
|
1164
|
+
];
|
|
1165
|
+
var ListServerNeighbors$ = [9, n0, _LSN,
|
|
1166
|
+
0, () => ListServerNeighborsRequest$, () => ListServerNeighborsResponse$
|
|
1167
|
+
];
|
|
1168
|
+
var StartBatchDeleteConfigurationTask$ = [9, n0, _SBDCT,
|
|
1169
|
+
0, () => StartBatchDeleteConfigurationTaskRequest$, () => StartBatchDeleteConfigurationTaskResponse$
|
|
1170
|
+
];
|
|
1171
|
+
var StartContinuousExport$ = [9, n0, _SCE,
|
|
1172
|
+
0, () => StartContinuousExportRequest$, () => StartContinuousExportResponse$
|
|
1173
|
+
];
|
|
1174
|
+
var StartDataCollectionByAgentIds$ = [9, n0, _SDCBAI,
|
|
1175
|
+
0, () => StartDataCollectionByAgentIdsRequest$, () => StartDataCollectionByAgentIdsResponse$
|
|
1176
|
+
];
|
|
1177
|
+
var StartExportTask$ = [9, n0, _SET,
|
|
1178
|
+
0, () => StartExportTaskRequest$, () => StartExportTaskResponse$
|
|
1179
|
+
];
|
|
1180
|
+
var StartImportTask$ = [9, n0, _SIT,
|
|
1181
|
+
0, () => StartImportTaskRequest$, () => StartImportTaskResponse$
|
|
1182
|
+
];
|
|
1183
|
+
var StopContinuousExport$ = [9, n0, _SCEt,
|
|
1184
|
+
0, () => StopContinuousExportRequest$, () => StopContinuousExportResponse$
|
|
1185
|
+
];
|
|
1186
|
+
var StopDataCollectionByAgentIds$ = [9, n0, _SDCBAIt,
|
|
1187
|
+
0, () => StopDataCollectionByAgentIdsRequest$, () => StopDataCollectionByAgentIdsResponse$
|
|
1188
|
+
];
|
|
1189
|
+
var UpdateApplication$ = [9, n0, _UA,
|
|
1190
|
+
0, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
1191
|
+
];
|
|
1192
|
+
|
|
1193
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1194
|
+
return {
|
|
1195
|
+
apiVersion: "2015-11-01",
|
|
1196
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1197
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1198
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1199
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1200
|
+
extensions: config?.extensions ?? [],
|
|
1201
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultApplicationDiscoveryServiceHttpAuthSchemeProvider,
|
|
1202
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1203
|
+
{
|
|
1204
|
+
schemeId: "aws.auth#sigv4",
|
|
1205
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1206
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1207
|
+
},
|
|
1208
|
+
],
|
|
1209
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1210
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
1211
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1212
|
+
defaultNamespace: "com.amazonaws.applicationdiscoveryservice",
|
|
1213
|
+
errorTypeRegistries,
|
|
1214
|
+
xmlNamespace: "http://ec2.amazon.com/awsposiedon/V2015_11_01/",
|
|
1215
|
+
version: "2015-11-01",
|
|
1216
|
+
serviceTarget: "AWSPoseidonService_V2015_11_01",
|
|
1217
|
+
},
|
|
1218
|
+
serviceId: config?.serviceId ?? "Application Discovery Service",
|
|
1219
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1220
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1221
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1222
|
+
};
|
|
1223
|
+
};
|
|
1224
|
+
|
|
1225
|
+
const getRuntimeConfig = (config) => {
|
|
1226
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1227
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1228
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1229
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1230
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1231
|
+
const loaderConfig = {
|
|
1232
|
+
profile: config?.profile,
|
|
1233
|
+
logger: clientSharedValues.logger,
|
|
1234
|
+
};
|
|
1235
|
+
return {
|
|
1236
|
+
...clientSharedValues,
|
|
1237
|
+
...config,
|
|
1238
|
+
runtime: "node",
|
|
1239
|
+
defaultsMode,
|
|
1240
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1241
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1242
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1243
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1244
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1245
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1246
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1247
|
+
retryMode: config?.retryMode ??
|
|
1248
|
+
loadConfig({
|
|
1249
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1250
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1251
|
+
}, config),
|
|
1252
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1253
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1254
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1255
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1256
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1257
|
+
};
|
|
1258
|
+
};
|
|
1259
|
+
|
|
34
1260
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1261
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1262
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -606,54 +1832,188 @@ const Tenancy = {
|
|
|
606
1832
|
SHARED: "SHARED",
|
|
607
1833
|
};
|
|
608
1834
|
|
|
1835
|
+
exports.AgentConfigurationStatus$ = AgentConfigurationStatus$;
|
|
1836
|
+
exports.AgentInfo$ = AgentInfo$;
|
|
1837
|
+
exports.AgentNetworkInfo$ = AgentNetworkInfo$;
|
|
609
1838
|
exports.AgentStatus = AgentStatus;
|
|
610
1839
|
exports.ApplicationDiscoveryService = ApplicationDiscoveryService;
|
|
611
1840
|
exports.ApplicationDiscoveryServiceClient = ApplicationDiscoveryServiceClient;
|
|
1841
|
+
exports.ApplicationDiscoveryServiceServiceException = ApplicationDiscoveryServiceServiceException;
|
|
1842
|
+
exports.ApplicationDiscoveryServiceServiceException$ = ApplicationDiscoveryServiceServiceException$;
|
|
1843
|
+
exports.AssociateConfigurationItemsToApplication$ = AssociateConfigurationItemsToApplication$;
|
|
612
1844
|
exports.AssociateConfigurationItemsToApplicationCommand = AssociateConfigurationItemsToApplicationCommand;
|
|
1845
|
+
exports.AssociateConfigurationItemsToApplicationRequest$ = AssociateConfigurationItemsToApplicationRequest$;
|
|
1846
|
+
exports.AssociateConfigurationItemsToApplicationResponse$ = AssociateConfigurationItemsToApplicationResponse$;
|
|
1847
|
+
exports.AuthorizationErrorException = AuthorizationErrorException;
|
|
1848
|
+
exports.AuthorizationErrorException$ = AuthorizationErrorException$;
|
|
1849
|
+
exports.BatchDeleteAgentError$ = BatchDeleteAgentError$;
|
|
1850
|
+
exports.BatchDeleteAgents$ = BatchDeleteAgents$;
|
|
613
1851
|
exports.BatchDeleteAgentsCommand = BatchDeleteAgentsCommand;
|
|
1852
|
+
exports.BatchDeleteAgentsRequest$ = BatchDeleteAgentsRequest$;
|
|
1853
|
+
exports.BatchDeleteAgentsResponse$ = BatchDeleteAgentsResponse$;
|
|
1854
|
+
exports.BatchDeleteConfigurationTask$ = BatchDeleteConfigurationTask$;
|
|
614
1855
|
exports.BatchDeleteConfigurationTaskStatus = BatchDeleteConfigurationTaskStatus;
|
|
1856
|
+
exports.BatchDeleteImportData$ = BatchDeleteImportData$;
|
|
615
1857
|
exports.BatchDeleteImportDataCommand = BatchDeleteImportDataCommand;
|
|
1858
|
+
exports.BatchDeleteImportDataError$ = BatchDeleteImportDataError$;
|
|
616
1859
|
exports.BatchDeleteImportDataErrorCode = BatchDeleteImportDataErrorCode;
|
|
1860
|
+
exports.BatchDeleteImportDataRequest$ = BatchDeleteImportDataRequest$;
|
|
1861
|
+
exports.BatchDeleteImportDataResponse$ = BatchDeleteImportDataResponse$;
|
|
617
1862
|
exports.ConfigurationItemType = ConfigurationItemType;
|
|
1863
|
+
exports.ConfigurationTag$ = ConfigurationTag$;
|
|
1864
|
+
exports.ConflictErrorException = ConflictErrorException;
|
|
1865
|
+
exports.ConflictErrorException$ = ConflictErrorException$;
|
|
1866
|
+
exports.ContinuousExportDescription$ = ContinuousExportDescription$;
|
|
618
1867
|
exports.ContinuousExportStatus = ContinuousExportStatus;
|
|
1868
|
+
exports.CreateApplication$ = CreateApplication$;
|
|
619
1869
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1870
|
+
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
1871
|
+
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
1872
|
+
exports.CreateTags$ = CreateTags$;
|
|
620
1873
|
exports.CreateTagsCommand = CreateTagsCommand;
|
|
1874
|
+
exports.CreateTagsRequest$ = CreateTagsRequest$;
|
|
1875
|
+
exports.CreateTagsResponse$ = CreateTagsResponse$;
|
|
1876
|
+
exports.CustomerAgentInfo$ = CustomerAgentInfo$;
|
|
1877
|
+
exports.CustomerAgentlessCollectorInfo$ = CustomerAgentlessCollectorInfo$;
|
|
1878
|
+
exports.CustomerConnectorInfo$ = CustomerConnectorInfo$;
|
|
1879
|
+
exports.CustomerMeCollectorInfo$ = CustomerMeCollectorInfo$;
|
|
621
1880
|
exports.DataSource = DataSource;
|
|
1881
|
+
exports.DeleteAgent$ = DeleteAgent$;
|
|
622
1882
|
exports.DeleteAgentErrorCode = DeleteAgentErrorCode;
|
|
1883
|
+
exports.DeleteApplications$ = DeleteApplications$;
|
|
623
1884
|
exports.DeleteApplicationsCommand = DeleteApplicationsCommand;
|
|
1885
|
+
exports.DeleteApplicationsRequest$ = DeleteApplicationsRequest$;
|
|
1886
|
+
exports.DeleteApplicationsResponse$ = DeleteApplicationsResponse$;
|
|
1887
|
+
exports.DeleteTags$ = DeleteTags$;
|
|
624
1888
|
exports.DeleteTagsCommand = DeleteTagsCommand;
|
|
1889
|
+
exports.DeleteTagsRequest$ = DeleteTagsRequest$;
|
|
1890
|
+
exports.DeleteTagsResponse$ = DeleteTagsResponse$;
|
|
625
1891
|
exports.DeletionConfigurationItemType = DeletionConfigurationItemType;
|
|
1892
|
+
exports.DeletionWarning$ = DeletionWarning$;
|
|
1893
|
+
exports.DescribeAgents$ = DescribeAgents$;
|
|
626
1894
|
exports.DescribeAgentsCommand = DescribeAgentsCommand;
|
|
1895
|
+
exports.DescribeAgentsRequest$ = DescribeAgentsRequest$;
|
|
1896
|
+
exports.DescribeAgentsResponse$ = DescribeAgentsResponse$;
|
|
1897
|
+
exports.DescribeBatchDeleteConfigurationTask$ = DescribeBatchDeleteConfigurationTask$;
|
|
627
1898
|
exports.DescribeBatchDeleteConfigurationTaskCommand = DescribeBatchDeleteConfigurationTaskCommand;
|
|
1899
|
+
exports.DescribeBatchDeleteConfigurationTaskRequest$ = DescribeBatchDeleteConfigurationTaskRequest$;
|
|
1900
|
+
exports.DescribeBatchDeleteConfigurationTaskResponse$ = DescribeBatchDeleteConfigurationTaskResponse$;
|
|
1901
|
+
exports.DescribeConfigurations$ = DescribeConfigurations$;
|
|
628
1902
|
exports.DescribeConfigurationsCommand = DescribeConfigurationsCommand;
|
|
1903
|
+
exports.DescribeConfigurationsRequest$ = DescribeConfigurationsRequest$;
|
|
1904
|
+
exports.DescribeConfigurationsResponse$ = DescribeConfigurationsResponse$;
|
|
1905
|
+
exports.DescribeContinuousExports$ = DescribeContinuousExports$;
|
|
629
1906
|
exports.DescribeContinuousExportsCommand = DescribeContinuousExportsCommand;
|
|
1907
|
+
exports.DescribeContinuousExportsRequest$ = DescribeContinuousExportsRequest$;
|
|
1908
|
+
exports.DescribeContinuousExportsResponse$ = DescribeContinuousExportsResponse$;
|
|
1909
|
+
exports.DescribeExportConfigurations$ = DescribeExportConfigurations$;
|
|
630
1910
|
exports.DescribeExportConfigurationsCommand = DescribeExportConfigurationsCommand;
|
|
1911
|
+
exports.DescribeExportConfigurationsRequest$ = DescribeExportConfigurationsRequest$;
|
|
1912
|
+
exports.DescribeExportConfigurationsResponse$ = DescribeExportConfigurationsResponse$;
|
|
1913
|
+
exports.DescribeExportTasks$ = DescribeExportTasks$;
|
|
631
1914
|
exports.DescribeExportTasksCommand = DescribeExportTasksCommand;
|
|
1915
|
+
exports.DescribeExportTasksRequest$ = DescribeExportTasksRequest$;
|
|
1916
|
+
exports.DescribeExportTasksResponse$ = DescribeExportTasksResponse$;
|
|
1917
|
+
exports.DescribeImportTasks$ = DescribeImportTasks$;
|
|
632
1918
|
exports.DescribeImportTasksCommand = DescribeImportTasksCommand;
|
|
1919
|
+
exports.DescribeImportTasksRequest$ = DescribeImportTasksRequest$;
|
|
1920
|
+
exports.DescribeImportTasksResponse$ = DescribeImportTasksResponse$;
|
|
1921
|
+
exports.DescribeTags$ = DescribeTags$;
|
|
633
1922
|
exports.DescribeTagsCommand = DescribeTagsCommand;
|
|
1923
|
+
exports.DescribeTagsRequest$ = DescribeTagsRequest$;
|
|
1924
|
+
exports.DescribeTagsResponse$ = DescribeTagsResponse$;
|
|
1925
|
+
exports.DisassociateConfigurationItemsFromApplication$ = DisassociateConfigurationItemsFromApplication$;
|
|
634
1926
|
exports.DisassociateConfigurationItemsFromApplicationCommand = DisassociateConfigurationItemsFromApplicationCommand;
|
|
1927
|
+
exports.DisassociateConfigurationItemsFromApplicationRequest$ = DisassociateConfigurationItemsFromApplicationRequest$;
|
|
1928
|
+
exports.DisassociateConfigurationItemsFromApplicationResponse$ = DisassociateConfigurationItemsFromApplicationResponse$;
|
|
1929
|
+
exports.Ec2RecommendationsExportPreferences$ = Ec2RecommendationsExportPreferences$;
|
|
1930
|
+
exports.ExportConfigurations$ = ExportConfigurations$;
|
|
635
1931
|
exports.ExportConfigurationsCommand = ExportConfigurationsCommand;
|
|
1932
|
+
exports.ExportConfigurationsResponse$ = ExportConfigurationsResponse$;
|
|
636
1933
|
exports.ExportDataFormat = ExportDataFormat;
|
|
1934
|
+
exports.ExportFilter$ = ExportFilter$;
|
|
1935
|
+
exports.ExportInfo$ = ExportInfo$;
|
|
1936
|
+
exports.ExportPreferences$ = ExportPreferences$;
|
|
637
1937
|
exports.ExportStatus = ExportStatus;
|
|
1938
|
+
exports.FailedConfiguration$ = FailedConfiguration$;
|
|
638
1939
|
exports.FileClassification = FileClassification;
|
|
1940
|
+
exports.Filter$ = Filter$;
|
|
1941
|
+
exports.GetDiscoverySummary$ = GetDiscoverySummary$;
|
|
639
1942
|
exports.GetDiscoverySummaryCommand = GetDiscoverySummaryCommand;
|
|
1943
|
+
exports.GetDiscoverySummaryRequest$ = GetDiscoverySummaryRequest$;
|
|
1944
|
+
exports.GetDiscoverySummaryResponse$ = GetDiscoverySummaryResponse$;
|
|
1945
|
+
exports.HomeRegionNotSetException = HomeRegionNotSetException;
|
|
1946
|
+
exports.HomeRegionNotSetException$ = HomeRegionNotSetException$;
|
|
640
1947
|
exports.ImportStatus = ImportStatus;
|
|
1948
|
+
exports.ImportTask$ = ImportTask$;
|
|
1949
|
+
exports.ImportTaskFilter$ = ImportTaskFilter$;
|
|
641
1950
|
exports.ImportTaskFilterName = ImportTaskFilterName;
|
|
1951
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
1952
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
1953
|
+
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
1954
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
1955
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1956
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1957
|
+
exports.ListConfigurations$ = ListConfigurations$;
|
|
642
1958
|
exports.ListConfigurationsCommand = ListConfigurationsCommand;
|
|
1959
|
+
exports.ListConfigurationsRequest$ = ListConfigurationsRequest$;
|
|
1960
|
+
exports.ListConfigurationsResponse$ = ListConfigurationsResponse$;
|
|
1961
|
+
exports.ListServerNeighbors$ = ListServerNeighbors$;
|
|
643
1962
|
exports.ListServerNeighborsCommand = ListServerNeighborsCommand;
|
|
1963
|
+
exports.ListServerNeighborsRequest$ = ListServerNeighborsRequest$;
|
|
1964
|
+
exports.ListServerNeighborsResponse$ = ListServerNeighborsResponse$;
|
|
1965
|
+
exports.NeighborConnectionDetail$ = NeighborConnectionDetail$;
|
|
644
1966
|
exports.OfferingClass = OfferingClass;
|
|
1967
|
+
exports.OperationNotPermittedException = OperationNotPermittedException;
|
|
1968
|
+
exports.OperationNotPermittedException$ = OperationNotPermittedException$;
|
|
1969
|
+
exports.OrderByElement$ = OrderByElement$;
|
|
645
1970
|
exports.OrderString = OrderString;
|
|
646
1971
|
exports.PurchasingOption = PurchasingOption;
|
|
1972
|
+
exports.ReservedInstanceOptions$ = ReservedInstanceOptions$;
|
|
1973
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
1974
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
1975
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1976
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1977
|
+
exports.ServerInternalErrorException = ServerInternalErrorException;
|
|
1978
|
+
exports.ServerInternalErrorException$ = ServerInternalErrorException$;
|
|
1979
|
+
exports.StartBatchDeleteConfigurationTask$ = StartBatchDeleteConfigurationTask$;
|
|
647
1980
|
exports.StartBatchDeleteConfigurationTaskCommand = StartBatchDeleteConfigurationTaskCommand;
|
|
1981
|
+
exports.StartBatchDeleteConfigurationTaskRequest$ = StartBatchDeleteConfigurationTaskRequest$;
|
|
1982
|
+
exports.StartBatchDeleteConfigurationTaskResponse$ = StartBatchDeleteConfigurationTaskResponse$;
|
|
1983
|
+
exports.StartContinuousExport$ = StartContinuousExport$;
|
|
648
1984
|
exports.StartContinuousExportCommand = StartContinuousExportCommand;
|
|
1985
|
+
exports.StartContinuousExportRequest$ = StartContinuousExportRequest$;
|
|
1986
|
+
exports.StartContinuousExportResponse$ = StartContinuousExportResponse$;
|
|
1987
|
+
exports.StartDataCollectionByAgentIds$ = StartDataCollectionByAgentIds$;
|
|
649
1988
|
exports.StartDataCollectionByAgentIdsCommand = StartDataCollectionByAgentIdsCommand;
|
|
1989
|
+
exports.StartDataCollectionByAgentIdsRequest$ = StartDataCollectionByAgentIdsRequest$;
|
|
1990
|
+
exports.StartDataCollectionByAgentIdsResponse$ = StartDataCollectionByAgentIdsResponse$;
|
|
1991
|
+
exports.StartExportTask$ = StartExportTask$;
|
|
650
1992
|
exports.StartExportTaskCommand = StartExportTaskCommand;
|
|
1993
|
+
exports.StartExportTaskRequest$ = StartExportTaskRequest$;
|
|
1994
|
+
exports.StartExportTaskResponse$ = StartExportTaskResponse$;
|
|
1995
|
+
exports.StartImportTask$ = StartImportTask$;
|
|
651
1996
|
exports.StartImportTaskCommand = StartImportTaskCommand;
|
|
1997
|
+
exports.StartImportTaskRequest$ = StartImportTaskRequest$;
|
|
1998
|
+
exports.StartImportTaskResponse$ = StartImportTaskResponse$;
|
|
1999
|
+
exports.StopContinuousExport$ = StopContinuousExport$;
|
|
652
2000
|
exports.StopContinuousExportCommand = StopContinuousExportCommand;
|
|
2001
|
+
exports.StopContinuousExportRequest$ = StopContinuousExportRequest$;
|
|
2002
|
+
exports.StopContinuousExportResponse$ = StopContinuousExportResponse$;
|
|
2003
|
+
exports.StopDataCollectionByAgentIds$ = StopDataCollectionByAgentIds$;
|
|
653
2004
|
exports.StopDataCollectionByAgentIdsCommand = StopDataCollectionByAgentIdsCommand;
|
|
2005
|
+
exports.StopDataCollectionByAgentIdsRequest$ = StopDataCollectionByAgentIdsRequest$;
|
|
2006
|
+
exports.StopDataCollectionByAgentIdsResponse$ = StopDataCollectionByAgentIdsResponse$;
|
|
2007
|
+
exports.Tag$ = Tag$;
|
|
2008
|
+
exports.TagFilter$ = TagFilter$;
|
|
654
2009
|
exports.Tenancy = Tenancy;
|
|
655
2010
|
exports.TermLength = TermLength;
|
|
2011
|
+
exports.UpdateApplication$ = UpdateApplication$;
|
|
656
2012
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
2013
|
+
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
2014
|
+
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
2015
|
+
exports.UsageMetricBasis$ = UsageMetricBasis$;
|
|
2016
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
657
2017
|
exports.paginateDescribeAgents = paginateDescribeAgents;
|
|
658
2018
|
exports.paginateDescribeContinuousExports = paginateDescribeContinuousExports;
|
|
659
2019
|
exports.paginateDescribeExportConfigurations = paginateDescribeExportConfigurations;
|