@aws-sdk/client-finspace 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 +1878 -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/FinspaceServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -123
- 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 -1520
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 { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultFinspaceHttpAuthSchemeParametersProvider = 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: "finspace",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultFinspaceHttpAuthSchemeProvider = (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,1621 @@ 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://finspace-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://finspace-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://finspace.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://finspace.{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 FinspaceServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, FinspaceServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends FinspaceServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class InternalServerException extends FinspaceServiceException {
|
|
153
|
+
name = "InternalServerException";
|
|
154
|
+
$fault = "server";
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "InternalServerException",
|
|
158
|
+
$fault: "server",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class LimitExceededException extends FinspaceServiceException {
|
|
165
|
+
name = "LimitExceededException";
|
|
166
|
+
$fault = "client";
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "LimitExceededException",
|
|
170
|
+
$fault: "client",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class ServiceQuotaExceededException extends FinspaceServiceException {
|
|
177
|
+
name = "ServiceQuotaExceededException";
|
|
178
|
+
$fault = "client";
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "ServiceQuotaExceededException",
|
|
182
|
+
$fault: "client",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
class ThrottlingException extends FinspaceServiceException {
|
|
189
|
+
name = "ThrottlingException";
|
|
190
|
+
$fault = "client";
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "ThrottlingException",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
class ValidationException extends FinspaceServiceException {
|
|
201
|
+
name = "ValidationException";
|
|
202
|
+
$fault = "client";
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "ValidationException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
class ConflictException extends FinspaceServiceException {
|
|
213
|
+
name = "ConflictException";
|
|
214
|
+
$fault = "client";
|
|
215
|
+
reason;
|
|
216
|
+
constructor(opts) {
|
|
217
|
+
super({
|
|
218
|
+
name: "ConflictException",
|
|
219
|
+
$fault: "client",
|
|
220
|
+
...opts,
|
|
221
|
+
});
|
|
222
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
223
|
+
this.reason = opts.reason;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
class ResourceNotFoundException extends FinspaceServiceException {
|
|
227
|
+
name = "ResourceNotFoundException";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
constructor(opts) {
|
|
230
|
+
super({
|
|
231
|
+
name: "ResourceNotFoundException",
|
|
232
|
+
$fault: "client",
|
|
233
|
+
...opts,
|
|
234
|
+
});
|
|
235
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
class ResourceAlreadyExistsException extends FinspaceServiceException {
|
|
239
|
+
name = "ResourceAlreadyExistsException";
|
|
240
|
+
$fault = "client";
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ResourceAlreadyExistsException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
class InvalidRequestException extends FinspaceServiceException {
|
|
251
|
+
name = "InvalidRequestException";
|
|
252
|
+
$fault = "client";
|
|
253
|
+
constructor(opts) {
|
|
254
|
+
super({
|
|
255
|
+
name: "InvalidRequestException",
|
|
256
|
+
$fault: "client",
|
|
257
|
+
...opts,
|
|
258
|
+
});
|
|
259
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
const _ADE = "AccessDeniedException";
|
|
264
|
+
const _ASC = "AutoScalingConfiguration";
|
|
265
|
+
const _CC = "CapacityConfiguration";
|
|
266
|
+
const _CCo = "CodeConfiguration";
|
|
267
|
+
const _CDNSC = "CustomDNSConfiguration";
|
|
268
|
+
const _CDNSS = "CustomDNSServer";
|
|
269
|
+
const _CE = "ConflictException";
|
|
270
|
+
const _CER = "CreateEnvironmentRequest";
|
|
271
|
+
const _CERr = "CreateEnvironmentResponse";
|
|
272
|
+
const _CEr = "CreateEnvironment";
|
|
273
|
+
const _CKC = "CreateKxChangeset";
|
|
274
|
+
const _CKCR = "CreateKxChangesetRequest";
|
|
275
|
+
const _CKCRr = "CreateKxChangesetResponse";
|
|
276
|
+
const _CKCRre = "CreateKxClusterRequest";
|
|
277
|
+
const _CKCRrea = "CreateKxClusterResponse";
|
|
278
|
+
const _CKCr = "CreateKxCluster";
|
|
279
|
+
const _CKD = "CreateKxDatabase";
|
|
280
|
+
const _CKDR = "CreateKxDatabaseRequest";
|
|
281
|
+
const _CKDRr = "CreateKxDatabaseResponse";
|
|
282
|
+
const _CKDRre = "CreateKxDataviewRequest";
|
|
283
|
+
const _CKDRrea = "CreateKxDataviewResponse";
|
|
284
|
+
const _CKDr = "CreateKxDataview";
|
|
285
|
+
const _CKE = "CreateKxEnvironment";
|
|
286
|
+
const _CKER = "CreateKxEnvironmentRequest";
|
|
287
|
+
const _CKERr = "CreateKxEnvironmentResponse";
|
|
288
|
+
const _CKSG = "CreateKxScalingGroup";
|
|
289
|
+
const _CKSGR = "CreateKxScalingGroupRequest";
|
|
290
|
+
const _CKSGRr = "CreateKxScalingGroupResponse";
|
|
291
|
+
const _CKU = "CreateKxUser";
|
|
292
|
+
const _CKUR = "CreateKxUserRequest";
|
|
293
|
+
const _CKURr = "CreateKxUserResponse";
|
|
294
|
+
const _CKV = "CreateKxVolume";
|
|
295
|
+
const _CKVR = "CreateKxVolumeRequest";
|
|
296
|
+
const _CKVRr = "CreateKxVolumeResponse";
|
|
297
|
+
const _CR = "ChangeRequest";
|
|
298
|
+
const _CRh = "ChangeRequests";
|
|
299
|
+
const _DE = "DeleteEnvironment";
|
|
300
|
+
const _DER = "DeleteEnvironmentRequest";
|
|
301
|
+
const _DERe = "DeleteEnvironmentResponse";
|
|
302
|
+
const _DKC = "DeleteKxCluster";
|
|
303
|
+
const _DKCN = "DeleteKxClusterNode";
|
|
304
|
+
const _DKCNR = "DeleteKxClusterNodeRequest";
|
|
305
|
+
const _DKCNRe = "DeleteKxClusterNodeResponse";
|
|
306
|
+
const _DKCR = "DeleteKxClusterRequest";
|
|
307
|
+
const _DKCRe = "DeleteKxClusterResponse";
|
|
308
|
+
const _DKD = "DeleteKxDatabase";
|
|
309
|
+
const _DKDR = "DeleteKxDatabaseRequest";
|
|
310
|
+
const _DKDRe = "DeleteKxDatabaseResponse";
|
|
311
|
+
const _DKDRel = "DeleteKxDataviewRequest";
|
|
312
|
+
const _DKDRele = "DeleteKxDataviewResponse";
|
|
313
|
+
const _DKDe = "DeleteKxDataview";
|
|
314
|
+
const _DKE = "DeleteKxEnvironment";
|
|
315
|
+
const _DKER = "DeleteKxEnvironmentRequest";
|
|
316
|
+
const _DKERe = "DeleteKxEnvironmentResponse";
|
|
317
|
+
const _DKSG = "DeleteKxScalingGroup";
|
|
318
|
+
const _DKSGR = "DeleteKxScalingGroupRequest";
|
|
319
|
+
const _DKSGRe = "DeleteKxScalingGroupResponse";
|
|
320
|
+
const _DKU = "DeleteKxUser";
|
|
321
|
+
const _DKUR = "DeleteKxUserRequest";
|
|
322
|
+
const _DKURe = "DeleteKxUserResponse";
|
|
323
|
+
const _DKV = "DeleteKxVolume";
|
|
324
|
+
const _DKVR = "DeleteKxVolumeRequest";
|
|
325
|
+
const _DKVRe = "DeleteKxVolumeResponse";
|
|
326
|
+
const _E = "Environment";
|
|
327
|
+
const _EI = "EmailId";
|
|
328
|
+
const _EIr = "ErrorInfo";
|
|
329
|
+
const _EL = "EnvironmentList";
|
|
330
|
+
const _FP = "FederationParameters";
|
|
331
|
+
const _GE = "GetEnvironment";
|
|
332
|
+
const _GER = "GetEnvironmentRequest";
|
|
333
|
+
const _GERe = "GetEnvironmentResponse";
|
|
334
|
+
const _GKC = "GetKxChangeset";
|
|
335
|
+
const _GKCR = "GetKxChangesetRequest";
|
|
336
|
+
const _GKCRe = "GetKxChangesetResponse";
|
|
337
|
+
const _GKCRet = "GetKxClusterRequest";
|
|
338
|
+
const _GKCRetx = "GetKxClusterResponse";
|
|
339
|
+
const _GKCS = "GetKxConnectionString";
|
|
340
|
+
const _GKCSR = "GetKxConnectionStringRequest";
|
|
341
|
+
const _GKCSRe = "GetKxConnectionStringResponse";
|
|
342
|
+
const _GKCe = "GetKxCluster";
|
|
343
|
+
const _GKD = "GetKxDatabase";
|
|
344
|
+
const _GKDR = "GetKxDatabaseRequest";
|
|
345
|
+
const _GKDRe = "GetKxDatabaseResponse";
|
|
346
|
+
const _GKDRet = "GetKxDataviewRequest";
|
|
347
|
+
const _GKDRetx = "GetKxDataviewResponse";
|
|
348
|
+
const _GKDe = "GetKxDataview";
|
|
349
|
+
const _GKE = "GetKxEnvironment";
|
|
350
|
+
const _GKER = "GetKxEnvironmentRequest";
|
|
351
|
+
const _GKERe = "GetKxEnvironmentResponse";
|
|
352
|
+
const _GKSG = "GetKxScalingGroup";
|
|
353
|
+
const _GKSGR = "GetKxScalingGroupRequest";
|
|
354
|
+
const _GKSGRe = "GetKxScalingGroupResponse";
|
|
355
|
+
const _GKU = "GetKxUser";
|
|
356
|
+
const _GKUR = "GetKxUserRequest";
|
|
357
|
+
const _GKURe = "GetKxUserResponse";
|
|
358
|
+
const _GKV = "GetKxVolume";
|
|
359
|
+
const _GKVR = "GetKxVolumeRequest";
|
|
360
|
+
const _GKVRe = "GetKxVolumeResponse";
|
|
361
|
+
const _IRE = "InvalidRequestException";
|
|
362
|
+
const _ISE = "InternalServerException";
|
|
363
|
+
const _ITC = "IcmpTypeCode";
|
|
364
|
+
const _KAC = "KxAttachedCluster";
|
|
365
|
+
const _KACx = "KxAttachedClusters";
|
|
366
|
+
const _KC = "KxCluster";
|
|
367
|
+
const _KCCDC = "KxClusterCodeDeploymentConfiguration";
|
|
368
|
+
const _KCLA = "KxCommandLineArgument";
|
|
369
|
+
const _KCLAx = "KxCommandLineArguments";
|
|
370
|
+
const _KCLE = "KxChangesetListEntry";
|
|
371
|
+
const _KCSC = "KxCacheStorageConfiguration";
|
|
372
|
+
const _KCSCx = "KxCacheStorageConfigurations";
|
|
373
|
+
const _KCx = "KxChangesets";
|
|
374
|
+
const _KCxl = "KxClusters";
|
|
375
|
+
const _KD = "KxDatabases";
|
|
376
|
+
const _KDAV = "KxDataviewActiveVersion";
|
|
377
|
+
const _KDAVL = "KxDataviewActiveVersionList";
|
|
378
|
+
const _KDC = "KxDatabaseConfiguration";
|
|
379
|
+
const _KDCC = "KxDatabaseCacheConfiguration";
|
|
380
|
+
const _KDCCx = "KxDatabaseCacheConfigurations";
|
|
381
|
+
const _KDCx = "KxDataviewConfiguration";
|
|
382
|
+
const _KDCxa = "KxDatabaseConfigurations";
|
|
383
|
+
const _KDCxe = "KxDeploymentConfiguration";
|
|
384
|
+
const _KDLE = "KxDatabaseListEntry";
|
|
385
|
+
const _KDLEx = "KxDataviewListEntry";
|
|
386
|
+
const _KDSC = "KxDataviewSegmentConfiguration";
|
|
387
|
+
const _KDSCL = "KxDataviewSegmentConfigurationList";
|
|
388
|
+
const _KDx = "KxDataviews";
|
|
389
|
+
const _KE = "KxEnvironment";
|
|
390
|
+
const _KEL = "KxEnvironmentList";
|
|
391
|
+
const _KN = "KxNode";
|
|
392
|
+
const _KNASC = "KxNAS1Configuration";
|
|
393
|
+
const _KNS = "KxNodeSummaries";
|
|
394
|
+
const _KSG = "KxScalingGroup";
|
|
395
|
+
const _KSGC = "KxScalingGroupConfiguration";
|
|
396
|
+
const _KSGL = "KxScalingGroupList";
|
|
397
|
+
const _KSSC = "KxSavedownStorageConfiguration";
|
|
398
|
+
const _KU = "KxUser";
|
|
399
|
+
const _KUL = "KxUserList";
|
|
400
|
+
const _KV = "KxVolume";
|
|
401
|
+
const _KVx = "KxVolumes";
|
|
402
|
+
const _LE = "ListEnvironments";
|
|
403
|
+
const _LEE = "LimitExceededException";
|
|
404
|
+
const _LER = "ListEnvironmentsRequest";
|
|
405
|
+
const _LERi = "ListEnvironmentsResponse";
|
|
406
|
+
const _LKC = "ListKxChangesets";
|
|
407
|
+
const _LKCN = "ListKxClusterNodes";
|
|
408
|
+
const _LKCNR = "ListKxClusterNodesRequest";
|
|
409
|
+
const _LKCNRi = "ListKxClusterNodesResponse";
|
|
410
|
+
const _LKCR = "ListKxChangesetsRequest";
|
|
411
|
+
const _LKCRi = "ListKxChangesetsResponse";
|
|
412
|
+
const _LKCRis = "ListKxClustersRequest";
|
|
413
|
+
const _LKCRist = "ListKxClustersResponse";
|
|
414
|
+
const _LKCi = "ListKxClusters";
|
|
415
|
+
const _LKD = "ListKxDatabases";
|
|
416
|
+
const _LKDR = "ListKxDatabasesRequest";
|
|
417
|
+
const _LKDRi = "ListKxDatabasesResponse";
|
|
418
|
+
const _LKDRis = "ListKxDataviewsRequest";
|
|
419
|
+
const _LKDRist = "ListKxDataviewsResponse";
|
|
420
|
+
const _LKDi = "ListKxDataviews";
|
|
421
|
+
const _LKE = "ListKxEnvironments";
|
|
422
|
+
const _LKER = "ListKxEnvironmentsRequest";
|
|
423
|
+
const _LKERi = "ListKxEnvironmentsResponse";
|
|
424
|
+
const _LKSG = "ListKxScalingGroups";
|
|
425
|
+
const _LKSGR = "ListKxScalingGroupsRequest";
|
|
426
|
+
const _LKSGRi = "ListKxScalingGroupsResponse";
|
|
427
|
+
const _LKU = "ListKxUsers";
|
|
428
|
+
const _LKUR = "ListKxUsersRequest";
|
|
429
|
+
const _LKURi = "ListKxUsersResponse";
|
|
430
|
+
const _LKV = "ListKxVolumes";
|
|
431
|
+
const _LKVR = "ListKxVolumesRequest";
|
|
432
|
+
const _LKVRi = "ListKxVolumesResponse";
|
|
433
|
+
const _LTFR = "ListTagsForResource";
|
|
434
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
435
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
436
|
+
const _NACLC = "NetworkACLConfiguration";
|
|
437
|
+
const _NACLE = "NetworkACLEntry";
|
|
438
|
+
const _PR = "PortRange";
|
|
439
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
440
|
+
const _RNFE = "ResourceNotFoundException";
|
|
441
|
+
const _SKCS = "SignedKxConnectionString";
|
|
442
|
+
const _SP = "SuperuserParameters";
|
|
443
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
444
|
+
const _TE = "ThrottlingException";
|
|
445
|
+
const _TGC = "TransitGatewayConfiguration";
|
|
446
|
+
const _TLC = "TickerplantLogConfiguration";
|
|
447
|
+
const _TR = "TagResource";
|
|
448
|
+
const _TRR = "TagResourceRequest";
|
|
449
|
+
const _TRRa = "TagResourceResponse";
|
|
450
|
+
const _UE = "UpdateEnvironment";
|
|
451
|
+
const _UER = "UpdateEnvironmentRequest";
|
|
452
|
+
const _UERp = "UpdateEnvironmentResponse";
|
|
453
|
+
const _UKCCC = "UpdateKxClusterCodeConfiguration";
|
|
454
|
+
const _UKCCCR = "UpdateKxClusterCodeConfigurationRequest";
|
|
455
|
+
const _UKCCCRp = "UpdateKxClusterCodeConfigurationResponse";
|
|
456
|
+
const _UKCD = "UpdateKxClusterDatabases";
|
|
457
|
+
const _UKCDR = "UpdateKxClusterDatabasesRequest";
|
|
458
|
+
const _UKCDRp = "UpdateKxClusterDatabasesResponse";
|
|
459
|
+
const _UKD = "UpdateKxDatabase";
|
|
460
|
+
const _UKDR = "UpdateKxDatabaseRequest";
|
|
461
|
+
const _UKDRp = "UpdateKxDatabaseResponse";
|
|
462
|
+
const _UKDRpd = "UpdateKxDataviewRequest";
|
|
463
|
+
const _UKDRpda = "UpdateKxDataviewResponse";
|
|
464
|
+
const _UKDp = "UpdateKxDataview";
|
|
465
|
+
const _UKE = "UpdateKxEnvironment";
|
|
466
|
+
const _UKEN = "UpdateKxEnvironmentNetwork";
|
|
467
|
+
const _UKENR = "UpdateKxEnvironmentNetworkRequest";
|
|
468
|
+
const _UKENRp = "UpdateKxEnvironmentNetworkResponse";
|
|
469
|
+
const _UKER = "UpdateKxEnvironmentRequest";
|
|
470
|
+
const _UKERp = "UpdateKxEnvironmentResponse";
|
|
471
|
+
const _UKU = "UpdateKxUser";
|
|
472
|
+
const _UKUR = "UpdateKxUserRequest";
|
|
473
|
+
const _UKURp = "UpdateKxUserResponse";
|
|
474
|
+
const _UKV = "UpdateKxVolume";
|
|
475
|
+
const _UKVR = "UpdateKxVolumeRequest";
|
|
476
|
+
const _UKVRp = "UpdateKxVolumeResponse";
|
|
477
|
+
const _UR = "UntagResource";
|
|
478
|
+
const _URR = "UntagResourceRequest";
|
|
479
|
+
const _URRn = "UntagResourceResponse";
|
|
480
|
+
const _V = "Volume";
|
|
481
|
+
const _VC = "VpcConfiguration";
|
|
482
|
+
const _VE = "ValidationException";
|
|
483
|
+
const _Vo = "Volumes";
|
|
484
|
+
const _aAI = "awsAccountId";
|
|
485
|
+
const _aC = "attachedClusters";
|
|
486
|
+
const _aCBURL = "applicationCallBackURL";
|
|
487
|
+
const _aFT = "activeFromTimestamp";
|
|
488
|
+
const _aM = "azMode";
|
|
489
|
+
const _aMt = "attributeMap";
|
|
490
|
+
const _aNAC = "attachmentNetworkAclConfiguration";
|
|
491
|
+
const _aSC = "autoScalingConfiguration";
|
|
492
|
+
const _aSM = "autoScalingMetric";
|
|
493
|
+
const _aU = "autoUpdate";
|
|
494
|
+
const _aV = "activeVersions";
|
|
495
|
+
const _aZI = "availabilityZoneId";
|
|
496
|
+
const _aZIv = "availabilityZoneIds";
|
|
497
|
+
const _c = "client";
|
|
498
|
+
const _cAA = "certificateAuthorityArn";
|
|
499
|
+
const _cB = "cidrBlock";
|
|
500
|
+
const _cC = "capacityConfiguration";
|
|
501
|
+
const _cCa = "cacheConfigurations";
|
|
502
|
+
const _cD = "clusterDescription";
|
|
503
|
+
const _cDNSC = "customDNSConfiguration";
|
|
504
|
+
const _cDNSSIP = "customDNSServerIP";
|
|
505
|
+
const _cDNSSN = "customDNSServerName";
|
|
506
|
+
const _cI = "changesetId";
|
|
507
|
+
const _cLA = "commandLineArguments";
|
|
508
|
+
const _cN = "clusterName";
|
|
509
|
+
const _cR = "changeRequests";
|
|
510
|
+
const _cS = "clusterStatus";
|
|
511
|
+
const _cSC = "cacheStorageConfigurations";
|
|
512
|
+
const _cT = "changeType";
|
|
513
|
+
const _cTa = "cacheType";
|
|
514
|
+
const _cTl = "clientToken";
|
|
515
|
+
const _cTlu = "clusterType";
|
|
516
|
+
const _cTr = "createdTimestamp";
|
|
517
|
+
const _cTre = "creationTimestamp";
|
|
518
|
+
const _cTrea = "createTimestamp";
|
|
519
|
+
const _cl = "clusters";
|
|
520
|
+
const _co = "code";
|
|
521
|
+
const _cp = "cpu";
|
|
522
|
+
const _d = "description";
|
|
523
|
+
const _dA = "databaseArn";
|
|
524
|
+
const _dB = "dataBundles";
|
|
525
|
+
const _dC = "dataviewConfiguration";
|
|
526
|
+
const _dCe = "deploymentConfiguration";
|
|
527
|
+
const _dN = "databaseName";
|
|
528
|
+
const _dNa = "dataviewName";
|
|
529
|
+
const _dP = "dbPath";
|
|
530
|
+
const _dPb = "dbPaths";
|
|
531
|
+
const _dS = "dnsStatus";
|
|
532
|
+
const _dSAI = "dedicatedServiceAccountId";
|
|
533
|
+
const _dSe = "deploymentStrategy";
|
|
534
|
+
const _dVI = "dataviewVersionId";
|
|
535
|
+
const _da = "databases";
|
|
536
|
+
const _e = "error";
|
|
537
|
+
const _eA = "environmentArn";
|
|
538
|
+
const _eAm = "emailAddress";
|
|
539
|
+
const _eI = "environmentId";
|
|
540
|
+
const _eIr = "errorInfo";
|
|
541
|
+
const _eM = "errorMessage";
|
|
542
|
+
const _eR = "executionRole";
|
|
543
|
+
const _eT = "errorType";
|
|
544
|
+
const _eU = "environmentUrl";
|
|
545
|
+
const _en = "environment";
|
|
546
|
+
const _env = "environments";
|
|
547
|
+
const _f = "from";
|
|
548
|
+
const _fM = "federationMode";
|
|
549
|
+
const _fN = "firstName";
|
|
550
|
+
const _fP = "federationParameters";
|
|
551
|
+
const _fPN = "federationProviderName";
|
|
552
|
+
const _fURN = "federationURN";
|
|
553
|
+
const _h = "http";
|
|
554
|
+
const _hE = "httpError";
|
|
555
|
+
const _hQ = "httpQuery";
|
|
556
|
+
const _hT = "hostType";
|
|
557
|
+
const _iAT = "ipAddressType";
|
|
558
|
+
const _iR = "iamRole";
|
|
559
|
+
const _iS = "initializationScript";
|
|
560
|
+
const _iT = "idempotencyToken";
|
|
561
|
+
const _iTC = "icmpTypeCode";
|
|
562
|
+
const _k = "key";
|
|
563
|
+
const _kC = "kxChangesets";
|
|
564
|
+
const _kCS = "kxClusterSummaries";
|
|
565
|
+
const _kD = "kxDatabases";
|
|
566
|
+
const _kDx = "kxDataviews";
|
|
567
|
+
const _kKI = "kmsKeyId";
|
|
568
|
+
const _kVS = "kxVolumeSummaries";
|
|
569
|
+
const _lCCI = "lastCompletedChangesetId";
|
|
570
|
+
const _lMT = "lastModifiedTimestamp";
|
|
571
|
+
const _lN = "lastName";
|
|
572
|
+
const _lT = "launchTime";
|
|
573
|
+
const _m = "message";
|
|
574
|
+
const _mL = "memoryLimit";
|
|
575
|
+
const _mNC = "minNodeCount";
|
|
576
|
+
const _mNCa = "maxNodeCount";
|
|
577
|
+
const _mR = "memoryReservation";
|
|
578
|
+
const _mRa = "maxResults";
|
|
579
|
+
const _mT = "metricTarget";
|
|
580
|
+
const _n = "name";
|
|
581
|
+
const _nB = "numBytes";
|
|
582
|
+
const _nC = "nodeCount";
|
|
583
|
+
const _nCa = "nas1Configuration";
|
|
584
|
+
const _nCu = "numChangesets";
|
|
585
|
+
const _nF = "numFiles";
|
|
586
|
+
const _nI = "nodeId";
|
|
587
|
+
const _nT = "nodeType";
|
|
588
|
+
const _nTe = "nextToken";
|
|
589
|
+
const _no = "nodes";
|
|
590
|
+
const _oD = "onDemand";
|
|
591
|
+
const _p = "protocol";
|
|
592
|
+
const _pR = "portRange";
|
|
593
|
+
const _r = "reason";
|
|
594
|
+
const _rA = "resourceArn";
|
|
595
|
+
const _rAu = "ruleAction";
|
|
596
|
+
const _rCIDRS = "routableCIDRSpace";
|
|
597
|
+
const _rL = "releaseLabel";
|
|
598
|
+
const _rN = "ruleNumber";
|
|
599
|
+
const _rW = "readWrite";
|
|
600
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.finspace";
|
|
601
|
+
const _sB = "s3Bucket";
|
|
602
|
+
const _sC = "segmentConfigurations";
|
|
603
|
+
const _sCS = "signedConnectionString";
|
|
604
|
+
const _sG = "scalingGroups";
|
|
605
|
+
const _sGA = "scalingGroupArn";
|
|
606
|
+
const _sGC = "scalingGroupConfiguration";
|
|
607
|
+
const _sGI = "securityGroupIds";
|
|
608
|
+
const _sGN = "scalingGroupName";
|
|
609
|
+
const _sI = "subnetIds";
|
|
610
|
+
const _sICS = "scaleInCooldownSeconds";
|
|
611
|
+
const _sK = "s3Key";
|
|
612
|
+
const _sMD = "samlMetadataDocument";
|
|
613
|
+
const _sMSDU = "sageMakerStudioDomainUrl";
|
|
614
|
+
const _sMURL = "samlMetadataURL";
|
|
615
|
+
const _sOCS = "scaleOutCooldownSeconds";
|
|
616
|
+
const _sOV = "s3ObjectVersion";
|
|
617
|
+
const _sP = "s3Path";
|
|
618
|
+
const _sPu = "superuserParameters";
|
|
619
|
+
const _sR = "statusReason";
|
|
620
|
+
const _sSC = "savedownStorageConfiguration";
|
|
621
|
+
const _se = "server";
|
|
622
|
+
const _si = "size";
|
|
623
|
+
const _st = "status";
|
|
624
|
+
const _t = "tags";
|
|
625
|
+
const _tGC = "transitGatewayConfiguration";
|
|
626
|
+
const _tGID = "transitGatewayID";
|
|
627
|
+
const _tK = "tagKeys";
|
|
628
|
+
const _tLC = "tickerplantLogConfiguration";
|
|
629
|
+
const _tLV = "tickerplantLogVolumes";
|
|
630
|
+
const _tS = "tgwStatus";
|
|
631
|
+
const _to = "to";
|
|
632
|
+
const _ty = "type";
|
|
633
|
+
const _u = "users";
|
|
634
|
+
const _uA = "userArn";
|
|
635
|
+
const _uN = "userName";
|
|
636
|
+
const _uT = "updateTimestamp";
|
|
637
|
+
const _v = "volumes";
|
|
638
|
+
const _vA = "volumeArn";
|
|
639
|
+
const _vC = "vpcConfiguration";
|
|
640
|
+
const _vI = "versionId";
|
|
641
|
+
const _vIp = "vpcId";
|
|
642
|
+
const _vN = "volumeName";
|
|
643
|
+
const _vT = "volumeType";
|
|
644
|
+
const _va = "value";
|
|
645
|
+
const n0 = "com.amazonaws.finspace";
|
|
646
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
647
|
+
var FinspaceServiceException$ = [-3, _s, "FinspaceServiceException", 0, [], []];
|
|
648
|
+
_s_registry.registerError(FinspaceServiceException$, FinspaceServiceException);
|
|
649
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
650
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
651
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
652
|
+
[_m],
|
|
653
|
+
[0]
|
|
654
|
+
];
|
|
655
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
656
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
657
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
658
|
+
[_m, _r],
|
|
659
|
+
[0, 0]
|
|
660
|
+
];
|
|
661
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
662
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
663
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
664
|
+
[_m],
|
|
665
|
+
[0]
|
|
666
|
+
];
|
|
667
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
668
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
669
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
670
|
+
[_m],
|
|
671
|
+
[0]
|
|
672
|
+
];
|
|
673
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
674
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
675
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
676
|
+
[_m],
|
|
677
|
+
[0]
|
|
678
|
+
];
|
|
679
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
680
|
+
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
681
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
682
|
+
[_m],
|
|
683
|
+
[0]
|
|
684
|
+
];
|
|
685
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
686
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
687
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
688
|
+
[_m],
|
|
689
|
+
[0]
|
|
690
|
+
];
|
|
691
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
692
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
693
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
694
|
+
[_m],
|
|
695
|
+
[0]
|
|
696
|
+
];
|
|
697
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
698
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
699
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
700
|
+
[_m],
|
|
701
|
+
[0]
|
|
702
|
+
];
|
|
703
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
704
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
705
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
706
|
+
[_m],
|
|
707
|
+
[0]
|
|
708
|
+
];
|
|
709
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
710
|
+
const errorTypeRegistries = [
|
|
711
|
+
_s_registry,
|
|
712
|
+
n0_registry,
|
|
713
|
+
];
|
|
714
|
+
var EmailId = [0, n0, _EI, 8, 0];
|
|
715
|
+
var SignedKxConnectionString = [0, n0, _SKCS, 8, 0];
|
|
716
|
+
var AutoScalingConfiguration$ = [3, n0, _ASC,
|
|
717
|
+
0,
|
|
718
|
+
[_mNC, _mNCa, _aSM, _mT, _sICS, _sOCS],
|
|
719
|
+
[1, 1, 0, 1, 1, 1]
|
|
720
|
+
];
|
|
721
|
+
var CapacityConfiguration$ = [3, n0, _CC,
|
|
722
|
+
0,
|
|
723
|
+
[_nT, _nC],
|
|
724
|
+
[0, 1]
|
|
725
|
+
];
|
|
726
|
+
var ChangeRequest$ = [3, n0, _CR,
|
|
727
|
+
0,
|
|
728
|
+
[_cT, _dP, _sP],
|
|
729
|
+
[0, 0, 0], 2
|
|
730
|
+
];
|
|
731
|
+
var CodeConfiguration$ = [3, n0, _CCo,
|
|
732
|
+
0,
|
|
733
|
+
[_sB, _sK, _sOV],
|
|
734
|
+
[0, 0, 0]
|
|
735
|
+
];
|
|
736
|
+
var CreateEnvironmentRequest$ = [3, n0, _CER,
|
|
737
|
+
0,
|
|
738
|
+
[_n, _d, _kKI, _t, _fM, _fP, _sPu, _dB],
|
|
739
|
+
[0, 0, 0, 128 | 0, 0, () => FederationParameters$, [() => SuperuserParameters$, 0], 64 | 0], 1
|
|
740
|
+
];
|
|
741
|
+
var CreateEnvironmentResponse$ = [3, n0, _CERr,
|
|
742
|
+
0,
|
|
743
|
+
[_eI, _eA, _eU],
|
|
744
|
+
[0, 0, 0]
|
|
745
|
+
];
|
|
746
|
+
var CreateKxChangesetRequest$ = [3, n0, _CKCR,
|
|
747
|
+
0,
|
|
748
|
+
[_eI, _dN, _cR, _cTl],
|
|
749
|
+
[[0, 1], [0, 1], () => ChangeRequests, [0, 4]], 3
|
|
750
|
+
];
|
|
751
|
+
var CreateKxChangesetResponse$ = [3, n0, _CKCRr,
|
|
752
|
+
0,
|
|
753
|
+
[_cI, _dN, _eI, _cR, _cTr, _lMT, _st, _eIr],
|
|
754
|
+
[0, 0, 0, () => ChangeRequests, 4, 4, 0, () => ErrorInfo$]
|
|
755
|
+
];
|
|
756
|
+
var CreateKxClusterRequest$ = [3, n0, _CKCRre,
|
|
757
|
+
0,
|
|
758
|
+
[_eI, _cN, _cTlu, _rL, _vC, _aM, _cTl, _tLC, _da, _cSC, _aSC, _cD, _cC, _iS, _cLA, _co, _eR, _sSC, _aZI, _t, _sGC],
|
|
759
|
+
[[0, 1], 0, 0, 0, () => VpcConfiguration$, 0, [0, 4], () => TickerplantLogConfiguration$, () => KxDatabaseConfigurations, () => KxCacheStorageConfigurations, () => AutoScalingConfiguration$, 0, () => CapacityConfiguration$, 0, () => KxCommandLineArguments, () => CodeConfiguration$, 0, () => KxSavedownStorageConfiguration$, 0, 128 | 0, () => KxScalingGroupConfiguration$], 6
|
|
760
|
+
];
|
|
761
|
+
var CreateKxClusterResponse$ = [3, n0, _CKCRrea,
|
|
762
|
+
0,
|
|
763
|
+
[_eI, _st, _sR, _cN, _cTlu, _tLC, _v, _da, _cSC, _aSC, _cD, _cC, _rL, _vC, _iS, _cLA, _co, _eR, _lMT, _sSC, _aM, _aZI, _cTr, _sGC],
|
|
764
|
+
[0, 0, 0, 0, 0, () => TickerplantLogConfiguration$, () => Volumes, () => KxDatabaseConfigurations, () => KxCacheStorageConfigurations, () => AutoScalingConfiguration$, 0, () => CapacityConfiguration$, 0, () => VpcConfiguration$, 0, () => KxCommandLineArguments, () => CodeConfiguration$, 0, 4, () => KxSavedownStorageConfiguration$, 0, 0, 4, () => KxScalingGroupConfiguration$]
|
|
765
|
+
];
|
|
766
|
+
var CreateKxDatabaseRequest$ = [3, n0, _CKDR,
|
|
767
|
+
0,
|
|
768
|
+
[_eI, _dN, _d, _t, _cTl],
|
|
769
|
+
[[0, 1], 0, 0, 128 | 0, [0, 4]], 2
|
|
770
|
+
];
|
|
771
|
+
var CreateKxDatabaseResponse$ = [3, n0, _CKDRr,
|
|
772
|
+
0,
|
|
773
|
+
[_dN, _dA, _eI, _d, _cTr, _lMT],
|
|
774
|
+
[0, 0, 0, 0, 4, 4]
|
|
775
|
+
];
|
|
776
|
+
var CreateKxDataviewRequest$ = [3, n0, _CKDRre,
|
|
777
|
+
0,
|
|
778
|
+
[_eI, _dN, _dNa, _aM, _aZI, _cI, _sC, _aU, _rW, _d, _t, _cTl],
|
|
779
|
+
[[0, 1], [0, 1], 0, 0, 0, 0, () => KxDataviewSegmentConfigurationList, 2, 2, 0, 128 | 0, [0, 4]], 4
|
|
780
|
+
];
|
|
781
|
+
var CreateKxDataviewResponse$ = [3, n0, _CKDRrea,
|
|
782
|
+
0,
|
|
783
|
+
[_dNa, _dN, _eI, _aM, _aZI, _cI, _sC, _d, _aU, _rW, _cTr, _lMT, _st],
|
|
784
|
+
[0, 0, 0, 0, 0, 0, () => KxDataviewSegmentConfigurationList, 0, 2, 2, 4, 4, 0]
|
|
785
|
+
];
|
|
786
|
+
var CreateKxEnvironmentRequest$ = [3, n0, _CKER,
|
|
787
|
+
0,
|
|
788
|
+
[_n, _kKI, _d, _t, _cTl],
|
|
789
|
+
[0, 0, 0, 128 | 0, [0, 4]], 2
|
|
790
|
+
];
|
|
791
|
+
var CreateKxEnvironmentResponse$ = [3, n0, _CKERr,
|
|
792
|
+
0,
|
|
793
|
+
[_n, _st, _eI, _d, _eA, _kKI, _cTre],
|
|
794
|
+
[0, 0, 0, 0, 0, 0, 4]
|
|
795
|
+
];
|
|
796
|
+
var CreateKxScalingGroupRequest$ = [3, n0, _CKSGR,
|
|
797
|
+
0,
|
|
798
|
+
[_eI, _sGN, _hT, _aZI, _cTl, _t],
|
|
799
|
+
[[0, 1], 0, 0, 0, [0, 4], 128 | 0], 4
|
|
800
|
+
];
|
|
801
|
+
var CreateKxScalingGroupResponse$ = [3, n0, _CKSGRr,
|
|
802
|
+
0,
|
|
803
|
+
[_eI, _sGN, _hT, _aZI, _st, _lMT, _cTr],
|
|
804
|
+
[0, 0, 0, 0, 0, 4, 4]
|
|
805
|
+
];
|
|
806
|
+
var CreateKxUserRequest$ = [3, n0, _CKUR,
|
|
807
|
+
0,
|
|
808
|
+
[_eI, _uN, _iR, _t, _cTl],
|
|
809
|
+
[[0, 1], 0, 0, 128 | 0, [0, 4]], 3
|
|
810
|
+
];
|
|
811
|
+
var CreateKxUserResponse$ = [3, n0, _CKURr,
|
|
812
|
+
0,
|
|
813
|
+
[_uN, _uA, _eI, _iR],
|
|
814
|
+
[0, 0, 0, 0]
|
|
815
|
+
];
|
|
816
|
+
var CreateKxVolumeRequest$ = [3, n0, _CKVR,
|
|
817
|
+
0,
|
|
818
|
+
[_eI, _vT, _vN, _aM, _aZIv, _cTl, _d, _nCa, _t],
|
|
819
|
+
[[0, 1], 0, 0, 0, 64 | 0, [0, 4], 0, () => KxNAS1Configuration$, 128 | 0], 5
|
|
820
|
+
];
|
|
821
|
+
var CreateKxVolumeResponse$ = [3, n0, _CKVRr,
|
|
822
|
+
0,
|
|
823
|
+
[_eI, _vN, _vT, _vA, _nCa, _st, _sR, _aM, _d, _aZIv, _cTr],
|
|
824
|
+
[0, 0, 0, 0, () => KxNAS1Configuration$, 0, 0, 0, 0, 64 | 0, 4]
|
|
825
|
+
];
|
|
826
|
+
var CustomDNSServer$ = [3, n0, _CDNSS,
|
|
827
|
+
0,
|
|
828
|
+
[_cDNSSN, _cDNSSIP],
|
|
829
|
+
[0, 0], 2
|
|
830
|
+
];
|
|
831
|
+
var DeleteEnvironmentRequest$ = [3, n0, _DER,
|
|
832
|
+
0,
|
|
833
|
+
[_eI],
|
|
834
|
+
[[0, 1]], 1
|
|
835
|
+
];
|
|
836
|
+
var DeleteEnvironmentResponse$ = [3, n0, _DERe,
|
|
837
|
+
0,
|
|
838
|
+
[],
|
|
839
|
+
[]
|
|
840
|
+
];
|
|
841
|
+
var DeleteKxClusterNodeRequest$ = [3, n0, _DKCNR,
|
|
842
|
+
0,
|
|
843
|
+
[_eI, _cN, _nI],
|
|
844
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
845
|
+
];
|
|
846
|
+
var DeleteKxClusterNodeResponse$ = [3, n0, _DKCNRe,
|
|
847
|
+
0,
|
|
848
|
+
[],
|
|
849
|
+
[]
|
|
850
|
+
];
|
|
851
|
+
var DeleteKxClusterRequest$ = [3, n0, _DKCR,
|
|
852
|
+
0,
|
|
853
|
+
[_eI, _cN, _cTl],
|
|
854
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
|
|
855
|
+
];
|
|
856
|
+
var DeleteKxClusterResponse$ = [3, n0, _DKCRe,
|
|
857
|
+
0,
|
|
858
|
+
[],
|
|
859
|
+
[]
|
|
860
|
+
];
|
|
861
|
+
var DeleteKxDatabaseRequest$ = [3, n0, _DKDR,
|
|
862
|
+
0,
|
|
863
|
+
[_eI, _dN, _cTl],
|
|
864
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
|
|
865
|
+
];
|
|
866
|
+
var DeleteKxDatabaseResponse$ = [3, n0, _DKDRe,
|
|
867
|
+
0,
|
|
868
|
+
[],
|
|
869
|
+
[]
|
|
870
|
+
];
|
|
871
|
+
var DeleteKxDataviewRequest$ = [3, n0, _DKDRel,
|
|
872
|
+
0,
|
|
873
|
+
[_eI, _dN, _dNa, _cTl],
|
|
874
|
+
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 3
|
|
875
|
+
];
|
|
876
|
+
var DeleteKxDataviewResponse$ = [3, n0, _DKDRele,
|
|
877
|
+
0,
|
|
878
|
+
[],
|
|
879
|
+
[]
|
|
880
|
+
];
|
|
881
|
+
var DeleteKxEnvironmentRequest$ = [3, n0, _DKER,
|
|
882
|
+
0,
|
|
883
|
+
[_eI, _cTl],
|
|
884
|
+
[[0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 1
|
|
885
|
+
];
|
|
886
|
+
var DeleteKxEnvironmentResponse$ = [3, n0, _DKERe,
|
|
887
|
+
0,
|
|
888
|
+
[],
|
|
889
|
+
[]
|
|
890
|
+
];
|
|
891
|
+
var DeleteKxScalingGroupRequest$ = [3, n0, _DKSGR,
|
|
892
|
+
0,
|
|
893
|
+
[_eI, _sGN, _cTl],
|
|
894
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
|
|
895
|
+
];
|
|
896
|
+
var DeleteKxScalingGroupResponse$ = [3, n0, _DKSGRe,
|
|
897
|
+
0,
|
|
898
|
+
[],
|
|
899
|
+
[]
|
|
900
|
+
];
|
|
901
|
+
var DeleteKxUserRequest$ = [3, n0, _DKUR,
|
|
902
|
+
0,
|
|
903
|
+
[_uN, _eI, _cTl],
|
|
904
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
|
|
905
|
+
];
|
|
906
|
+
var DeleteKxUserResponse$ = [3, n0, _DKURe,
|
|
907
|
+
0,
|
|
908
|
+
[],
|
|
909
|
+
[]
|
|
910
|
+
];
|
|
911
|
+
var DeleteKxVolumeRequest$ = [3, n0, _DKVR,
|
|
912
|
+
0,
|
|
913
|
+
[_eI, _vN, _cTl],
|
|
914
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
|
|
915
|
+
];
|
|
916
|
+
var DeleteKxVolumeResponse$ = [3, n0, _DKVRe,
|
|
917
|
+
0,
|
|
918
|
+
[],
|
|
919
|
+
[]
|
|
920
|
+
];
|
|
921
|
+
var Environment$ = [3, n0, _E,
|
|
922
|
+
0,
|
|
923
|
+
[_n, _eI, _aAI, _st, _eU, _d, _eA, _sMSDU, _kKI, _dSAI, _fM, _fP],
|
|
924
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => FederationParameters$]
|
|
925
|
+
];
|
|
926
|
+
var ErrorInfo$ = [3, n0, _EIr,
|
|
927
|
+
0,
|
|
928
|
+
[_eM, _eT],
|
|
929
|
+
[0, 0]
|
|
930
|
+
];
|
|
931
|
+
var FederationParameters$ = [3, n0, _FP,
|
|
932
|
+
0,
|
|
933
|
+
[_sMD, _sMURL, _aCBURL, _fURN, _fPN, _aMt],
|
|
934
|
+
[0, 0, 0, 0, 0, 128 | 0]
|
|
935
|
+
];
|
|
936
|
+
var GetEnvironmentRequest$ = [3, n0, _GER,
|
|
937
|
+
0,
|
|
938
|
+
[_eI],
|
|
939
|
+
[[0, 1]], 1
|
|
940
|
+
];
|
|
941
|
+
var GetEnvironmentResponse$ = [3, n0, _GERe,
|
|
942
|
+
0,
|
|
943
|
+
[_en],
|
|
944
|
+
[() => Environment$]
|
|
945
|
+
];
|
|
946
|
+
var GetKxChangesetRequest$ = [3, n0, _GKCR,
|
|
947
|
+
0,
|
|
948
|
+
[_eI, _dN, _cI],
|
|
949
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
950
|
+
];
|
|
951
|
+
var GetKxChangesetResponse$ = [3, n0, _GKCRe,
|
|
952
|
+
0,
|
|
953
|
+
[_cI, _dN, _eI, _cR, _cTr, _aFT, _lMT, _st, _eIr],
|
|
954
|
+
[0, 0, 0, () => ChangeRequests, 4, 4, 4, 0, () => ErrorInfo$]
|
|
955
|
+
];
|
|
956
|
+
var GetKxClusterRequest$ = [3, n0, _GKCRet,
|
|
957
|
+
0,
|
|
958
|
+
[_eI, _cN],
|
|
959
|
+
[[0, 1], [0, 1]], 2
|
|
960
|
+
];
|
|
961
|
+
var GetKxClusterResponse$ = [3, n0, _GKCRetx,
|
|
962
|
+
0,
|
|
963
|
+
[_st, _sR, _cN, _cTlu, _tLC, _v, _da, _cSC, _aSC, _cD, _cC, _rL, _vC, _iS, _cLA, _co, _eR, _lMT, _sSC, _aM, _aZI, _cTr, _sGC],
|
|
964
|
+
[0, 0, 0, 0, () => TickerplantLogConfiguration$, () => Volumes, () => KxDatabaseConfigurations, () => KxCacheStorageConfigurations, () => AutoScalingConfiguration$, 0, () => CapacityConfiguration$, 0, () => VpcConfiguration$, 0, () => KxCommandLineArguments, () => CodeConfiguration$, 0, 4, () => KxSavedownStorageConfiguration$, 0, 0, 4, () => KxScalingGroupConfiguration$]
|
|
965
|
+
];
|
|
966
|
+
var GetKxConnectionStringRequest$ = [3, n0, _GKCSR,
|
|
967
|
+
0,
|
|
968
|
+
[_uA, _eI, _cN],
|
|
969
|
+
[[0, { [_hQ]: _uA }], [0, 1], [0, { [_hQ]: _cN }]], 3
|
|
970
|
+
];
|
|
971
|
+
var GetKxConnectionStringResponse$ = [3, n0, _GKCSRe,
|
|
972
|
+
0,
|
|
973
|
+
[_sCS],
|
|
974
|
+
[[() => SignedKxConnectionString, 0]]
|
|
975
|
+
];
|
|
976
|
+
var GetKxDatabaseRequest$ = [3, n0, _GKDR,
|
|
977
|
+
0,
|
|
978
|
+
[_eI, _dN],
|
|
979
|
+
[[0, 1], [0, 1]], 2
|
|
980
|
+
];
|
|
981
|
+
var GetKxDatabaseResponse$ = [3, n0, _GKDRe,
|
|
982
|
+
0,
|
|
983
|
+
[_dN, _dA, _eI, _d, _cTr, _lMT, _lCCI, _nB, _nCu, _nF],
|
|
984
|
+
[0, 0, 0, 0, 4, 4, 0, 1, 1, 1]
|
|
985
|
+
];
|
|
986
|
+
var GetKxDataviewRequest$ = [3, n0, _GKDRet,
|
|
987
|
+
0,
|
|
988
|
+
[_eI, _dN, _dNa],
|
|
989
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
990
|
+
];
|
|
991
|
+
var GetKxDataviewResponse$ = [3, n0, _GKDRetx,
|
|
992
|
+
0,
|
|
993
|
+
[_dN, _dNa, _aM, _aZI, _cI, _sC, _aV, _d, _aU, _rW, _eI, _cTr, _lMT, _st, _sR],
|
|
994
|
+
[0, 0, 0, 0, 0, () => KxDataviewSegmentConfigurationList, () => KxDataviewActiveVersionList, 0, 2, 2, 0, 4, 4, 0, 0]
|
|
995
|
+
];
|
|
996
|
+
var GetKxEnvironmentRequest$ = [3, n0, _GKER,
|
|
997
|
+
0,
|
|
998
|
+
[_eI],
|
|
999
|
+
[[0, 1]], 1
|
|
1000
|
+
];
|
|
1001
|
+
var GetKxEnvironmentResponse$ = [3, n0, _GKERe,
|
|
1002
|
+
0,
|
|
1003
|
+
[_n, _eI, _aAI, _st, _tS, _dS, _eM, _d, _eA, _kKI, _dSAI, _tGC, _cDNSC, _cTre, _uT, _aZIv, _cAA],
|
|
1004
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => TransitGatewayConfiguration$, () => CustomDNSConfiguration, 4, 4, 64 | 0, 0]
|
|
1005
|
+
];
|
|
1006
|
+
var GetKxScalingGroupRequest$ = [3, n0, _GKSGR,
|
|
1007
|
+
0,
|
|
1008
|
+
[_eI, _sGN],
|
|
1009
|
+
[[0, 1], [0, 1]], 2
|
|
1010
|
+
];
|
|
1011
|
+
var GetKxScalingGroupResponse$ = [3, n0, _GKSGRe,
|
|
1012
|
+
0,
|
|
1013
|
+
[_sGN, _sGA, _hT, _cl, _aZI, _st, _sR, _lMT, _cTr],
|
|
1014
|
+
[0, 0, 0, 64 | 0, 0, 0, 0, 4, 4]
|
|
1015
|
+
];
|
|
1016
|
+
var GetKxUserRequest$ = [3, n0, _GKUR,
|
|
1017
|
+
0,
|
|
1018
|
+
[_uN, _eI],
|
|
1019
|
+
[[0, 1], [0, 1]], 2
|
|
1020
|
+
];
|
|
1021
|
+
var GetKxUserResponse$ = [3, n0, _GKURe,
|
|
1022
|
+
0,
|
|
1023
|
+
[_uN, _uA, _eI, _iR],
|
|
1024
|
+
[0, 0, 0, 0]
|
|
1025
|
+
];
|
|
1026
|
+
var GetKxVolumeRequest$ = [3, n0, _GKVR,
|
|
1027
|
+
0,
|
|
1028
|
+
[_eI, _vN],
|
|
1029
|
+
[[0, 1], [0, 1]], 2
|
|
1030
|
+
];
|
|
1031
|
+
var GetKxVolumeResponse$ = [3, n0, _GKVRe,
|
|
1032
|
+
0,
|
|
1033
|
+
[_eI, _vN, _vT, _vA, _nCa, _st, _sR, _cTr, _d, _aM, _aZIv, _lMT, _aC],
|
|
1034
|
+
[0, 0, 0, 0, () => KxNAS1Configuration$, 0, 0, 4, 0, 0, 64 | 0, 4, () => KxAttachedClusters]
|
|
1035
|
+
];
|
|
1036
|
+
var IcmpTypeCode$ = [3, n0, _ITC,
|
|
1037
|
+
0,
|
|
1038
|
+
[_ty, _co],
|
|
1039
|
+
[1, 1], 2
|
|
1040
|
+
];
|
|
1041
|
+
var KxAttachedCluster$ = [3, n0, _KAC,
|
|
1042
|
+
0,
|
|
1043
|
+
[_cN, _cTlu, _cS],
|
|
1044
|
+
[0, 0, 0]
|
|
1045
|
+
];
|
|
1046
|
+
var KxCacheStorageConfiguration$ = [3, n0, _KCSC,
|
|
1047
|
+
0,
|
|
1048
|
+
[_ty, _si],
|
|
1049
|
+
[0, 1], 2
|
|
1050
|
+
];
|
|
1051
|
+
var KxChangesetListEntry$ = [3, n0, _KCLE,
|
|
1052
|
+
0,
|
|
1053
|
+
[_cI, _cTr, _aFT, _lMT, _st],
|
|
1054
|
+
[0, 4, 4, 4, 0]
|
|
1055
|
+
];
|
|
1056
|
+
var KxCluster$ = [3, n0, _KC,
|
|
1057
|
+
0,
|
|
1058
|
+
[_st, _sR, _cN, _cTlu, _cD, _rL, _v, _iS, _eR, _aM, _aZI, _lMT, _cTr],
|
|
1059
|
+
[0, 0, 0, 0, 0, 0, () => Volumes, 0, 0, 0, 0, 4, 4]
|
|
1060
|
+
];
|
|
1061
|
+
var KxClusterCodeDeploymentConfiguration$ = [3, n0, _KCCDC,
|
|
1062
|
+
0,
|
|
1063
|
+
[_dSe],
|
|
1064
|
+
[0], 1
|
|
1065
|
+
];
|
|
1066
|
+
var KxCommandLineArgument$ = [3, n0, _KCLA,
|
|
1067
|
+
0,
|
|
1068
|
+
[_k, _va],
|
|
1069
|
+
[0, 0]
|
|
1070
|
+
];
|
|
1071
|
+
var KxDatabaseCacheConfiguration$ = [3, n0, _KDCC,
|
|
1072
|
+
0,
|
|
1073
|
+
[_cTa, _dPb, _dNa],
|
|
1074
|
+
[0, 64 | 0, 0], 2
|
|
1075
|
+
];
|
|
1076
|
+
var KxDatabaseConfiguration$ = [3, n0, _KDC,
|
|
1077
|
+
0,
|
|
1078
|
+
[_dN, _cCa, _cI, _dNa, _dC],
|
|
1079
|
+
[0, () => KxDatabaseCacheConfigurations, 0, 0, () => KxDataviewConfiguration$], 1
|
|
1080
|
+
];
|
|
1081
|
+
var KxDatabaseListEntry$ = [3, n0, _KDLE,
|
|
1082
|
+
0,
|
|
1083
|
+
[_dN, _cTr, _lMT],
|
|
1084
|
+
[0, 4, 4]
|
|
1085
|
+
];
|
|
1086
|
+
var KxDataviewActiveVersion$ = [3, n0, _KDAV,
|
|
1087
|
+
0,
|
|
1088
|
+
[_cI, _sC, _aC, _cTr, _vI],
|
|
1089
|
+
[0, () => KxDataviewSegmentConfigurationList, 64 | 0, 4, 0]
|
|
1090
|
+
];
|
|
1091
|
+
var KxDataviewConfiguration$ = [3, n0, _KDCx,
|
|
1092
|
+
0,
|
|
1093
|
+
[_dNa, _dVI, _cI, _sC],
|
|
1094
|
+
[0, 0, 0, () => KxDataviewSegmentConfigurationList]
|
|
1095
|
+
];
|
|
1096
|
+
var KxDataviewListEntry$ = [3, n0, _KDLEx,
|
|
1097
|
+
0,
|
|
1098
|
+
[_eI, _dN, _dNa, _aM, _aZI, _cI, _sC, _aV, _st, _d, _aU, _rW, _cTr, _lMT, _sR],
|
|
1099
|
+
[0, 0, 0, 0, 0, 0, () => KxDataviewSegmentConfigurationList, () => KxDataviewActiveVersionList, 0, 0, 2, 2, 4, 4, 0]
|
|
1100
|
+
];
|
|
1101
|
+
var KxDataviewSegmentConfiguration$ = [3, n0, _KDSC,
|
|
1102
|
+
0,
|
|
1103
|
+
[_dPb, _vN, _oD],
|
|
1104
|
+
[64 | 0, 0, 2], 2
|
|
1105
|
+
];
|
|
1106
|
+
var KxDeploymentConfiguration$ = [3, n0, _KDCxe,
|
|
1107
|
+
0,
|
|
1108
|
+
[_dSe],
|
|
1109
|
+
[0], 1
|
|
1110
|
+
];
|
|
1111
|
+
var KxEnvironment$ = [3, n0, _KE,
|
|
1112
|
+
0,
|
|
1113
|
+
[_n, _eI, _aAI, _st, _tS, _dS, _eM, _d, _eA, _kKI, _dSAI, _tGC, _cDNSC, _cTre, _uT, _aZIv, _cAA],
|
|
1114
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => TransitGatewayConfiguration$, () => CustomDNSConfiguration, 4, 4, 64 | 0, 0]
|
|
1115
|
+
];
|
|
1116
|
+
var KxNAS1Configuration$ = [3, n0, _KNASC,
|
|
1117
|
+
0,
|
|
1118
|
+
[_ty, _si],
|
|
1119
|
+
[0, 1]
|
|
1120
|
+
];
|
|
1121
|
+
var KxNode$ = [3, n0, _KN,
|
|
1122
|
+
0,
|
|
1123
|
+
[_nI, _aZI, _lT, _st],
|
|
1124
|
+
[0, 0, 4, 0]
|
|
1125
|
+
];
|
|
1126
|
+
var KxSavedownStorageConfiguration$ = [3, n0, _KSSC,
|
|
1127
|
+
0,
|
|
1128
|
+
[_ty, _si, _vN],
|
|
1129
|
+
[0, 1, 0]
|
|
1130
|
+
];
|
|
1131
|
+
var KxScalingGroup$ = [3, n0, _KSG,
|
|
1132
|
+
0,
|
|
1133
|
+
[_sGN, _hT, _cl, _aZI, _st, _sR, _lMT, _cTr],
|
|
1134
|
+
[0, 0, 64 | 0, 0, 0, 0, 4, 4]
|
|
1135
|
+
];
|
|
1136
|
+
var KxScalingGroupConfiguration$ = [3, n0, _KSGC,
|
|
1137
|
+
0,
|
|
1138
|
+
[_sGN, _mR, _nC, _mL, _cp],
|
|
1139
|
+
[0, 1, 1, 1, 1], 3
|
|
1140
|
+
];
|
|
1141
|
+
var KxUser$ = [3, n0, _KU,
|
|
1142
|
+
0,
|
|
1143
|
+
[_uA, _uN, _iR, _cTrea, _uT],
|
|
1144
|
+
[0, 0, 0, 4, 4]
|
|
1145
|
+
];
|
|
1146
|
+
var KxVolume$ = [3, n0, _KV,
|
|
1147
|
+
0,
|
|
1148
|
+
[_vN, _vT, _st, _d, _sR, _aM, _aZIv, _cTr, _lMT],
|
|
1149
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 4, 4]
|
|
1150
|
+
];
|
|
1151
|
+
var ListEnvironmentsRequest$ = [3, n0, _LER,
|
|
1152
|
+
0,
|
|
1153
|
+
[_nTe, _mRa],
|
|
1154
|
+
[[0, { [_hQ]: _nTe }], [1, { [_hQ]: _mRa }]]
|
|
1155
|
+
];
|
|
1156
|
+
var ListEnvironmentsResponse$ = [3, n0, _LERi,
|
|
1157
|
+
0,
|
|
1158
|
+
[_env, _nTe],
|
|
1159
|
+
[() => EnvironmentList, 0]
|
|
1160
|
+
];
|
|
1161
|
+
var ListKxChangesetsRequest$ = [3, n0, _LKCR,
|
|
1162
|
+
0,
|
|
1163
|
+
[_eI, _dN, _nTe, _mRa],
|
|
1164
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mRa }]], 2
|
|
1165
|
+
];
|
|
1166
|
+
var ListKxChangesetsResponse$ = [3, n0, _LKCRi,
|
|
1167
|
+
0,
|
|
1168
|
+
[_kC, _nTe],
|
|
1169
|
+
[() => KxChangesets, 0]
|
|
1170
|
+
];
|
|
1171
|
+
var ListKxClusterNodesRequest$ = [3, n0, _LKCNR,
|
|
1172
|
+
0,
|
|
1173
|
+
[_eI, _cN, _nTe, _mRa],
|
|
1174
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mRa }]], 2
|
|
1175
|
+
];
|
|
1176
|
+
var ListKxClusterNodesResponse$ = [3, n0, _LKCNRi,
|
|
1177
|
+
0,
|
|
1178
|
+
[_no, _nTe],
|
|
1179
|
+
[() => KxNodeSummaries, 0]
|
|
1180
|
+
];
|
|
1181
|
+
var ListKxClustersRequest$ = [3, n0, _LKCRis,
|
|
1182
|
+
0,
|
|
1183
|
+
[_eI, _cTlu, _mRa, _nTe],
|
|
1184
|
+
[[0, 1], [0, { [_hQ]: _cTlu }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nTe }]], 1
|
|
1185
|
+
];
|
|
1186
|
+
var ListKxClustersResponse$ = [3, n0, _LKCRist,
|
|
1187
|
+
0,
|
|
1188
|
+
[_kCS, _nTe],
|
|
1189
|
+
[() => KxClusters, 0]
|
|
1190
|
+
];
|
|
1191
|
+
var ListKxDatabasesRequest$ = [3, n0, _LKDR,
|
|
1192
|
+
0,
|
|
1193
|
+
[_eI, _nTe, _mRa],
|
|
1194
|
+
[[0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mRa }]], 1
|
|
1195
|
+
];
|
|
1196
|
+
var ListKxDatabasesResponse$ = [3, n0, _LKDRi,
|
|
1197
|
+
0,
|
|
1198
|
+
[_kD, _nTe],
|
|
1199
|
+
[() => KxDatabases, 0]
|
|
1200
|
+
];
|
|
1201
|
+
var ListKxDataviewsRequest$ = [3, n0, _LKDRis,
|
|
1202
|
+
0,
|
|
1203
|
+
[_eI, _dN, _nTe, _mRa],
|
|
1204
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mRa }]], 2
|
|
1205
|
+
];
|
|
1206
|
+
var ListKxDataviewsResponse$ = [3, n0, _LKDRist,
|
|
1207
|
+
0,
|
|
1208
|
+
[_kDx, _nTe],
|
|
1209
|
+
[() => KxDataviews, 0]
|
|
1210
|
+
];
|
|
1211
|
+
var ListKxEnvironmentsRequest$ = [3, n0, _LKER,
|
|
1212
|
+
0,
|
|
1213
|
+
[_nTe, _mRa],
|
|
1214
|
+
[[0, { [_hQ]: _nTe }], [1, { [_hQ]: _mRa }]]
|
|
1215
|
+
];
|
|
1216
|
+
var ListKxEnvironmentsResponse$ = [3, n0, _LKERi,
|
|
1217
|
+
0,
|
|
1218
|
+
[_env, _nTe],
|
|
1219
|
+
[() => KxEnvironmentList, 0]
|
|
1220
|
+
];
|
|
1221
|
+
var ListKxScalingGroupsRequest$ = [3, n0, _LKSGR,
|
|
1222
|
+
0,
|
|
1223
|
+
[_eI, _mRa, _nTe],
|
|
1224
|
+
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nTe }]], 1
|
|
1225
|
+
];
|
|
1226
|
+
var ListKxScalingGroupsResponse$ = [3, n0, _LKSGRi,
|
|
1227
|
+
0,
|
|
1228
|
+
[_sG, _nTe],
|
|
1229
|
+
[() => KxScalingGroupList, 0]
|
|
1230
|
+
];
|
|
1231
|
+
var ListKxUsersRequest$ = [3, n0, _LKUR,
|
|
1232
|
+
0,
|
|
1233
|
+
[_eI, _nTe, _mRa],
|
|
1234
|
+
[[0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mRa }]], 1
|
|
1235
|
+
];
|
|
1236
|
+
var ListKxUsersResponse$ = [3, n0, _LKURi,
|
|
1237
|
+
0,
|
|
1238
|
+
[_u, _nTe],
|
|
1239
|
+
[() => KxUserList, 0]
|
|
1240
|
+
];
|
|
1241
|
+
var ListKxVolumesRequest$ = [3, n0, _LKVR,
|
|
1242
|
+
0,
|
|
1243
|
+
[_eI, _mRa, _nTe, _vT],
|
|
1244
|
+
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nTe }], [0, { [_hQ]: _vT }]], 1
|
|
1245
|
+
];
|
|
1246
|
+
var ListKxVolumesResponse$ = [3, n0, _LKVRi,
|
|
1247
|
+
0,
|
|
1248
|
+
[_kVS, _nTe],
|
|
1249
|
+
[() => KxVolumes, 0]
|
|
1250
|
+
];
|
|
1251
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1252
|
+
0,
|
|
1253
|
+
[_rA],
|
|
1254
|
+
[[0, 1]], 1
|
|
1255
|
+
];
|
|
1256
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1257
|
+
0,
|
|
1258
|
+
[_t],
|
|
1259
|
+
[128 | 0]
|
|
1260
|
+
];
|
|
1261
|
+
var NetworkACLEntry$ = [3, n0, _NACLE,
|
|
1262
|
+
0,
|
|
1263
|
+
[_rN, _p, _rAu, _cB, _pR, _iTC],
|
|
1264
|
+
[1, 0, 0, 0, () => PortRange$, () => IcmpTypeCode$], 4
|
|
1265
|
+
];
|
|
1266
|
+
var PortRange$ = [3, n0, _PR,
|
|
1267
|
+
0,
|
|
1268
|
+
[_f, _to],
|
|
1269
|
+
[1, 1], 2
|
|
1270
|
+
];
|
|
1271
|
+
var SuperuserParameters$ = [3, n0, _SP,
|
|
1272
|
+
0,
|
|
1273
|
+
[_eAm, _fN, _lN],
|
|
1274
|
+
[[() => EmailId, 0], 0, 0], 3
|
|
1275
|
+
];
|
|
1276
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1277
|
+
0,
|
|
1278
|
+
[_rA, _t],
|
|
1279
|
+
[[0, 1], 128 | 0], 2
|
|
1280
|
+
];
|
|
1281
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1282
|
+
0,
|
|
1283
|
+
[],
|
|
1284
|
+
[]
|
|
1285
|
+
];
|
|
1286
|
+
var TickerplantLogConfiguration$ = [3, n0, _TLC,
|
|
1287
|
+
0,
|
|
1288
|
+
[_tLV],
|
|
1289
|
+
[64 | 0]
|
|
1290
|
+
];
|
|
1291
|
+
var TransitGatewayConfiguration$ = [3, n0, _TGC,
|
|
1292
|
+
0,
|
|
1293
|
+
[_tGID, _rCIDRS, _aNAC],
|
|
1294
|
+
[0, 0, () => NetworkACLConfiguration], 2
|
|
1295
|
+
];
|
|
1296
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1297
|
+
0,
|
|
1298
|
+
[_rA, _tK],
|
|
1299
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1300
|
+
];
|
|
1301
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1302
|
+
0,
|
|
1303
|
+
[],
|
|
1304
|
+
[]
|
|
1305
|
+
];
|
|
1306
|
+
var UpdateEnvironmentRequest$ = [3, n0, _UER,
|
|
1307
|
+
0,
|
|
1308
|
+
[_eI, _n, _d, _fM, _fP],
|
|
1309
|
+
[[0, 1], 0, 0, 0, () => FederationParameters$], 1
|
|
1310
|
+
];
|
|
1311
|
+
var UpdateEnvironmentResponse$ = [3, n0, _UERp,
|
|
1312
|
+
0,
|
|
1313
|
+
[_en],
|
|
1314
|
+
[() => Environment$]
|
|
1315
|
+
];
|
|
1316
|
+
var UpdateKxClusterCodeConfigurationRequest$ = [3, n0, _UKCCCR,
|
|
1317
|
+
0,
|
|
1318
|
+
[_eI, _cN, _co, _cTl, _iS, _cLA, _dCe],
|
|
1319
|
+
[[0, 1], [0, 1], () => CodeConfiguration$, [0, 4], 0, () => KxCommandLineArguments, () => KxClusterCodeDeploymentConfiguration$], 3
|
|
1320
|
+
];
|
|
1321
|
+
var UpdateKxClusterCodeConfigurationResponse$ = [3, n0, _UKCCCRp,
|
|
1322
|
+
0,
|
|
1323
|
+
[],
|
|
1324
|
+
[]
|
|
1325
|
+
];
|
|
1326
|
+
var UpdateKxClusterDatabasesRequest$ = [3, n0, _UKCDR,
|
|
1327
|
+
0,
|
|
1328
|
+
[_eI, _cN, _da, _cTl, _dCe],
|
|
1329
|
+
[[0, 1], [0, 1], () => KxDatabaseConfigurations, [0, 4], () => KxDeploymentConfiguration$], 3
|
|
1330
|
+
];
|
|
1331
|
+
var UpdateKxClusterDatabasesResponse$ = [3, n0, _UKCDRp,
|
|
1332
|
+
0,
|
|
1333
|
+
[],
|
|
1334
|
+
[]
|
|
1335
|
+
];
|
|
1336
|
+
var UpdateKxDatabaseRequest$ = [3, n0, _UKDR,
|
|
1337
|
+
0,
|
|
1338
|
+
[_eI, _dN, _d, _cTl],
|
|
1339
|
+
[[0, 1], [0, 1], 0, [0, 4]], 2
|
|
1340
|
+
];
|
|
1341
|
+
var UpdateKxDatabaseResponse$ = [3, n0, _UKDRp,
|
|
1342
|
+
0,
|
|
1343
|
+
[_dN, _eI, _d, _lMT],
|
|
1344
|
+
[0, 0, 0, 4]
|
|
1345
|
+
];
|
|
1346
|
+
var UpdateKxDataviewRequest$ = [3, n0, _UKDRpd,
|
|
1347
|
+
0,
|
|
1348
|
+
[_eI, _dN, _dNa, _d, _cI, _sC, _cTl],
|
|
1349
|
+
[[0, 1], [0, 1], [0, 1], 0, 0, () => KxDataviewSegmentConfigurationList, [0, 4]], 3
|
|
1350
|
+
];
|
|
1351
|
+
var UpdateKxDataviewResponse$ = [3, n0, _UKDRpda,
|
|
1352
|
+
0,
|
|
1353
|
+
[_eI, _dN, _dNa, _aM, _aZI, _cI, _sC, _aV, _st, _aU, _rW, _d, _cTr, _lMT],
|
|
1354
|
+
[0, 0, 0, 0, 0, 0, () => KxDataviewSegmentConfigurationList, () => KxDataviewActiveVersionList, 0, 2, 2, 0, 4, 4]
|
|
1355
|
+
];
|
|
1356
|
+
var UpdateKxEnvironmentNetworkRequest$ = [3, n0, _UKENR,
|
|
1357
|
+
0,
|
|
1358
|
+
[_eI, _tGC, _cDNSC, _cTl],
|
|
1359
|
+
[[0, 1], () => TransitGatewayConfiguration$, () => CustomDNSConfiguration, [0, 4]], 1
|
|
1360
|
+
];
|
|
1361
|
+
var UpdateKxEnvironmentNetworkResponse$ = [3, n0, _UKENRp,
|
|
1362
|
+
0,
|
|
1363
|
+
[_n, _eI, _aAI, _st, _tS, _dS, _eM, _d, _eA, _kKI, _dSAI, _tGC, _cDNSC, _cTre, _uT, _aZIv],
|
|
1364
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => TransitGatewayConfiguration$, () => CustomDNSConfiguration, 4, 4, 64 | 0]
|
|
1365
|
+
];
|
|
1366
|
+
var UpdateKxEnvironmentRequest$ = [3, n0, _UKER,
|
|
1367
|
+
0,
|
|
1368
|
+
[_eI, _n, _d, _cTl],
|
|
1369
|
+
[[0, 1], 0, 0, [0, 4]], 1
|
|
1370
|
+
];
|
|
1371
|
+
var UpdateKxEnvironmentResponse$ = [3, n0, _UKERp,
|
|
1372
|
+
0,
|
|
1373
|
+
[_n, _eI, _aAI, _st, _tS, _dS, _eM, _d, _eA, _kKI, _dSAI, _tGC, _cDNSC, _cTre, _uT, _aZIv],
|
|
1374
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => TransitGatewayConfiguration$, () => CustomDNSConfiguration, 4, 4, 64 | 0]
|
|
1375
|
+
];
|
|
1376
|
+
var UpdateKxUserRequest$ = [3, n0, _UKUR,
|
|
1377
|
+
0,
|
|
1378
|
+
[_eI, _uN, _iR, _cTl],
|
|
1379
|
+
[[0, 1], [0, 1], 0, [0, 4]], 3
|
|
1380
|
+
];
|
|
1381
|
+
var UpdateKxUserResponse$ = [3, n0, _UKURp,
|
|
1382
|
+
0,
|
|
1383
|
+
[_uN, _uA, _eI, _iR],
|
|
1384
|
+
[0, 0, 0, 0]
|
|
1385
|
+
];
|
|
1386
|
+
var UpdateKxVolumeRequest$ = [3, n0, _UKVR,
|
|
1387
|
+
0,
|
|
1388
|
+
[_eI, _vN, _d, _cTl, _nCa],
|
|
1389
|
+
[[0, 1], [0, 1], 0, [0, 4], () => KxNAS1Configuration$], 2
|
|
1390
|
+
];
|
|
1391
|
+
var UpdateKxVolumeResponse$ = [3, n0, _UKVRp,
|
|
1392
|
+
0,
|
|
1393
|
+
[_eI, _vN, _vT, _vA, _nCa, _st, _d, _sR, _cTr, _aM, _aZIv, _lMT, _aC],
|
|
1394
|
+
[0, 0, 0, 0, () => KxNAS1Configuration$, 0, 0, 0, 4, 0, 64 | 0, 4, () => KxAttachedClusters]
|
|
1395
|
+
];
|
|
1396
|
+
var Volume$ = [3, n0, _V,
|
|
1397
|
+
0,
|
|
1398
|
+
[_vN, _vT],
|
|
1399
|
+
[0, 0]
|
|
1400
|
+
];
|
|
1401
|
+
var VpcConfiguration$ = [3, n0, _VC,
|
|
1402
|
+
0,
|
|
1403
|
+
[_vIp, _sGI, _sI, _iAT],
|
|
1404
|
+
[0, 64 | 0, 64 | 0, 0]
|
|
1405
|
+
];
|
|
1406
|
+
var ChangeRequests = [1, n0, _CRh,
|
|
1407
|
+
0, () => ChangeRequest$
|
|
1408
|
+
];
|
|
1409
|
+
var CustomDNSConfiguration = [1, n0, _CDNSC,
|
|
1410
|
+
0, () => CustomDNSServer$
|
|
1411
|
+
];
|
|
1412
|
+
var EnvironmentList = [1, n0, _EL,
|
|
1413
|
+
0, () => Environment$
|
|
1414
|
+
];
|
|
1415
|
+
var KxAttachedClusters = [1, n0, _KACx,
|
|
1416
|
+
0, () => KxAttachedCluster$
|
|
1417
|
+
];
|
|
1418
|
+
var KxCacheStorageConfigurations = [1, n0, _KCSCx,
|
|
1419
|
+
0, () => KxCacheStorageConfiguration$
|
|
1420
|
+
];
|
|
1421
|
+
var KxChangesets = [1, n0, _KCx,
|
|
1422
|
+
0, () => KxChangesetListEntry$
|
|
1423
|
+
];
|
|
1424
|
+
var KxClusters = [1, n0, _KCxl,
|
|
1425
|
+
0, () => KxCluster$
|
|
1426
|
+
];
|
|
1427
|
+
var KxCommandLineArguments = [1, n0, _KCLAx,
|
|
1428
|
+
0, () => KxCommandLineArgument$
|
|
1429
|
+
];
|
|
1430
|
+
var KxDatabaseCacheConfigurations = [1, n0, _KDCCx,
|
|
1431
|
+
0, () => KxDatabaseCacheConfiguration$
|
|
1432
|
+
];
|
|
1433
|
+
var KxDatabaseConfigurations = [1, n0, _KDCxa,
|
|
1434
|
+
0, () => KxDatabaseConfiguration$
|
|
1435
|
+
];
|
|
1436
|
+
var KxDatabases = [1, n0, _KD,
|
|
1437
|
+
0, () => KxDatabaseListEntry$
|
|
1438
|
+
];
|
|
1439
|
+
var KxDataviewActiveVersionList = [1, n0, _KDAVL,
|
|
1440
|
+
0, () => KxDataviewActiveVersion$
|
|
1441
|
+
];
|
|
1442
|
+
var KxDataviews = [1, n0, _KDx,
|
|
1443
|
+
0, () => KxDataviewListEntry$
|
|
1444
|
+
];
|
|
1445
|
+
var KxDataviewSegmentConfigurationList = [1, n0, _KDSCL,
|
|
1446
|
+
0, () => KxDataviewSegmentConfiguration$
|
|
1447
|
+
];
|
|
1448
|
+
var KxEnvironmentList = [1, n0, _KEL,
|
|
1449
|
+
0, () => KxEnvironment$
|
|
1450
|
+
];
|
|
1451
|
+
var KxNodeSummaries = [1, n0, _KNS,
|
|
1452
|
+
0, () => KxNode$
|
|
1453
|
+
];
|
|
1454
|
+
var KxScalingGroupList = [1, n0, _KSGL,
|
|
1455
|
+
0, () => KxScalingGroup$
|
|
1456
|
+
];
|
|
1457
|
+
var KxUserList = [1, n0, _KUL,
|
|
1458
|
+
0, () => KxUser$
|
|
1459
|
+
];
|
|
1460
|
+
var KxVolumes = [1, n0, _KVx,
|
|
1461
|
+
0, () => KxVolume$
|
|
1462
|
+
];
|
|
1463
|
+
var NetworkACLConfiguration = [1, n0, _NACLC,
|
|
1464
|
+
0, () => NetworkACLEntry$
|
|
1465
|
+
];
|
|
1466
|
+
var Volumes = [1, n0, _Vo,
|
|
1467
|
+
0, () => Volume$
|
|
1468
|
+
];
|
|
1469
|
+
var CreateEnvironment$ = [9, n0, _CEr,
|
|
1470
|
+
{ [_h]: ["POST", "/environment", 200] }, () => CreateEnvironmentRequest$, () => CreateEnvironmentResponse$
|
|
1471
|
+
];
|
|
1472
|
+
var CreateKxChangeset$ = [9, n0, _CKC,
|
|
1473
|
+
{ [_h]: ["POST", "/kx/environments/{environmentId}/databases/{databaseName}/changesets", 200] }, () => CreateKxChangesetRequest$, () => CreateKxChangesetResponse$
|
|
1474
|
+
];
|
|
1475
|
+
var CreateKxCluster$ = [9, n0, _CKCr,
|
|
1476
|
+
{ [_h]: ["POST", "/kx/environments/{environmentId}/clusters", 200] }, () => CreateKxClusterRequest$, () => CreateKxClusterResponse$
|
|
1477
|
+
];
|
|
1478
|
+
var CreateKxDatabase$ = [9, n0, _CKD,
|
|
1479
|
+
{ [_h]: ["POST", "/kx/environments/{environmentId}/databases", 200] }, () => CreateKxDatabaseRequest$, () => CreateKxDatabaseResponse$
|
|
1480
|
+
];
|
|
1481
|
+
var CreateKxDataview$ = [9, n0, _CKDr,
|
|
1482
|
+
{ [_h]: ["POST", "/kx/environments/{environmentId}/databases/{databaseName}/dataviews", 200] }, () => CreateKxDataviewRequest$, () => CreateKxDataviewResponse$
|
|
1483
|
+
];
|
|
1484
|
+
var CreateKxEnvironment$ = [9, n0, _CKE,
|
|
1485
|
+
{ [_h]: ["POST", "/kx/environments", 200] }, () => CreateKxEnvironmentRequest$, () => CreateKxEnvironmentResponse$
|
|
1486
|
+
];
|
|
1487
|
+
var CreateKxScalingGroup$ = [9, n0, _CKSG,
|
|
1488
|
+
{ [_h]: ["POST", "/kx/environments/{environmentId}/scalingGroups", 200] }, () => CreateKxScalingGroupRequest$, () => CreateKxScalingGroupResponse$
|
|
1489
|
+
];
|
|
1490
|
+
var CreateKxUser$ = [9, n0, _CKU,
|
|
1491
|
+
{ [_h]: ["POST", "/kx/environments/{environmentId}/users", 200] }, () => CreateKxUserRequest$, () => CreateKxUserResponse$
|
|
1492
|
+
];
|
|
1493
|
+
var CreateKxVolume$ = [9, n0, _CKV,
|
|
1494
|
+
{ [_h]: ["POST", "/kx/environments/{environmentId}/kxvolumes", 200] }, () => CreateKxVolumeRequest$, () => CreateKxVolumeResponse$
|
|
1495
|
+
];
|
|
1496
|
+
var DeleteEnvironment$ = [9, n0, _DE,
|
|
1497
|
+
{ [_h]: ["DELETE", "/environment/{environmentId}", 200] }, () => DeleteEnvironmentRequest$, () => DeleteEnvironmentResponse$
|
|
1498
|
+
];
|
|
1499
|
+
var DeleteKxCluster$ = [9, n0, _DKC,
|
|
1500
|
+
{ [_h]: ["DELETE", "/kx/environments/{environmentId}/clusters/{clusterName}", 200] }, () => DeleteKxClusterRequest$, () => DeleteKxClusterResponse$
|
|
1501
|
+
];
|
|
1502
|
+
var DeleteKxClusterNode$ = [9, n0, _DKCN,
|
|
1503
|
+
{ [_h]: ["DELETE", "/kx/environments/{environmentId}/clusters/{clusterName}/nodes/{nodeId}", 200] }, () => DeleteKxClusterNodeRequest$, () => DeleteKxClusterNodeResponse$
|
|
1504
|
+
];
|
|
1505
|
+
var DeleteKxDatabase$ = [9, n0, _DKD,
|
|
1506
|
+
{ [_h]: ["DELETE", "/kx/environments/{environmentId}/databases/{databaseName}", 200] }, () => DeleteKxDatabaseRequest$, () => DeleteKxDatabaseResponse$
|
|
1507
|
+
];
|
|
1508
|
+
var DeleteKxDataview$ = [9, n0, _DKDe,
|
|
1509
|
+
{ [_h]: ["DELETE", "/kx/environments/{environmentId}/databases/{databaseName}/dataviews/{dataviewName}", 200] }, () => DeleteKxDataviewRequest$, () => DeleteKxDataviewResponse$
|
|
1510
|
+
];
|
|
1511
|
+
var DeleteKxEnvironment$ = [9, n0, _DKE,
|
|
1512
|
+
{ [_h]: ["DELETE", "/kx/environments/{environmentId}", 200] }, () => DeleteKxEnvironmentRequest$, () => DeleteKxEnvironmentResponse$
|
|
1513
|
+
];
|
|
1514
|
+
var DeleteKxScalingGroup$ = [9, n0, _DKSG,
|
|
1515
|
+
{ [_h]: ["DELETE", "/kx/environments/{environmentId}/scalingGroups/{scalingGroupName}", 200] }, () => DeleteKxScalingGroupRequest$, () => DeleteKxScalingGroupResponse$
|
|
1516
|
+
];
|
|
1517
|
+
var DeleteKxUser$ = [9, n0, _DKU,
|
|
1518
|
+
{ [_h]: ["DELETE", "/kx/environments/{environmentId}/users/{userName}", 200] }, () => DeleteKxUserRequest$, () => DeleteKxUserResponse$
|
|
1519
|
+
];
|
|
1520
|
+
var DeleteKxVolume$ = [9, n0, _DKV,
|
|
1521
|
+
{ [_h]: ["DELETE", "/kx/environments/{environmentId}/kxvolumes/{volumeName}", 200] }, () => DeleteKxVolumeRequest$, () => DeleteKxVolumeResponse$
|
|
1522
|
+
];
|
|
1523
|
+
var GetEnvironment$ = [9, n0, _GE,
|
|
1524
|
+
{ [_h]: ["GET", "/environment/{environmentId}", 200] }, () => GetEnvironmentRequest$, () => GetEnvironmentResponse$
|
|
1525
|
+
];
|
|
1526
|
+
var GetKxChangeset$ = [9, n0, _GKC,
|
|
1527
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/databases/{databaseName}/changesets/{changesetId}", 200] }, () => GetKxChangesetRequest$, () => GetKxChangesetResponse$
|
|
1528
|
+
];
|
|
1529
|
+
var GetKxCluster$ = [9, n0, _GKCe,
|
|
1530
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/clusters/{clusterName}", 200] }, () => GetKxClusterRequest$, () => GetKxClusterResponse$
|
|
1531
|
+
];
|
|
1532
|
+
var GetKxConnectionString$ = [9, n0, _GKCS,
|
|
1533
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/connectionString", 200] }, () => GetKxConnectionStringRequest$, () => GetKxConnectionStringResponse$
|
|
1534
|
+
];
|
|
1535
|
+
var GetKxDatabase$ = [9, n0, _GKD,
|
|
1536
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/databases/{databaseName}", 200] }, () => GetKxDatabaseRequest$, () => GetKxDatabaseResponse$
|
|
1537
|
+
];
|
|
1538
|
+
var GetKxDataview$ = [9, n0, _GKDe,
|
|
1539
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/databases/{databaseName}/dataviews/{dataviewName}", 200] }, () => GetKxDataviewRequest$, () => GetKxDataviewResponse$
|
|
1540
|
+
];
|
|
1541
|
+
var GetKxEnvironment$ = [9, n0, _GKE,
|
|
1542
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}", 200] }, () => GetKxEnvironmentRequest$, () => GetKxEnvironmentResponse$
|
|
1543
|
+
];
|
|
1544
|
+
var GetKxScalingGroup$ = [9, n0, _GKSG,
|
|
1545
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/scalingGroups/{scalingGroupName}", 200] }, () => GetKxScalingGroupRequest$, () => GetKxScalingGroupResponse$
|
|
1546
|
+
];
|
|
1547
|
+
var GetKxUser$ = [9, n0, _GKU,
|
|
1548
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/users/{userName}", 200] }, () => GetKxUserRequest$, () => GetKxUserResponse$
|
|
1549
|
+
];
|
|
1550
|
+
var GetKxVolume$ = [9, n0, _GKV,
|
|
1551
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/kxvolumes/{volumeName}", 200] }, () => GetKxVolumeRequest$, () => GetKxVolumeResponse$
|
|
1552
|
+
];
|
|
1553
|
+
var ListEnvironments$ = [9, n0, _LE,
|
|
1554
|
+
{ [_h]: ["GET", "/environment", 200] }, () => ListEnvironmentsRequest$, () => ListEnvironmentsResponse$
|
|
1555
|
+
];
|
|
1556
|
+
var ListKxChangesets$ = [9, n0, _LKC,
|
|
1557
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/databases/{databaseName}/changesets", 200] }, () => ListKxChangesetsRequest$, () => ListKxChangesetsResponse$
|
|
1558
|
+
];
|
|
1559
|
+
var ListKxClusterNodes$ = [9, n0, _LKCN,
|
|
1560
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/clusters/{clusterName}/nodes", 200] }, () => ListKxClusterNodesRequest$, () => ListKxClusterNodesResponse$
|
|
1561
|
+
];
|
|
1562
|
+
var ListKxClusters$ = [9, n0, _LKCi,
|
|
1563
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/clusters", 200] }, () => ListKxClustersRequest$, () => ListKxClustersResponse$
|
|
1564
|
+
];
|
|
1565
|
+
var ListKxDatabases$ = [9, n0, _LKD,
|
|
1566
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/databases", 200] }, () => ListKxDatabasesRequest$, () => ListKxDatabasesResponse$
|
|
1567
|
+
];
|
|
1568
|
+
var ListKxDataviews$ = [9, n0, _LKDi,
|
|
1569
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/databases/{databaseName}/dataviews", 200] }, () => ListKxDataviewsRequest$, () => ListKxDataviewsResponse$
|
|
1570
|
+
];
|
|
1571
|
+
var ListKxEnvironments$ = [9, n0, _LKE,
|
|
1572
|
+
{ [_h]: ["GET", "/kx/environments", 200] }, () => ListKxEnvironmentsRequest$, () => ListKxEnvironmentsResponse$
|
|
1573
|
+
];
|
|
1574
|
+
var ListKxScalingGroups$ = [9, n0, _LKSG,
|
|
1575
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/scalingGroups", 200] }, () => ListKxScalingGroupsRequest$, () => ListKxScalingGroupsResponse$
|
|
1576
|
+
];
|
|
1577
|
+
var ListKxUsers$ = [9, n0, _LKU,
|
|
1578
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/users", 200] }, () => ListKxUsersRequest$, () => ListKxUsersResponse$
|
|
1579
|
+
];
|
|
1580
|
+
var ListKxVolumes$ = [9, n0, _LKV,
|
|
1581
|
+
{ [_h]: ["GET", "/kx/environments/{environmentId}/kxvolumes", 200] }, () => ListKxVolumesRequest$, () => ListKxVolumesResponse$
|
|
1582
|
+
];
|
|
1583
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1584
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1585
|
+
];
|
|
1586
|
+
var TagResource$ = [9, n0, _TR,
|
|
1587
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1588
|
+
];
|
|
1589
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1590
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1591
|
+
];
|
|
1592
|
+
var UpdateEnvironment$ = [9, n0, _UE,
|
|
1593
|
+
{ [_h]: ["PUT", "/environment/{environmentId}", 200] }, () => UpdateEnvironmentRequest$, () => UpdateEnvironmentResponse$
|
|
1594
|
+
];
|
|
1595
|
+
var UpdateKxClusterCodeConfiguration$ = [9, n0, _UKCCC,
|
|
1596
|
+
{ [_h]: ["PUT", "/kx/environments/{environmentId}/clusters/{clusterName}/configuration/code", 200] }, () => UpdateKxClusterCodeConfigurationRequest$, () => UpdateKxClusterCodeConfigurationResponse$
|
|
1597
|
+
];
|
|
1598
|
+
var UpdateKxClusterDatabases$ = [9, n0, _UKCD,
|
|
1599
|
+
{ [_h]: ["PUT", "/kx/environments/{environmentId}/clusters/{clusterName}/configuration/databases", 200] }, () => UpdateKxClusterDatabasesRequest$, () => UpdateKxClusterDatabasesResponse$
|
|
1600
|
+
];
|
|
1601
|
+
var UpdateKxDatabase$ = [9, n0, _UKD,
|
|
1602
|
+
{ [_h]: ["PUT", "/kx/environments/{environmentId}/databases/{databaseName}", 200] }, () => UpdateKxDatabaseRequest$, () => UpdateKxDatabaseResponse$
|
|
1603
|
+
];
|
|
1604
|
+
var UpdateKxDataview$ = [9, n0, _UKDp,
|
|
1605
|
+
{ [_h]: ["PUT", "/kx/environments/{environmentId}/databases/{databaseName}/dataviews/{dataviewName}", 200] }, () => UpdateKxDataviewRequest$, () => UpdateKxDataviewResponse$
|
|
1606
|
+
];
|
|
1607
|
+
var UpdateKxEnvironment$ = [9, n0, _UKE,
|
|
1608
|
+
{ [_h]: ["PUT", "/kx/environments/{environmentId}", 200] }, () => UpdateKxEnvironmentRequest$, () => UpdateKxEnvironmentResponse$
|
|
1609
|
+
];
|
|
1610
|
+
var UpdateKxEnvironmentNetwork$ = [9, n0, _UKEN,
|
|
1611
|
+
{ [_h]: ["PUT", "/kx/environments/{environmentId}/network", 200] }, () => UpdateKxEnvironmentNetworkRequest$, () => UpdateKxEnvironmentNetworkResponse$
|
|
1612
|
+
];
|
|
1613
|
+
var UpdateKxUser$ = [9, n0, _UKU,
|
|
1614
|
+
{ [_h]: ["PUT", "/kx/environments/{environmentId}/users/{userName}", 200] }, () => UpdateKxUserRequest$, () => UpdateKxUserResponse$
|
|
1615
|
+
];
|
|
1616
|
+
var UpdateKxVolume$ = [9, n0, _UKV,
|
|
1617
|
+
{ [_h]: ["PATCH", "/kx/environments/{environmentId}/kxvolumes/{volumeName}", 200] }, () => UpdateKxVolumeRequest$, () => UpdateKxVolumeResponse$
|
|
1618
|
+
];
|
|
1619
|
+
|
|
1620
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1621
|
+
return {
|
|
1622
|
+
apiVersion: "2021-03-12",
|
|
1623
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1624
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1625
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1626
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1627
|
+
extensions: config?.extensions ?? [],
|
|
1628
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultFinspaceHttpAuthSchemeProvider,
|
|
1629
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1630
|
+
{
|
|
1631
|
+
schemeId: "aws.auth#sigv4",
|
|
1632
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1633
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1634
|
+
},
|
|
1635
|
+
],
|
|
1636
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1637
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1638
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1639
|
+
defaultNamespace: "com.amazonaws.finspace",
|
|
1640
|
+
errorTypeRegistries,
|
|
1641
|
+
version: "2021-03-12",
|
|
1642
|
+
serviceTarget: "AWSHabaneroManagementService",
|
|
1643
|
+
},
|
|
1644
|
+
serviceId: config?.serviceId ?? "finspace",
|
|
1645
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1646
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1647
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1648
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
|
|
1652
|
+
const getRuntimeConfig = (config) => {
|
|
1653
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1654
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1655
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1656
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1657
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1658
|
+
const loaderConfig = {
|
|
1659
|
+
profile: config?.profile,
|
|
1660
|
+
logger: clientSharedValues.logger,
|
|
1661
|
+
};
|
|
1662
|
+
return {
|
|
1663
|
+
...clientSharedValues,
|
|
1664
|
+
...config,
|
|
1665
|
+
runtime: "node",
|
|
1666
|
+
defaultsMode,
|
|
1667
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1668
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1669
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1670
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1671
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1672
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1673
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1674
|
+
retryMode: config?.retryMode ??
|
|
1675
|
+
loadConfig({
|
|
1676
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1677
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1678
|
+
}, config),
|
|
1679
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1680
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1681
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1682
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1683
|
+
};
|
|
1684
|
+
};
|
|
1685
|
+
|
|
34
1686
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1687
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1688
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -925,81 +2577,292 @@ const KxDeploymentStrategy = {
|
|
|
925
2577
|
ROLLING: "ROLLING",
|
|
926
2578
|
};
|
|
927
2579
|
|
|
2580
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2581
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2582
|
+
exports.AutoScalingConfiguration$ = AutoScalingConfiguration$;
|
|
928
2583
|
exports.AutoScalingMetric = AutoScalingMetric;
|
|
2584
|
+
exports.CapacityConfiguration$ = CapacityConfiguration$;
|
|
2585
|
+
exports.ChangeRequest$ = ChangeRequest$;
|
|
929
2586
|
exports.ChangeType = ChangeType;
|
|
930
2587
|
exports.ChangesetStatus = ChangesetStatus;
|
|
2588
|
+
exports.CodeConfiguration$ = CodeConfiguration$;
|
|
2589
|
+
exports.ConflictException = ConflictException;
|
|
2590
|
+
exports.ConflictException$ = ConflictException$;
|
|
2591
|
+
exports.CreateEnvironment$ = CreateEnvironment$;
|
|
931
2592
|
exports.CreateEnvironmentCommand = CreateEnvironmentCommand;
|
|
2593
|
+
exports.CreateEnvironmentRequest$ = CreateEnvironmentRequest$;
|
|
2594
|
+
exports.CreateEnvironmentResponse$ = CreateEnvironmentResponse$;
|
|
2595
|
+
exports.CreateKxChangeset$ = CreateKxChangeset$;
|
|
932
2596
|
exports.CreateKxChangesetCommand = CreateKxChangesetCommand;
|
|
2597
|
+
exports.CreateKxChangesetRequest$ = CreateKxChangesetRequest$;
|
|
2598
|
+
exports.CreateKxChangesetResponse$ = CreateKxChangesetResponse$;
|
|
2599
|
+
exports.CreateKxCluster$ = CreateKxCluster$;
|
|
933
2600
|
exports.CreateKxClusterCommand = CreateKxClusterCommand;
|
|
2601
|
+
exports.CreateKxClusterRequest$ = CreateKxClusterRequest$;
|
|
2602
|
+
exports.CreateKxClusterResponse$ = CreateKxClusterResponse$;
|
|
2603
|
+
exports.CreateKxDatabase$ = CreateKxDatabase$;
|
|
934
2604
|
exports.CreateKxDatabaseCommand = CreateKxDatabaseCommand;
|
|
2605
|
+
exports.CreateKxDatabaseRequest$ = CreateKxDatabaseRequest$;
|
|
2606
|
+
exports.CreateKxDatabaseResponse$ = CreateKxDatabaseResponse$;
|
|
2607
|
+
exports.CreateKxDataview$ = CreateKxDataview$;
|
|
935
2608
|
exports.CreateKxDataviewCommand = CreateKxDataviewCommand;
|
|
2609
|
+
exports.CreateKxDataviewRequest$ = CreateKxDataviewRequest$;
|
|
2610
|
+
exports.CreateKxDataviewResponse$ = CreateKxDataviewResponse$;
|
|
2611
|
+
exports.CreateKxEnvironment$ = CreateKxEnvironment$;
|
|
936
2612
|
exports.CreateKxEnvironmentCommand = CreateKxEnvironmentCommand;
|
|
2613
|
+
exports.CreateKxEnvironmentRequest$ = CreateKxEnvironmentRequest$;
|
|
2614
|
+
exports.CreateKxEnvironmentResponse$ = CreateKxEnvironmentResponse$;
|
|
2615
|
+
exports.CreateKxScalingGroup$ = CreateKxScalingGroup$;
|
|
937
2616
|
exports.CreateKxScalingGroupCommand = CreateKxScalingGroupCommand;
|
|
2617
|
+
exports.CreateKxScalingGroupRequest$ = CreateKxScalingGroupRequest$;
|
|
2618
|
+
exports.CreateKxScalingGroupResponse$ = CreateKxScalingGroupResponse$;
|
|
2619
|
+
exports.CreateKxUser$ = CreateKxUser$;
|
|
938
2620
|
exports.CreateKxUserCommand = CreateKxUserCommand;
|
|
2621
|
+
exports.CreateKxUserRequest$ = CreateKxUserRequest$;
|
|
2622
|
+
exports.CreateKxUserResponse$ = CreateKxUserResponse$;
|
|
2623
|
+
exports.CreateKxVolume$ = CreateKxVolume$;
|
|
939
2624
|
exports.CreateKxVolumeCommand = CreateKxVolumeCommand;
|
|
2625
|
+
exports.CreateKxVolumeRequest$ = CreateKxVolumeRequest$;
|
|
2626
|
+
exports.CreateKxVolumeResponse$ = CreateKxVolumeResponse$;
|
|
2627
|
+
exports.CustomDNSServer$ = CustomDNSServer$;
|
|
2628
|
+
exports.DeleteEnvironment$ = DeleteEnvironment$;
|
|
940
2629
|
exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
|
|
2630
|
+
exports.DeleteEnvironmentRequest$ = DeleteEnvironmentRequest$;
|
|
2631
|
+
exports.DeleteEnvironmentResponse$ = DeleteEnvironmentResponse$;
|
|
2632
|
+
exports.DeleteKxCluster$ = DeleteKxCluster$;
|
|
941
2633
|
exports.DeleteKxClusterCommand = DeleteKxClusterCommand;
|
|
2634
|
+
exports.DeleteKxClusterNode$ = DeleteKxClusterNode$;
|
|
942
2635
|
exports.DeleteKxClusterNodeCommand = DeleteKxClusterNodeCommand;
|
|
2636
|
+
exports.DeleteKxClusterNodeRequest$ = DeleteKxClusterNodeRequest$;
|
|
2637
|
+
exports.DeleteKxClusterNodeResponse$ = DeleteKxClusterNodeResponse$;
|
|
2638
|
+
exports.DeleteKxClusterRequest$ = DeleteKxClusterRequest$;
|
|
2639
|
+
exports.DeleteKxClusterResponse$ = DeleteKxClusterResponse$;
|
|
2640
|
+
exports.DeleteKxDatabase$ = DeleteKxDatabase$;
|
|
943
2641
|
exports.DeleteKxDatabaseCommand = DeleteKxDatabaseCommand;
|
|
2642
|
+
exports.DeleteKxDatabaseRequest$ = DeleteKxDatabaseRequest$;
|
|
2643
|
+
exports.DeleteKxDatabaseResponse$ = DeleteKxDatabaseResponse$;
|
|
2644
|
+
exports.DeleteKxDataview$ = DeleteKxDataview$;
|
|
944
2645
|
exports.DeleteKxDataviewCommand = DeleteKxDataviewCommand;
|
|
2646
|
+
exports.DeleteKxDataviewRequest$ = DeleteKxDataviewRequest$;
|
|
2647
|
+
exports.DeleteKxDataviewResponse$ = DeleteKxDataviewResponse$;
|
|
2648
|
+
exports.DeleteKxEnvironment$ = DeleteKxEnvironment$;
|
|
945
2649
|
exports.DeleteKxEnvironmentCommand = DeleteKxEnvironmentCommand;
|
|
2650
|
+
exports.DeleteKxEnvironmentRequest$ = DeleteKxEnvironmentRequest$;
|
|
2651
|
+
exports.DeleteKxEnvironmentResponse$ = DeleteKxEnvironmentResponse$;
|
|
2652
|
+
exports.DeleteKxScalingGroup$ = DeleteKxScalingGroup$;
|
|
946
2653
|
exports.DeleteKxScalingGroupCommand = DeleteKxScalingGroupCommand;
|
|
2654
|
+
exports.DeleteKxScalingGroupRequest$ = DeleteKxScalingGroupRequest$;
|
|
2655
|
+
exports.DeleteKxScalingGroupResponse$ = DeleteKxScalingGroupResponse$;
|
|
2656
|
+
exports.DeleteKxUser$ = DeleteKxUser$;
|
|
947
2657
|
exports.DeleteKxUserCommand = DeleteKxUserCommand;
|
|
2658
|
+
exports.DeleteKxUserRequest$ = DeleteKxUserRequest$;
|
|
2659
|
+
exports.DeleteKxUserResponse$ = DeleteKxUserResponse$;
|
|
2660
|
+
exports.DeleteKxVolume$ = DeleteKxVolume$;
|
|
948
2661
|
exports.DeleteKxVolumeCommand = DeleteKxVolumeCommand;
|
|
2662
|
+
exports.DeleteKxVolumeRequest$ = DeleteKxVolumeRequest$;
|
|
2663
|
+
exports.DeleteKxVolumeResponse$ = DeleteKxVolumeResponse$;
|
|
949
2664
|
exports.DnsStatus = DnsStatus;
|
|
2665
|
+
exports.Environment$ = Environment$;
|
|
950
2666
|
exports.EnvironmentStatus = EnvironmentStatus;
|
|
951
2667
|
exports.ErrorDetails = ErrorDetails;
|
|
2668
|
+
exports.ErrorInfo$ = ErrorInfo$;
|
|
952
2669
|
exports.FederationMode = FederationMode;
|
|
2670
|
+
exports.FederationParameters$ = FederationParameters$;
|
|
953
2671
|
exports.Finspace = Finspace;
|
|
954
2672
|
exports.FinspaceClient = FinspaceClient;
|
|
2673
|
+
exports.FinspaceServiceException = FinspaceServiceException;
|
|
2674
|
+
exports.FinspaceServiceException$ = FinspaceServiceException$;
|
|
2675
|
+
exports.GetEnvironment$ = GetEnvironment$;
|
|
955
2676
|
exports.GetEnvironmentCommand = GetEnvironmentCommand;
|
|
2677
|
+
exports.GetEnvironmentRequest$ = GetEnvironmentRequest$;
|
|
2678
|
+
exports.GetEnvironmentResponse$ = GetEnvironmentResponse$;
|
|
2679
|
+
exports.GetKxChangeset$ = GetKxChangeset$;
|
|
956
2680
|
exports.GetKxChangesetCommand = GetKxChangesetCommand;
|
|
2681
|
+
exports.GetKxChangesetRequest$ = GetKxChangesetRequest$;
|
|
2682
|
+
exports.GetKxChangesetResponse$ = GetKxChangesetResponse$;
|
|
2683
|
+
exports.GetKxCluster$ = GetKxCluster$;
|
|
957
2684
|
exports.GetKxClusterCommand = GetKxClusterCommand;
|
|
2685
|
+
exports.GetKxClusterRequest$ = GetKxClusterRequest$;
|
|
2686
|
+
exports.GetKxClusterResponse$ = GetKxClusterResponse$;
|
|
2687
|
+
exports.GetKxConnectionString$ = GetKxConnectionString$;
|
|
958
2688
|
exports.GetKxConnectionStringCommand = GetKxConnectionStringCommand;
|
|
2689
|
+
exports.GetKxConnectionStringRequest$ = GetKxConnectionStringRequest$;
|
|
2690
|
+
exports.GetKxConnectionStringResponse$ = GetKxConnectionStringResponse$;
|
|
2691
|
+
exports.GetKxDatabase$ = GetKxDatabase$;
|
|
959
2692
|
exports.GetKxDatabaseCommand = GetKxDatabaseCommand;
|
|
2693
|
+
exports.GetKxDatabaseRequest$ = GetKxDatabaseRequest$;
|
|
2694
|
+
exports.GetKxDatabaseResponse$ = GetKxDatabaseResponse$;
|
|
2695
|
+
exports.GetKxDataview$ = GetKxDataview$;
|
|
960
2696
|
exports.GetKxDataviewCommand = GetKxDataviewCommand;
|
|
2697
|
+
exports.GetKxDataviewRequest$ = GetKxDataviewRequest$;
|
|
2698
|
+
exports.GetKxDataviewResponse$ = GetKxDataviewResponse$;
|
|
2699
|
+
exports.GetKxEnvironment$ = GetKxEnvironment$;
|
|
961
2700
|
exports.GetKxEnvironmentCommand = GetKxEnvironmentCommand;
|
|
2701
|
+
exports.GetKxEnvironmentRequest$ = GetKxEnvironmentRequest$;
|
|
2702
|
+
exports.GetKxEnvironmentResponse$ = GetKxEnvironmentResponse$;
|
|
2703
|
+
exports.GetKxScalingGroup$ = GetKxScalingGroup$;
|
|
962
2704
|
exports.GetKxScalingGroupCommand = GetKxScalingGroupCommand;
|
|
2705
|
+
exports.GetKxScalingGroupRequest$ = GetKxScalingGroupRequest$;
|
|
2706
|
+
exports.GetKxScalingGroupResponse$ = GetKxScalingGroupResponse$;
|
|
2707
|
+
exports.GetKxUser$ = GetKxUser$;
|
|
963
2708
|
exports.GetKxUserCommand = GetKxUserCommand;
|
|
2709
|
+
exports.GetKxUserRequest$ = GetKxUserRequest$;
|
|
2710
|
+
exports.GetKxUserResponse$ = GetKxUserResponse$;
|
|
2711
|
+
exports.GetKxVolume$ = GetKxVolume$;
|
|
964
2712
|
exports.GetKxVolumeCommand = GetKxVolumeCommand;
|
|
2713
|
+
exports.GetKxVolumeRequest$ = GetKxVolumeRequest$;
|
|
2714
|
+
exports.GetKxVolumeResponse$ = GetKxVolumeResponse$;
|
|
965
2715
|
exports.IPAddressType = IPAddressType;
|
|
2716
|
+
exports.IcmpTypeCode$ = IcmpTypeCode$;
|
|
2717
|
+
exports.InternalServerException = InternalServerException;
|
|
2718
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2719
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
2720
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
2721
|
+
exports.KxAttachedCluster$ = KxAttachedCluster$;
|
|
966
2722
|
exports.KxAzMode = KxAzMode;
|
|
2723
|
+
exports.KxCacheStorageConfiguration$ = KxCacheStorageConfiguration$;
|
|
2724
|
+
exports.KxChangesetListEntry$ = KxChangesetListEntry$;
|
|
2725
|
+
exports.KxCluster$ = KxCluster$;
|
|
2726
|
+
exports.KxClusterCodeDeploymentConfiguration$ = KxClusterCodeDeploymentConfiguration$;
|
|
967
2727
|
exports.KxClusterCodeDeploymentStrategy = KxClusterCodeDeploymentStrategy;
|
|
968
2728
|
exports.KxClusterStatus = KxClusterStatus;
|
|
969
2729
|
exports.KxClusterType = KxClusterType;
|
|
2730
|
+
exports.KxCommandLineArgument$ = KxCommandLineArgument$;
|
|
2731
|
+
exports.KxDatabaseCacheConfiguration$ = KxDatabaseCacheConfiguration$;
|
|
2732
|
+
exports.KxDatabaseConfiguration$ = KxDatabaseConfiguration$;
|
|
2733
|
+
exports.KxDatabaseListEntry$ = KxDatabaseListEntry$;
|
|
2734
|
+
exports.KxDataviewActiveVersion$ = KxDataviewActiveVersion$;
|
|
2735
|
+
exports.KxDataviewConfiguration$ = KxDataviewConfiguration$;
|
|
2736
|
+
exports.KxDataviewListEntry$ = KxDataviewListEntry$;
|
|
2737
|
+
exports.KxDataviewSegmentConfiguration$ = KxDataviewSegmentConfiguration$;
|
|
970
2738
|
exports.KxDataviewStatus = KxDataviewStatus;
|
|
2739
|
+
exports.KxDeploymentConfiguration$ = KxDeploymentConfiguration$;
|
|
971
2740
|
exports.KxDeploymentStrategy = KxDeploymentStrategy;
|
|
2741
|
+
exports.KxEnvironment$ = KxEnvironment$;
|
|
2742
|
+
exports.KxNAS1Configuration$ = KxNAS1Configuration$;
|
|
972
2743
|
exports.KxNAS1Type = KxNAS1Type;
|
|
2744
|
+
exports.KxNode$ = KxNode$;
|
|
973
2745
|
exports.KxNodeStatus = KxNodeStatus;
|
|
2746
|
+
exports.KxSavedownStorageConfiguration$ = KxSavedownStorageConfiguration$;
|
|
974
2747
|
exports.KxSavedownStorageType = KxSavedownStorageType;
|
|
2748
|
+
exports.KxScalingGroup$ = KxScalingGroup$;
|
|
2749
|
+
exports.KxScalingGroupConfiguration$ = KxScalingGroupConfiguration$;
|
|
975
2750
|
exports.KxScalingGroupStatus = KxScalingGroupStatus;
|
|
2751
|
+
exports.KxUser$ = KxUser$;
|
|
2752
|
+
exports.KxVolume$ = KxVolume$;
|
|
976
2753
|
exports.KxVolumeStatus = KxVolumeStatus;
|
|
977
2754
|
exports.KxVolumeType = KxVolumeType;
|
|
2755
|
+
exports.LimitExceededException = LimitExceededException;
|
|
2756
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
2757
|
+
exports.ListEnvironments$ = ListEnvironments$;
|
|
978
2758
|
exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
|
|
2759
|
+
exports.ListEnvironmentsRequest$ = ListEnvironmentsRequest$;
|
|
2760
|
+
exports.ListEnvironmentsResponse$ = ListEnvironmentsResponse$;
|
|
2761
|
+
exports.ListKxChangesets$ = ListKxChangesets$;
|
|
979
2762
|
exports.ListKxChangesetsCommand = ListKxChangesetsCommand;
|
|
2763
|
+
exports.ListKxChangesetsRequest$ = ListKxChangesetsRequest$;
|
|
2764
|
+
exports.ListKxChangesetsResponse$ = ListKxChangesetsResponse$;
|
|
2765
|
+
exports.ListKxClusterNodes$ = ListKxClusterNodes$;
|
|
980
2766
|
exports.ListKxClusterNodesCommand = ListKxClusterNodesCommand;
|
|
2767
|
+
exports.ListKxClusterNodesRequest$ = ListKxClusterNodesRequest$;
|
|
2768
|
+
exports.ListKxClusterNodesResponse$ = ListKxClusterNodesResponse$;
|
|
2769
|
+
exports.ListKxClusters$ = ListKxClusters$;
|
|
981
2770
|
exports.ListKxClustersCommand = ListKxClustersCommand;
|
|
2771
|
+
exports.ListKxClustersRequest$ = ListKxClustersRequest$;
|
|
2772
|
+
exports.ListKxClustersResponse$ = ListKxClustersResponse$;
|
|
2773
|
+
exports.ListKxDatabases$ = ListKxDatabases$;
|
|
982
2774
|
exports.ListKxDatabasesCommand = ListKxDatabasesCommand;
|
|
2775
|
+
exports.ListKxDatabasesRequest$ = ListKxDatabasesRequest$;
|
|
2776
|
+
exports.ListKxDatabasesResponse$ = ListKxDatabasesResponse$;
|
|
2777
|
+
exports.ListKxDataviews$ = ListKxDataviews$;
|
|
983
2778
|
exports.ListKxDataviewsCommand = ListKxDataviewsCommand;
|
|
2779
|
+
exports.ListKxDataviewsRequest$ = ListKxDataviewsRequest$;
|
|
2780
|
+
exports.ListKxDataviewsResponse$ = ListKxDataviewsResponse$;
|
|
2781
|
+
exports.ListKxEnvironments$ = ListKxEnvironments$;
|
|
984
2782
|
exports.ListKxEnvironmentsCommand = ListKxEnvironmentsCommand;
|
|
2783
|
+
exports.ListKxEnvironmentsRequest$ = ListKxEnvironmentsRequest$;
|
|
2784
|
+
exports.ListKxEnvironmentsResponse$ = ListKxEnvironmentsResponse$;
|
|
2785
|
+
exports.ListKxScalingGroups$ = ListKxScalingGroups$;
|
|
985
2786
|
exports.ListKxScalingGroupsCommand = ListKxScalingGroupsCommand;
|
|
2787
|
+
exports.ListKxScalingGroupsRequest$ = ListKxScalingGroupsRequest$;
|
|
2788
|
+
exports.ListKxScalingGroupsResponse$ = ListKxScalingGroupsResponse$;
|
|
2789
|
+
exports.ListKxUsers$ = ListKxUsers$;
|
|
986
2790
|
exports.ListKxUsersCommand = ListKxUsersCommand;
|
|
2791
|
+
exports.ListKxUsersRequest$ = ListKxUsersRequest$;
|
|
2792
|
+
exports.ListKxUsersResponse$ = ListKxUsersResponse$;
|
|
2793
|
+
exports.ListKxVolumes$ = ListKxVolumes$;
|
|
987
2794
|
exports.ListKxVolumesCommand = ListKxVolumesCommand;
|
|
2795
|
+
exports.ListKxVolumesRequest$ = ListKxVolumesRequest$;
|
|
2796
|
+
exports.ListKxVolumesResponse$ = ListKxVolumesResponse$;
|
|
2797
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
988
2798
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2799
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2800
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2801
|
+
exports.NetworkACLEntry$ = NetworkACLEntry$;
|
|
2802
|
+
exports.PortRange$ = PortRange$;
|
|
2803
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
2804
|
+
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
2805
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2806
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
989
2807
|
exports.RuleAction = RuleAction;
|
|
2808
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2809
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2810
|
+
exports.SuperuserParameters$ = SuperuserParameters$;
|
|
2811
|
+
exports.TagResource$ = TagResource$;
|
|
990
2812
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2813
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2814
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
991
2815
|
exports.TgwStatus = TgwStatus;
|
|
2816
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2817
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2818
|
+
exports.TickerplantLogConfiguration$ = TickerplantLogConfiguration$;
|
|
2819
|
+
exports.TransitGatewayConfiguration$ = TransitGatewayConfiguration$;
|
|
2820
|
+
exports.UntagResource$ = UntagResource$;
|
|
992
2821
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2822
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2823
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2824
|
+
exports.UpdateEnvironment$ = UpdateEnvironment$;
|
|
993
2825
|
exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
|
|
2826
|
+
exports.UpdateEnvironmentRequest$ = UpdateEnvironmentRequest$;
|
|
2827
|
+
exports.UpdateEnvironmentResponse$ = UpdateEnvironmentResponse$;
|
|
2828
|
+
exports.UpdateKxClusterCodeConfiguration$ = UpdateKxClusterCodeConfiguration$;
|
|
994
2829
|
exports.UpdateKxClusterCodeConfigurationCommand = UpdateKxClusterCodeConfigurationCommand;
|
|
2830
|
+
exports.UpdateKxClusterCodeConfigurationRequest$ = UpdateKxClusterCodeConfigurationRequest$;
|
|
2831
|
+
exports.UpdateKxClusterCodeConfigurationResponse$ = UpdateKxClusterCodeConfigurationResponse$;
|
|
2832
|
+
exports.UpdateKxClusterDatabases$ = UpdateKxClusterDatabases$;
|
|
995
2833
|
exports.UpdateKxClusterDatabasesCommand = UpdateKxClusterDatabasesCommand;
|
|
2834
|
+
exports.UpdateKxClusterDatabasesRequest$ = UpdateKxClusterDatabasesRequest$;
|
|
2835
|
+
exports.UpdateKxClusterDatabasesResponse$ = UpdateKxClusterDatabasesResponse$;
|
|
2836
|
+
exports.UpdateKxDatabase$ = UpdateKxDatabase$;
|
|
996
2837
|
exports.UpdateKxDatabaseCommand = UpdateKxDatabaseCommand;
|
|
2838
|
+
exports.UpdateKxDatabaseRequest$ = UpdateKxDatabaseRequest$;
|
|
2839
|
+
exports.UpdateKxDatabaseResponse$ = UpdateKxDatabaseResponse$;
|
|
2840
|
+
exports.UpdateKxDataview$ = UpdateKxDataview$;
|
|
997
2841
|
exports.UpdateKxDataviewCommand = UpdateKxDataviewCommand;
|
|
2842
|
+
exports.UpdateKxDataviewRequest$ = UpdateKxDataviewRequest$;
|
|
2843
|
+
exports.UpdateKxDataviewResponse$ = UpdateKxDataviewResponse$;
|
|
2844
|
+
exports.UpdateKxEnvironment$ = UpdateKxEnvironment$;
|
|
998
2845
|
exports.UpdateKxEnvironmentCommand = UpdateKxEnvironmentCommand;
|
|
2846
|
+
exports.UpdateKxEnvironmentNetwork$ = UpdateKxEnvironmentNetwork$;
|
|
999
2847
|
exports.UpdateKxEnvironmentNetworkCommand = UpdateKxEnvironmentNetworkCommand;
|
|
2848
|
+
exports.UpdateKxEnvironmentNetworkRequest$ = UpdateKxEnvironmentNetworkRequest$;
|
|
2849
|
+
exports.UpdateKxEnvironmentNetworkResponse$ = UpdateKxEnvironmentNetworkResponse$;
|
|
2850
|
+
exports.UpdateKxEnvironmentRequest$ = UpdateKxEnvironmentRequest$;
|
|
2851
|
+
exports.UpdateKxEnvironmentResponse$ = UpdateKxEnvironmentResponse$;
|
|
2852
|
+
exports.UpdateKxUser$ = UpdateKxUser$;
|
|
1000
2853
|
exports.UpdateKxUserCommand = UpdateKxUserCommand;
|
|
2854
|
+
exports.UpdateKxUserRequest$ = UpdateKxUserRequest$;
|
|
2855
|
+
exports.UpdateKxUserResponse$ = UpdateKxUserResponse$;
|
|
2856
|
+
exports.UpdateKxVolume$ = UpdateKxVolume$;
|
|
1001
2857
|
exports.UpdateKxVolumeCommand = UpdateKxVolumeCommand;
|
|
2858
|
+
exports.UpdateKxVolumeRequest$ = UpdateKxVolumeRequest$;
|
|
2859
|
+
exports.UpdateKxVolumeResponse$ = UpdateKxVolumeResponse$;
|
|
2860
|
+
exports.ValidationException = ValidationException;
|
|
2861
|
+
exports.ValidationException$ = ValidationException$;
|
|
2862
|
+
exports.Volume$ = Volume$;
|
|
1002
2863
|
exports.VolumeType = VolumeType;
|
|
2864
|
+
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
2865
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1003
2866
|
exports.paginateListKxChangesets = paginateListKxChangesets;
|
|
1004
2867
|
exports.paginateListKxClusterNodes = paginateListKxClusterNodes;
|
|
1005
2868
|
exports.paginateListKxDatabases = paginateListKxDatabases;
|