@aws-sdk/client-security-ir 3.775.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.
- package/dist-types/commands/BatchGetMemberAccountDetailsCommand.d.ts +9 -9
- package/dist-types/commands/CancelMembershipCommand.d.ts +5 -5
- package/dist-types/commands/CloseCaseCommand.d.ts +6 -6
- package/dist-types/commands/CreateCaseCommand.d.ts +25 -22
- package/dist-types/commands/CreateCaseCommentCommand.d.ts +6 -6
- package/dist-types/commands/CreateMembershipCommand.d.ts +15 -15
- package/dist-types/commands/GetCaseAttachmentDownloadUrlCommand.d.ts +6 -6
- package/dist-types/commands/GetCaseAttachmentUploadUrlCommand.d.ts +7 -7
- package/dist-types/commands/GetCaseCommand.d.ts +29 -29
- package/dist-types/commands/GetMembershipCommand.d.ts +24 -24
- package/dist-types/commands/ListCaseEditsCommand.d.ts +10 -10
- package/dist-types/commands/ListCasesCommand.d.ts +15 -15
- package/dist-types/commands/ListCommentsCommand.d.ts +8 -8
- package/dist-types/commands/ListMembershipsCommand.d.ts +10 -10
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -7
- package/dist-types/commands/TagResourceCommand.d.ts +10 -7
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateCaseCommand.d.ts +34 -31
- package/dist-types/commands/UpdateCaseCommentCommand.d.ts +8 -8
- package/dist-types/commands/UpdateCaseStatusCommand.d.ts +6 -6
- package/dist-types/commands/UpdateMembershipCommand.d.ts +18 -15
- package/dist-types/commands/UpdateResolverTypeCommand.d.ts +8 -8
- package/package.json +2 -2
|
@@ -97,32 +97,32 @@ declare const BatchGetMemberAccountDetailsCommand_base: {
|
|
|
97
97
|
* @throws {@link SecurityIRServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
99
99
|
*
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @example Invoke BatchGetMemberAccountDetails
|
|
102
102
|
* ```javascript
|
|
103
103
|
* //
|
|
104
104
|
* const input = {
|
|
105
|
-
*
|
|
105
|
+
* accountIds: [
|
|
106
106
|
* "123412341234"
|
|
107
107
|
* ],
|
|
108
|
-
*
|
|
108
|
+
* membershipId: "m-abcd1234efgh"
|
|
109
109
|
* };
|
|
110
110
|
* const command = new BatchGetMemberAccountDetailsCommand(input);
|
|
111
111
|
* const response = await client.send(command);
|
|
112
|
-
* /* response
|
|
112
|
+
* /* response is
|
|
113
113
|
* {
|
|
114
|
-
*
|
|
114
|
+
* items: [
|
|
115
115
|
* {
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
116
|
+
* accountId: "123412341234",
|
|
117
|
+
* relationshipStatus: "Associated",
|
|
118
|
+
* relationshipType: "Organization"
|
|
119
119
|
* }
|
|
120
120
|
* ]
|
|
121
121
|
* }
|
|
122
122
|
* *\/
|
|
123
|
-
* // example id: example-1
|
|
124
123
|
* ```
|
|
125
124
|
*
|
|
125
|
+
* @public
|
|
126
126
|
*/
|
|
127
127
|
export declare class BatchGetMemberAccountDetailsCommand extends BatchGetMemberAccountDetailsCommand_base {
|
|
128
128
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -81,23 +81,23 @@ declare const CancelMembershipCommand_base: {
|
|
|
81
81
|
* @throws {@link SecurityIRServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
83
83
|
*
|
|
84
|
-
*
|
|
84
|
+
*
|
|
85
85
|
* @example Invoke CancelMembership
|
|
86
86
|
* ```javascript
|
|
87
87
|
* //
|
|
88
88
|
* const input = {
|
|
89
|
-
*
|
|
89
|
+
* membershipId: "m-abcd1234efgh"
|
|
90
90
|
* };
|
|
91
91
|
* const command = new CancelMembershipCommand(input);
|
|
92
92
|
* const response = await client.send(command);
|
|
93
|
-
* /* response
|
|
93
|
+
* /* response is
|
|
94
94
|
* {
|
|
95
|
-
*
|
|
95
|
+
* membershipId: "m-abcd1234efgh"
|
|
96
96
|
* }
|
|
97
97
|
* *\/
|
|
98
|
-
* // example id: example-1
|
|
99
98
|
* ```
|
|
100
99
|
*
|
|
100
|
+
* @public
|
|
101
101
|
*/
|
|
102
102
|
export declare class CancelMembershipCommand extends CancelMembershipCommand_base {
|
|
103
103
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -82,24 +82,24 @@ declare const CloseCaseCommand_base: {
|
|
|
82
82
|
* @throws {@link SecurityIRServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
84
84
|
*
|
|
85
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example Invoke CloseCase
|
|
87
87
|
* ```javascript
|
|
88
88
|
* //
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
90
|
+
* caseId: "8403556009"
|
|
91
91
|
* };
|
|
92
92
|
* const command = new CloseCaseCommand(input);
|
|
93
93
|
* const response = await client.send(command);
|
|
94
|
-
* /* response
|
|
94
|
+
* /* response is
|
|
95
95
|
* {
|
|
96
|
-
*
|
|
97
|
-
*
|
|
96
|
+
* caseStatus: "Closed",
|
|
97
|
+
* closedDate: "2024-02-27T17:01:33.000Z"
|
|
98
98
|
* }
|
|
99
99
|
* *\/
|
|
100
|
-
* // example id: example-1
|
|
101
100
|
* ```
|
|
102
101
|
*
|
|
102
|
+
* @public
|
|
103
103
|
*/
|
|
104
104
|
export declare class CloseCaseCommand extends CloseCaseCommand_base {
|
|
105
105
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -113,53 +113,56 @@ declare const CreateCaseCommand_base: {
|
|
|
113
113
|
* @throws {@link SecurityIRServiceException}
|
|
114
114
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
115
115
|
*
|
|
116
|
-
*
|
|
116
|
+
*
|
|
117
117
|
* @example Invoke CreateCase
|
|
118
118
|
* ```javascript
|
|
119
119
|
* //
|
|
120
120
|
* const input = {
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
121
|
+
* description: "Case description",
|
|
122
|
+
* engagementType: "Investigation",
|
|
123
|
+
* impactedAccounts: [
|
|
124
124
|
* "000000000000",
|
|
125
125
|
* "111111111111"
|
|
126
126
|
* ],
|
|
127
|
-
*
|
|
127
|
+
* impactedAwsRegions: [
|
|
128
128
|
* {
|
|
129
|
-
*
|
|
129
|
+
* region: "ap-southeast-1"
|
|
130
130
|
* }
|
|
131
131
|
* ],
|
|
132
|
-
*
|
|
132
|
+
* impactedServices: [
|
|
133
133
|
* "Amazon EC2",
|
|
134
134
|
* "Amazon EKS"
|
|
135
135
|
* ],
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
136
|
+
* reportedIncidentStartDate: "2023-03-27T15:32:01.789Z",
|
|
137
|
+
* resolverType: "Self",
|
|
138
|
+
* threatActorIpAddresses: [
|
|
139
139
|
* {
|
|
140
|
-
*
|
|
141
|
-
*
|
|
140
|
+
* ipAddress: "192.168.192.168",
|
|
141
|
+
* userAgent: "Browser"
|
|
142
142
|
* }
|
|
143
143
|
* ],
|
|
144
|
-
*
|
|
145
|
-
*
|
|
144
|
+
* title: "My sample case",
|
|
145
|
+
* watchers: [
|
|
146
146
|
* {
|
|
147
|
-
*
|
|
148
|
-
*
|
|
149
|
-
*
|
|
147
|
+
* email: "alice@example.com",
|
|
148
|
+
* jobTitle: "CEO",
|
|
149
|
+
* name: "Alice"
|
|
150
150
|
* },
|
|
151
151
|
* {
|
|
152
|
-
*
|
|
153
|
-
*
|
|
154
|
-
*
|
|
152
|
+
* email: "bob@example.com",
|
|
153
|
+
* jobTitle: "CFO",
|
|
154
|
+
* name: "Bob"
|
|
155
155
|
* }
|
|
156
156
|
* ]
|
|
157
157
|
* };
|
|
158
158
|
* const command = new CreateCaseCommand(input);
|
|
159
|
-
* await client.send(command);
|
|
160
|
-
*
|
|
159
|
+
* const response = await client.send(command);
|
|
160
|
+
* /* response is
|
|
161
|
+
* { /* metadata only *\/ }
|
|
162
|
+
* *\/
|
|
161
163
|
* ```
|
|
162
164
|
*
|
|
165
|
+
* @public
|
|
163
166
|
*/
|
|
164
167
|
export declare class CreateCaseCommand extends CreateCaseCommand_base {
|
|
165
168
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -83,24 +83,24 @@ declare const CreateCaseCommentCommand_base: {
|
|
|
83
83
|
* @throws {@link SecurityIRServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
85
85
|
*
|
|
86
|
-
*
|
|
86
|
+
*
|
|
87
87
|
* @example Invoke CreateCaseComment
|
|
88
88
|
* ```javascript
|
|
89
89
|
* //
|
|
90
90
|
* const input = {
|
|
91
|
-
*
|
|
92
|
-
*
|
|
91
|
+
* body: "Case comment body.",
|
|
92
|
+
* caseId: "8403556009"
|
|
93
93
|
* };
|
|
94
94
|
* const command = new CreateCaseCommentCommand(input);
|
|
95
95
|
* const response = await client.send(command);
|
|
96
|
-
* /* response
|
|
96
|
+
* /* response is
|
|
97
97
|
* {
|
|
98
|
-
*
|
|
98
|
+
* commentId: "000000"
|
|
99
99
|
* }
|
|
100
100
|
* *\/
|
|
101
|
-
* // example id: example-1
|
|
102
101
|
* ```
|
|
103
102
|
*
|
|
103
|
+
* @public
|
|
104
104
|
*/
|
|
105
105
|
export declare class CreateCaseCommentCommand extends CreateCaseCommentCommand_base {
|
|
106
106
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -98,41 +98,41 @@ declare const CreateMembershipCommand_base: {
|
|
|
98
98
|
* @throws {@link SecurityIRServiceException}
|
|
99
99
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
100
100
|
*
|
|
101
|
-
*
|
|
101
|
+
*
|
|
102
102
|
* @example Invoke CreateMembership
|
|
103
103
|
* ```javascript
|
|
104
104
|
* //
|
|
105
105
|
* const input = {
|
|
106
|
-
*
|
|
106
|
+
* incidentResponseTeam: [
|
|
107
107
|
* {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
108
|
+
* email: "bob.jones@gmail.com",
|
|
109
|
+
* jobTitle: "Security Responder",
|
|
110
|
+
* name: "Bob Jones"
|
|
111
111
|
* },
|
|
112
112
|
* {
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
113
|
+
* email: "alice@example.com",
|
|
114
|
+
* jobTitle: "CEO",
|
|
115
|
+
* name: "Alice"
|
|
116
116
|
* }
|
|
117
117
|
* ],
|
|
118
|
-
*
|
|
119
|
-
*
|
|
118
|
+
* membershipName: "Example Membership Name.",
|
|
119
|
+
* optInFeatures: [
|
|
120
120
|
* {
|
|
121
|
-
*
|
|
122
|
-
*
|
|
121
|
+
* featureName: "Triage",
|
|
122
|
+
* isEnabled: true
|
|
123
123
|
* }
|
|
124
124
|
* ]
|
|
125
125
|
* };
|
|
126
126
|
* const command = new CreateMembershipCommand(input);
|
|
127
127
|
* const response = await client.send(command);
|
|
128
|
-
* /* response
|
|
128
|
+
* /* response is
|
|
129
129
|
* {
|
|
130
|
-
*
|
|
130
|
+
* membershipId: "m-abcd1234efgh"
|
|
131
131
|
* }
|
|
132
132
|
* *\/
|
|
133
|
-
* // example id: example-1
|
|
134
133
|
* ```
|
|
135
134
|
*
|
|
135
|
+
* @public
|
|
136
136
|
*/
|
|
137
137
|
export declare class CreateMembershipCommand extends CreateMembershipCommand_base {
|
|
138
138
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -82,24 +82,24 @@ declare const GetCaseAttachmentDownloadUrlCommand_base: {
|
|
|
82
82
|
* @throws {@link SecurityIRServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
84
84
|
*
|
|
85
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example Invoke GetCaseAttachmentDownloadUrl
|
|
87
87
|
* ```javascript
|
|
88
88
|
* //
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
91
|
-
*
|
|
90
|
+
* attachmentId: "3C5A6B89-1DEF-4C2D-A5B6-123456789ABC",
|
|
91
|
+
* caseId: "8403556009"
|
|
92
92
|
* };
|
|
93
93
|
* const command = new GetCaseAttachmentDownloadUrlCommand(input);
|
|
94
94
|
* const response = await client.send(command);
|
|
95
|
-
* /* response
|
|
95
|
+
* /* response is
|
|
96
96
|
* {
|
|
97
|
-
*
|
|
97
|
+
* attachmentPresignedUrl: "https://presignedurl.com"
|
|
98
98
|
* }
|
|
99
99
|
* *\/
|
|
100
|
-
* // example id: example-1
|
|
101
100
|
* ```
|
|
102
101
|
*
|
|
102
|
+
* @public
|
|
103
103
|
*/
|
|
104
104
|
export declare class GetCaseAttachmentDownloadUrlCommand extends GetCaseAttachmentDownloadUrlCommand_base {
|
|
105
105
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -84,25 +84,25 @@ declare const GetCaseAttachmentUploadUrlCommand_base: {
|
|
|
84
84
|
* @throws {@link SecurityIRServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
86
86
|
*
|
|
87
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @example Invoke GetCaseAttachmentUploadUrl
|
|
89
89
|
* ```javascript
|
|
90
90
|
* //
|
|
91
91
|
* const input = {
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
92
|
+
* caseId: "8403556009",
|
|
93
|
+
* contentLength: 1500,
|
|
94
|
+
* fileName: "TestFileName"
|
|
95
95
|
* };
|
|
96
96
|
* const command = new GetCaseAttachmentUploadUrlCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
-
* /* response
|
|
98
|
+
* /* response is
|
|
99
99
|
* {
|
|
100
|
-
*
|
|
100
|
+
* attachmentPresignedUrl: "https://presignedurl.com"
|
|
101
101
|
* }
|
|
102
102
|
* *\/
|
|
103
|
-
* // example id: example-1
|
|
104
103
|
* ```
|
|
105
104
|
*
|
|
105
|
+
* @public
|
|
106
106
|
*/
|
|
107
107
|
export declare class GetCaseAttachmentUploadUrlCommand extends GetCaseAttachmentUploadUrlCommand_base {
|
|
108
108
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -126,64 +126,64 @@ declare const GetCaseCommand_base: {
|
|
|
126
126
|
* @throws {@link SecurityIRServiceException}
|
|
127
127
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
128
128
|
*
|
|
129
|
-
*
|
|
129
|
+
*
|
|
130
130
|
* @example Invoke GetCase
|
|
131
131
|
* ```javascript
|
|
132
132
|
* //
|
|
133
133
|
* const input = {
|
|
134
|
-
*
|
|
134
|
+
* caseId: "8403556009"
|
|
135
135
|
* };
|
|
136
136
|
* const command = new GetCaseCommand(input);
|
|
137
137
|
* const response = await client.send(command);
|
|
138
|
-
* /* response
|
|
138
|
+
* /* response is
|
|
139
139
|
* {
|
|
140
|
-
*
|
|
141
|
-
*
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
*
|
|
145
|
-
*
|
|
146
|
-
*
|
|
140
|
+
* actualIncidentStartDate: "2023-03-27T15:32:01.789Z",
|
|
141
|
+
* caseArn: "arn:aws:security-ir:us-west-1:123456789012:case/1234567890",
|
|
142
|
+
* caseStatus: "Submitted",
|
|
143
|
+
* createdDate: "2023-01-27T15:32:01.789Z",
|
|
144
|
+
* description: "Case description",
|
|
145
|
+
* engagementType: "Investigation",
|
|
146
|
+
* impactedAccounts: [
|
|
147
147
|
* "000000000000",
|
|
148
148
|
* "111111111111"
|
|
149
149
|
* ],
|
|
150
|
-
*
|
|
150
|
+
* impactedAwsRegions: [
|
|
151
151
|
* {
|
|
152
|
-
*
|
|
152
|
+
* region: "ap-southeast-1"
|
|
153
153
|
* }
|
|
154
154
|
* ],
|
|
155
|
-
*
|
|
155
|
+
* impactedServices: [
|
|
156
156
|
* "Amazon EC2",
|
|
157
157
|
* "Amazon EKS"
|
|
158
158
|
* ],
|
|
159
|
-
*
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
*
|
|
163
|
-
*
|
|
159
|
+
* lastUpdatedDate: "2023-02-27T15:32:01.789Z",
|
|
160
|
+
* pendingAction: "Customer",
|
|
161
|
+
* reportedIncidentStartDate: "2023-03-27T15:32:01.789Z",
|
|
162
|
+
* resolverType: "Self",
|
|
163
|
+
* threatActorIpAddresses: [
|
|
164
164
|
* {
|
|
165
|
-
*
|
|
166
|
-
*
|
|
165
|
+
* ipAddress: "192.168.192.168",
|
|
166
|
+
* userAgent: "Browser"
|
|
167
167
|
* }
|
|
168
168
|
* ],
|
|
169
|
-
*
|
|
170
|
-
*
|
|
169
|
+
* title: "My sample case",
|
|
170
|
+
* watchers: [
|
|
171
171
|
* {
|
|
172
|
-
*
|
|
173
|
-
*
|
|
174
|
-
*
|
|
172
|
+
* email: "alice@example.com",
|
|
173
|
+
* jobTitle: "CEO",
|
|
174
|
+
* name: "Alice"
|
|
175
175
|
* },
|
|
176
176
|
* {
|
|
177
|
-
*
|
|
178
|
-
*
|
|
179
|
-
*
|
|
177
|
+
* email: "bob@example.com",
|
|
178
|
+
* jobTitle: "CFO",
|
|
179
|
+
* name: "Bob"
|
|
180
180
|
* }
|
|
181
181
|
* ]
|
|
182
182
|
* }
|
|
183
183
|
* *\/
|
|
184
|
-
* // example id: example-1
|
|
185
184
|
* ```
|
|
186
185
|
*
|
|
186
|
+
* @public
|
|
187
187
|
*/
|
|
188
188
|
export declare class GetCaseCommand extends GetCaseCommand_base {
|
|
189
189
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -103,50 +103,50 @@ declare const GetMembershipCommand_base: {
|
|
|
103
103
|
* @throws {@link SecurityIRServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from SecurityIR service.</p>
|
|
105
105
|
*
|
|
106
|
-
*
|
|
106
|
+
*
|
|
107
107
|
* @example Invoke GetMembership
|
|
108
108
|
* ```javascript
|
|
109
109
|
* //
|
|
110
110
|
* const input = {
|
|
111
|
-
*
|
|
111
|
+
* membershipId: "m-abcd1234efgh"
|
|
112
112
|
* };
|
|
113
113
|
* const command = new GetMembershipCommand(input);
|
|
114
114
|
* const response = await client.send(command);
|
|
115
|
-
* /* response
|
|
115
|
+
* /* response is
|
|
116
116
|
* {
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
117
|
+
* accountId: "123412341234",
|
|
118
|
+
* customerType: "Standalone",
|
|
119
|
+
* incidentResponseTeam: [
|
|
120
120
|
* {
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
121
|
+
* email: "bob.jones@gmail.com",
|
|
122
|
+
* jobTitle: "Security Responder",
|
|
123
|
+
* name: "Bob Jones"
|
|
124
124
|
* },
|
|
125
125
|
* {
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
126
|
+
* email: "alice@example.com",
|
|
127
|
+
* jobTitle: "CEO",
|
|
128
|
+
* name: "Alice"
|
|
129
129
|
* }
|
|
130
130
|
* ],
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
131
|
+
* membershipActivationTimestamp: "2023-03-27T15:32:01.789Z",
|
|
132
|
+
* membershipArn: "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh",
|
|
133
|
+
* membershipDeactivationTimestamp: "2023-04-27T15:32:01.789Z",
|
|
134
|
+
* membershipId: "m-abcd1234efgh",
|
|
135
|
+
* membershipName: "Example Membership",
|
|
136
|
+
* membershipStatus: "Active",
|
|
137
|
+
* numberOfAccountsCovered: 50,
|
|
138
|
+
* optInFeatures: [
|
|
139
139
|
* {
|
|
140
|
-
*
|
|
141
|
-
*
|
|
140
|
+
* featureName: "Triage",
|
|
141
|
+
* isEnabled: true
|
|
142
142
|
* }
|
|
143
143
|
* ],
|
|
144
|
-
*
|
|
144
|
+
* region: "af-south-1"
|
|
145
145
|
* }
|
|
146
146
|
* *\/
|
|
147
|
-
* // example id: example-1
|
|
148
147
|
* ```
|
|
149
148
|
*
|
|
149
|
+
* @public
|
|
150
150
|
*/
|
|
151
151
|
export declare class GetMembershipCommand extends GetMembershipCommand_base {
|
|
152
152
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -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
|
-
*
|
|
95
|
+
*
|
|
96
96
|
* @example Invoke ListCaseEdits
|
|
97
97
|
* ```javascript
|
|
98
98
|
* //
|
|
99
99
|
* const input = {
|
|
100
|
-
*
|
|
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
|
-
*
|
|
106
|
+
* items: [
|
|
107
107
|
* {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @example Invoke ListCases
|
|
102
102
|
* ```javascript
|
|
103
103
|
* //
|
|
104
104
|
* const input = {
|
|
105
|
-
*
|
|
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
|
-
*
|
|
111
|
+
* items: [
|
|
112
112
|
* {
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
97
|
+
*
|
|
98
98
|
* @example Invoke ListComments
|
|
99
99
|
* ```javascript
|
|
100
100
|
* //
|
|
101
101
|
* const input = {
|
|
102
|
-
*
|
|
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
|
-
*
|
|
108
|
+
* items: [
|
|
109
109
|
* {
|
|
110
|
-
*
|
|
111
|
-
*
|
|
110
|
+
* body: "Case comment body.",
|
|
111
|
+
* commentId: "000000"
|
|
112
112
|
* }
|
|
113
113
|
* ],
|
|
114
|
-
*
|
|
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
|
-
*
|
|
94
|
+
*
|
|
95
95
|
* @example Invoke ListMemberships
|
|
96
96
|
* ```javascript
|
|
97
97
|
* //
|
|
98
98
|
* const input = {
|
|
99
|
-
*
|
|
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
|
-
*
|
|
105
|
+
* items: [
|
|
106
106
|
* {
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
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
|
-
*
|
|
86
|
+
*
|
|
87
87
|
* @example Invoke ListTagsForResource
|
|
88
88
|
* ```javascript
|
|
89
89
|
* //
|
|
90
90
|
* const input = {
|
|
91
|
-
*
|
|
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
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
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
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example Invoke TagResource
|
|
87
87
|
* ```javascript
|
|
88
88
|
* //
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example Invoke UntagResource
|
|
87
87
|
* ```javascript
|
|
88
88
|
* //
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
91
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
135
|
+
*
|
|
136
136
|
* @example Invoke UpdateCase
|
|
137
137
|
* ```javascript
|
|
138
138
|
* //
|
|
139
139
|
* const input = {
|
|
140
|
-
*
|
|
141
|
-
*
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
*
|
|
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
|
-
*
|
|
147
|
+
* impactedAccountsToDelete: [
|
|
148
148
|
* "111111111111"
|
|
149
149
|
* ],
|
|
150
|
-
*
|
|
150
|
+
* impactedAwsRegionsToAdd: [
|
|
151
151
|
* {
|
|
152
|
-
*
|
|
152
|
+
* region: "ap-southeast-1"
|
|
153
153
|
* }
|
|
154
154
|
* ],
|
|
155
|
-
*
|
|
155
|
+
* impactedAwsRegionsToDelete: [
|
|
156
156
|
* {
|
|
157
|
-
*
|
|
157
|
+
* region: "us-east-1"
|
|
158
158
|
* }
|
|
159
159
|
* ],
|
|
160
|
-
*
|
|
160
|
+
* impactedServicesToAdd: [
|
|
161
161
|
* "Amazon EC2"
|
|
162
162
|
* ],
|
|
163
|
-
*
|
|
163
|
+
* impactedServicesToDelete: [
|
|
164
164
|
* "Amazon EKS"
|
|
165
165
|
* ],
|
|
166
|
-
*
|
|
167
|
-
*
|
|
166
|
+
* reportedIncidentStartDate: "2023-03-27T15:32:01.789Z",
|
|
167
|
+
* threatActorIpAddressesToAdd: [
|
|
168
168
|
* {
|
|
169
|
-
*
|
|
170
|
-
*
|
|
169
|
+
* ipAddress: "190.160.190.160",
|
|
170
|
+
* userAgent: "Browser"
|
|
171
171
|
* }
|
|
172
172
|
* ],
|
|
173
|
-
*
|
|
173
|
+
* threatActorIpAddressesToDelete: [
|
|
174
174
|
* {
|
|
175
|
-
*
|
|
176
|
-
*
|
|
175
|
+
* ipAddress: "192.168.192.168",
|
|
176
|
+
* userAgent: "Browser"
|
|
177
177
|
* }
|
|
178
178
|
* ],
|
|
179
|
-
*
|
|
180
|
-
*
|
|
179
|
+
* title: "My sample case",
|
|
180
|
+
* watchersToAdd: [
|
|
181
181
|
* {
|
|
182
|
-
*
|
|
183
|
-
*
|
|
184
|
-
*
|
|
182
|
+
* email: "Sam@example.com",
|
|
183
|
+
* jobTitle: "CEO",
|
|
184
|
+
* name: "Same"
|
|
185
185
|
* }
|
|
186
186
|
* ],
|
|
187
|
-
*
|
|
187
|
+
* watchersToDelete: [
|
|
188
188
|
* {
|
|
189
|
-
*
|
|
190
|
-
*
|
|
191
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @example Invoke UpdateCaseComment
|
|
89
89
|
* ```javascript
|
|
90
90
|
* //
|
|
91
91
|
* const input = {
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
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
|
-
*
|
|
101
|
-
*
|
|
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
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @example Invoke UpdateCaseStatus
|
|
89
89
|
* ```javascript
|
|
90
90
|
* //
|
|
91
91
|
* const input = {
|
|
92
|
-
*
|
|
93
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
96
|
+
*
|
|
97
97
|
* @example Invoke UpdateMembership
|
|
98
98
|
* ```javascript
|
|
99
99
|
* //
|
|
100
100
|
* const input = {
|
|
101
|
-
*
|
|
101
|
+
* incidentResponseTeam: [
|
|
102
102
|
* {
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
103
|
+
* email: "bob.jones@gmail.com",
|
|
104
|
+
* jobTitle: "Security Responder",
|
|
105
|
+
* name: "Bob Jones"
|
|
106
106
|
* },
|
|
107
107
|
* {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
108
|
+
* email: "alice@example.com",
|
|
109
|
+
* jobTitle: "CEO",
|
|
110
|
+
* name: "Alice"
|
|
111
111
|
* }
|
|
112
112
|
* ],
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
113
|
+
* membershipId: "m-abcd1234efgh",
|
|
114
|
+
* membershipName: "New membership name",
|
|
115
|
+
* optInFeatures: [
|
|
116
116
|
* {
|
|
117
|
-
*
|
|
118
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
91
|
+
*
|
|
92
92
|
* @example Invoke UpdateResolverType
|
|
93
93
|
* ```javascript
|
|
94
94
|
* //
|
|
95
95
|
* const input = {
|
|
96
|
-
*
|
|
97
|
-
*
|
|
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
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
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.
|
|
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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.777.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|