@aws-sdk/client-finspace 3.489.0 → 3.495.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/Finspace.js +1 -109
- package/dist-cjs/FinspaceClient.js +1 -43
- package/dist-cjs/commands/CreateEnvironmentCommand.js +1 -29
- package/dist-cjs/commands/CreateKxChangesetCommand.js +1 -28
- package/dist-cjs/commands/CreateKxClusterCommand.js +1 -28
- package/dist-cjs/commands/CreateKxDatabaseCommand.js +1 -28
- package/dist-cjs/commands/CreateKxDataviewCommand.js +1 -28
- package/dist-cjs/commands/CreateKxEnvironmentCommand.js +1 -28
- package/dist-cjs/commands/CreateKxScalingGroupCommand.js +1 -28
- package/dist-cjs/commands/CreateKxUserCommand.js +1 -28
- package/dist-cjs/commands/CreateKxVolumeCommand.js +1 -28
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +1 -28
- package/dist-cjs/commands/DeleteKxClusterCommand.js +1 -28
- package/dist-cjs/commands/DeleteKxDatabaseCommand.js +1 -28
- package/dist-cjs/commands/DeleteKxDataviewCommand.js +1 -28
- package/dist-cjs/commands/DeleteKxEnvironmentCommand.js +1 -28
- package/dist-cjs/commands/DeleteKxScalingGroupCommand.js +1 -28
- package/dist-cjs/commands/DeleteKxUserCommand.js +1 -28
- package/dist-cjs/commands/DeleteKxVolumeCommand.js +1 -28
- package/dist-cjs/commands/GetEnvironmentCommand.js +1 -28
- package/dist-cjs/commands/GetKxChangesetCommand.js +1 -28
- package/dist-cjs/commands/GetKxClusterCommand.js +1 -28
- package/dist-cjs/commands/GetKxConnectionStringCommand.js +1 -29
- package/dist-cjs/commands/GetKxDatabaseCommand.js +1 -28
- package/dist-cjs/commands/GetKxDataviewCommand.js +1 -28
- package/dist-cjs/commands/GetKxEnvironmentCommand.js +1 -28
- package/dist-cjs/commands/GetKxScalingGroupCommand.js +1 -28
- package/dist-cjs/commands/GetKxUserCommand.js +1 -28
- package/dist-cjs/commands/GetKxVolumeCommand.js +1 -28
- package/dist-cjs/commands/ListEnvironmentsCommand.js +1 -28
- package/dist-cjs/commands/ListKxChangesetsCommand.js +1 -28
- package/dist-cjs/commands/ListKxClusterNodesCommand.js +1 -28
- package/dist-cjs/commands/ListKxClustersCommand.js +1 -28
- package/dist-cjs/commands/ListKxDatabasesCommand.js +1 -28
- package/dist-cjs/commands/ListKxDataviewsCommand.js +1 -28
- package/dist-cjs/commands/ListKxEnvironmentsCommand.js +1 -28
- package/dist-cjs/commands/ListKxScalingGroupsCommand.js +1 -28
- package/dist-cjs/commands/ListKxUsersCommand.js +1 -28
- package/dist-cjs/commands/ListKxVolumesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +1 -28
- package/dist-cjs/commands/UpdateKxClusterCodeConfigurationCommand.js +1 -28
- package/dist-cjs/commands/UpdateKxClusterDatabasesCommand.js +1 -28
- package/dist-cjs/commands/UpdateKxDatabaseCommand.js +1 -28
- package/dist-cjs/commands/UpdateKxDataviewCommand.js +1 -28
- package/dist-cjs/commands/UpdateKxEnvironmentCommand.js +1 -28
- package/dist-cjs/commands/UpdateKxEnvironmentNetworkCommand.js +1 -28
- package/dist-cjs/commands/UpdateKxUserCommand.js +1 -28
- package/dist-cjs/commands/UpdateKxVolumeCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -52
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +5248 -11
- package/dist-cjs/models/FinspaceServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -286
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListKxChangesetsPaginator.js +1 -7
- package/dist-cjs/pagination/ListKxClusterNodesPaginator.js +1 -7
- package/dist-cjs/pagination/ListKxDatabasesPaginator.js +1 -7
- package/dist-cjs/pagination/ListKxDataviewsPaginator.js +1 -7
- package/dist-cjs/pagination/ListKxEnvironmentsPaginator.js +1 -7
- package/dist-cjs/pagination/ListKxScalingGroupsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -10
- package/dist-cjs/protocols/Aws_restJson1.js +1 -3777
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FinspaceServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class FinspaceServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, FinspaceServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.FinspaceServiceException = FinspaceServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,286 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetKxConnectionStringResponseFilterSensitiveLog = exports.CreateEnvironmentRequestFilterSensitiveLog = exports.SuperuserParametersFilterSensitiveLog = exports.KxDeploymentStrategy = exports.KxClusterCodeDeploymentStrategy = exports.InvalidRequestException = exports.RuleAction = exports.TgwStatus = exports.DnsStatus = exports.KxVolumeStatus = exports.KxVolumeType = exports.KxNAS1Type = exports.KxScalingGroupStatus = exports.EnvironmentStatus = exports.KxDataviewStatus = exports.ResourceAlreadyExistsException = exports.VolumeType = exports.KxClusterStatus = exports.IPAddressType = exports.KxSavedownStorageType = exports.KxClusterType = exports.KxAzMode = exports.ResourceNotFoundException = exports.ChangesetStatus = exports.ErrorDetails = exports.ChangeType = exports.ConflictException = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.LimitExceededException = exports.InternalServerException = exports.FederationMode = exports.AutoScalingMetric = exports.AccessDeniedException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const FinspaceServiceException_1 = require("./FinspaceServiceException");
|
|
6
|
-
class AccessDeniedException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
7
|
-
constructor(opts) {
|
|
8
|
-
super({
|
|
9
|
-
name: "AccessDeniedException",
|
|
10
|
-
$fault: "client",
|
|
11
|
-
...opts,
|
|
12
|
-
});
|
|
13
|
-
this.name = "AccessDeniedException";
|
|
14
|
-
this.$fault = "client";
|
|
15
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
19
|
-
exports.AutoScalingMetric = {
|
|
20
|
-
CPU_UTILIZATION_PERCENTAGE: "CPU_UTILIZATION_PERCENTAGE",
|
|
21
|
-
};
|
|
22
|
-
exports.FederationMode = {
|
|
23
|
-
FEDERATED: "FEDERATED",
|
|
24
|
-
LOCAL: "LOCAL",
|
|
25
|
-
};
|
|
26
|
-
class InternalServerException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
27
|
-
constructor(opts) {
|
|
28
|
-
super({
|
|
29
|
-
name: "InternalServerException",
|
|
30
|
-
$fault: "server",
|
|
31
|
-
...opts,
|
|
32
|
-
});
|
|
33
|
-
this.name = "InternalServerException";
|
|
34
|
-
this.$fault = "server";
|
|
35
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
exports.InternalServerException = InternalServerException;
|
|
39
|
-
class LimitExceededException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
40
|
-
constructor(opts) {
|
|
41
|
-
super({
|
|
42
|
-
name: "LimitExceededException",
|
|
43
|
-
$fault: "client",
|
|
44
|
-
...opts,
|
|
45
|
-
});
|
|
46
|
-
this.name = "LimitExceededException";
|
|
47
|
-
this.$fault = "client";
|
|
48
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
exports.LimitExceededException = LimitExceededException;
|
|
52
|
-
class ServiceQuotaExceededException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
53
|
-
constructor(opts) {
|
|
54
|
-
super({
|
|
55
|
-
name: "ServiceQuotaExceededException",
|
|
56
|
-
$fault: "client",
|
|
57
|
-
...opts,
|
|
58
|
-
});
|
|
59
|
-
this.name = "ServiceQuotaExceededException";
|
|
60
|
-
this.$fault = "client";
|
|
61
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
65
|
-
class ThrottlingException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
66
|
-
constructor(opts) {
|
|
67
|
-
super({
|
|
68
|
-
name: "ThrottlingException",
|
|
69
|
-
$fault: "client",
|
|
70
|
-
...opts,
|
|
71
|
-
});
|
|
72
|
-
this.name = "ThrottlingException";
|
|
73
|
-
this.$fault = "client";
|
|
74
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
exports.ThrottlingException = ThrottlingException;
|
|
78
|
-
class ValidationException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
79
|
-
constructor(opts) {
|
|
80
|
-
super({
|
|
81
|
-
name: "ValidationException",
|
|
82
|
-
$fault: "client",
|
|
83
|
-
...opts,
|
|
84
|
-
});
|
|
85
|
-
this.name = "ValidationException";
|
|
86
|
-
this.$fault = "client";
|
|
87
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
exports.ValidationException = ValidationException;
|
|
91
|
-
class ConflictException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
92
|
-
constructor(opts) {
|
|
93
|
-
super({
|
|
94
|
-
name: "ConflictException",
|
|
95
|
-
$fault: "client",
|
|
96
|
-
...opts,
|
|
97
|
-
});
|
|
98
|
-
this.name = "ConflictException";
|
|
99
|
-
this.$fault = "client";
|
|
100
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
101
|
-
this.reason = opts.reason;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
exports.ConflictException = ConflictException;
|
|
105
|
-
exports.ChangeType = {
|
|
106
|
-
DELETE: "DELETE",
|
|
107
|
-
PUT: "PUT",
|
|
108
|
-
};
|
|
109
|
-
exports.ErrorDetails = {
|
|
110
|
-
ACCESS_DENIED: "Missing required permission to perform this request.",
|
|
111
|
-
CANCELLED: "Cancelled",
|
|
112
|
-
INTERNAL_SERVICE_EXCEPTION: "An internal error has occurred.",
|
|
113
|
-
RESOURCE_NOT_FOUND: "One or more inputs to this request were not found.",
|
|
114
|
-
SERVICE_QUOTA_EXCEEDED: "Service limits have been exceeded.",
|
|
115
|
-
THROTTLING: "The system temporarily lacks sufficient resources to process the request.",
|
|
116
|
-
USER_RECOVERABLE: "A user recoverable error has occurred",
|
|
117
|
-
VALIDATION: "The inputs to this request are invalid.",
|
|
118
|
-
};
|
|
119
|
-
exports.ChangesetStatus = {
|
|
120
|
-
COMPLETED: "COMPLETED",
|
|
121
|
-
FAILED: "FAILED",
|
|
122
|
-
PENDING: "PENDING",
|
|
123
|
-
PROCESSING: "PROCESSING",
|
|
124
|
-
};
|
|
125
|
-
class ResourceNotFoundException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "ResourceNotFoundException",
|
|
129
|
-
$fault: "client",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
this.name = "ResourceNotFoundException";
|
|
133
|
-
this.$fault = "client";
|
|
134
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
138
|
-
exports.KxAzMode = {
|
|
139
|
-
MULTI: "MULTI",
|
|
140
|
-
SINGLE: "SINGLE",
|
|
141
|
-
};
|
|
142
|
-
exports.KxClusterType = {
|
|
143
|
-
GATEWAY: "GATEWAY",
|
|
144
|
-
GP: "GP",
|
|
145
|
-
HDB: "HDB",
|
|
146
|
-
RDB: "RDB",
|
|
147
|
-
TICKERPLANT: "TICKERPLANT",
|
|
148
|
-
};
|
|
149
|
-
exports.KxSavedownStorageType = {
|
|
150
|
-
SDS01: "SDS01",
|
|
151
|
-
};
|
|
152
|
-
exports.IPAddressType = {
|
|
153
|
-
IP_V4: "IP_V4",
|
|
154
|
-
};
|
|
155
|
-
exports.KxClusterStatus = {
|
|
156
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
157
|
-
CREATING: "CREATING",
|
|
158
|
-
DELETED: "DELETED",
|
|
159
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
160
|
-
DELETING: "DELETING",
|
|
161
|
-
PENDING: "PENDING",
|
|
162
|
-
RUNNING: "RUNNING",
|
|
163
|
-
UPDATING: "UPDATING",
|
|
164
|
-
};
|
|
165
|
-
exports.VolumeType = {
|
|
166
|
-
NAS_1: "NAS_1",
|
|
167
|
-
};
|
|
168
|
-
class ResourceAlreadyExistsException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
169
|
-
constructor(opts) {
|
|
170
|
-
super({
|
|
171
|
-
name: "ResourceAlreadyExistsException",
|
|
172
|
-
$fault: "client",
|
|
173
|
-
...opts,
|
|
174
|
-
});
|
|
175
|
-
this.name = "ResourceAlreadyExistsException";
|
|
176
|
-
this.$fault = "client";
|
|
177
|
-
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
181
|
-
exports.KxDataviewStatus = {
|
|
182
|
-
ACTIVE: "ACTIVE",
|
|
183
|
-
CREATING: "CREATING",
|
|
184
|
-
DELETING: "DELETING",
|
|
185
|
-
FAILED: "FAILED",
|
|
186
|
-
UPDATING: "UPDATING",
|
|
187
|
-
};
|
|
188
|
-
exports.EnvironmentStatus = {
|
|
189
|
-
CREATED: "CREATED",
|
|
190
|
-
CREATE_REQUESTED: "CREATE_REQUESTED",
|
|
191
|
-
CREATING: "CREATING",
|
|
192
|
-
DELETED: "DELETED",
|
|
193
|
-
DELETE_REQUESTED: "DELETE_REQUESTED",
|
|
194
|
-
DELETING: "DELETING",
|
|
195
|
-
FAILED_CREATION: "FAILED_CREATION",
|
|
196
|
-
FAILED_DELETION: "FAILED_DELETION",
|
|
197
|
-
FAILED_UPDATING_NETWORK: "FAILED_UPDATING_NETWORK",
|
|
198
|
-
RETRY_DELETION: "RETRY_DELETION",
|
|
199
|
-
SUSPENDED: "SUSPENDED",
|
|
200
|
-
UPDATE_NETWORK_REQUESTED: "UPDATE_NETWORK_REQUESTED",
|
|
201
|
-
UPDATING_NETWORK: "UPDATING_NETWORK",
|
|
202
|
-
};
|
|
203
|
-
exports.KxScalingGroupStatus = {
|
|
204
|
-
ACTIVE: "ACTIVE",
|
|
205
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
206
|
-
CREATING: "CREATING",
|
|
207
|
-
DELETED: "DELETED",
|
|
208
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
209
|
-
DELETING: "DELETING",
|
|
210
|
-
};
|
|
211
|
-
exports.KxNAS1Type = {
|
|
212
|
-
HDD_12: "HDD_12",
|
|
213
|
-
SSD_1000: "SSD_1000",
|
|
214
|
-
SSD_250: "SSD_250",
|
|
215
|
-
};
|
|
216
|
-
exports.KxVolumeType = {
|
|
217
|
-
NAS_1: "NAS_1",
|
|
218
|
-
};
|
|
219
|
-
exports.KxVolumeStatus = {
|
|
220
|
-
ACTIVE: "ACTIVE",
|
|
221
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
222
|
-
CREATING: "CREATING",
|
|
223
|
-
DELETED: "DELETED",
|
|
224
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
225
|
-
DELETING: "DELETING",
|
|
226
|
-
UPDATED: "UPDATED",
|
|
227
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
228
|
-
UPDATING: "UPDATING",
|
|
229
|
-
};
|
|
230
|
-
exports.DnsStatus = {
|
|
231
|
-
FAILED_UPDATE: "FAILED_UPDATE",
|
|
232
|
-
NONE: "NONE",
|
|
233
|
-
SUCCESSFULLY_UPDATED: "SUCCESSFULLY_UPDATED",
|
|
234
|
-
UPDATE_REQUESTED: "UPDATE_REQUESTED",
|
|
235
|
-
UPDATING: "UPDATING",
|
|
236
|
-
};
|
|
237
|
-
exports.TgwStatus = {
|
|
238
|
-
FAILED_UPDATE: "FAILED_UPDATE",
|
|
239
|
-
NONE: "NONE",
|
|
240
|
-
SUCCESSFULLY_UPDATED: "SUCCESSFULLY_UPDATED",
|
|
241
|
-
UPDATE_REQUESTED: "UPDATE_REQUESTED",
|
|
242
|
-
UPDATING: "UPDATING",
|
|
243
|
-
};
|
|
244
|
-
exports.RuleAction = {
|
|
245
|
-
ALLOW: "allow",
|
|
246
|
-
DENY: "deny",
|
|
247
|
-
};
|
|
248
|
-
class InvalidRequestException extends FinspaceServiceException_1.FinspaceServiceException {
|
|
249
|
-
constructor(opts) {
|
|
250
|
-
super({
|
|
251
|
-
name: "InvalidRequestException",
|
|
252
|
-
$fault: "client",
|
|
253
|
-
...opts,
|
|
254
|
-
});
|
|
255
|
-
this.name = "InvalidRequestException";
|
|
256
|
-
this.$fault = "client";
|
|
257
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
261
|
-
exports.KxClusterCodeDeploymentStrategy = {
|
|
262
|
-
FORCE: "FORCE",
|
|
263
|
-
NO_RESTART: "NO_RESTART",
|
|
264
|
-
ROLLING: "ROLLING",
|
|
265
|
-
};
|
|
266
|
-
exports.KxDeploymentStrategy = {
|
|
267
|
-
NO_RESTART: "NO_RESTART",
|
|
268
|
-
ROLLING: "ROLLING",
|
|
269
|
-
};
|
|
270
|
-
const SuperuserParametersFilterSensitiveLog = (obj) => ({
|
|
271
|
-
...obj,
|
|
272
|
-
...(obj.emailAddress && { emailAddress: smithy_client_1.SENSITIVE_STRING }),
|
|
273
|
-
});
|
|
274
|
-
exports.SuperuserParametersFilterSensitiveLog = SuperuserParametersFilterSensitiveLog;
|
|
275
|
-
const CreateEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
...(obj.superuserParameters && {
|
|
278
|
-
superuserParameters: (0, exports.SuperuserParametersFilterSensitiveLog)(obj.superuserParameters),
|
|
279
|
-
}),
|
|
280
|
-
});
|
|
281
|
-
exports.CreateEnvironmentRequestFilterSensitiveLog = CreateEnvironmentRequestFilterSensitiveLog;
|
|
282
|
-
const GetKxConnectionStringResponseFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
...(obj.signedConnectionString && { signedConnectionString: smithy_client_1.SENSITIVE_STRING }),
|
|
285
|
-
});
|
|
286
|
-
exports.GetKxConnectionStringResponseFilterSensitiveLog = GetKxConnectionStringResponseFilterSensitiveLog;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListKxChangesets = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListKxChangesetsCommand_1 = require("../commands/ListKxChangesetsCommand");
|
|
6
|
-
const FinspaceClient_1 = require("../FinspaceClient");
|
|
7
|
-
exports.paginateListKxChangesets = (0, core_1.createPaginator)(FinspaceClient_1.FinspaceClient, ListKxChangesetsCommand_1.ListKxChangesetsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListKxClusterNodes = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListKxClusterNodesCommand_1 = require("../commands/ListKxClusterNodesCommand");
|
|
6
|
-
const FinspaceClient_1 = require("../FinspaceClient");
|
|
7
|
-
exports.paginateListKxClusterNodes = (0, core_1.createPaginator)(FinspaceClient_1.FinspaceClient, ListKxClusterNodesCommand_1.ListKxClusterNodesCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListKxDatabases = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListKxDatabasesCommand_1 = require("../commands/ListKxDatabasesCommand");
|
|
6
|
-
const FinspaceClient_1 = require("../FinspaceClient");
|
|
7
|
-
exports.paginateListKxDatabases = (0, core_1.createPaginator)(FinspaceClient_1.FinspaceClient, ListKxDatabasesCommand_1.ListKxDatabasesCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListKxDataviews = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListKxDataviewsCommand_1 = require("../commands/ListKxDataviewsCommand");
|
|
6
|
-
const FinspaceClient_1 = require("../FinspaceClient");
|
|
7
|
-
exports.paginateListKxDataviews = (0, core_1.createPaginator)(FinspaceClient_1.FinspaceClient, ListKxDataviewsCommand_1.ListKxDataviewsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListKxEnvironments = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListKxEnvironmentsCommand_1 = require("../commands/ListKxEnvironmentsCommand");
|
|
6
|
-
const FinspaceClient_1 = require("../FinspaceClient");
|
|
7
|
-
exports.paginateListKxEnvironments = (0, core_1.createPaginator)(FinspaceClient_1.FinspaceClient, ListKxEnvironmentsCommand_1.ListKxEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListKxScalingGroups = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListKxScalingGroupsCommand_1 = require("../commands/ListKxScalingGroupsCommand");
|
|
6
|
-
const FinspaceClient_1 = require("../FinspaceClient");
|
|
7
|
-
exports.paginateListKxScalingGroups = (0, core_1.createPaginator)(FinspaceClient_1.FinspaceClient, ListKxScalingGroupsCommand_1.ListKxScalingGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,10 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListKxChangesetsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListKxClusterNodesPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListKxDatabasesPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./ListKxDataviewsPaginator"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./ListKxEnvironmentsPaginator"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./ListKxScalingGroupsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|