@aws-sdk/client-security-ir 3.774.0 → 3.777.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.
Files changed (31) hide show
  1. package/dist-cjs/SecurityIRClient.js +2 -1
  2. package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
  3. package/dist-cjs/endpoint/EndpointParameters.js +2 -3
  4. package/dist-cjs/runtimeExtensions.js +2 -14
  5. package/dist-es/SecurityIRClient.js +2 -1
  6. package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
  7. package/dist-es/endpoint/EndpointParameters.js +2 -3
  8. package/dist-es/runtimeExtensions.js +2 -14
  9. package/dist-types/commands/BatchGetMemberAccountDetailsCommand.d.ts +9 -9
  10. package/dist-types/commands/CancelMembershipCommand.d.ts +5 -5
  11. package/dist-types/commands/CloseCaseCommand.d.ts +6 -6
  12. package/dist-types/commands/CreateCaseCommand.d.ts +25 -22
  13. package/dist-types/commands/CreateCaseCommentCommand.d.ts +6 -6
  14. package/dist-types/commands/CreateMembershipCommand.d.ts +15 -15
  15. package/dist-types/commands/GetCaseAttachmentDownloadUrlCommand.d.ts +6 -6
  16. package/dist-types/commands/GetCaseAttachmentUploadUrlCommand.d.ts +7 -7
  17. package/dist-types/commands/GetCaseCommand.d.ts +29 -29
  18. package/dist-types/commands/GetMembershipCommand.d.ts +24 -24
  19. package/dist-types/commands/ListCaseEditsCommand.d.ts +10 -10
  20. package/dist-types/commands/ListCasesCommand.d.ts +15 -15
  21. package/dist-types/commands/ListCommentsCommand.d.ts +8 -8
  22. package/dist-types/commands/ListMembershipsCommand.d.ts +10 -10
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -7
  24. package/dist-types/commands/TagResourceCommand.d.ts +10 -7
  25. package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
  26. package/dist-types/commands/UpdateCaseCommand.d.ts +34 -31
  27. package/dist-types/commands/UpdateCaseCommentCommand.d.ts +8 -8
  28. package/dist-types/commands/UpdateCaseStatusCommand.d.ts +6 -6
  29. package/dist-types/commands/UpdateMembershipCommand.d.ts +18 -15
  30. package/dist-types/commands/UpdateResolverTypeCommand.d.ts +8 -8
  31. package/package.json +33 -33
