@aws-sdk/client-cloud9 3.312.0 → 3.316.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/Cloud9.js +17 -182
- package/dist-cjs/protocols/Aws_json1_1.js +74 -370
- package/dist-es/Cloud9.js +17 -182
- package/dist-es/protocols/Aws_json1_1.js +75 -371
- package/dist-types/Cloud9.d.ts +81 -99
- package/dist-types/ts3.4/Cloud9.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/Cloud9.d.ts
CHANGED
|
@@ -13,6 +13,86 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
13
13
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
14
14
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
15
15
|
import { UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput } from "./commands/UpdateEnvironmentMembershipCommand";
|
|
16
|
+
export interface Cloud9 {
|
|
17
|
+
/**
|
|
18
|
+
* @see {@link CreateEnvironmentEC2Command}
|
|
19
|
+
*/
|
|
20
|
+
createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentEC2CommandOutput>;
|
|
21
|
+
createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void): void;
|
|
22
|
+
createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void): void;
|
|
23
|
+
/**
|
|
24
|
+
* @see {@link CreateEnvironmentMembershipCommand}
|
|
25
|
+
*/
|
|
26
|
+
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentMembershipCommandOutput>;
|
|
27
|
+
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void): void;
|
|
28
|
+
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void): void;
|
|
29
|
+
/**
|
|
30
|
+
* @see {@link DeleteEnvironmentCommand}
|
|
31
|
+
*/
|
|
32
|
+
deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
|
|
33
|
+
deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
34
|
+
deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
35
|
+
/**
|
|
36
|
+
* @see {@link DeleteEnvironmentMembershipCommand}
|
|
37
|
+
*/
|
|
38
|
+
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentMembershipCommandOutput>;
|
|
39
|
+
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void): void;
|
|
40
|
+
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void): void;
|
|
41
|
+
/**
|
|
42
|
+
* @see {@link DescribeEnvironmentMembershipsCommand}
|
|
43
|
+
*/
|
|
44
|
+
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentMembershipsCommandOutput>;
|
|
45
|
+
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
|
|
46
|
+
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link DescribeEnvironmentsCommand}
|
|
49
|
+
*/
|
|
50
|
+
describeEnvironments(args: DescribeEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentsCommandOutput>;
|
|
51
|
+
describeEnvironments(args: DescribeEnvironmentsCommandInput, cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void): void;
|
|
52
|
+
describeEnvironments(args: DescribeEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void): void;
|
|
53
|
+
/**
|
|
54
|
+
* @see {@link DescribeEnvironmentStatusCommand}
|
|
55
|
+
*/
|
|
56
|
+
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentStatusCommandOutput>;
|
|
57
|
+
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void): void;
|
|
58
|
+
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void): void;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link ListEnvironmentsCommand}
|
|
61
|
+
*/
|
|
62
|
+
listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
|
|
63
|
+
listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
64
|
+
listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
65
|
+
/**
|
|
66
|
+
* @see {@link ListTagsForResourceCommand}
|
|
67
|
+
*/
|
|
68
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
69
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
70
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
71
|
+
/**
|
|
72
|
+
* @see {@link TagResourceCommand}
|
|
73
|
+
*/
|
|
74
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
75
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
76
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
77
|
+
/**
|
|
78
|
+
* @see {@link UntagResourceCommand}
|
|
79
|
+
*/
|
|
80
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
81
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
82
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
83
|
+
/**
|
|
84
|
+
* @see {@link UpdateEnvironmentCommand}
|
|
85
|
+
*/
|
|
86
|
+
updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
|
|
87
|
+
updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
88
|
+
updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
89
|
+
/**
|
|
90
|
+
* @see {@link UpdateEnvironmentMembershipCommand}
|
|
91
|
+
*/
|
|
92
|
+
updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentMembershipCommandOutput>;
|
|
93
|
+
updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void): void;
|
|
94
|
+
updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void): void;
|
|
95
|
+
}
|
|
16
96
|
/**
|
|
17
97
|
* @public
|
|
18
98
|
* <fullname>Cloud9</fullname>
|
|
@@ -83,103 +163,5 @@ import { UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCom
|
|
|
83
163
|
* </li>
|
|
84
164
|
* </ul>
|
|
85
165
|
*/
|
|
86
|
-
export declare class Cloud9 extends Cloud9Client {
|
|
87
|
-
/**
|
|
88
|
-
* @public
|
|
89
|
-
* <p>Creates an Cloud9 development environment, launches an Amazon Elastic Compute Cloud (Amazon EC2) instance, and
|
|
90
|
-
* then connects from the instance to the environment.</p>
|
|
91
|
-
*/
|
|
92
|
-
createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentEC2CommandOutput>;
|
|
93
|
-
createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void): void;
|
|
94
|
-
createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void): void;
|
|
95
|
-
/**
|
|
96
|
-
* @public
|
|
97
|
-
* <p>Adds an environment member to an Cloud9 development environment.</p>
|
|
98
|
-
*/
|
|
99
|
-
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentMembershipCommandOutput>;
|
|
100
|
-
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void): void;
|
|
101
|
-
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void): void;
|
|
102
|
-
/**
|
|
103
|
-
* @public
|
|
104
|
-
* <p>Deletes an Cloud9 development environment. If an Amazon EC2 instance is connected to the
|
|
105
|
-
* environment, also terminates the instance.</p>
|
|
106
|
-
*/
|
|
107
|
-
deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
|
|
108
|
-
deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
109
|
-
deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
110
|
-
/**
|
|
111
|
-
* @public
|
|
112
|
-
* <p>Deletes an environment member from a development environment.</p>
|
|
113
|
-
*/
|
|
114
|
-
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentMembershipCommandOutput>;
|
|
115
|
-
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void): void;
|
|
116
|
-
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void): void;
|
|
117
|
-
/**
|
|
118
|
-
* @public
|
|
119
|
-
* <p>Gets information about environment members for an Cloud9 development environment.</p>
|
|
120
|
-
*/
|
|
121
|
-
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentMembershipsCommandOutput>;
|
|
122
|
-
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
|
|
123
|
-
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
|
|
124
|
-
/**
|
|
125
|
-
* @public
|
|
126
|
-
* <p>Gets information about Cloud9 development environments.</p>
|
|
127
|
-
*/
|
|
128
|
-
describeEnvironments(args: DescribeEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentsCommandOutput>;
|
|
129
|
-
describeEnvironments(args: DescribeEnvironmentsCommandInput, cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void): void;
|
|
130
|
-
describeEnvironments(args: DescribeEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void): void;
|
|
131
|
-
/**
|
|
132
|
-
* @public
|
|
133
|
-
* <p>Gets status information for an Cloud9 development environment.</p>
|
|
134
|
-
*/
|
|
135
|
-
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentStatusCommandOutput>;
|
|
136
|
-
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void): void;
|
|
137
|
-
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void): void;
|
|
138
|
-
/**
|
|
139
|
-
* @public
|
|
140
|
-
* <p>Gets a list of Cloud9 development environment identifiers.</p>
|
|
141
|
-
*/
|
|
142
|
-
listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
|
|
143
|
-
listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
144
|
-
listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
145
|
-
/**
|
|
146
|
-
* @public
|
|
147
|
-
* <p>Gets a list of the tags associated with an Cloud9 development environment.</p>
|
|
148
|
-
*/
|
|
149
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
150
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
151
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
152
|
-
/**
|
|
153
|
-
* @public
|
|
154
|
-
* <p>Adds tags to an Cloud9 development environment.</p>
|
|
155
|
-
* <important>
|
|
156
|
-
* <p>Tags that you add to an Cloud9 environment by using this method will NOT be
|
|
157
|
-
* automatically propagated to underlying resources.</p>
|
|
158
|
-
* </important>
|
|
159
|
-
*/
|
|
160
|
-
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
161
|
-
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
162
|
-
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
163
|
-
/**
|
|
164
|
-
* @public
|
|
165
|
-
* <p>Removes tags from an Cloud9 development environment.</p>
|
|
166
|
-
*/
|
|
167
|
-
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
168
|
-
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
169
|
-
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
170
|
-
/**
|
|
171
|
-
* @public
|
|
172
|
-
* <p>Changes the settings of an existing Cloud9 development environment.</p>
|
|
173
|
-
*/
|
|
174
|
-
updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
|
|
175
|
-
updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
176
|
-
updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
177
|
-
/**
|
|
178
|
-
* @public
|
|
179
|
-
* <p>Changes the settings of an existing environment member for an Cloud9 development
|
|
180
|
-
* environment.</p>
|
|
181
|
-
*/
|
|
182
|
-
updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentMembershipCommandOutput>;
|
|
183
|
-
updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void): void;
|
|
184
|
-
updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void): void;
|
|
166
|
+
export declare class Cloud9 extends Cloud9Client implements Cloud9 {
|
|
185
167
|
}
|
|
@@ -52,7 +52,7 @@ import {
|
|
|
52
52
|
UpdateEnvironmentMembershipCommandInput,
|
|
53
53
|
UpdateEnvironmentMembershipCommandOutput,
|
|
54
54
|
} from "./commands/UpdateEnvironmentMembershipCommand";
|
|
55
|
-
export
|
|
55
|
+
export interface Cloud9 {
|
|
56
56
|
createEnvironmentEC2(
|
|
57
57
|
args: CreateEnvironmentEC2CommandInput,
|
|
58
58
|
options?: __HttpHandlerOptions
|
|
@@ -223,3 +223,4 @@ export declare class Cloud9 extends Cloud9Client {
|
|
|
223
223
|
cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void
|
|
224
224
|
): void;
|
|
225
225
|
}
|
|
226
|
+
export declare class Cloud9 extends Cloud9Client implements Cloud9 {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloud9",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloud9 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|