@aws-sdk/client-auditmanager 3.279.0 → 3.282.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/README.md +491 -0
- package/dist-types/commands/AssociateAssessmentReportEvidenceFolderCommand.d.ts +6 -0
- package/dist-types/commands/BatchAssociateAssessmentReportEvidenceCommand.d.ts +6 -0
- package/dist-types/commands/BatchCreateDelegationByAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/BatchDeleteDelegationByAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/BatchDisassociateAssessmentReportEvidenceCommand.d.ts +6 -0
- package/dist-types/commands/BatchImportEvidenceToAssessmentControlCommand.d.ts +6 -0
- package/dist-types/commands/CreateAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/CreateAssessmentFrameworkCommand.d.ts +6 -0
- package/dist-types/commands/CreateAssessmentReportCommand.d.ts +6 -0
- package/dist-types/commands/CreateControlCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAssessmentFrameworkCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAssessmentFrameworkShareCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAssessmentReportCommand.d.ts +6 -0
- package/dist-types/commands/DeleteControlCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterAccountCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterOrganizationAdminAccountCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateAssessmentReportEvidenceFolderCommand.d.ts +6 -0
- package/dist-types/commands/GetAccountStatusCommand.d.ts +6 -0
- package/dist-types/commands/GetAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/GetAssessmentFrameworkCommand.d.ts +6 -0
- package/dist-types/commands/GetAssessmentReportUrlCommand.d.ts +6 -0
- package/dist-types/commands/GetChangeLogsCommand.d.ts +6 -0
- package/dist-types/commands/GetControlCommand.d.ts +6 -0
- package/dist-types/commands/GetDelegationsCommand.d.ts +6 -0
- package/dist-types/commands/GetEvidenceByEvidenceFolderCommand.d.ts +6 -0
- package/dist-types/commands/GetEvidenceCommand.d.ts +6 -0
- package/dist-types/commands/GetEvidenceFolderCommand.d.ts +6 -0
- package/dist-types/commands/GetEvidenceFoldersByAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/GetEvidenceFoldersByAssessmentControlCommand.d.ts +6 -0
- package/dist-types/commands/GetInsightsByAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/GetInsightsCommand.d.ts +6 -0
- package/dist-types/commands/GetOrganizationAdminAccountCommand.d.ts +6 -0
- package/dist-types/commands/GetServicesInScopeCommand.d.ts +6 -0
- package/dist-types/commands/GetSettingsCommand.d.ts +6 -0
- package/dist-types/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +6 -0
- package/dist-types/commands/ListAssessmentFrameworkShareRequestsCommand.d.ts +6 -0
- package/dist-types/commands/ListAssessmentFrameworksCommand.d.ts +6 -0
- package/dist-types/commands/ListAssessmentReportsCommand.d.ts +6 -0
- package/dist-types/commands/ListAssessmentsCommand.d.ts +6 -0
- package/dist-types/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/ListControlDomainInsightsCommand.d.ts +6 -0
- package/dist-types/commands/ListControlInsightsByControlDomainCommand.d.ts +6 -0
- package/dist-types/commands/ListControlsCommand.d.ts +6 -0
- package/dist-types/commands/ListKeywordsForDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/ListNotificationsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/RegisterAccountCommand.d.ts +6 -0
- package/dist-types/commands/RegisterOrganizationAdminAccountCommand.d.ts +6 -0
- package/dist-types/commands/StartAssessmentFrameworkShareCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAssessmentCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAssessmentControlCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAssessmentControlSetStatusCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAssessmentFrameworkCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAssessmentFrameworkShareCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAssessmentStatusCommand.d.ts +6 -0
- package/dist-types/commands/UpdateControlCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSettingsCommand.d.ts +6 -0
- package/dist-types/commands/ValidateAssessmentReportIntegrityCommand.d.ts +6 -0
- package/package.json +17 -17
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { RegisterAccountRequest, RegisterAccountResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RegisterAccountCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RegisterAccountCommandInput extends RegisterAccountRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RegisterAccountCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RegisterAccountCommandOutput extends RegisterAccountResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { RegisterOrganizationAdminAccountRequest, RegisterOrganizationAdminAccountResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RegisterOrganizationAdminAccountCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RegisterOrganizationAdminAccountCommandInput extends RegisterOrganizationAdminAccountRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RegisterOrganizationAdminAccountCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RegisterOrganizationAdminAccountCommandOutput extends RegisterOrganizationAdminAccountResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { StartAssessmentFrameworkShareRequest, StartAssessmentFrameworkShareResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartAssessmentFrameworkShareCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartAssessmentFrameworkShareCommandInput extends StartAssessmentFrameworkShareRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartAssessmentFrameworkShareCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartAssessmentFrameworkShareCommandOutput extends StartAssessmentFrameworkShareResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UntagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UpdateAssessmentRequest, UpdateAssessmentResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateAssessmentCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateAssessmentCommandInput extends UpdateAssessmentRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateAssessmentCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateAssessmentCommandOutput extends UpdateAssessmentResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UpdateAssessmentControlRequest, UpdateAssessmentControlResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateAssessmentControlCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateAssessmentControlCommandInput extends UpdateAssessmentControlRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateAssessmentControlCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateAssessmentControlCommandOutput extends UpdateAssessmentControlResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UpdateAssessmentControlSetStatusRequest, UpdateAssessmentControlSetStatusResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateAssessmentControlSetStatusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateAssessmentControlSetStatusCommandInput extends UpdateAssessmentControlSetStatusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateAssessmentControlSetStatusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateAssessmentControlSetStatusCommandOutput extends UpdateAssessmentControlSetStatusResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UpdateAssessmentFrameworkRequest, UpdateAssessmentFrameworkResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateAssessmentFrameworkCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateAssessmentFrameworkCommandInput extends UpdateAssessmentFrameworkRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateAssessmentFrameworkCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateAssessmentFrameworkCommandOutput extends UpdateAssessmentFrameworkResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UpdateAssessmentFrameworkShareRequest, UpdateAssessmentFrameworkShareResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateAssessmentFrameworkShareCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateAssessmentFrameworkShareCommandInput extends UpdateAssessmentFrameworkShareRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateAssessmentFrameworkShareCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateAssessmentFrameworkShareCommandOutput extends UpdateAssessmentFrameworkShareResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UpdateAssessmentStatusRequest, UpdateAssessmentStatusResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateAssessmentStatusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateAssessmentStatusCommandInput extends UpdateAssessmentStatusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateAssessmentStatusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateAssessmentStatusCommandOutput extends UpdateAssessmentStatusResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UpdateControlRequest, UpdateControlResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateControlCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateControlCommandInput extends UpdateControlRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateControlCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateControlCommandOutput extends UpdateControlResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { UpdateSettingsRequest, UpdateSettingsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateSettingsCommandInput extends UpdateSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateSettingsCommandOutput extends UpdateSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient";
|
|
5
5
|
import { ValidateAssessmentReportIntegrityRequest, ValidateAssessmentReportIntegrityResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ValidateAssessmentReportIntegrityCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ValidateAssessmentReportIntegrityCommandInput extends ValidateAssessmentReportIntegrityRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ValidateAssessmentReportIntegrityCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ValidateAssessmentReportIntegrityCommandOutput extends ValidateAssessmentReportIntegrityResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-auditmanager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auditmanager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.282.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,25 +20,25 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.282.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.282.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.282.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.272.0",
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.282.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
43
43
|
"@aws-sdk/types": "3.272.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.282.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.282.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|