@@ -92,31 +92,31 @@ declare const ListCaseEditsCommand_base: {
92
92
  * @throws {@link SecurityIRServiceException}
93
93
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
94
94
  *
95
- * @public
95
+ *
96
96
  * @example Invoke ListCaseEdits
97
97
  * ```javascript
98
98
  * //
99
99
  * const input = {
100
- * "caseId": "8403556009"
100
+ * caseId: "8403556009"
101
101
  * };
102
102
  * const command = new ListCaseEditsCommand(input);
103
103
  * const response = await client.send(command);
104
- * /* response ==
104
+ * /* response is
105
105
  * {
106
- * "items": [
106
+ * items: [
107
107
  * {
108
- * "action": "Add comment",
109
- * "eventTimestamp": "2023-03-27T15:32:01.789Z",
110
- * "message": "Added comment to ask question to responder.",
111
- * "principal": "00000000000"
108
+ * action: "Add comment",
109
+ * eventTimestamp: "2023-03-27T15:32:01.789Z",
110
+ * message: "Added comment to ask question to responder.",
111
+ * principal: "00000000000"
112
112
  * }
113
113
  * ],
114
- * "total": 1
114
+ * total: 1
115
115
  * }
116
116
  * *\/
117
- * // example id: example-1
118
117
  * ```
119
118
  *
119
+ * @public
120
120
  */
121
121
  export declare class ListCaseEditsCommand extends ListCaseEditsCommand_base {
122
122
  /** @internal type navigation helper, not in runtime. */
@@ -97,36 +97,36 @@ declare const ListCasesCommand_base: {
97
97
  * @throws {@link SecurityIRServiceException}
98
98
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
99
99
  *
100
- * @public
100
+ *
101
101
  * @example Invoke ListCases
102
102
  * ```javascript
103
103
  * //
104
104
  * const input = {
105
- * "maxResults": 10
105
+ * maxResults: 10
106
106
  * };
107
107
  * const command = new ListCasesCommand(input);
108
108
  * const response = await client.send(command);
109
- * /* response ==
109
+ * /* response is
110
110
  * {
111
- * "items": [
111
+ * items: [
112
112
  * {
113
- * "caseArn": "arn:aws:security-ir:us-west-1:123456789012:case/1234567890",
114
- * "caseId": "8403556009",
115
- * "caseStatus": "Acknowledged",
116
- * "createdDate": "2023-01-27T15:32:01.789Z",
117
- * "engagementType": "Security Incident",
118
- * "lastUpdatedDate": "2023-03-27T15:32:01.789Z",
119
- * "pendingAction": "None",
120
- * "resolverType": "Self",
121
- * "title": "Example case title"
113
+ * caseArn: "arn:aws:security-ir:us-west-1:123456789012:case/1234567890",
114
+ * caseId: "8403556009",
115
+ * caseStatus: "Acknowledged",
116
+ * createdDate: "2023-01-27T15:32:01.789Z",
117
+ * engagementType: "Security Incident",
118
+ * lastUpdatedDate: "2023-03-27T15:32:01.789Z",
119
+ * pendingAction: "None",
120
+ * resolverType: "Self",
121
+ * title: "Example case title"
122
122
  * }
123
123
  * ],
124
- * "total": 1
124
+ * total: 1
125
125
  * }
126
126
  * *\/
127
- * // example id: example-1
128
127
  * ```
129
128
  *
129
+ * @public
130
130
  */
131
131
  export declare class ListCasesCommand extends ListCasesCommand_base {
132
132
  /** @internal type navigation helper, not in runtime. */
@@ -94,29 +94,29 @@ declare const ListCommentsCommand_base: {
94
94
  * @throws {@link SecurityIRServiceException}
95
95
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
96
96
  *
97
- * @public
97
+ *
98
98
  * @example Invoke ListComments
99
99
  * ```javascript
100
100
  * //
101
101
  * const input = {
102
- * "caseId": "8403556009"
102
+ * caseId: "8403556009"
103
103
  * };
104
104
  * const command = new ListCommentsCommand(input);
105
105
  * const response = await client.send(command);
106
- * /* response ==
106
+ * /* response is
107
107
  * {
108
- * "items": [
108
+ * items: [
109
109
  * {
110
- * "body": "Case comment body.",
111
- * "commentId": "000000"
110
+ * body: "Case comment body.",
111
+ * commentId: "000000"
112
112
  * }
113
113
  * ],
114
- * "total": 1
114
+ * total: 1
115
115
  * }
116
116
  * *\/
117
- * // example id: example-1
118
117
  * ```
119
118
  *
119
+ * @public
120
120
  */
121
121
  export declare class ListCommentsCommand extends ListCommentsCommand_base {
122
122
  /** @internal type navigation helper, not in runtime. */
@@ -91,31 +91,31 @@ declare const ListMembershipsCommand_base: {
91
91
  * @throws {@link SecurityIRServiceException}
92
92
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
93
93
  *
94
- * @public
94
+ *
95
95
  * @example Invoke ListMemberships
96
96
  * ```javascript
97
97
  * //
98
98
  * const input = {
99
- * "maxResults": 10
99
+ * maxResults: 10
100
100
  * };
101
101
  * const command = new ListMembershipsCommand(input);
102
102
  * const response = await client.send(command);
103
- * /* response ==
103
+ * /* response is
104
104
  * {
105
- * "items": [
105
+ * items: [
106
106
  * {
107
- * "accountId": "123123123123",
108
- * "membershipArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh",
109
- * "membershipId": "m-abcd1234efgh",
110
- * "membershipStatus": "Cancelled",
111
- * "region": "af-south-1"
107
+ * accountId: "123123123123",
108
+ * membershipArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh",
109
+ * membershipId: "m-abcd1234efgh",
110
+ * membershipStatus: "Cancelled",
111
+ * region: "af-south-1"
112
112
  * }
113
113
  * ]
114
114
  * }
115
115
  * *\/
116
- * // example id: example-1
117
116
  * ```
118
117
  *
118
+ * @public
119
119
  */
120
120
  export declare class ListMembershipsCommand extends ListMembershipsCommand_base {
121
121
  /** @internal type navigation helper, not in runtime. */
@@ -83,26 +83,26 @@ declare const ListTagsForResourceCommand_base: {
83
83
  * @throws {@link SecurityIRServiceException}
84
84
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
85
85
  *
86
- * @public
86
+ *
87
87
  * @example Invoke ListTagsForResource
88
88
  * ```javascript
89
89
  * //
90
90
  * const input = {
91
- * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh"
91
+ * resourceArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh"
92
92
  * };
93
93
  * const command = new ListTagsForResourceCommand(input);
94
94
  * const response = await client.send(command);
95
- * /* response ==
95
+ * /* response is
96
96
  * {
97
- * "tags": {
98
- * "key": "example-tag-key",
99
- * "value": "example-tag-value"
97
+ * tags: {
98
+ * key: "example-tag-key",
99
+ * value: "example-tag-value"
100
100
  * }
101
101
  * }
102
102
  * *\/
103
- * // example id: example-1
104
103
  * ```
105
104
  *
105
+ * @public
106
106
  */
107
107
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
108
108
  /** @internal type navigation helper, not in runtime. */
@@ -82,22 +82,25 @@ declare const TagResourceCommand_base: {
82
82
  * @throws {@link SecurityIRServiceException}
83
83
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
84
84
  *
85
- * @public
85
+ *
86
86
  * @example Invoke TagResource
87
87
  * ```javascript
88
88
  * //
89
89
  * const input = {
90
- * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh",
91
- * "tags": {
92
- * "key": "example-tag-key",
93
- * "value": "example-tag-value"
90
+ * resourceArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh",
91
+ * tags: {
92
+ * key: "example-tag-key",
93
+ * value: "example-tag-value"
94
94
  * }
95
95
  * };
96
96
  * const command = new TagResourceCommand(input);
97
- * await client.send(command);
98
- * // example id: example-1
97
+ * const response = await client.send(command);
98
+ * /* response is
99
+ * { /* empty *\/ }
100
+ * *\/
99
101
  * ```
100
102
  *
103
+ * @public
101
104
  */
102
105
  export declare class TagResourceCommand extends TagResourceCommand_base {
103
106
  /** @internal type navigation helper, not in runtime. */
@@ -82,21 +82,24 @@ declare const UntagResourceCommand_base: {
82
82
  * @throws {@link SecurityIRServiceException}
83
83
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
84
84
  *
85
- * @public
85
+ *
86
86
  * @example Invoke UntagResource
87
87
  * ```javascript
88
88
  * //
89
89
  * const input = {
90
- * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh",
91
- * "tagKeys": [
90
+ * resourceArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh",
91
+ * tagKeys: [
92
92
  * "example-tag-key"
93
93
  * ]
94
94
  * };
95
95
  * const command = new UntagResourceCommand(input);
96
- * await client.send(command);
97
- * // example id: example-1
96
+ * const response = await client.send(command);
97
+ * /* response is
98
+ * { /* metadata only *\/ }
99
+ * *\/
98
100
  * ```
99
101
  *
102
+ * @public
100
103
  */
101
104
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
102
105
  /** @internal type navigation helper, not in runtime. */
@@ -132,71 +132,74 @@ declare const UpdateCaseCommand_base: {
132
132
  * @throws {@link SecurityIRServiceException}
133
133
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
134
134
  *
135
- * @public
135
+ *
136
136
  * @example Invoke UpdateCase
137
137
  * ```javascript
138
138
  * //
139
139
  * const input = {
140
- * "actualIncidentStartDate": "2023-03-25T15:32:01.789Z",
141
- * "caseId": "8403556009",
142
- * "description": "Case description",
143
- * "engagementType": "Investigation",
144
- * "impactedAccountsToAdd": [
140
+ * actualIncidentStartDate: "2023-03-25T15:32:01.789Z",
141
+ * caseId: "8403556009",
142
+ * description: "Case description",
143
+ * engagementType: "Investigation",
144
+ * impactedAccountsToAdd: [
145
145
  * "000000000000"
146
146
  * ],
147
- * "impactedAccountsToDelete": [
147
+ * impactedAccountsToDelete: [
148
148
  * "111111111111"
149
149
  * ],
150
- * "impactedAwsRegionsToAdd": [
150
+ * impactedAwsRegionsToAdd: [
151
151
  * {
152
- * "region": "ap-southeast-1"
152
+ * region: "ap-southeast-1"
153
153
  * }
154
154
  * ],
155
- * "impactedAwsRegionsToDelete": [
155
+ * impactedAwsRegionsToDelete: [
156
156
  * {
157
- * "region": "us-east-1"
157
+ * region: "us-east-1"
158
158
  * }
159
159
  * ],
160
- * "impactedServicesToAdd": [
160
+ * impactedServicesToAdd: [
161
161
  * "Amazon EC2"
162
162
  * ],
163
- * "impactedServicesToDelete": [
163
+ * impactedServicesToDelete: [
164
164
  * "Amazon EKS"
165
165
  * ],
166
- * "reportedIncidentStartDate": "2023-03-27T15:32:01.789Z",
167
- * "threatActorIpAddressesToAdd": [
166
+ * reportedIncidentStartDate: "2023-03-27T15:32:01.789Z",
167
+ * threatActorIpAddressesToAdd: [
168
168
  * {
169
- * "ipAddress": "190.160.190.160",
170
- * "userAgent": "Browser"
169
+ * ipAddress: "190.160.190.160",
170
+ * userAgent: "Browser"
171
171
  * }
172
172
  * ],
173
- * "threatActorIpAddressesToDelete": [
173
+ * threatActorIpAddressesToDelete: [
174
174
  * {
175
- * "ipAddress": "192.168.192.168",
176
- * "userAgent": "Browser"
175
+ * ipAddress: "192.168.192.168",
176
+ * userAgent: "Browser"
177
177
  * }
178
178
  * ],
179
- * "title": "My sample case",
180
- * "watchersToAdd": [
179
+ * title: "My sample case",
180
+ * watchersToAdd: [
181
181
  * {
182
- * "name": "Same",
183
- * "email": "Sam@example.com",
184
- * "jobTitle": "CEO"
182
+ * email: "Sam@example.com",
183
+ * jobTitle: "CEO",
184
+ * name: "Same"
185
185
  * }
186
186
  * ],
187
- * "watchersToDelete": [
187
+ * watchersToDelete: [
188
188
  * {
189
- * "name": "Bob",
190
- * "email": "bob@example.com",
191
- * "jobTitle": "CFO"
189
+ * email: "bob@example.com",
190
+ * jobTitle: "CFO",
191
+ * name: "Bob"
192
192
  * }
193
193
  * ]
194
194
  * };
195
195
  * const command = new UpdateCaseCommand(input);
196
- * await client.send(command);
197
- * // example id: example-1
196
+ * const response = await client.send(command);
197
+ * /* response is
198
+ * { /* empty *\/ }
199
+ * *\/
198
200
  * ```
199
201
  *
202
+ * @public
200
203
  */
201
204
  export declare class UpdateCaseCommand extends UpdateCaseCommand_base {
202
205
  /** @internal type navigation helper, not in runtime. */
@@ -84,26 +84,26 @@ declare const UpdateCaseCommentCommand_base: {
84
84
  * @throws {@link SecurityIRServiceException}
85
85
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
86
86
  *
87
- * @public
87
+ *
88
88
  * @example Invoke UpdateCaseComment
89
89
  * ```javascript
90
90
  * //
91
91
  * const input = {
92
- * "body": "Updated case comment.",
93
- * "caseId": "8403556009",
94
- * "commentId": "000000"
92
+ * body: "Updated case comment.",
93
+ * caseId: "8403556009",
94
+ * commentId: "000000"
95
95
  * };
96
96
  * const command = new UpdateCaseCommentCommand(input);
97
97
  * const response = await client.send(command);
98
- * /* response ==
98
+ * /* response is
99
99
  * {
100
- * "body": "Updated case comment.",
101
- * "commentId": "000000"
100
+ * body: "Updated case comment.",
101
+ * commentId: "000000"
102
102
  * }
103
103
  * *\/
104
- * // example id: example-1
105
104
  * ```
106
105
  *
106
+ * @public
107
107
  */
108
108
  export declare class UpdateCaseCommentCommand extends UpdateCaseCommentCommand_base {
109
109
  /** @internal type navigation helper, not in runtime. */
@@ -84,24 +84,24 @@ declare const UpdateCaseStatusCommand_base: {
84
84
  * @throws {@link SecurityIRServiceException}
85
85
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
86
86
  *
87
- * @public
87
+ *
88
88
  * @example Invoke UpdateCaseStatus
89
89
  * ```javascript
90
90
  * //
91
91
  * const input = {
92
- * "caseId": "8403556009",
93
- * "caseStatus": "Post-incident Activities"
92
+ * caseId: "8403556009",
93
+ * caseStatus: "Post-incident Activities"
94
94
  * };
95
95
  * const command = new UpdateCaseStatusCommand(input);
96
96
  * const response = await client.send(command);
97
- * /* response ==
97
+ * /* response is
98
98
  * {
99
- * "caseStatus": "Post-incident Activities"
99
+ * caseStatus: "Post-incident Activities"
100
100
  * }
101
101
  * *\/
102
- * // example id: example-1
103
102
  * ```
104
103
  *
104
+ * @public
105
105
  */
106
106
  export declare class UpdateCaseStatusCommand extends UpdateCaseStatusCommand_base {
107
107
  /** @internal type navigation helper, not in runtime. */
@@ -93,37 +93,40 @@ declare const UpdateMembershipCommand_base: {
93
93
  * @throws {@link SecurityIRServiceException}
94
94
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
95
95
  *
96
- * @public
96
+ *
97
97
  * @example Invoke UpdateMembership
98
98
  * ```javascript
99
99
  * //
100
100
  * const input = {
101
- * "incidentResponseTeam": [
101
+ * incidentResponseTeam: [
102
102
  * {
103
- * "name": "Bob Jones",
104
- * "email": "bob.jones@gmail.com",
105
- * "jobTitle": "Security Responder"
103
+ * email: "bob.jones@gmail.com",
104
+ * jobTitle: "Security Responder",
105
+ * name: "Bob Jones"
106
106
  * },
107
107
  * {
108
- * "name": "Alice",
109
- * "email": "alice@example.com",
110
- * "jobTitle": "CEO"
108
+ * email: "alice@example.com",
109
+ * jobTitle: "CEO",
110
+ * name: "Alice"
111
111
  * }
112
112
  * ],
113
- * "membershipId": "m-abcd1234efgh",
114
- * "membershipName": "New membership name",
115
- * "optInFeatures": [
113
+ * membershipId: "m-abcd1234efgh",
114
+ * membershipName: "New membership name",
115
+ * optInFeatures: [
116
116
  * {
117
- * "featureName": "Triage",
118
- * "isEnabled": true
117
+ * featureName: "Triage",
118
+ * isEnabled: true
119
119
  * }
120
120
  * ]
121
121
  * };
122
122
  * const command = new UpdateMembershipCommand(input);
123
- * await client.send(command);
124
- * // example id: example-1
123
+ * const response = await client.send(command);
124
+ * /* response is
125
+ * { /* empty *\/ }
126
+ * *\/
125
127
  * ```
126
128
  *
129
+ * @public
127
130
  */
128
131
  export declare class UpdateMembershipCommand extends UpdateMembershipCommand_base {
129
132
  /** @internal type navigation helper, not in runtime. */
@@ -88,26 +88,26 @@ declare const UpdateResolverTypeCommand_base: {
88
88
  * @throws {@link SecurityIRServiceException}
89
89
  * <p>Base exception class for all service exceptions from SecurityIR service.</p>
90
90
  *
91
- * @public
91
+ *
92
92
  * @example Invoke UpdateResolverType
93
93
  * ```javascript
94
94
  * //
95
95
  * const input = {
96
- * "caseId": "8403556009",
97
- * "resolverType": "AWS"
96
+ * caseId: "8403556009",
97
+ * resolverType: "AWS"
98
98
  * };
99
99
  * const command = new UpdateResolverTypeCommand(input);
100
100
  * const response = await client.send(command);
101
- * /* response ==
101
+ * /* response is
102
102
  * {
103
- * "caseId": "8403556009",
104
- * "caseStatus": "Detection and Analysis",
105
- * "resolverType": "AWS"
103
+ * caseId: "8403556009",
104
+ * caseStatus: "Detection and Analysis",
105
+ * resolverType: "AWS"
106
106
  * }
107
107
  * *\/
108
- * // example id: example-1
109
108
  * ```
110
109
  *
110
+ * @public
111
111
  */
112
112
  export declare class UpdateResolverTypeCommand extends UpdateResolverTypeCommand_base {
113
113
  /** @internal type navigation helper, not in runtime. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-security-ir",
3
3
  "description": "AWS SDK for JavaScript Security Ir Client for Node.js, Browser and React Native",
4
- "version": "3.774.0",
4
+ "version": "3.777.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",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.774.0",
24
- "@aws-sdk/credential-provider-node": "3.774.0",
25
- "@aws-sdk/middleware-host-header": "3.774.0",
26
- "@aws-sdk/middleware-logger": "3.734.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.772.0",
28
- "@aws-sdk/middleware-user-agent": "3.774.0",
29
- "@aws-sdk/region-config-resolver": "3.734.0",
30
- "@aws-sdk/types": "3.734.0",
31
- "@aws-sdk/util-endpoints": "3.743.0",
32
- "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.774.0",
34
- "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.5",
36
- "@smithy/fetch-http-handler": "^5.0.1",
37
- "@smithy/hash-node": "^4.0.1",
38
- "@smithy/invalid-dependency": "^4.0.1",
39
- "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.6",
41
- "@smithy/middleware-retry": "^4.0.7",
42
- "@smithy/middleware-serde": "^4.0.2",
43
- "@smithy/middleware-stack": "^4.0.1",
44
- "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.3",
46
- "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.6",
48
- "@smithy/types": "^4.1.0",
49
- "@smithy/url-parser": "^4.0.1",
23
+ "@aws-sdk/core": "3.775.0",
24
+ "@aws-sdk/credential-provider-node": "3.777.0",
25
+ "@aws-sdk/middleware-host-header": "3.775.0",
26
+ "@aws-sdk/middleware-logger": "3.775.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.775.0",
29
+ "@aws-sdk/region-config-resolver": "3.775.0",
30
+ "@aws-sdk/types": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.775.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.775.0",
34
+ "@smithy/config-resolver": "^4.1.0",
35
+ "@smithy/core": "^3.2.0",
36
+ "@smithy/fetch-http-handler": "^5.0.2",
37
+ "@smithy/hash-node": "^4.0.2",
38
+ "@smithy/invalid-dependency": "^4.0.2",
39
+ "@smithy/middleware-content-length": "^4.0.2",
40
+ "@smithy/middleware-endpoint": "^4.1.0",
41
+ "@smithy/middleware-retry": "^4.1.0",
42
+ "@smithy/middleware-serde": "^4.0.3",
43
+ "@smithy/middleware-stack": "^4.0.2",
44
+ "@smithy/node-config-provider": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.4",
46
+ "@smithy/protocol-http": "^5.1.0",
47
+ "@smithy/smithy-client": "^4.2.0",
48
+ "@smithy/types": "^4.2.0",
49
+ "@smithy/url-parser": "^4.0.2",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.7",
54
- "@smithy/util-defaults-mode-node": "^4.0.7",
55
- "@smithy/util-endpoints": "^3.0.1",
56
- "@smithy/util-middleware": "^4.0.1",
57
- "@smithy/util-retry": "^4.0.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.8",
54
+ "@smithy/util-defaults-mode-node": "^4.0.8",
55
+ "@smithy/util-endpoints": "^3.0.2",
56
+ "@smithy/util-middleware": "^4.0.2",
57
+ "@smithy/util-retry": "^4.0.2",
58
58
  "@smithy/util-utf8": "^4.0.0",
59
59
  "@types/uuid": "^9.0.1",
60
60
  "tslib": "^2.6.2",