@aws-sdk/client-cloudcontrol 3.300.0 → 3.303.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 +30 -33
- package/dist-es/models/models_0.js +30 -33
- package/dist-types/commands/CancelResourceRequestCommand.d.ts +1 -1
- package/dist-types/commands/CreateResourceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceRequestStatusCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceRequestsCommand.d.ts +4 -4
- package/dist-types/commands/ListResourcesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResourceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +45 -30
- package/dist-types/ts3.4/models/models_0.d.ts +35 -30
- package/package.json +35 -35
|
@@ -17,39 +17,36 @@ class AlreadyExistsException extends CloudControlServiceException_1.CloudControl
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
exports.AlreadyExistsException = AlreadyExistsException;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
OperationStatus["PENDING"] = "PENDING";
|
|
51
|
-
OperationStatus["SUCCESS"] = "SUCCESS";
|
|
52
|
-
})(OperationStatus = exports.OperationStatus || (exports.OperationStatus = {}));
|
|
20
|
+
exports.HandlerErrorCode = {
|
|
21
|
+
ACCESS_DENIED: "AccessDenied",
|
|
22
|
+
ALREADY_EXISTS: "AlreadyExists",
|
|
23
|
+
GENERAL_SERVICE_EXCEPTION: "GeneralServiceException",
|
|
24
|
+
INTERNAL_FAILURE: "InternalFailure",
|
|
25
|
+
INVALID_CREDENTIALS: "InvalidCredentials",
|
|
26
|
+
INVALID_REQUEST: "InvalidRequest",
|
|
27
|
+
NETWORK_FAILURE: "NetworkFailure",
|
|
28
|
+
NOT_FOUND: "NotFound",
|
|
29
|
+
NOT_STABILIZED: "NotStabilized",
|
|
30
|
+
NOT_UPDATABLE: "NotUpdatable",
|
|
31
|
+
RESOURCE_CONFLICT: "ResourceConflict",
|
|
32
|
+
SERVICE_INTERNAL_ERROR: "ServiceInternalError",
|
|
33
|
+
SERVICE_LIMIT_EXCEEDED: "ServiceLimitExceeded",
|
|
34
|
+
SERVICE_TIMEOUT: "ServiceTimeout",
|
|
35
|
+
THROTTLING: "Throttling",
|
|
36
|
+
};
|
|
37
|
+
exports.Operation = {
|
|
38
|
+
CREATE: "CREATE",
|
|
39
|
+
DELETE: "DELETE",
|
|
40
|
+
UPDATE: "UPDATE",
|
|
41
|
+
};
|
|
42
|
+
exports.OperationStatus = {
|
|
43
|
+
CANCEL_COMPLETE: "CANCEL_COMPLETE",
|
|
44
|
+
CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
|
|
45
|
+
FAILED: "FAILED",
|
|
46
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
47
|
+
PENDING: "PENDING",
|
|
48
|
+
SUCCESS: "SUCCESS",
|
|
49
|
+
};
|
|
53
50
|
class ConcurrentModificationException extends CloudControlServiceException_1.CloudControlServiceException {
|
|
54
51
|
constructor(opts) {
|
|
55
52
|
super({
|
|
@@ -13,39 +13,36 @@ export class AlreadyExistsException extends __BaseException {
|
|
|
13
13
|
this.Message = opts.Message;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
export
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
OperationStatus["PENDING"] = "PENDING";
|
|
47
|
-
OperationStatus["SUCCESS"] = "SUCCESS";
|
|
48
|
-
})(OperationStatus || (OperationStatus = {}));
|
|
16
|
+
export const HandlerErrorCode = {
|
|
17
|
+
ACCESS_DENIED: "AccessDenied",
|
|
18
|
+
ALREADY_EXISTS: "AlreadyExists",
|
|
19
|
+
GENERAL_SERVICE_EXCEPTION: "GeneralServiceException",
|
|
20
|
+
INTERNAL_FAILURE: "InternalFailure",
|
|
21
|
+
INVALID_CREDENTIALS: "InvalidCredentials",
|
|
22
|
+
INVALID_REQUEST: "InvalidRequest",
|
|
23
|
+
NETWORK_FAILURE: "NetworkFailure",
|
|
24
|
+
NOT_FOUND: "NotFound",
|
|
25
|
+
NOT_STABILIZED: "NotStabilized",
|
|
26
|
+
NOT_UPDATABLE: "NotUpdatable",
|
|
27
|
+
RESOURCE_CONFLICT: "ResourceConflict",
|
|
28
|
+
SERVICE_INTERNAL_ERROR: "ServiceInternalError",
|
|
29
|
+
SERVICE_LIMIT_EXCEEDED: "ServiceLimitExceeded",
|
|
30
|
+
SERVICE_TIMEOUT: "ServiceTimeout",
|
|
31
|
+
THROTTLING: "Throttling",
|
|
32
|
+
};
|
|
33
|
+
export const Operation = {
|
|
34
|
+
CREATE: "CREATE",
|
|
35
|
+
DELETE: "DELETE",
|
|
36
|
+
UPDATE: "UPDATE",
|
|
37
|
+
};
|
|
38
|
+
export const OperationStatus = {
|
|
39
|
+
CANCEL_COMPLETE: "CANCEL_COMPLETE",
|
|
40
|
+
CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
|
|
41
|
+
FAILED: "FAILED",
|
|
42
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
43
|
+
PENDING: "PENDING",
|
|
44
|
+
SUCCESS: "SUCCESS",
|
|
45
|
+
};
|
|
49
46
|
export class ConcurrentModificationException extends __BaseException {
|
|
50
47
|
constructor(opts) {
|
|
51
48
|
super({
|
|
@@ -29,7 +29,7 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
|
|
|
29
29
|
* import { CloudControlClient, CancelResourceRequestCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
30
30
|
* // const { CloudControlClient, CancelResourceRequestCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
31
31
|
* const client = new CloudControlClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CancelResourceRequestInput
|
|
33
33
|
* RequestToken: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CancelResourceRequestCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met
|
|
|
30
30
|
* import { CloudControlClient, CreateResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
31
31
|
* // const { CloudControlClient, CreateResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
32
32
|
* const client = new CloudControlClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // CreateResourceInput
|
|
34
34
|
* TypeName: "STRING_VALUE", // required
|
|
35
35
|
* TypeVersionId: "STRING_VALUE",
|
|
36
36
|
* RoleArn: "STRING_VALUE",
|
|
@@ -30,7 +30,7 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met
|
|
|
30
30
|
* import { CloudControlClient, DeleteResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
31
31
|
* // const { CloudControlClient, DeleteResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
32
32
|
* const client = new CloudControlClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteResourceInput
|
|
34
34
|
* TypeName: "STRING_VALUE", // required
|
|
35
35
|
* TypeVersionId: "STRING_VALUE",
|
|
36
36
|
* RoleArn: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
|
|
|
29
29
|
* import { CloudControlClient, GetResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
30
30
|
* // const { CloudControlClient, GetResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
31
31
|
* const client = new CloudControlClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // GetResourceInput
|
|
33
33
|
* TypeName: "STRING_VALUE", // required
|
|
34
34
|
* TypeVersionId: "STRING_VALUE",
|
|
35
35
|
* RoleArn: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
|
|
|
28
28
|
* import { CloudControlClient, GetResourceRequestStatusCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
29
29
|
* // const { CloudControlClient, GetResourceRequestStatusCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
30
30
|
* const client = new CloudControlClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetResourceRequestStatusInput
|
|
32
32
|
* RequestToken: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetResourceRequestStatusCommand(input);
|
|
@@ -31,14 +31,14 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
|
|
|
31
31
|
* import { CloudControlClient, ListResourceRequestsCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
32
32
|
* // const { CloudControlClient, ListResourceRequestsCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
33
33
|
* const client = new CloudControlClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListResourceRequestsInput
|
|
35
35
|
* MaxResults: Number("int"),
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
|
-
* ResourceRequestStatusFilter: {
|
|
38
|
-
* Operations: [
|
|
37
|
+
* ResourceRequestStatusFilter: { // ResourceRequestStatusFilter
|
|
38
|
+
* Operations: [ // Operations
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* OperationStatuses: [
|
|
41
|
+
* OperationStatuses: [ // OperationStatuses
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
@@ -28,7 +28,7 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
|
|
|
28
28
|
* import { CloudControlClient, ListResourcesCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
29
29
|
* // const { CloudControlClient, ListResourcesCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
30
30
|
* const client = new CloudControlClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListResourcesInput
|
|
32
32
|
* TypeName: "STRING_VALUE", // required
|
|
33
33
|
* TypeVersionId: "STRING_VALUE",
|
|
34
34
|
* RoleArn: "STRING_VALUE",
|
|
@@ -37,7 +37,7 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
|
|
|
37
37
|
* import { CloudControlClient, UpdateResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
38
38
|
* // const { CloudControlClient, UpdateResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
39
39
|
* const client = new CloudControlClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // UpdateResourceInput
|
|
41
41
|
* TypeName: "STRING_VALUE", // required
|
|
42
42
|
* TypeVersionId: "STRING_VALUE",
|
|
43
43
|
* RoleArn: "STRING_VALUE",
|
|
@@ -25,43 +25,58 @@ export interface CancelResourceRequestInput {
|
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* @public
|
|
28
|
+
* @enum
|
|
28
29
|
*/
|
|
29
|
-
export declare
|
|
30
|
-
ACCESS_DENIED
|
|
31
|
-
ALREADY_EXISTS
|
|
32
|
-
GENERAL_SERVICE_EXCEPTION
|
|
33
|
-
INTERNAL_FAILURE
|
|
34
|
-
INVALID_CREDENTIALS
|
|
35
|
-
INVALID_REQUEST
|
|
36
|
-
NETWORK_FAILURE
|
|
37
|
-
NOT_FOUND
|
|
38
|
-
NOT_STABILIZED
|
|
39
|
-
NOT_UPDATABLE
|
|
40
|
-
RESOURCE_CONFLICT
|
|
41
|
-
SERVICE_INTERNAL_ERROR
|
|
42
|
-
SERVICE_LIMIT_EXCEEDED
|
|
43
|
-
SERVICE_TIMEOUT
|
|
44
|
-
THROTTLING
|
|
45
|
-
}
|
|
30
|
+
export declare const HandlerErrorCode: {
|
|
31
|
+
readonly ACCESS_DENIED: "AccessDenied";
|
|
32
|
+
readonly ALREADY_EXISTS: "AlreadyExists";
|
|
33
|
+
readonly GENERAL_SERVICE_EXCEPTION: "GeneralServiceException";
|
|
34
|
+
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
35
|
+
readonly INVALID_CREDENTIALS: "InvalidCredentials";
|
|
36
|
+
readonly INVALID_REQUEST: "InvalidRequest";
|
|
37
|
+
readonly NETWORK_FAILURE: "NetworkFailure";
|
|
38
|
+
readonly NOT_FOUND: "NotFound";
|
|
39
|
+
readonly NOT_STABILIZED: "NotStabilized";
|
|
40
|
+
readonly NOT_UPDATABLE: "NotUpdatable";
|
|
41
|
+
readonly RESOURCE_CONFLICT: "ResourceConflict";
|
|
42
|
+
readonly SERVICE_INTERNAL_ERROR: "ServiceInternalError";
|
|
43
|
+
readonly SERVICE_LIMIT_EXCEEDED: "ServiceLimitExceeded";
|
|
44
|
+
readonly SERVICE_TIMEOUT: "ServiceTimeout";
|
|
45
|
+
readonly THROTTLING: "Throttling";
|
|
46
|
+
};
|
|
46
47
|
/**
|
|
47
48
|
* @public
|
|
48
49
|
*/
|
|
49
|
-
export
|
|
50
|
-
CREATE = "CREATE",
|
|
51
|
-
DELETE = "DELETE",
|
|
52
|
-
UPDATE = "UPDATE"
|
|
53
|
-
}
|
|
50
|
+
export type HandlerErrorCode = (typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
|
|
54
51
|
/**
|
|
55
52
|
* @public
|
|
53
|
+
* @enum
|
|
56
54
|
*/
|
|
57
|
-
export declare
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
55
|
+
export declare const Operation: {
|
|
56
|
+
readonly CREATE: "CREATE";
|
|
57
|
+
readonly DELETE: "DELETE";
|
|
58
|
+
readonly UPDATE: "UPDATE";
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export type Operation = (typeof Operation)[keyof typeof Operation];
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* @enum
|
|
67
|
+
*/
|
|
68
|
+
export declare const OperationStatus: {
|
|
69
|
+
readonly CANCEL_COMPLETE: "CANCEL_COMPLETE";
|
|
70
|
+
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
71
|
+
readonly FAILED: "FAILED";
|
|
72
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
73
|
+
readonly PENDING: "PENDING";
|
|
74
|
+
readonly SUCCESS: "SUCCESS";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
|
|
65
80
|
/**
|
|
66
81
|
* @public
|
|
67
82
|
* <p>Represents the current status of a resource operation request. For more information, see
|
|
@@ -11,36 +11,41 @@ export declare class AlreadyExistsException extends __BaseException {
|
|
|
11
11
|
export interface CancelResourceRequestInput {
|
|
12
12
|
RequestToken: string | undefined;
|
|
13
13
|
}
|
|
14
|
-
export declare
|
|
15
|
-
ACCESS_DENIED
|
|
16
|
-
ALREADY_EXISTS
|
|
17
|
-
GENERAL_SERVICE_EXCEPTION
|
|
18
|
-
INTERNAL_FAILURE
|
|
19
|
-
INVALID_CREDENTIALS
|
|
20
|
-
INVALID_REQUEST
|
|
21
|
-
NETWORK_FAILURE
|
|
22
|
-
NOT_FOUND
|
|
23
|
-
NOT_STABILIZED
|
|
24
|
-
NOT_UPDATABLE
|
|
25
|
-
RESOURCE_CONFLICT
|
|
26
|
-
SERVICE_INTERNAL_ERROR
|
|
27
|
-
SERVICE_LIMIT_EXCEEDED
|
|
28
|
-
SERVICE_TIMEOUT
|
|
29
|
-
THROTTLING
|
|
30
|
-
}
|
|
31
|
-
export
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
14
|
+
export declare const HandlerErrorCode: {
|
|
15
|
+
readonly ACCESS_DENIED: "AccessDenied";
|
|
16
|
+
readonly ALREADY_EXISTS: "AlreadyExists";
|
|
17
|
+
readonly GENERAL_SERVICE_EXCEPTION: "GeneralServiceException";
|
|
18
|
+
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
19
|
+
readonly INVALID_CREDENTIALS: "InvalidCredentials";
|
|
20
|
+
readonly INVALID_REQUEST: "InvalidRequest";
|
|
21
|
+
readonly NETWORK_FAILURE: "NetworkFailure";
|
|
22
|
+
readonly NOT_FOUND: "NotFound";
|
|
23
|
+
readonly NOT_STABILIZED: "NotStabilized";
|
|
24
|
+
readonly NOT_UPDATABLE: "NotUpdatable";
|
|
25
|
+
readonly RESOURCE_CONFLICT: "ResourceConflict";
|
|
26
|
+
readonly SERVICE_INTERNAL_ERROR: "ServiceInternalError";
|
|
27
|
+
readonly SERVICE_LIMIT_EXCEEDED: "ServiceLimitExceeded";
|
|
28
|
+
readonly SERVICE_TIMEOUT: "ServiceTimeout";
|
|
29
|
+
readonly THROTTLING: "Throttling";
|
|
30
|
+
};
|
|
31
|
+
export type HandlerErrorCode =
|
|
32
|
+
(typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
|
|
33
|
+
export declare const Operation: {
|
|
34
|
+
readonly CREATE: "CREATE";
|
|
35
|
+
readonly DELETE: "DELETE";
|
|
36
|
+
readonly UPDATE: "UPDATE";
|
|
37
|
+
};
|
|
38
|
+
export type Operation = (typeof Operation)[keyof typeof Operation];
|
|
39
|
+
export declare const OperationStatus: {
|
|
40
|
+
readonly CANCEL_COMPLETE: "CANCEL_COMPLETE";
|
|
41
|
+
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
42
|
+
readonly FAILED: "FAILED";
|
|
43
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
44
|
+
readonly PENDING: "PENDING";
|
|
45
|
+
readonly SUCCESS: "SUCCESS";
|
|
46
|
+
};
|
|
47
|
+
export type OperationStatus =
|
|
48
|
+
(typeof OperationStatus)[keyof typeof OperationStatus];
|
|
44
49
|
export interface ProgressEvent {
|
|
45
50
|
TypeName?: string;
|
|
46
51
|
Identifier?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudcontrol",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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,44 +21,44 @@
|
|
|
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.
|
|
56
|
-
"@aws-sdk/util-waiter": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.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.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
|
+
"@aws-sdk/util-waiter": "3.303.0",
|
|
57
57
|
"tslib": "^2.5.0",
|
|
58
58
|
"uuid": "^8.3.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
62
62
|
"@tsconfig/node14": "1.0.3",
|
|
63
63
|
"@types/node": "^14.14.31",
|
|
64
64
|
"@types/uuid": "^8.3.0",
|