@aws-sdk/client-ssm-sap 3.1074.0 → 3.1076.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1170 -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/SsmSapServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -71
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -893
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSsmSapHttpAuthSchemeParametersProvider = 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: "ssm-sap",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultSsmSapHttpAuthSchemeProvider = (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,1008 @@ 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://ssm-sap-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://ssm-sap-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://ssm-sap.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://ssm-sap.{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 SsmSapServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, SsmSapServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class ConflictException extends SsmSapServiceException {
|
|
140
|
+
name = "ConflictException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "ConflictException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InternalServerException extends SsmSapServiceException {
|
|
154
|
+
name = "InternalServerException";
|
|
155
|
+
$fault = "server";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InternalServerException",
|
|
160
|
+
$fault: "server",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class ResourceNotFoundException extends SsmSapServiceException {
|
|
168
|
+
name = "ResourceNotFoundException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "ResourceNotFoundException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class ValidationException extends SsmSapServiceException {
|
|
182
|
+
name = "ValidationException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ValidationException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class UnauthorizedException extends SsmSapServiceException {
|
|
196
|
+
name = "UnauthorizedException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "UnauthorizedException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
const _A = "Application";
|
|
211
|
+
const _AA = "ApplicationArn";
|
|
212
|
+
const _AAA = "AssociatedApplicationArns";
|
|
213
|
+
const _AAT = "ApplicableApplicationTypes";
|
|
214
|
+
const _AC = "ApplicationCredential";
|
|
215
|
+
const _ACL = "ApplicationCredentialList";
|
|
216
|
+
const _AH = "AssociatedHost";
|
|
217
|
+
const _AI = "ApplicationId";
|
|
218
|
+
const _ARA = "AppRegistryArn";
|
|
219
|
+
const _AS = "ApplicationSummary";
|
|
220
|
+
const _ASL = "ApplicationSummaryList";
|
|
221
|
+
const _AT = "ActionType";
|
|
222
|
+
const _ATl = "AllocationType";
|
|
223
|
+
const _ATp = "ApplicationType";
|
|
224
|
+
const _Ap = "Applications";
|
|
225
|
+
const _Ar = "Arn";
|
|
226
|
+
const _B = "Backint";
|
|
227
|
+
const _BC = "BackintConfig";
|
|
228
|
+
const _BM = "BackintMode";
|
|
229
|
+
const _C = "Components";
|
|
230
|
+
const _CC = "ChildComponents";
|
|
231
|
+
const _CCA = "ConnectedComponentArns";
|
|
232
|
+
const _CCD = "ConfigurationCheckDefinition";
|
|
233
|
+
const _CCDL = "ConfigurationCheckDefinitionList";
|
|
234
|
+
const _CCDo = "ConfigurationCheckDescription";
|
|
235
|
+
const _CCI = "ConfigurationCheckId";
|
|
236
|
+
const _CCIo = "ConfigurationCheckIds";
|
|
237
|
+
const _CCN = "ConfigurationCheckName";
|
|
238
|
+
const _CCO = "ConfigurationCheckOperation";
|
|
239
|
+
const _CCOL = "ConfigurationCheckOperationList";
|
|
240
|
+
const _CCOo = "ConfigurationCheckOperations";
|
|
241
|
+
const _CCo = "ConfigurationChecks";
|
|
242
|
+
const _CE = "ConflictException";
|
|
243
|
+
const _CI = "ComponentId";
|
|
244
|
+
const _CIL = "ComponentInfoList";
|
|
245
|
+
const _CIo = "ComponentInfo";
|
|
246
|
+
const _CIom = "ComponentsInfo";
|
|
247
|
+
const _CIon = "ConnectionIp";
|
|
248
|
+
const _CS = "ComponentSummary";
|
|
249
|
+
const _CSL = "ComponentSummaryList";
|
|
250
|
+
const _CSl = "ClusterStatus";
|
|
251
|
+
const _CT = "CredentialType";
|
|
252
|
+
const _CTAOU = "CredentialsToAddOrUpdate";
|
|
253
|
+
const _CTR = "CredentialsToRemove";
|
|
254
|
+
const _CTo = "ComponentType";
|
|
255
|
+
const _Co = "Component";
|
|
256
|
+
const _Cr = "Credentials";
|
|
257
|
+
const _D = "Databases";
|
|
258
|
+
const _DA = "DatabaseArn";
|
|
259
|
+
const _DAI = "DeregisterApplicationInput";
|
|
260
|
+
const _DAO = "DeregisterApplicationOutput";
|
|
261
|
+
const _DAe = "DeregisterApplication";
|
|
262
|
+
const _DC = "DatabaseConnection";
|
|
263
|
+
const _DCM = "DatabaseConnectionMethod";
|
|
264
|
+
const _DI = "DatabaseId";
|
|
265
|
+
const _DN = "DatabaseName";
|
|
266
|
+
const _DRP = "DeleteResourcePermission";
|
|
267
|
+
const _DRPI = "DeleteResourcePermissionInput";
|
|
268
|
+
const _DRPO = "DeleteResourcePermissionOutput";
|
|
269
|
+
const _DS = "DiscoveryStatus";
|
|
270
|
+
const _DSL = "DatabaseSummaryList";
|
|
271
|
+
const _DSa = "DatabaseSummary";
|
|
272
|
+
const _DT = "DatabaseType";
|
|
273
|
+
const _Da = "Database";
|
|
274
|
+
const _De = "Description";
|
|
275
|
+
const _ECII = "EC2InstanceId";
|
|
276
|
+
const _EII = "Ec2InstanceId";
|
|
277
|
+
const _ENBIP = "EnsureNoBackupInProcess";
|
|
278
|
+
const _ER = "EnqueueReplication";
|
|
279
|
+
const _ET = "EndTime";
|
|
280
|
+
const _F = "Filter";
|
|
281
|
+
const _FL = "FilterList";
|
|
282
|
+
const _Fa = "Failed";
|
|
283
|
+
const _Fi = "Filters";
|
|
284
|
+
const _GA = "GetApplication";
|
|
285
|
+
const _GAI = "GetApplicationInput";
|
|
286
|
+
const _GAO = "GetApplicationOutput";
|
|
287
|
+
const _GC = "GetComponent";
|
|
288
|
+
const _GCCO = "GetConfigurationCheckOperation";
|
|
289
|
+
const _GCCOI = "GetConfigurationCheckOperationInput";
|
|
290
|
+
const _GCCOO = "GetConfigurationCheckOperationOutput";
|
|
291
|
+
const _GCI = "GetComponentInput";
|
|
292
|
+
const _GCO = "GetComponentOutput";
|
|
293
|
+
const _GD = "GetDatabase";
|
|
294
|
+
const _GDI = "GetDatabaseInput";
|
|
295
|
+
const _GDO = "GetDatabaseOutput";
|
|
296
|
+
const _GO = "GetOperation";
|
|
297
|
+
const _GOI = "GetOperationInput";
|
|
298
|
+
const _GOO = "GetOperationOutput";
|
|
299
|
+
const _GRP = "GetResourcePermission";
|
|
300
|
+
const _GRPI = "GetResourcePermissionInput";
|
|
301
|
+
const _GRPO = "GetResourcePermissionOutput";
|
|
302
|
+
const _H = "Hostname";
|
|
303
|
+
const _HI = "HostIp";
|
|
304
|
+
const _HL = "HostList";
|
|
305
|
+
const _HN = "HostName";
|
|
306
|
+
const _HOM = "HsrOperationMode";
|
|
307
|
+
const _HR = "HostRole";
|
|
308
|
+
const _HRM = "HsrReplicationMode";
|
|
309
|
+
const _HT = "HsrTier";
|
|
310
|
+
const _HV = "HdbVersion";
|
|
311
|
+
const _Ho = "Hosts";
|
|
312
|
+
const _Hos = "Host";
|
|
313
|
+
const _I = "Id";
|
|
314
|
+
const _IA = "IpAddresses";
|
|
315
|
+
const _IAL = "IpAddressList";
|
|
316
|
+
const _IAM = "IpAddressMember";
|
|
317
|
+
const _IAp = "IpAddress";
|
|
318
|
+
const _IEIS = "IncludeEc2InstanceShutdown";
|
|
319
|
+
const _II = "InstanceId";
|
|
320
|
+
const _ISE = "InternalServerException";
|
|
321
|
+
const _In = "Instances";
|
|
322
|
+
const _Inf = "Info";
|
|
323
|
+
const _LA = "ListApplications";
|
|
324
|
+
const _LAI = "ListApplicationsInput";
|
|
325
|
+
const _LAO = "ListApplicationsOutput";
|
|
326
|
+
const _LC = "ListComponents";
|
|
327
|
+
const _LCCD = "ListConfigurationCheckDefinitions";
|
|
328
|
+
const _LCCDI = "ListConfigurationCheckDefinitionsInput";
|
|
329
|
+
const _LCCDO = "ListConfigurationCheckDefinitionsOutput";
|
|
330
|
+
const _LCCO = "ListConfigurationCheckOperations";
|
|
331
|
+
const _LCCOI = "ListConfigurationCheckOperationsInput";
|
|
332
|
+
const _LCCOO = "ListConfigurationCheckOperationsOutput";
|
|
333
|
+
const _LCI = "ListComponentsInput";
|
|
334
|
+
const _LCO = "ListComponentsOutput";
|
|
335
|
+
const _LD = "ListDatabases";
|
|
336
|
+
const _LDI = "ListDatabasesInput";
|
|
337
|
+
const _LDO = "ListDatabasesOutput";
|
|
338
|
+
const _LM = "ListMode";
|
|
339
|
+
const _LO = "ListOperations";
|
|
340
|
+
const _LOE = "ListOperationEvents";
|
|
341
|
+
const _LOEI = "ListOperationEventsInput";
|
|
342
|
+
const _LOEO = "ListOperationEventsOutput";
|
|
343
|
+
const _LOI = "ListOperationsInput";
|
|
344
|
+
const _LOO = "ListOperationsOutput";
|
|
345
|
+
const _LSCR = "ListSubCheckResults";
|
|
346
|
+
const _LSCRI = "ListSubCheckResultsInput";
|
|
347
|
+
const _LSCRO = "ListSubCheckResultsOutput";
|
|
348
|
+
const _LSCRR = "ListSubCheckRuleResults";
|
|
349
|
+
const _LSCRRI = "ListSubCheckRuleResultsInput";
|
|
350
|
+
const _LSCRRO = "ListSubCheckRuleResultsOutput";
|
|
351
|
+
const _LTFR = "ListTagsForResource";
|
|
352
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
353
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
354
|
+
const _LU = "LastUpdated";
|
|
355
|
+
const _LUT = "LastUpdatedTime";
|
|
356
|
+
const _M = "Message";
|
|
357
|
+
const _MR = "MaxResults";
|
|
358
|
+
const _Me = "Metadata";
|
|
359
|
+
const _N = "Name";
|
|
360
|
+
const _NT = "NextToken";
|
|
361
|
+
const _O = "Operator";
|
|
362
|
+
const _OE = "OperationEvents";
|
|
363
|
+
const _OEL = "OperationEventList";
|
|
364
|
+
const _OEp = "OperationEvent";
|
|
365
|
+
const _OI = "OperationId";
|
|
366
|
+
const _OIp = "OperationIds";
|
|
367
|
+
const _OL = "OperationList";
|
|
368
|
+
const _OP = "OperationProperties";
|
|
369
|
+
const _OV = "OsVersion";
|
|
370
|
+
const _Op = "Operation";
|
|
371
|
+
const _Ope = "Operations";
|
|
372
|
+
const _P = "Policy";
|
|
373
|
+
const _PC = "ParentComponent";
|
|
374
|
+
const _PH = "PrimaryHost";
|
|
375
|
+
const _PRP = "PutResourcePermission";
|
|
376
|
+
const _PRPI = "PutResourcePermissionInput";
|
|
377
|
+
const _PRPO = "PutResourcePermissionOutput";
|
|
378
|
+
const _Pa = "Passed";
|
|
379
|
+
const _Pr = "Primary";
|
|
380
|
+
const _Pro = "Properties";
|
|
381
|
+
const _R = "Resilience";
|
|
382
|
+
const _RA = "ResourceArn";
|
|
383
|
+
const _RAI = "RegisterApplicationInput";
|
|
384
|
+
const _RAO = "RegisterApplicationOutput";
|
|
385
|
+
const _RAe = "RegisterApplication";
|
|
386
|
+
const _RI = "ResourceId";
|
|
387
|
+
const _RNFE = "ResourceNotFoundException";
|
|
388
|
+
const _RR = "RuleResults";
|
|
389
|
+
const _RRL = "RuleResultList";
|
|
390
|
+
const _RRu = "RuleResult";
|
|
391
|
+
const _RSC = "RuleStatusCounts";
|
|
392
|
+
const _RT = "ResourceType";
|
|
393
|
+
const _Re = "Resource";
|
|
394
|
+
const _Ref = "References";
|
|
395
|
+
const _S = "Status";
|
|
396
|
+
const _SA = "StartApplication";
|
|
397
|
+
const _SAI = "StartApplicationInput";
|
|
398
|
+
const _SAIt = "StopApplicationInput";
|
|
399
|
+
const _SAO = "StartApplicationOutput";
|
|
400
|
+
const _SAOt = "StopApplicationOutput";
|
|
401
|
+
const _SAR = "StartApplicationRefresh";
|
|
402
|
+
const _SARI = "StartApplicationRefreshInput";
|
|
403
|
+
const _SARO = "StartApplicationRefreshOutput";
|
|
404
|
+
const _SAt = "StopApplication";
|
|
405
|
+
const _SCC = "StartConfigurationChecks";
|
|
406
|
+
const _SCCI = "StartConfigurationChecksInput";
|
|
407
|
+
const _SCCO = "StartConfigurationChecksOutput";
|
|
408
|
+
const _SCE = "StopConnectedEntity";
|
|
409
|
+
const _SCR = "SubCheckResults";
|
|
410
|
+
const _SCRI = "SubCheckResultId";
|
|
411
|
+
const _SCRL = "SubCheckResultList";
|
|
412
|
+
const _SCRu = "SubCheckResult";
|
|
413
|
+
const _SF = "SapFeature";
|
|
414
|
+
const _SH = "SapHostname";
|
|
415
|
+
const _SI = "SecretId";
|
|
416
|
+
const _SIN = "SapInstanceNumber";
|
|
417
|
+
const _SKV = "SapKernelVersion";
|
|
418
|
+
const _SM = "StatusMessage";
|
|
419
|
+
const _SN = "SystemNumber";
|
|
420
|
+
const _SQLP = "SQLPort";
|
|
421
|
+
const _SRA = "SourceResourceArn";
|
|
422
|
+
const _ST = "StartTime";
|
|
423
|
+
const _Si = "Sid";
|
|
424
|
+
const _T = "Type";
|
|
425
|
+
const _TR = "TagResource";
|
|
426
|
+
const _TRR = "TagResourceRequest";
|
|
427
|
+
const _TRRa = "TagResourceResponse";
|
|
428
|
+
const _Ta = "Tags";
|
|
429
|
+
const _Ti = "Timestamp";
|
|
430
|
+
const _U = "Unknown";
|
|
431
|
+
const _UAS = "UpdateApplicationSettings";
|
|
432
|
+
const _UASI = "UpdateApplicationSettingsInput";
|
|
433
|
+
const _UASO = "UpdateApplicationSettingsOutput";
|
|
434
|
+
const _UE = "UnauthorizedException";
|
|
435
|
+
const _UR = "UntagResource";
|
|
436
|
+
const _URR = "UntagResourceRequest";
|
|
437
|
+
const _URRn = "UntagResourceResponse";
|
|
438
|
+
const _V = "Value";
|
|
439
|
+
const _VE = "ValidationException";
|
|
440
|
+
const _W = "Warning";
|
|
441
|
+
const _c = "client";
|
|
442
|
+
const _e = "error";
|
|
443
|
+
const _h = "http";
|
|
444
|
+
const _hE = "httpError";
|
|
445
|
+
const _hQ = "httpQuery";
|
|
446
|
+
const _rA = "resourceArn";
|
|
447
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.ssmsap";
|
|
448
|
+
const _se = "server";
|
|
449
|
+
const _sp = "sparse";
|
|
450
|
+
const _t = "tags";
|
|
451
|
+
const _tK = "tagKeys";
|
|
452
|
+
const n0 = "com.amazonaws.ssmsap";
|
|
453
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
454
|
+
var SsmSapServiceException$ = [-3, _s, "SsmSapServiceException", 0, [], []];
|
|
455
|
+
_s_registry.registerError(SsmSapServiceException$, SsmSapServiceException);
|
|
456
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
457
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
458
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
459
|
+
[_M],
|
|
460
|
+
[0]
|
|
461
|
+
];
|
|
462
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
463
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
464
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
465
|
+
[_M],
|
|
466
|
+
[0]
|
|
467
|
+
];
|
|
468
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
469
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
470
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
471
|
+
[_M],
|
|
472
|
+
[0]
|
|
473
|
+
];
|
|
474
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
475
|
+
var UnauthorizedException$ = [-3, n0, _UE,
|
|
476
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
477
|
+
[_M],
|
|
478
|
+
[0]
|
|
479
|
+
];
|
|
480
|
+
n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
|
|
481
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
482
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
483
|
+
[_M],
|
|
484
|
+
[0]
|
|
485
|
+
];
|
|
486
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
487
|
+
const errorTypeRegistries = [
|
|
488
|
+
_s_registry,
|
|
489
|
+
n0_registry,
|
|
490
|
+
];
|
|
491
|
+
var SecretId = [0, n0, _SI, 8, 0];
|
|
492
|
+
var Application$ = [3, n0, _A,
|
|
493
|
+
0,
|
|
494
|
+
[_I, _T, _Ar, _ARA, _S, _DS, _C, _LU, _SM, _AAA],
|
|
495
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 4, 0, 64 | 0]
|
|
496
|
+
];
|
|
497
|
+
var ApplicationCredential$ = [3, n0, _AC,
|
|
498
|
+
0,
|
|
499
|
+
[_DN, _CT, _SI],
|
|
500
|
+
[0, 0, [() => SecretId, 0]], 3
|
|
501
|
+
];
|
|
502
|
+
var ApplicationSummary$ = [3, n0, _AS,
|
|
503
|
+
0,
|
|
504
|
+
[_I, _DS, _T, _Ar, _Ta],
|
|
505
|
+
[0, 0, 0, 0, 128 | 0]
|
|
506
|
+
];
|
|
507
|
+
var AssociatedHost$ = [3, n0, _AH,
|
|
508
|
+
0,
|
|
509
|
+
[_H, _EII, _IA, _OV],
|
|
510
|
+
[0, 0, () => IpAddressList, 0]
|
|
511
|
+
];
|
|
512
|
+
var BackintConfig$ = [3, n0, _BC,
|
|
513
|
+
0,
|
|
514
|
+
[_BM, _ENBIP],
|
|
515
|
+
[0, 2], 2
|
|
516
|
+
];
|
|
517
|
+
var Component$ = [3, n0, _Co,
|
|
518
|
+
0,
|
|
519
|
+
[_CI, _Si, _SN, _PC, _CC, _AI, _CTo, _S, _SH, _SF, _SKV, _HV, _R, _AH, _D, _Ho, _PH, _DC, _LU, _Ar],
|
|
520
|
+
[0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, 0, 0, 0, () => Resilience$, () => AssociatedHost$, 64 | 0, () => HostList, 0, () => DatabaseConnection$, 4, 0]
|
|
521
|
+
];
|
|
522
|
+
var ComponentInfo$ = [3, n0, _CIo,
|
|
523
|
+
0,
|
|
524
|
+
[_CTo, _Si, _EII],
|
|
525
|
+
[0, 0, 0], 3
|
|
526
|
+
];
|
|
527
|
+
var ComponentSummary$ = [3, n0, _CS,
|
|
528
|
+
0,
|
|
529
|
+
[_AI, _CI, _CTo, _Ta, _Ar],
|
|
530
|
+
[0, 0, 0, 128 | 0, 0]
|
|
531
|
+
];
|
|
532
|
+
var ConfigurationCheckDefinition$ = [3, n0, _CCD,
|
|
533
|
+
0,
|
|
534
|
+
[_I, _N, _De, _AAT],
|
|
535
|
+
[0, 0, 0, 64 | 0]
|
|
536
|
+
];
|
|
537
|
+
var ConfigurationCheckOperation$ = [3, n0, _CCO,
|
|
538
|
+
0,
|
|
539
|
+
[_I, _AI, _S, _SM, _CCI, _CCN, _CCDo, _ST, _ET, _RSC],
|
|
540
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4, () => RuleStatusCounts$]
|
|
541
|
+
];
|
|
542
|
+
var Database$ = [3, n0, _Da,
|
|
543
|
+
0,
|
|
544
|
+
[_AI, _CI, _Cr, _DI, _DN, _DT, _Ar, _S, _PH, _SQLP, _LU, _CCA],
|
|
545
|
+
[0, 0, [() => ApplicationCredentialList, 0], 0, 0, 0, 0, 0, 0, 1, 4, 64 | 0]
|
|
546
|
+
];
|
|
547
|
+
var DatabaseConnection$ = [3, n0, _DC,
|
|
548
|
+
0,
|
|
549
|
+
[_DCM, _DA, _CIon],
|
|
550
|
+
[0, 0, 0]
|
|
551
|
+
];
|
|
552
|
+
var DatabaseSummary$ = [3, n0, _DSa,
|
|
553
|
+
0,
|
|
554
|
+
[_AI, _CI, _DI, _DT, _Ar, _Ta],
|
|
555
|
+
[0, 0, 0, 0, 0, 128 | 0]
|
|
556
|
+
];
|
|
557
|
+
var DeleteResourcePermissionInput$ = [3, n0, _DRPI,
|
|
558
|
+
0,
|
|
559
|
+
[_RA, _AT, _SRA],
|
|
560
|
+
[0, 0, 0], 1
|
|
561
|
+
];
|
|
562
|
+
var DeleteResourcePermissionOutput$ = [3, n0, _DRPO,
|
|
563
|
+
0,
|
|
564
|
+
[_P],
|
|
565
|
+
[0]
|
|
566
|
+
];
|
|
567
|
+
var DeregisterApplicationInput$ = [3, n0, _DAI,
|
|
568
|
+
0,
|
|
569
|
+
[_AI],
|
|
570
|
+
[0], 1
|
|
571
|
+
];
|
|
572
|
+
var DeregisterApplicationOutput$ = [3, n0, _DAO,
|
|
573
|
+
0,
|
|
574
|
+
[],
|
|
575
|
+
[]
|
|
576
|
+
];
|
|
577
|
+
var Filter$ = [3, n0, _F,
|
|
578
|
+
0,
|
|
579
|
+
[_N, _V, _O],
|
|
580
|
+
[0, 0, 0], 3
|
|
581
|
+
];
|
|
582
|
+
var GetApplicationInput$ = [3, n0, _GAI,
|
|
583
|
+
0,
|
|
584
|
+
[_AI, _AA, _ARA],
|
|
585
|
+
[0, 0, 0]
|
|
586
|
+
];
|
|
587
|
+
var GetApplicationOutput$ = [3, n0, _GAO,
|
|
588
|
+
0,
|
|
589
|
+
[_A, _Ta],
|
|
590
|
+
[() => Application$, 128 | 0]
|
|
591
|
+
];
|
|
592
|
+
var GetComponentInput$ = [3, n0, _GCI,
|
|
593
|
+
0,
|
|
594
|
+
[_AI, _CI],
|
|
595
|
+
[0, 0], 2
|
|
596
|
+
];
|
|
597
|
+
var GetComponentOutput$ = [3, n0, _GCO,
|
|
598
|
+
0,
|
|
599
|
+
[_Co, _Ta],
|
|
600
|
+
[() => Component$, 128 | 0]
|
|
601
|
+
];
|
|
602
|
+
var GetConfigurationCheckOperationInput$ = [3, n0, _GCCOI,
|
|
603
|
+
0,
|
|
604
|
+
[_OI],
|
|
605
|
+
[0], 1
|
|
606
|
+
];
|
|
607
|
+
var GetConfigurationCheckOperationOutput$ = [3, n0, _GCCOO,
|
|
608
|
+
0,
|
|
609
|
+
[_CCO],
|
|
610
|
+
[() => ConfigurationCheckOperation$]
|
|
611
|
+
];
|
|
612
|
+
var GetDatabaseInput$ = [3, n0, _GDI,
|
|
613
|
+
0,
|
|
614
|
+
[_AI, _CI, _DI, _DA],
|
|
615
|
+
[0, 0, 0, 0]
|
|
616
|
+
];
|
|
617
|
+
var GetDatabaseOutput$ = [3, n0, _GDO,
|
|
618
|
+
0,
|
|
619
|
+
[_Da, _Ta],
|
|
620
|
+
[[() => Database$, 0], 128 | 0]
|
|
621
|
+
];
|
|
622
|
+
var GetOperationInput$ = [3, n0, _GOI,
|
|
623
|
+
0,
|
|
624
|
+
[_OI],
|
|
625
|
+
[0], 1
|
|
626
|
+
];
|
|
627
|
+
var GetOperationOutput$ = [3, n0, _GOO,
|
|
628
|
+
0,
|
|
629
|
+
[_Op],
|
|
630
|
+
[[() => Operation$, 0]]
|
|
631
|
+
];
|
|
632
|
+
var GetResourcePermissionInput$ = [3, n0, _GRPI,
|
|
633
|
+
0,
|
|
634
|
+
[_RA, _AT],
|
|
635
|
+
[0, 0], 1
|
|
636
|
+
];
|
|
637
|
+
var GetResourcePermissionOutput$ = [3, n0, _GRPO,
|
|
638
|
+
0,
|
|
639
|
+
[_P],
|
|
640
|
+
[0]
|
|
641
|
+
];
|
|
642
|
+
var Host$ = [3, n0, _Hos,
|
|
643
|
+
0,
|
|
644
|
+
[_HN, _HI, _ECII, _II, _HR, _OV],
|
|
645
|
+
[0, 0, 0, 0, 0, 0]
|
|
646
|
+
];
|
|
647
|
+
var IpAddressMember$ = [3, n0, _IAM,
|
|
648
|
+
0,
|
|
649
|
+
[_IAp, _Pr, _ATl],
|
|
650
|
+
[0, 2, 0]
|
|
651
|
+
];
|
|
652
|
+
var ListApplicationsInput$ = [3, n0, _LAI,
|
|
653
|
+
0,
|
|
654
|
+
[_NT, _MR, _Fi],
|
|
655
|
+
[0, 1, () => FilterList]
|
|
656
|
+
];
|
|
657
|
+
var ListApplicationsOutput$ = [3, n0, _LAO,
|
|
658
|
+
0,
|
|
659
|
+
[_Ap, _NT],
|
|
660
|
+
[() => ApplicationSummaryList, 0]
|
|
661
|
+
];
|
|
662
|
+
var ListComponentsInput$ = [3, n0, _LCI,
|
|
663
|
+
0,
|
|
664
|
+
[_AI, _NT, _MR],
|
|
665
|
+
[0, 0, 1]
|
|
666
|
+
];
|
|
667
|
+
var ListComponentsOutput$ = [3, n0, _LCO,
|
|
668
|
+
0,
|
|
669
|
+
[_C, _NT],
|
|
670
|
+
[() => ComponentSummaryList, 0]
|
|
671
|
+
];
|
|
672
|
+
var ListConfigurationCheckDefinitionsInput$ = [3, n0, _LCCDI,
|
|
673
|
+
0,
|
|
674
|
+
[_MR, _NT],
|
|
675
|
+
[1, 0]
|
|
676
|
+
];
|
|
677
|
+
var ListConfigurationCheckDefinitionsOutput$ = [3, n0, _LCCDO,
|
|
678
|
+
0,
|
|
679
|
+
[_CCo, _NT],
|
|
680
|
+
[() => ConfigurationCheckDefinitionList, 0]
|
|
681
|
+
];
|
|
682
|
+
var ListConfigurationCheckOperationsInput$ = [3, n0, _LCCOI,
|
|
683
|
+
0,
|
|
684
|
+
[_AI, _LM, _MR, _NT, _Fi],
|
|
685
|
+
[0, 0, 1, 0, () => FilterList], 1
|
|
686
|
+
];
|
|
687
|
+
var ListConfigurationCheckOperationsOutput$ = [3, n0, _LCCOO,
|
|
688
|
+
0,
|
|
689
|
+
[_CCOo, _NT],
|
|
690
|
+
[() => ConfigurationCheckOperationList, 0]
|
|
691
|
+
];
|
|
692
|
+
var ListDatabasesInput$ = [3, n0, _LDI,
|
|
693
|
+
0,
|
|
694
|
+
[_AI, _CI, _NT, _MR],
|
|
695
|
+
[0, 0, 0, 1]
|
|
696
|
+
];
|
|
697
|
+
var ListDatabasesOutput$ = [3, n0, _LDO,
|
|
698
|
+
0,
|
|
699
|
+
[_D, _NT],
|
|
700
|
+
[() => DatabaseSummaryList, 0]
|
|
701
|
+
];
|
|
702
|
+
var ListOperationEventsInput$ = [3, n0, _LOEI,
|
|
703
|
+
0,
|
|
704
|
+
[_OI, _MR, _NT, _Fi],
|
|
705
|
+
[0, 1, 0, () => FilterList], 1
|
|
706
|
+
];
|
|
707
|
+
var ListOperationEventsOutput$ = [3, n0, _LOEO,
|
|
708
|
+
0,
|
|
709
|
+
[_OE, _NT],
|
|
710
|
+
[() => OperationEventList, 0]
|
|
711
|
+
];
|
|
712
|
+
var ListOperationsInput$ = [3, n0, _LOI,
|
|
713
|
+
0,
|
|
714
|
+
[_AI, _MR, _NT, _Fi],
|
|
715
|
+
[0, 1, 0, () => FilterList], 1
|
|
716
|
+
];
|
|
717
|
+
var ListOperationsOutput$ = [3, n0, _LOO,
|
|
718
|
+
0,
|
|
719
|
+
[_Ope, _NT],
|
|
720
|
+
[[() => OperationList, 0], 0]
|
|
721
|
+
];
|
|
722
|
+
var ListSubCheckResultsInput$ = [3, n0, _LSCRI,
|
|
723
|
+
0,
|
|
724
|
+
[_OI, _MR, _NT],
|
|
725
|
+
[0, 1, 0], 1
|
|
726
|
+
];
|
|
727
|
+
var ListSubCheckResultsOutput$ = [3, n0, _LSCRO,
|
|
728
|
+
0,
|
|
729
|
+
[_SCR, _NT],
|
|
730
|
+
[() => SubCheckResultList, 0]
|
|
731
|
+
];
|
|
732
|
+
var ListSubCheckRuleResultsInput$ = [3, n0, _LSCRRI,
|
|
733
|
+
0,
|
|
734
|
+
[_SCRI, _MR, _NT],
|
|
735
|
+
[0, 1, 0], 1
|
|
736
|
+
];
|
|
737
|
+
var ListSubCheckRuleResultsOutput$ = [3, n0, _LSCRRO,
|
|
738
|
+
0,
|
|
739
|
+
[_RR, _NT],
|
|
740
|
+
[() => RuleResultList, 0]
|
|
741
|
+
];
|
|
742
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
743
|
+
0,
|
|
744
|
+
[_rA],
|
|
745
|
+
[[0, 1]], 1
|
|
746
|
+
];
|
|
747
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
748
|
+
0,
|
|
749
|
+
[_t],
|
|
750
|
+
[128 | 0]
|
|
751
|
+
];
|
|
752
|
+
var Operation$ = [3, n0, _Op,
|
|
753
|
+
0,
|
|
754
|
+
[_I, _T, _S, _SM, _Pro, _RT, _RI, _RA, _ST, _ET, _LUT],
|
|
755
|
+
[0, 0, 0, 0, [() => OperationProperties, 0], 0, 0, 0, 4, 4, 4]
|
|
756
|
+
];
|
|
757
|
+
var OperationEvent$ = [3, n0, _OEp,
|
|
758
|
+
0,
|
|
759
|
+
[_De, _Re, _S, _SM, _Ti],
|
|
760
|
+
[0, () => Resource$, 0, 0, 4]
|
|
761
|
+
];
|
|
762
|
+
var PutResourcePermissionInput$ = [3, n0, _PRPI,
|
|
763
|
+
0,
|
|
764
|
+
[_AT, _SRA, _RA],
|
|
765
|
+
[0, 0, 0], 3
|
|
766
|
+
];
|
|
767
|
+
var PutResourcePermissionOutput$ = [3, n0, _PRPO,
|
|
768
|
+
0,
|
|
769
|
+
[_P],
|
|
770
|
+
[0]
|
|
771
|
+
];
|
|
772
|
+
var RegisterApplicationInput$ = [3, n0, _RAI,
|
|
773
|
+
0,
|
|
774
|
+
[_AI, _ATp, _In, _SIN, _Si, _Ta, _Cr, _DA, _CIom],
|
|
775
|
+
[0, 0, 64 | 0, 0, 0, 128 | 0, [() => ApplicationCredentialList, 0], 0, () => ComponentInfoList], 3
|
|
776
|
+
];
|
|
777
|
+
var RegisterApplicationOutput$ = [3, n0, _RAO,
|
|
778
|
+
0,
|
|
779
|
+
[_A, _OI],
|
|
780
|
+
[() => Application$, 0]
|
|
781
|
+
];
|
|
782
|
+
var Resilience$ = [3, n0, _R,
|
|
783
|
+
0,
|
|
784
|
+
[_HT, _HRM, _HOM, _CSl, _ER],
|
|
785
|
+
[0, 0, 0, 0, 2]
|
|
786
|
+
];
|
|
787
|
+
var Resource$ = [3, n0, _Re,
|
|
788
|
+
0,
|
|
789
|
+
[_RA, _RT],
|
|
790
|
+
[0, 0]
|
|
791
|
+
];
|
|
792
|
+
var RuleResult$ = [3, n0, _RRu,
|
|
793
|
+
0,
|
|
794
|
+
[_I, _De, _S, _M, _Me],
|
|
795
|
+
[0, 0, 0, 0, 128 | 0]
|
|
796
|
+
];
|
|
797
|
+
var RuleStatusCounts$ = [3, n0, _RSC,
|
|
798
|
+
0,
|
|
799
|
+
[_Fa, _W, _Inf, _Pa, _U],
|
|
800
|
+
[1, 1, 1, 1, 1]
|
|
801
|
+
];
|
|
802
|
+
var StartApplicationInput$ = [3, n0, _SAI,
|
|
803
|
+
0,
|
|
804
|
+
[_AI],
|
|
805
|
+
[0], 1
|
|
806
|
+
];
|
|
807
|
+
var StartApplicationOutput$ = [3, n0, _SAO,
|
|
808
|
+
0,
|
|
809
|
+
[_OI],
|
|
810
|
+
[0]
|
|
811
|
+
];
|
|
812
|
+
var StartApplicationRefreshInput$ = [3, n0, _SARI,
|
|
813
|
+
0,
|
|
814
|
+
[_AI],
|
|
815
|
+
[0], 1
|
|
816
|
+
];
|
|
817
|
+
var StartApplicationRefreshOutput$ = [3, n0, _SARO,
|
|
818
|
+
0,
|
|
819
|
+
[_OI],
|
|
820
|
+
[0]
|
|
821
|
+
];
|
|
822
|
+
var StartConfigurationChecksInput$ = [3, n0, _SCCI,
|
|
823
|
+
0,
|
|
824
|
+
[_AI, _CCIo],
|
|
825
|
+
[0, 64 | 0], 1
|
|
826
|
+
];
|
|
827
|
+
var StartConfigurationChecksOutput$ = [3, n0, _SCCO,
|
|
828
|
+
0,
|
|
829
|
+
[_CCOo],
|
|
830
|
+
[() => ConfigurationCheckOperationList]
|
|
831
|
+
];
|
|
832
|
+
var StopApplicationInput$ = [3, n0, _SAIt,
|
|
833
|
+
0,
|
|
834
|
+
[_AI, _SCE, _IEIS],
|
|
835
|
+
[0, 0, 2], 1
|
|
836
|
+
];
|
|
837
|
+
var StopApplicationOutput$ = [3, n0, _SAOt,
|
|
838
|
+
0,
|
|
839
|
+
[_OI],
|
|
840
|
+
[0]
|
|
841
|
+
];
|
|
842
|
+
var SubCheckResult$ = [3, n0, _SCRu,
|
|
843
|
+
0,
|
|
844
|
+
[_I, _N, _De, _Ref],
|
|
845
|
+
[0, 0, 0, 64 | 0]
|
|
846
|
+
];
|
|
847
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
848
|
+
0,
|
|
849
|
+
[_rA, _t],
|
|
850
|
+
[[0, 1], 128 | 0], 2
|
|
851
|
+
];
|
|
852
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
853
|
+
0,
|
|
854
|
+
[],
|
|
855
|
+
[]
|
|
856
|
+
];
|
|
857
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
858
|
+
0,
|
|
859
|
+
[_rA, _tK],
|
|
860
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
861
|
+
];
|
|
862
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
863
|
+
0,
|
|
864
|
+
[],
|
|
865
|
+
[]
|
|
866
|
+
];
|
|
867
|
+
var UpdateApplicationSettingsInput$ = [3, n0, _UASI,
|
|
868
|
+
0,
|
|
869
|
+
[_AI, _CTAOU, _CTR, _B, _DA],
|
|
870
|
+
[0, [() => ApplicationCredentialList, 0], [() => ApplicationCredentialList, 0], () => BackintConfig$, 0], 1
|
|
871
|
+
];
|
|
872
|
+
var UpdateApplicationSettingsOutput$ = [3, n0, _UASO,
|
|
873
|
+
0,
|
|
874
|
+
[_M, _OIp],
|
|
875
|
+
[0, 64 | 0]
|
|
876
|
+
];
|
|
877
|
+
var ApplicationCredentialList = [1, n0, _ACL,
|
|
878
|
+
0, [() => ApplicationCredential$,
|
|
879
|
+
0]
|
|
880
|
+
];
|
|
881
|
+
var ApplicationSummaryList = [1, n0, _ASL,
|
|
882
|
+
0, () => ApplicationSummary$
|
|
883
|
+
];
|
|
884
|
+
var ComponentInfoList = [1, n0, _CIL,
|
|
885
|
+
0, () => ComponentInfo$
|
|
886
|
+
];
|
|
887
|
+
var ComponentSummaryList = [1, n0, _CSL,
|
|
888
|
+
0, () => ComponentSummary$
|
|
889
|
+
];
|
|
890
|
+
var ConfigurationCheckDefinitionList = [1, n0, _CCDL,
|
|
891
|
+
0, () => ConfigurationCheckDefinition$
|
|
892
|
+
];
|
|
893
|
+
var ConfigurationCheckOperationList = [1, n0, _CCOL,
|
|
894
|
+
0, () => ConfigurationCheckOperation$
|
|
895
|
+
];
|
|
896
|
+
var DatabaseSummaryList = [1, n0, _DSL,
|
|
897
|
+
0, () => DatabaseSummary$
|
|
898
|
+
];
|
|
899
|
+
var FilterList = [1, n0, _FL,
|
|
900
|
+
0, () => Filter$
|
|
901
|
+
];
|
|
902
|
+
var HostList = [1, n0, _HL,
|
|
903
|
+
0, () => Host$
|
|
904
|
+
];
|
|
905
|
+
var IpAddressList = [1, n0, _IAL,
|
|
906
|
+
0, () => IpAddressMember$
|
|
907
|
+
];
|
|
908
|
+
var OperationEventList = [1, n0, _OEL,
|
|
909
|
+
0, () => OperationEvent$
|
|
910
|
+
];
|
|
911
|
+
var OperationList = [1, n0, _OL,
|
|
912
|
+
0, [() => Operation$,
|
|
913
|
+
0]
|
|
914
|
+
];
|
|
915
|
+
var RuleResultList = [1, n0, _RRL,
|
|
916
|
+
0, () => RuleResult$
|
|
917
|
+
];
|
|
918
|
+
var SubCheckResultList = [1, n0, _SCRL,
|
|
919
|
+
0, () => SubCheckResult$
|
|
920
|
+
];
|
|
921
|
+
var OperationProperties = [2, n0, _OP,
|
|
922
|
+
{ [_sp]: 1 }, 0, 0
|
|
923
|
+
];
|
|
924
|
+
var DeleteResourcePermission$ = [9, n0, _DRP,
|
|
925
|
+
{ [_h]: ["POST", "/delete-resource-permission", 200] }, () => DeleteResourcePermissionInput$, () => DeleteResourcePermissionOutput$
|
|
926
|
+
];
|
|
927
|
+
var DeregisterApplication$ = [9, n0, _DAe,
|
|
928
|
+
{ [_h]: ["POST", "/deregister-application", 200] }, () => DeregisterApplicationInput$, () => DeregisterApplicationOutput$
|
|
929
|
+
];
|
|
930
|
+
var GetApplication$ = [9, n0, _GA,
|
|
931
|
+
{ [_h]: ["POST", "/get-application", 200] }, () => GetApplicationInput$, () => GetApplicationOutput$
|
|
932
|
+
];
|
|
933
|
+
var GetComponent$ = [9, n0, _GC,
|
|
934
|
+
{ [_h]: ["POST", "/get-component", 200] }, () => GetComponentInput$, () => GetComponentOutput$
|
|
935
|
+
];
|
|
936
|
+
var GetConfigurationCheckOperation$ = [9, n0, _GCCO,
|
|
937
|
+
{ [_h]: ["POST", "/get-configuration-check-operation", 200] }, () => GetConfigurationCheckOperationInput$, () => GetConfigurationCheckOperationOutput$
|
|
938
|
+
];
|
|
939
|
+
var GetDatabase$ = [9, n0, _GD,
|
|
940
|
+
{ [_h]: ["POST", "/get-database", 200] }, () => GetDatabaseInput$, () => GetDatabaseOutput$
|
|
941
|
+
];
|
|
942
|
+
var GetOperation$ = [9, n0, _GO,
|
|
943
|
+
{ [_h]: ["POST", "/get-operation", 200] }, () => GetOperationInput$, () => GetOperationOutput$
|
|
944
|
+
];
|
|
945
|
+
var GetResourcePermission$ = [9, n0, _GRP,
|
|
946
|
+
{ [_h]: ["POST", "/get-resource-permission", 200] }, () => GetResourcePermissionInput$, () => GetResourcePermissionOutput$
|
|
947
|
+
];
|
|
948
|
+
var ListApplications$ = [9, n0, _LA,
|
|
949
|
+
{ [_h]: ["POST", "/list-applications", 200] }, () => ListApplicationsInput$, () => ListApplicationsOutput$
|
|
950
|
+
];
|
|
951
|
+
var ListComponents$ = [9, n0, _LC,
|
|
952
|
+
{ [_h]: ["POST", "/list-components", 200] }, () => ListComponentsInput$, () => ListComponentsOutput$
|
|
953
|
+
];
|
|
954
|
+
var ListConfigurationCheckDefinitions$ = [9, n0, _LCCD,
|
|
955
|
+
{ [_h]: ["POST", "/list-configuration-check-definitions", 200] }, () => ListConfigurationCheckDefinitionsInput$, () => ListConfigurationCheckDefinitionsOutput$
|
|
956
|
+
];
|
|
957
|
+
var ListConfigurationCheckOperations$ = [9, n0, _LCCO,
|
|
958
|
+
{ [_h]: ["POST", "/list-configuration-check-operations", 200] }, () => ListConfigurationCheckOperationsInput$, () => ListConfigurationCheckOperationsOutput$
|
|
959
|
+
];
|
|
960
|
+
var ListDatabases$ = [9, n0, _LD,
|
|
961
|
+
{ [_h]: ["POST", "/list-databases", 200] }, () => ListDatabasesInput$, () => ListDatabasesOutput$
|
|
962
|
+
];
|
|
963
|
+
var ListOperationEvents$ = [9, n0, _LOE,
|
|
964
|
+
{ [_h]: ["POST", "/list-operation-events", 200] }, () => ListOperationEventsInput$, () => ListOperationEventsOutput$
|
|
965
|
+
];
|
|
966
|
+
var ListOperations$ = [9, n0, _LO,
|
|
967
|
+
{ [_h]: ["POST", "/list-operations", 200] }, () => ListOperationsInput$, () => ListOperationsOutput$
|
|
968
|
+
];
|
|
969
|
+
var ListSubCheckResults$ = [9, n0, _LSCR,
|
|
970
|
+
{ [_h]: ["POST", "/list-sub-check-results", 200] }, () => ListSubCheckResultsInput$, () => ListSubCheckResultsOutput$
|
|
971
|
+
];
|
|
972
|
+
var ListSubCheckRuleResults$ = [9, n0, _LSCRR,
|
|
973
|
+
{ [_h]: ["POST", "/list-sub-check-rule-results", 200] }, () => ListSubCheckRuleResultsInput$, () => ListSubCheckRuleResultsOutput$
|
|
974
|
+
];
|
|
975
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
976
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
977
|
+
];
|
|
978
|
+
var PutResourcePermission$ = [9, n0, _PRP,
|
|
979
|
+
{ [_h]: ["POST", "/put-resource-permission", 200] }, () => PutResourcePermissionInput$, () => PutResourcePermissionOutput$
|
|
980
|
+
];
|
|
981
|
+
var RegisterApplication$ = [9, n0, _RAe,
|
|
982
|
+
{ [_h]: ["POST", "/register-application", 200] }, () => RegisterApplicationInput$, () => RegisterApplicationOutput$
|
|
983
|
+
];
|
|
984
|
+
var StartApplication$ = [9, n0, _SA,
|
|
985
|
+
{ [_h]: ["POST", "/start-application", 200] }, () => StartApplicationInput$, () => StartApplicationOutput$
|
|
986
|
+
];
|
|
987
|
+
var StartApplicationRefresh$ = [9, n0, _SAR,
|
|
988
|
+
{ [_h]: ["POST", "/start-application-refresh", 200] }, () => StartApplicationRefreshInput$, () => StartApplicationRefreshOutput$
|
|
989
|
+
];
|
|
990
|
+
var StartConfigurationChecks$ = [9, n0, _SCC,
|
|
991
|
+
{ [_h]: ["POST", "/start-configuration-checks", 200] }, () => StartConfigurationChecksInput$, () => StartConfigurationChecksOutput$
|
|
992
|
+
];
|
|
993
|
+
var StopApplication$ = [9, n0, _SAt,
|
|
994
|
+
{ [_h]: ["POST", "/stop-application", 200] }, () => StopApplicationInput$, () => StopApplicationOutput$
|
|
995
|
+
];
|
|
996
|
+
var TagResource$ = [9, n0, _TR,
|
|
997
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
998
|
+
];
|
|
999
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1000
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1001
|
+
];
|
|
1002
|
+
var UpdateApplicationSettings$ = [9, n0, _UAS,
|
|
1003
|
+
{ [_h]: ["POST", "/update-application-settings", 200] }, () => UpdateApplicationSettingsInput$, () => UpdateApplicationSettingsOutput$
|
|
1004
|
+
];
|
|
1005
|
+
|
|
1006
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1007
|
+
return {
|
|
1008
|
+
apiVersion: "2018-05-10",
|
|
1009
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1010
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1011
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1012
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1013
|
+
extensions: config?.extensions ?? [],
|
|
1014
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSsmSapHttpAuthSchemeProvider,
|
|
1015
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1016
|
+
{
|
|
1017
|
+
schemeId: "aws.auth#sigv4",
|
|
1018
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1019
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1020
|
+
},
|
|
1021
|
+
],
|
|
1022
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1023
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1024
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1025
|
+
defaultNamespace: "com.amazonaws.ssmsap",
|
|
1026
|
+
errorTypeRegistries,
|
|
1027
|
+
version: "2018-05-10",
|
|
1028
|
+
serviceTarget: "SsmSap",
|
|
1029
|
+
},
|
|
1030
|
+
serviceId: config?.serviceId ?? "Ssm Sap",
|
|
1031
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1032
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1033
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1034
|
+
};
|
|
1035
|
+
};
|
|
1036
|
+
|
|
1037
|
+
const getRuntimeConfig = (config) => {
|
|
1038
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1039
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1040
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1041
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1042
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1043
|
+
const loaderConfig = {
|
|
1044
|
+
profile: config?.profile,
|
|
1045
|
+
logger: clientSharedValues.logger,
|
|
1046
|
+
};
|
|
1047
|
+
return {
|
|
1048
|
+
...clientSharedValues,
|
|
1049
|
+
...config,
|
|
1050
|
+
runtime: "node",
|
|
1051
|
+
defaultsMode,
|
|
1052
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1053
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1054
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1055
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1056
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1057
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1058
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1059
|
+
retryMode: config?.retryMode ??
|
|
1060
|
+
loadConfig({
|
|
1061
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1062
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1063
|
+
}, config),
|
|
1064
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1065
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1066
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1067
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1068
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1069
|
+
};
|
|
1070
|
+
};
|
|
1071
|
+
|
|
34
1072
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1073
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1074
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -632,57 +1670,174 @@ const RuleResultStatus = {
|
|
|
632
1670
|
};
|
|
633
1671
|
|
|
634
1672
|
exports.AllocationType = AllocationType;
|
|
1673
|
+
exports.Application$ = Application$;
|
|
1674
|
+
exports.ApplicationCredential$ = ApplicationCredential$;
|
|
635
1675
|
exports.ApplicationDiscoveryStatus = ApplicationDiscoveryStatus;
|
|
636
1676
|
exports.ApplicationStatus = ApplicationStatus;
|
|
1677
|
+
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
637
1678
|
exports.ApplicationType = ApplicationType;
|
|
1679
|
+
exports.AssociatedHost$ = AssociatedHost$;
|
|
1680
|
+
exports.BackintConfig$ = BackintConfig$;
|
|
638
1681
|
exports.BackintMode = BackintMode;
|
|
639
1682
|
exports.ClusterStatus = ClusterStatus;
|
|
1683
|
+
exports.Component$ = Component$;
|
|
1684
|
+
exports.ComponentInfo$ = ComponentInfo$;
|
|
640
1685
|
exports.ComponentStatus = ComponentStatus;
|
|
1686
|
+
exports.ComponentSummary$ = ComponentSummary$;
|
|
641
1687
|
exports.ComponentType = ComponentType;
|
|
1688
|
+
exports.ConfigurationCheckDefinition$ = ConfigurationCheckDefinition$;
|
|
1689
|
+
exports.ConfigurationCheckOperation$ = ConfigurationCheckOperation$;
|
|
642
1690
|
exports.ConfigurationCheckOperationListingMode = ConfigurationCheckOperationListingMode;
|
|
643
1691
|
exports.ConfigurationCheckType = ConfigurationCheckType;
|
|
1692
|
+
exports.ConflictException = ConflictException;
|
|
1693
|
+
exports.ConflictException$ = ConflictException$;
|
|
644
1694
|
exports.ConnectedEntityType = ConnectedEntityType;
|
|
645
1695
|
exports.CredentialType = CredentialType;
|
|
1696
|
+
exports.Database$ = Database$;
|
|
1697
|
+
exports.DatabaseConnection$ = DatabaseConnection$;
|
|
646
1698
|
exports.DatabaseConnectionMethod = DatabaseConnectionMethod;
|
|
647
1699
|
exports.DatabaseStatus = DatabaseStatus;
|
|
1700
|
+
exports.DatabaseSummary$ = DatabaseSummary$;
|
|
648
1701
|
exports.DatabaseType = DatabaseType;
|
|
1702
|
+
exports.DeleteResourcePermission$ = DeleteResourcePermission$;
|
|
649
1703
|
exports.DeleteResourcePermissionCommand = DeleteResourcePermissionCommand;
|
|
1704
|
+
exports.DeleteResourcePermissionInput$ = DeleteResourcePermissionInput$;
|
|
1705
|
+
exports.DeleteResourcePermissionOutput$ = DeleteResourcePermissionOutput$;
|
|
1706
|
+
exports.DeregisterApplication$ = DeregisterApplication$;
|
|
650
1707
|
exports.DeregisterApplicationCommand = DeregisterApplicationCommand;
|
|
1708
|
+
exports.DeregisterApplicationInput$ = DeregisterApplicationInput$;
|
|
1709
|
+
exports.DeregisterApplicationOutput$ = DeregisterApplicationOutput$;
|
|
1710
|
+
exports.Filter$ = Filter$;
|
|
651
1711
|
exports.FilterOperator = FilterOperator;
|
|
1712
|
+
exports.GetApplication$ = GetApplication$;
|
|
652
1713
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1714
|
+
exports.GetApplicationInput$ = GetApplicationInput$;
|
|
1715
|
+
exports.GetApplicationOutput$ = GetApplicationOutput$;
|
|
1716
|
+
exports.GetComponent$ = GetComponent$;
|
|
653
1717
|
exports.GetComponentCommand = GetComponentCommand;
|
|
1718
|
+
exports.GetComponentInput$ = GetComponentInput$;
|
|
1719
|
+
exports.GetComponentOutput$ = GetComponentOutput$;
|
|
1720
|
+
exports.GetConfigurationCheckOperation$ = GetConfigurationCheckOperation$;
|
|
654
1721
|
exports.GetConfigurationCheckOperationCommand = GetConfigurationCheckOperationCommand;
|
|
1722
|
+
exports.GetConfigurationCheckOperationInput$ = GetConfigurationCheckOperationInput$;
|
|
1723
|
+
exports.GetConfigurationCheckOperationOutput$ = GetConfigurationCheckOperationOutput$;
|
|
1724
|
+
exports.GetDatabase$ = GetDatabase$;
|
|
655
1725
|
exports.GetDatabaseCommand = GetDatabaseCommand;
|
|
1726
|
+
exports.GetDatabaseInput$ = GetDatabaseInput$;
|
|
1727
|
+
exports.GetDatabaseOutput$ = GetDatabaseOutput$;
|
|
1728
|
+
exports.GetOperation$ = GetOperation$;
|
|
656
1729
|
exports.GetOperationCommand = GetOperationCommand;
|
|
1730
|
+
exports.GetOperationInput$ = GetOperationInput$;
|
|
1731
|
+
exports.GetOperationOutput$ = GetOperationOutput$;
|
|
1732
|
+
exports.GetResourcePermission$ = GetResourcePermission$;
|
|
657
1733
|
exports.GetResourcePermissionCommand = GetResourcePermissionCommand;
|
|
1734
|
+
exports.GetResourcePermissionInput$ = GetResourcePermissionInput$;
|
|
1735
|
+
exports.GetResourcePermissionOutput$ = GetResourcePermissionOutput$;
|
|
1736
|
+
exports.Host$ = Host$;
|
|
658
1737
|
exports.HostRole = HostRole;
|
|
1738
|
+
exports.InternalServerException = InternalServerException;
|
|
1739
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1740
|
+
exports.IpAddressMember$ = IpAddressMember$;
|
|
1741
|
+
exports.ListApplications$ = ListApplications$;
|
|
659
1742
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1743
|
+
exports.ListApplicationsInput$ = ListApplicationsInput$;
|
|
1744
|
+
exports.ListApplicationsOutput$ = ListApplicationsOutput$;
|
|
1745
|
+
exports.ListComponents$ = ListComponents$;
|
|
660
1746
|
exports.ListComponentsCommand = ListComponentsCommand;
|
|
1747
|
+
exports.ListComponentsInput$ = ListComponentsInput$;
|
|
1748
|
+
exports.ListComponentsOutput$ = ListComponentsOutput$;
|
|
1749
|
+
exports.ListConfigurationCheckDefinitions$ = ListConfigurationCheckDefinitions$;
|
|
661
1750
|
exports.ListConfigurationCheckDefinitionsCommand = ListConfigurationCheckDefinitionsCommand;
|
|
1751
|
+
exports.ListConfigurationCheckDefinitionsInput$ = ListConfigurationCheckDefinitionsInput$;
|
|
1752
|
+
exports.ListConfigurationCheckDefinitionsOutput$ = ListConfigurationCheckDefinitionsOutput$;
|
|
1753
|
+
exports.ListConfigurationCheckOperations$ = ListConfigurationCheckOperations$;
|
|
662
1754
|
exports.ListConfigurationCheckOperationsCommand = ListConfigurationCheckOperationsCommand;
|
|
1755
|
+
exports.ListConfigurationCheckOperationsInput$ = ListConfigurationCheckOperationsInput$;
|
|
1756
|
+
exports.ListConfigurationCheckOperationsOutput$ = ListConfigurationCheckOperationsOutput$;
|
|
1757
|
+
exports.ListDatabases$ = ListDatabases$;
|
|
663
1758
|
exports.ListDatabasesCommand = ListDatabasesCommand;
|
|
1759
|
+
exports.ListDatabasesInput$ = ListDatabasesInput$;
|
|
1760
|
+
exports.ListDatabasesOutput$ = ListDatabasesOutput$;
|
|
1761
|
+
exports.ListOperationEvents$ = ListOperationEvents$;
|
|
664
1762
|
exports.ListOperationEventsCommand = ListOperationEventsCommand;
|
|
1763
|
+
exports.ListOperationEventsInput$ = ListOperationEventsInput$;
|
|
1764
|
+
exports.ListOperationEventsOutput$ = ListOperationEventsOutput$;
|
|
1765
|
+
exports.ListOperations$ = ListOperations$;
|
|
665
1766
|
exports.ListOperationsCommand = ListOperationsCommand;
|
|
1767
|
+
exports.ListOperationsInput$ = ListOperationsInput$;
|
|
1768
|
+
exports.ListOperationsOutput$ = ListOperationsOutput$;
|
|
1769
|
+
exports.ListSubCheckResults$ = ListSubCheckResults$;
|
|
666
1770
|
exports.ListSubCheckResultsCommand = ListSubCheckResultsCommand;
|
|
1771
|
+
exports.ListSubCheckResultsInput$ = ListSubCheckResultsInput$;
|
|
1772
|
+
exports.ListSubCheckResultsOutput$ = ListSubCheckResultsOutput$;
|
|
1773
|
+
exports.ListSubCheckRuleResults$ = ListSubCheckRuleResults$;
|
|
667
1774
|
exports.ListSubCheckRuleResultsCommand = ListSubCheckRuleResultsCommand;
|
|
1775
|
+
exports.ListSubCheckRuleResultsInput$ = ListSubCheckRuleResultsInput$;
|
|
1776
|
+
exports.ListSubCheckRuleResultsOutput$ = ListSubCheckRuleResultsOutput$;
|
|
1777
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
668
1778
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1779
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1780
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1781
|
+
exports.Operation$ = Operation$;
|
|
1782
|
+
exports.OperationEvent$ = OperationEvent$;
|
|
669
1783
|
exports.OperationEventStatus = OperationEventStatus;
|
|
670
1784
|
exports.OperationMode = OperationMode;
|
|
671
1785
|
exports.OperationStatus = OperationStatus;
|
|
672
1786
|
exports.PermissionActionType = PermissionActionType;
|
|
1787
|
+
exports.PutResourcePermission$ = PutResourcePermission$;
|
|
673
1788
|
exports.PutResourcePermissionCommand = PutResourcePermissionCommand;
|
|
1789
|
+
exports.PutResourcePermissionInput$ = PutResourcePermissionInput$;
|
|
1790
|
+
exports.PutResourcePermissionOutput$ = PutResourcePermissionOutput$;
|
|
1791
|
+
exports.RegisterApplication$ = RegisterApplication$;
|
|
674
1792
|
exports.RegisterApplicationCommand = RegisterApplicationCommand;
|
|
1793
|
+
exports.RegisterApplicationInput$ = RegisterApplicationInput$;
|
|
1794
|
+
exports.RegisterApplicationOutput$ = RegisterApplicationOutput$;
|
|
675
1795
|
exports.ReplicationMode = ReplicationMode;
|
|
1796
|
+
exports.Resilience$ = Resilience$;
|
|
1797
|
+
exports.Resource$ = Resource$;
|
|
1798
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1799
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1800
|
+
exports.RuleResult$ = RuleResult$;
|
|
676
1801
|
exports.RuleResultStatus = RuleResultStatus;
|
|
1802
|
+
exports.RuleStatusCounts$ = RuleStatusCounts$;
|
|
677
1803
|
exports.SsmSap = SsmSap;
|
|
678
1804
|
exports.SsmSapClient = SsmSapClient;
|
|
1805
|
+
exports.SsmSapServiceException = SsmSapServiceException;
|
|
1806
|
+
exports.SsmSapServiceException$ = SsmSapServiceException$;
|
|
1807
|
+
exports.StartApplication$ = StartApplication$;
|
|
679
1808
|
exports.StartApplicationCommand = StartApplicationCommand;
|
|
1809
|
+
exports.StartApplicationInput$ = StartApplicationInput$;
|
|
1810
|
+
exports.StartApplicationOutput$ = StartApplicationOutput$;
|
|
1811
|
+
exports.StartApplicationRefresh$ = StartApplicationRefresh$;
|
|
680
1812
|
exports.StartApplicationRefreshCommand = StartApplicationRefreshCommand;
|
|
1813
|
+
exports.StartApplicationRefreshInput$ = StartApplicationRefreshInput$;
|
|
1814
|
+
exports.StartApplicationRefreshOutput$ = StartApplicationRefreshOutput$;
|
|
1815
|
+
exports.StartConfigurationChecks$ = StartConfigurationChecks$;
|
|
681
1816
|
exports.StartConfigurationChecksCommand = StartConfigurationChecksCommand;
|
|
1817
|
+
exports.StartConfigurationChecksInput$ = StartConfigurationChecksInput$;
|
|
1818
|
+
exports.StartConfigurationChecksOutput$ = StartConfigurationChecksOutput$;
|
|
1819
|
+
exports.StopApplication$ = StopApplication$;
|
|
682
1820
|
exports.StopApplicationCommand = StopApplicationCommand;
|
|
1821
|
+
exports.StopApplicationInput$ = StopApplicationInput$;
|
|
1822
|
+
exports.StopApplicationOutput$ = StopApplicationOutput$;
|
|
1823
|
+
exports.SubCheckResult$ = SubCheckResult$;
|
|
1824
|
+
exports.TagResource$ = TagResource$;
|
|
683
1825
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1826
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1827
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1828
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
1829
|
+
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
1830
|
+
exports.UntagResource$ = UntagResource$;
|
|
684
1831
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1832
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1833
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1834
|
+
exports.UpdateApplicationSettings$ = UpdateApplicationSettings$;
|
|
685
1835
|
exports.UpdateApplicationSettingsCommand = UpdateApplicationSettingsCommand;
|
|
1836
|
+
exports.UpdateApplicationSettingsInput$ = UpdateApplicationSettingsInput$;
|
|
1837
|
+
exports.UpdateApplicationSettingsOutput$ = UpdateApplicationSettingsOutput$;
|
|
1838
|
+
exports.ValidationException = ValidationException;
|
|
1839
|
+
exports.ValidationException$ = ValidationException$;
|
|
1840
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
686
1841
|
exports.paginateListApplications = paginateListApplications;
|
|
687
1842
|
exports.paginateListComponents = paginateListComponents;
|
|
688
1843
|
exports.paginateListConfigurationCheckDefinitions = paginateListConfigurationCheckDefinitions;
|