@aws-sdk/client-detective 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 +29 -35
- package/dist-es/models/models_0.js +29 -35
- package/dist-types/models/models_0.d.ts +59 -29
- package/dist-types/ts3.4/models/models_0.d.ts +39 -29
- package/package.json +34 -34
|
@@ -2,12 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TooManyRequestsException = exports.MemberStatus = exports.InvitationType = exports.MemberDisabledReason = exports.ServiceQuotaExceededException = exports.DatasourcePackageIngestState = exports.DatasourcePackage = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = exports.ErrorCode = void 0;
|
|
4
4
|
const DetectiveServiceException_1 = require("./DetectiveServiceException");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
|
5
|
+
exports.ErrorCode = {
|
|
6
|
+
InternalError: "INTERNAL_ERROR",
|
|
7
|
+
InvalidGraphArn: "INVALID_GRAPH_ARN",
|
|
8
|
+
InvalidRequestBody: "INVALID_REQUEST_BODY",
|
|
9
|
+
};
|
|
11
10
|
class AccessDeniedException extends DetectiveServiceException_1.DetectiveServiceException {
|
|
12
11
|
constructor(opts) {
|
|
13
12
|
super({
|
|
@@ -84,17 +83,15 @@ class ValidationException extends DetectiveServiceException_1.DetectiveServiceEx
|
|
|
84
83
|
}
|
|
85
84
|
}
|
|
86
85
|
exports.ValidationException = ValidationException;
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
DatasourcePackageIngestState["STOPPED"] = "STOPPED";
|
|
97
|
-
})(DatasourcePackageIngestState = exports.DatasourcePackageIngestState || (exports.DatasourcePackageIngestState = {}));
|
|
86
|
+
exports.DatasourcePackage = {
|
|
87
|
+
DETECTIVE_CORE: "DETECTIVE_CORE",
|
|
88
|
+
EKS_AUDIT: "EKS_AUDIT",
|
|
89
|
+
};
|
|
90
|
+
exports.DatasourcePackageIngestState = {
|
|
91
|
+
DISABLED: "DISABLED",
|
|
92
|
+
STARTED: "STARTED",
|
|
93
|
+
STOPPED: "STOPPED",
|
|
94
|
+
};
|
|
98
95
|
class ServiceQuotaExceededException extends DetectiveServiceException_1.DetectiveServiceException {
|
|
99
96
|
constructor(opts) {
|
|
100
97
|
super({
|
|
@@ -110,24 +107,21 @@ class ServiceQuotaExceededException extends DetectiveServiceException_1.Detectiv
|
|
|
110
107
|
}
|
|
111
108
|
}
|
|
112
109
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
MemberStatus["VERIFICATION_FAILED"] = "VERIFICATION_FAILED";
|
|
129
|
-
MemberStatus["VERIFICATION_IN_PROGRESS"] = "VERIFICATION_IN_PROGRESS";
|
|
130
|
-
})(MemberStatus = exports.MemberStatus || (exports.MemberStatus = {}));
|
|
110
|
+
exports.MemberDisabledReason = {
|
|
111
|
+
VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH",
|
|
112
|
+
VOLUME_UNKNOWN: "VOLUME_UNKNOWN",
|
|
113
|
+
};
|
|
114
|
+
exports.InvitationType = {
|
|
115
|
+
INVITATION: "INVITATION",
|
|
116
|
+
ORGANIZATION: "ORGANIZATION",
|
|
117
|
+
};
|
|
118
|
+
exports.MemberStatus = {
|
|
119
|
+
ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED",
|
|
120
|
+
ENABLED: "ENABLED",
|
|
121
|
+
INVITED: "INVITED",
|
|
122
|
+
VERIFICATION_FAILED: "VERIFICATION_FAILED",
|
|
123
|
+
VERIFICATION_IN_PROGRESS: "VERIFICATION_IN_PROGRESS",
|
|
124
|
+
};
|
|
131
125
|
class TooManyRequestsException extends DetectiveServiceException_1.DetectiveServiceException {
|
|
132
126
|
constructor(opts) {
|
|
133
127
|
super({
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { DetectiveServiceException as __BaseException } from "./DetectiveServiceException";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
})(ErrorCode || (ErrorCode = {}));
|
|
2
|
+
export const ErrorCode = {
|
|
3
|
+
InternalError: "INTERNAL_ERROR",
|
|
4
|
+
InvalidGraphArn: "INVALID_GRAPH_ARN",
|
|
5
|
+
InvalidRequestBody: "INVALID_REQUEST_BODY",
|
|
6
|
+
};
|
|
8
7
|
export class AccessDeniedException extends __BaseException {
|
|
9
8
|
constructor(opts) {
|
|
10
9
|
super({
|
|
@@ -76,17 +75,15 @@ export class ValidationException extends __BaseException {
|
|
|
76
75
|
this.ErrorCodeReason = opts.ErrorCodeReason;
|
|
77
76
|
}
|
|
78
77
|
}
|
|
79
|
-
export
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
DatasourcePackageIngestState["STOPPED"] = "STOPPED";
|
|
89
|
-
})(DatasourcePackageIngestState || (DatasourcePackageIngestState = {}));
|
|
78
|
+
export const DatasourcePackage = {
|
|
79
|
+
DETECTIVE_CORE: "DETECTIVE_CORE",
|
|
80
|
+
EKS_AUDIT: "EKS_AUDIT",
|
|
81
|
+
};
|
|
82
|
+
export const DatasourcePackageIngestState = {
|
|
83
|
+
DISABLED: "DISABLED",
|
|
84
|
+
STARTED: "STARTED",
|
|
85
|
+
STOPPED: "STOPPED",
|
|
86
|
+
};
|
|
90
87
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
91
88
|
constructor(opts) {
|
|
92
89
|
super({
|
|
@@ -101,24 +98,21 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
101
98
|
this.Resources = opts.Resources;
|
|
102
99
|
}
|
|
103
100
|
}
|
|
104
|
-
export
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
MemberStatus["VERIFICATION_FAILED"] = "VERIFICATION_FAILED";
|
|
120
|
-
MemberStatus["VERIFICATION_IN_PROGRESS"] = "VERIFICATION_IN_PROGRESS";
|
|
121
|
-
})(MemberStatus || (MemberStatus = {}));
|
|
101
|
+
export const MemberDisabledReason = {
|
|
102
|
+
VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH",
|
|
103
|
+
VOLUME_UNKNOWN: "VOLUME_UNKNOWN",
|
|
104
|
+
};
|
|
105
|
+
export const InvitationType = {
|
|
106
|
+
INVITATION: "INVITATION",
|
|
107
|
+
ORGANIZATION: "ORGANIZATION",
|
|
108
|
+
};
|
|
109
|
+
export const MemberStatus = {
|
|
110
|
+
ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED",
|
|
111
|
+
ENABLED: "ENABLED",
|
|
112
|
+
INVITED: "INVITED",
|
|
113
|
+
VERIFICATION_FAILED: "VERIFICATION_FAILED",
|
|
114
|
+
VERIFICATION_IN_PROGRESS: "VERIFICATION_IN_PROGRESS",
|
|
115
|
+
};
|
|
122
116
|
export class TooManyRequestsException extends __BaseException {
|
|
123
117
|
constructor(opts) {
|
|
124
118
|
super({
|
|
@@ -13,12 +13,17 @@ export interface AcceptInvitationRequest {
|
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
15
|
* @public
|
|
16
|
+
* @enum
|
|
16
17
|
*/
|
|
17
|
-
export declare
|
|
18
|
-
InternalError
|
|
19
|
-
InvalidGraphArn
|
|
20
|
-
InvalidRequestBody
|
|
21
|
-
}
|
|
18
|
+
export declare const ErrorCode: {
|
|
19
|
+
readonly InternalError: "INTERNAL_ERROR";
|
|
20
|
+
readonly InvalidGraphArn: "INVALID_GRAPH_ARN";
|
|
21
|
+
readonly InvalidRequestBody: "INVALID_REQUEST_BODY";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
22
27
|
/**
|
|
23
28
|
* @public
|
|
24
29
|
* <p>The request issuer does not have permission to access this resource or perform this
|
|
@@ -163,19 +168,29 @@ export interface BatchGetGraphMemberDatasourcesRequest {
|
|
|
163
168
|
}
|
|
164
169
|
/**
|
|
165
170
|
* @public
|
|
171
|
+
* @enum
|
|
166
172
|
*/
|
|
167
|
-
export declare
|
|
168
|
-
DETECTIVE_CORE
|
|
169
|
-
EKS_AUDIT
|
|
170
|
-
}
|
|
173
|
+
export declare const DatasourcePackage: {
|
|
174
|
+
readonly DETECTIVE_CORE: "DETECTIVE_CORE";
|
|
175
|
+
readonly EKS_AUDIT: "EKS_AUDIT";
|
|
176
|
+
};
|
|
171
177
|
/**
|
|
172
178
|
* @public
|
|
173
179
|
*/
|
|
174
|
-
export
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
180
|
+
export type DatasourcePackage = (typeof DatasourcePackage)[keyof typeof DatasourcePackage];
|
|
181
|
+
/**
|
|
182
|
+
* @public
|
|
183
|
+
* @enum
|
|
184
|
+
*/
|
|
185
|
+
export declare const DatasourcePackageIngestState: {
|
|
186
|
+
readonly DISABLED: "DISABLED";
|
|
187
|
+
readonly STARTED: "STARTED";
|
|
188
|
+
readonly STOPPED: "STOPPED";
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export type DatasourcePackageIngestState = (typeof DatasourcePackageIngestState)[keyof typeof DatasourcePackageIngestState];
|
|
179
194
|
/**
|
|
180
195
|
* @public
|
|
181
196
|
* <p>Details on when data collection began for a source package.</p>
|
|
@@ -355,28 +370,43 @@ export interface CreateMembersRequest {
|
|
|
355
370
|
}
|
|
356
371
|
/**
|
|
357
372
|
* @public
|
|
373
|
+
* @enum
|
|
358
374
|
*/
|
|
359
|
-
export declare
|
|
360
|
-
VOLUME_TOO_HIGH
|
|
361
|
-
VOLUME_UNKNOWN
|
|
362
|
-
}
|
|
375
|
+
export declare const MemberDisabledReason: {
|
|
376
|
+
readonly VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH";
|
|
377
|
+
readonly VOLUME_UNKNOWN: "VOLUME_UNKNOWN";
|
|
378
|
+
};
|
|
363
379
|
/**
|
|
364
380
|
* @public
|
|
365
381
|
*/
|
|
366
|
-
export
|
|
367
|
-
INVITATION = "INVITATION",
|
|
368
|
-
ORGANIZATION = "ORGANIZATION"
|
|
369
|
-
}
|
|
382
|
+
export type MemberDisabledReason = (typeof MemberDisabledReason)[keyof typeof MemberDisabledReason];
|
|
370
383
|
/**
|
|
371
384
|
* @public
|
|
385
|
+
* @enum
|
|
372
386
|
*/
|
|
373
|
-
export declare
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
387
|
+
export declare const InvitationType: {
|
|
388
|
+
readonly INVITATION: "INVITATION";
|
|
389
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
390
|
+
};
|
|
391
|
+
/**
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
394
|
+
export type InvitationType = (typeof InvitationType)[keyof typeof InvitationType];
|
|
395
|
+
/**
|
|
396
|
+
* @public
|
|
397
|
+
* @enum
|
|
398
|
+
*/
|
|
399
|
+
export declare const MemberStatus: {
|
|
400
|
+
readonly ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED";
|
|
401
|
+
readonly ENABLED: "ENABLED";
|
|
402
|
+
readonly INVITED: "INVITED";
|
|
403
|
+
readonly VERIFICATION_FAILED: "VERIFICATION_FAILED";
|
|
404
|
+
readonly VERIFICATION_IN_PROGRESS: "VERIFICATION_IN_PROGRESS";
|
|
405
|
+
};
|
|
406
|
+
/**
|
|
407
|
+
* @public
|
|
408
|
+
*/
|
|
409
|
+
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
380
410
|
/**
|
|
381
411
|
* @public
|
|
382
412
|
* <p>Information on the usage of a data source package in the behavior graph.</p>
|
|
@@ -3,11 +3,12 @@ import { DetectiveServiceException as __BaseException } from "./DetectiveService
|
|
|
3
3
|
export interface AcceptInvitationRequest {
|
|
4
4
|
GraphArn: string | undefined;
|
|
5
5
|
}
|
|
6
|
-
export declare
|
|
7
|
-
InternalError
|
|
8
|
-
InvalidGraphArn
|
|
9
|
-
InvalidRequestBody
|
|
10
|
-
}
|
|
6
|
+
export declare const ErrorCode: {
|
|
7
|
+
readonly InternalError: "INTERNAL_ERROR";
|
|
8
|
+
readonly InvalidGraphArn: "INVALID_GRAPH_ARN";
|
|
9
|
+
readonly InvalidRequestBody: "INVALID_REQUEST_BODY";
|
|
10
|
+
};
|
|
11
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
11
12
|
export declare class AccessDeniedException extends __BaseException {
|
|
12
13
|
readonly name: "AccessDeniedException";
|
|
13
14
|
readonly $fault: "client";
|
|
@@ -65,15 +66,19 @@ export interface BatchGetGraphMemberDatasourcesRequest {
|
|
|
65
66
|
GraphArn: string | undefined;
|
|
66
67
|
AccountIds: string[] | undefined;
|
|
67
68
|
}
|
|
68
|
-
export declare
|
|
69
|
-
DETECTIVE_CORE
|
|
70
|
-
EKS_AUDIT
|
|
71
|
-
}
|
|
72
|
-
export
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
69
|
+
export declare const DatasourcePackage: {
|
|
70
|
+
readonly DETECTIVE_CORE: "DETECTIVE_CORE";
|
|
71
|
+
readonly EKS_AUDIT: "EKS_AUDIT";
|
|
72
|
+
};
|
|
73
|
+
export type DatasourcePackage =
|
|
74
|
+
(typeof DatasourcePackage)[keyof typeof DatasourcePackage];
|
|
75
|
+
export declare const DatasourcePackageIngestState: {
|
|
76
|
+
readonly DISABLED: "DISABLED";
|
|
77
|
+
readonly STARTED: "STARTED";
|
|
78
|
+
readonly STOPPED: "STOPPED";
|
|
79
|
+
};
|
|
80
|
+
export type DatasourcePackageIngestState =
|
|
81
|
+
(typeof DatasourcePackageIngestState)[keyof typeof DatasourcePackageIngestState];
|
|
77
82
|
export interface TimestampForCollection {
|
|
78
83
|
Timestamp?: Date;
|
|
79
84
|
}
|
|
@@ -125,21 +130,26 @@ export interface CreateMembersRequest {
|
|
|
125
130
|
DisableEmailNotification?: boolean;
|
|
126
131
|
Accounts: Account[] | undefined;
|
|
127
132
|
}
|
|
128
|
-
export declare
|
|
129
|
-
VOLUME_TOO_HIGH
|
|
130
|
-
VOLUME_UNKNOWN
|
|
131
|
-
}
|
|
132
|
-
export
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
133
|
+
export declare const MemberDisabledReason: {
|
|
134
|
+
readonly VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH";
|
|
135
|
+
readonly VOLUME_UNKNOWN: "VOLUME_UNKNOWN";
|
|
136
|
+
};
|
|
137
|
+
export type MemberDisabledReason =
|
|
138
|
+
(typeof MemberDisabledReason)[keyof typeof MemberDisabledReason];
|
|
139
|
+
export declare const InvitationType: {
|
|
140
|
+
readonly INVITATION: "INVITATION";
|
|
141
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
142
|
+
};
|
|
143
|
+
export type InvitationType =
|
|
144
|
+
(typeof InvitationType)[keyof typeof InvitationType];
|
|
145
|
+
export declare const MemberStatus: {
|
|
146
|
+
readonly ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED";
|
|
147
|
+
readonly ENABLED: "ENABLED";
|
|
148
|
+
readonly INVITED: "INVITED";
|
|
149
|
+
readonly VERIFICATION_FAILED: "VERIFICATION_FAILED";
|
|
150
|
+
readonly VERIFICATION_IN_PROGRESS: "VERIFICATION_IN_PROGRESS";
|
|
151
|
+
};
|
|
152
|
+
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
143
153
|
export interface DatasourcePackageUsageInfo {
|
|
144
154
|
VolumeUsageInBytes?: number;
|
|
145
155
|
VolumeUsageUpdateTime?: Date;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-detective",
|
|
3
3
|
"description": "AWS SDK for JavaScript Detective 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",
|