@aws-sdk/client-redshift-serverless 3.301.0 → 3.306.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/models/models_0.js +38 -45
- package/dist-es/models/models_0.js +38 -45
- package/dist-types/models/models_0.d.ts +73 -38
- package/dist-types/ts3.4/models/models_0.d.ts +51 -38
- package/package.json +34 -34
|
@@ -30,15 +30,14 @@ class ConflictException extends RedshiftServerlessServiceException_1.RedshiftSer
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
exports.ConflictException = ConflictException;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
})(SnapshotStatus = exports.SnapshotStatus || (exports.SnapshotStatus = {}));
|
|
33
|
+
exports.SnapshotStatus = {
|
|
34
|
+
AVAILABLE: "AVAILABLE",
|
|
35
|
+
CANCELLED: "CANCELLED",
|
|
36
|
+
COPYING: "COPYING",
|
|
37
|
+
CREATING: "CREATING",
|
|
38
|
+
DELETED: "DELETED",
|
|
39
|
+
FAILED: "FAILED",
|
|
40
|
+
};
|
|
42
41
|
class InternalServerException extends RedshiftServerlessServiceException_1.RedshiftServerlessServiceException {
|
|
43
42
|
constructor(opts) {
|
|
44
43
|
super({
|
|
@@ -107,42 +106,36 @@ class ValidationException extends RedshiftServerlessServiceException_1.RedshiftS
|
|
|
107
106
|
}
|
|
108
107
|
}
|
|
109
108
|
exports.ValidationException = ValidationException;
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
(function (WorkgroupStatus) {
|
|
141
|
-
WorkgroupStatus["AVAILABLE"] = "AVAILABLE";
|
|
142
|
-
WorkgroupStatus["CREATING"] = "CREATING";
|
|
143
|
-
WorkgroupStatus["DELETING"] = "DELETING";
|
|
144
|
-
WorkgroupStatus["MODIFYING"] = "MODIFYING";
|
|
145
|
-
})(WorkgroupStatus = exports.WorkgroupStatus || (exports.WorkgroupStatus = {}));
|
|
109
|
+
exports.LogExport = {
|
|
110
|
+
CONNECTION_LOG: "connectionlog",
|
|
111
|
+
USER_ACTIVITY_LOG: "useractivitylog",
|
|
112
|
+
USER_LOG: "userlog",
|
|
113
|
+
};
|
|
114
|
+
exports.NamespaceStatus = {
|
|
115
|
+
AVAILABLE: "AVAILABLE",
|
|
116
|
+
DELETING: "DELETING",
|
|
117
|
+
MODIFYING: "MODIFYING",
|
|
118
|
+
};
|
|
119
|
+
exports.UsageLimitBreachAction = {
|
|
120
|
+
DEACTIVATE: "deactivate",
|
|
121
|
+
EMIT_METRIC: "emit-metric",
|
|
122
|
+
LOG: "log",
|
|
123
|
+
};
|
|
124
|
+
exports.UsageLimitPeriod = {
|
|
125
|
+
DAILY: "daily",
|
|
126
|
+
MONTHLY: "monthly",
|
|
127
|
+
WEEKLY: "weekly",
|
|
128
|
+
};
|
|
129
|
+
exports.UsageLimitUsageType = {
|
|
130
|
+
CROSS_REGION_DATASHARING: "cross-region-datasharing",
|
|
131
|
+
SERVERLESS_COMPUTE: "serverless-compute",
|
|
132
|
+
};
|
|
133
|
+
exports.WorkgroupStatus = {
|
|
134
|
+
AVAILABLE: "AVAILABLE",
|
|
135
|
+
CREATING: "CREATING",
|
|
136
|
+
DELETING: "DELETING",
|
|
137
|
+
MODIFYING: "MODIFYING",
|
|
138
|
+
};
|
|
146
139
|
class InsufficientCapacityException extends RedshiftServerlessServiceException_1.RedshiftServerlessServiceException {
|
|
147
140
|
constructor(opts) {
|
|
148
141
|
super({
|
|
@@ -25,15 +25,14 @@ export class ConflictException extends __BaseException {
|
|
|
25
25
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
export
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
})(SnapshotStatus || (SnapshotStatus = {}));
|
|
28
|
+
export const SnapshotStatus = {
|
|
29
|
+
AVAILABLE: "AVAILABLE",
|
|
30
|
+
CANCELLED: "CANCELLED",
|
|
31
|
+
COPYING: "COPYING",
|
|
32
|
+
CREATING: "CREATING",
|
|
33
|
+
DELETED: "DELETED",
|
|
34
|
+
FAILED: "FAILED",
|
|
35
|
+
};
|
|
37
36
|
export class InternalServerException extends __BaseException {
|
|
38
37
|
constructor(opts) {
|
|
39
38
|
super({
|
|
@@ -97,42 +96,36 @@ export class ValidationException extends __BaseException {
|
|
|
97
96
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
98
97
|
}
|
|
99
98
|
}
|
|
100
|
-
export
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
}
|
|
124
|
-
export
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
(function (WorkgroupStatus) {
|
|
131
|
-
WorkgroupStatus["AVAILABLE"] = "AVAILABLE";
|
|
132
|
-
WorkgroupStatus["CREATING"] = "CREATING";
|
|
133
|
-
WorkgroupStatus["DELETING"] = "DELETING";
|
|
134
|
-
WorkgroupStatus["MODIFYING"] = "MODIFYING";
|
|
135
|
-
})(WorkgroupStatus || (WorkgroupStatus = {}));
|
|
99
|
+
export const LogExport = {
|
|
100
|
+
CONNECTION_LOG: "connectionlog",
|
|
101
|
+
USER_ACTIVITY_LOG: "useractivitylog",
|
|
102
|
+
USER_LOG: "userlog",
|
|
103
|
+
};
|
|
104
|
+
export const NamespaceStatus = {
|
|
105
|
+
AVAILABLE: "AVAILABLE",
|
|
106
|
+
DELETING: "DELETING",
|
|
107
|
+
MODIFYING: "MODIFYING",
|
|
108
|
+
};
|
|
109
|
+
export const UsageLimitBreachAction = {
|
|
110
|
+
DEACTIVATE: "deactivate",
|
|
111
|
+
EMIT_METRIC: "emit-metric",
|
|
112
|
+
LOG: "log",
|
|
113
|
+
};
|
|
114
|
+
export const UsageLimitPeriod = {
|
|
115
|
+
DAILY: "daily",
|
|
116
|
+
MONTHLY: "monthly",
|
|
117
|
+
WEEKLY: "weekly",
|
|
118
|
+
};
|
|
119
|
+
export const UsageLimitUsageType = {
|
|
120
|
+
CROSS_REGION_DATASHARING: "cross-region-datasharing",
|
|
121
|
+
SERVERLESS_COMPUTE: "serverless-compute",
|
|
122
|
+
};
|
|
123
|
+
export const WorkgroupStatus = {
|
|
124
|
+
AVAILABLE: "AVAILABLE",
|
|
125
|
+
CREATING: "CREATING",
|
|
126
|
+
DELETING: "DELETING",
|
|
127
|
+
MODIFYING: "MODIFYING",
|
|
128
|
+
};
|
|
136
129
|
export class InsufficientCapacityException extends __BaseException {
|
|
137
130
|
constructor(opts) {
|
|
138
131
|
super({
|
|
@@ -81,15 +81,20 @@ export interface ConvertRecoveryPointToSnapshotRequest {
|
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
83
|
* @public
|
|
84
|
+
* @enum
|
|
84
85
|
*/
|
|
85
|
-
export declare
|
|
86
|
-
AVAILABLE
|
|
87
|
-
CANCELLED
|
|
88
|
-
COPYING
|
|
89
|
-
CREATING
|
|
90
|
-
DELETED
|
|
91
|
-
FAILED
|
|
92
|
-
}
|
|
86
|
+
export declare const SnapshotStatus: {
|
|
87
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
88
|
+
readonly CANCELLED: "CANCELLED";
|
|
89
|
+
readonly COPYING: "COPYING";
|
|
90
|
+
readonly CREATING: "CREATING";
|
|
91
|
+
readonly DELETED: "DELETED";
|
|
92
|
+
readonly FAILED: "FAILED";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
93
98
|
/**
|
|
94
99
|
* @public
|
|
95
100
|
* <p>A snapshot object that contains databases.</p>
|
|
@@ -394,12 +399,17 @@ export interface CreateEndpointAccessResponse {
|
|
|
394
399
|
}
|
|
395
400
|
/**
|
|
396
401
|
* @public
|
|
402
|
+
* @enum
|
|
397
403
|
*/
|
|
398
|
-
export declare
|
|
399
|
-
CONNECTION_LOG
|
|
400
|
-
USER_ACTIVITY_LOG
|
|
401
|
-
USER_LOG
|
|
402
|
-
}
|
|
404
|
+
export declare const LogExport: {
|
|
405
|
+
readonly CONNECTION_LOG: "connectionlog";
|
|
406
|
+
readonly USER_ACTIVITY_LOG: "useractivitylog";
|
|
407
|
+
readonly USER_LOG: "userlog";
|
|
408
|
+
};
|
|
409
|
+
/**
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
412
|
+
export type LogExport = (typeof LogExport)[keyof typeof LogExport];
|
|
403
413
|
/**
|
|
404
414
|
* @public
|
|
405
415
|
*/
|
|
@@ -444,12 +454,17 @@ export interface CreateNamespaceRequest {
|
|
|
444
454
|
}
|
|
445
455
|
/**
|
|
446
456
|
* @public
|
|
457
|
+
* @enum
|
|
447
458
|
*/
|
|
448
|
-
export declare
|
|
449
|
-
AVAILABLE
|
|
450
|
-
DELETING
|
|
451
|
-
MODIFYING
|
|
452
|
-
}
|
|
459
|
+
export declare const NamespaceStatus: {
|
|
460
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
461
|
+
readonly DELETING: "DELETING";
|
|
462
|
+
readonly MODIFYING: "MODIFYING";
|
|
463
|
+
};
|
|
464
|
+
/**
|
|
465
|
+
* @public
|
|
466
|
+
*/
|
|
467
|
+
export type NamespaceStatus = (typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
453
468
|
/**
|
|
454
469
|
* @public
|
|
455
470
|
* <p>A collection of database objects and users.</p>
|
|
@@ -544,27 +559,42 @@ export interface CreateSnapshotResponse {
|
|
|
544
559
|
}
|
|
545
560
|
/**
|
|
546
561
|
* @public
|
|
562
|
+
* @enum
|
|
547
563
|
*/
|
|
548
|
-
export declare
|
|
549
|
-
DEACTIVATE
|
|
550
|
-
EMIT_METRIC
|
|
551
|
-
LOG
|
|
552
|
-
}
|
|
564
|
+
export declare const UsageLimitBreachAction: {
|
|
565
|
+
readonly DEACTIVATE: "deactivate";
|
|
566
|
+
readonly EMIT_METRIC: "emit-metric";
|
|
567
|
+
readonly LOG: "log";
|
|
568
|
+
};
|
|
553
569
|
/**
|
|
554
570
|
* @public
|
|
555
571
|
*/
|
|
556
|
-
export
|
|
557
|
-
DAILY = "daily",
|
|
558
|
-
MONTHLY = "monthly",
|
|
559
|
-
WEEKLY = "weekly"
|
|
560
|
-
}
|
|
572
|
+
export type UsageLimitBreachAction = (typeof UsageLimitBreachAction)[keyof typeof UsageLimitBreachAction];
|
|
561
573
|
/**
|
|
562
574
|
* @public
|
|
575
|
+
* @enum
|
|
563
576
|
*/
|
|
564
|
-
export declare
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
577
|
+
export declare const UsageLimitPeriod: {
|
|
578
|
+
readonly DAILY: "daily";
|
|
579
|
+
readonly MONTHLY: "monthly";
|
|
580
|
+
readonly WEEKLY: "weekly";
|
|
581
|
+
};
|
|
582
|
+
/**
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
export type UsageLimitPeriod = (typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
* @enum
|
|
589
|
+
*/
|
|
590
|
+
export declare const UsageLimitUsageType: {
|
|
591
|
+
readonly CROSS_REGION_DATASHARING: "cross-region-datasharing";
|
|
592
|
+
readonly SERVERLESS_COMPUTE: "serverless-compute";
|
|
593
|
+
};
|
|
594
|
+
/**
|
|
595
|
+
* @public
|
|
596
|
+
*/
|
|
597
|
+
export type UsageLimitUsageType = (typeof UsageLimitUsageType)[keyof typeof UsageLimitUsageType];
|
|
568
598
|
/**
|
|
569
599
|
* @public
|
|
570
600
|
*/
|
|
@@ -704,13 +734,18 @@ export interface Endpoint {
|
|
|
704
734
|
}
|
|
705
735
|
/**
|
|
706
736
|
* @public
|
|
737
|
+
* @enum
|
|
707
738
|
*/
|
|
708
|
-
export declare
|
|
709
|
-
AVAILABLE
|
|
710
|
-
CREATING
|
|
711
|
-
DELETING
|
|
712
|
-
MODIFYING
|
|
713
|
-
}
|
|
739
|
+
export declare const WorkgroupStatus: {
|
|
740
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
741
|
+
readonly CREATING: "CREATING";
|
|
742
|
+
readonly DELETING: "DELETING";
|
|
743
|
+
readonly MODIFYING: "MODIFYING";
|
|
744
|
+
};
|
|
745
|
+
/**
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
export type WorkgroupStatus = (typeof WorkgroupStatus)[keyof typeof WorkgroupStatus];
|
|
714
749
|
/**
|
|
715
750
|
* @public
|
|
716
751
|
* <p>The collection of computing resources from which an endpoint is created.</p>
|
|
@@ -27,14 +27,16 @@ export interface ConvertRecoveryPointToSnapshotRequest {
|
|
|
27
27
|
retentionPeriod?: number;
|
|
28
28
|
tags?: Tag[];
|
|
29
29
|
}
|
|
30
|
-
export declare
|
|
31
|
-
AVAILABLE
|
|
32
|
-
CANCELLED
|
|
33
|
-
COPYING
|
|
34
|
-
CREATING
|
|
35
|
-
DELETED
|
|
36
|
-
FAILED
|
|
37
|
-
}
|
|
30
|
+
export declare const SnapshotStatus: {
|
|
31
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
32
|
+
readonly CANCELLED: "CANCELLED";
|
|
33
|
+
readonly COPYING: "COPYING";
|
|
34
|
+
readonly CREATING: "CREATING";
|
|
35
|
+
readonly DELETED: "DELETED";
|
|
36
|
+
readonly FAILED: "FAILED";
|
|
37
|
+
};
|
|
38
|
+
export type SnapshotStatus =
|
|
39
|
+
(typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
38
40
|
export interface Snapshot {
|
|
39
41
|
namespaceName?: string;
|
|
40
42
|
namespaceArn?: string;
|
|
@@ -134,11 +136,12 @@ export interface EndpointAccess {
|
|
|
134
136
|
export interface CreateEndpointAccessResponse {
|
|
135
137
|
endpoint?: EndpointAccess;
|
|
136
138
|
}
|
|
137
|
-
export declare
|
|
138
|
-
CONNECTION_LOG
|
|
139
|
-
USER_ACTIVITY_LOG
|
|
140
|
-
USER_LOG
|
|
141
|
-
}
|
|
139
|
+
export declare const LogExport: {
|
|
140
|
+
readonly CONNECTION_LOG: "connectionlog";
|
|
141
|
+
readonly USER_ACTIVITY_LOG: "useractivitylog";
|
|
142
|
+
readonly USER_LOG: "userlog";
|
|
143
|
+
};
|
|
144
|
+
export type LogExport = (typeof LogExport)[keyof typeof LogExport];
|
|
142
145
|
export interface CreateNamespaceRequest {
|
|
143
146
|
namespaceName: string | undefined;
|
|
144
147
|
adminUsername?: string;
|
|
@@ -150,11 +153,13 @@ export interface CreateNamespaceRequest {
|
|
|
150
153
|
logExports?: (LogExport | string)[];
|
|
151
154
|
tags?: Tag[];
|
|
152
155
|
}
|
|
153
|
-
export declare
|
|
154
|
-
AVAILABLE
|
|
155
|
-
DELETING
|
|
156
|
-
MODIFYING
|
|
157
|
-
}
|
|
156
|
+
export declare const NamespaceStatus: {
|
|
157
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
158
|
+
readonly DELETING: "DELETING";
|
|
159
|
+
readonly MODIFYING: "MODIFYING";
|
|
160
|
+
};
|
|
161
|
+
export type NamespaceStatus =
|
|
162
|
+
(typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
158
163
|
export interface Namespace {
|
|
159
164
|
namespaceArn?: string;
|
|
160
165
|
namespaceId?: string;
|
|
@@ -180,20 +185,26 @@ export interface CreateSnapshotRequest {
|
|
|
180
185
|
export interface CreateSnapshotResponse {
|
|
181
186
|
snapshot?: Snapshot;
|
|
182
187
|
}
|
|
183
|
-
export declare
|
|
184
|
-
DEACTIVATE
|
|
185
|
-
EMIT_METRIC
|
|
186
|
-
LOG
|
|
187
|
-
}
|
|
188
|
-
export
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
188
|
+
export declare const UsageLimitBreachAction: {
|
|
189
|
+
readonly DEACTIVATE: "deactivate";
|
|
190
|
+
readonly EMIT_METRIC: "emit-metric";
|
|
191
|
+
readonly LOG: "log";
|
|
192
|
+
};
|
|
193
|
+
export type UsageLimitBreachAction =
|
|
194
|
+
(typeof UsageLimitBreachAction)[keyof typeof UsageLimitBreachAction];
|
|
195
|
+
export declare const UsageLimitPeriod: {
|
|
196
|
+
readonly DAILY: "daily";
|
|
197
|
+
readonly MONTHLY: "monthly";
|
|
198
|
+
readonly WEEKLY: "weekly";
|
|
199
|
+
};
|
|
200
|
+
export type UsageLimitPeriod =
|
|
201
|
+
(typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
|
|
202
|
+
export declare const UsageLimitUsageType: {
|
|
203
|
+
readonly CROSS_REGION_DATASHARING: "cross-region-datasharing";
|
|
204
|
+
readonly SERVERLESS_COMPUTE: "serverless-compute";
|
|
205
|
+
};
|
|
206
|
+
export type UsageLimitUsageType =
|
|
207
|
+
(typeof UsageLimitUsageType)[keyof typeof UsageLimitUsageType];
|
|
197
208
|
export interface CreateUsageLimitRequest {
|
|
198
209
|
resourceArn: string | undefined;
|
|
199
210
|
usageType: UsageLimitUsageType | string | undefined;
|
|
@@ -230,12 +241,14 @@ export interface Endpoint {
|
|
|
230
241
|
port?: number;
|
|
231
242
|
vpcEndpoints?: VpcEndpoint[];
|
|
232
243
|
}
|
|
233
|
-
export declare
|
|
234
|
-
AVAILABLE
|
|
235
|
-
CREATING
|
|
236
|
-
DELETING
|
|
237
|
-
MODIFYING
|
|
238
|
-
}
|
|
244
|
+
export declare const WorkgroupStatus: {
|
|
245
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
246
|
+
readonly CREATING: "CREATING";
|
|
247
|
+
readonly DELETING: "DELETING";
|
|
248
|
+
readonly MODIFYING: "MODIFYING";
|
|
249
|
+
};
|
|
250
|
+
export type WorkgroupStatus =
|
|
251
|
+
(typeof WorkgroupStatus)[keyof typeof WorkgroupStatus];
|
|
239
252
|
export interface Workgroup {
|
|
240
253
|
workgroupId?: string;
|
|
241
254
|
workgroupArn?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.306.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|