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