@aws-sdk/client-cloudhsm-v2 3.303.0 → 3.309.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/commands/CopyBackupToRegionCommand.js +2 -2
- package/dist-cjs/commands/CreateClusterCommand.js +2 -2
- package/dist-cjs/commands/CreateHsmCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackupCommand.js +2 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +2 -2
- package/dist-cjs/commands/DeleteHsmCommand.js +2 -2
- package/dist-cjs/commands/DescribeBackupsCommand.js +2 -2
- package/dist-cjs/commands/DescribeClustersCommand.js +2 -2
- package/dist-cjs/commands/InitializeClusterCommand.js +2 -2
- package/dist-cjs/commands/ListTagsCommand.js +2 -2
- package/dist-cjs/commands/ModifyBackupAttributesCommand.js +2 -2
- package/dist-cjs/commands/ModifyClusterCommand.js +2 -2
- package/dist-cjs/commands/RestoreBackupCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_1.js +302 -306
- package/dist-es/commands/CopyBackupToRegionCommand.js +3 -3
- package/dist-es/commands/CreateClusterCommand.js +3 -3
- package/dist-es/commands/CreateHsmCommand.js +3 -3
- package/dist-es/commands/DeleteBackupCommand.js +3 -3
- package/dist-es/commands/DeleteClusterCommand.js +3 -3
- package/dist-es/commands/DeleteHsmCommand.js +3 -3
- package/dist-es/commands/DescribeBackupsCommand.js +3 -3
- package/dist-es/commands/DescribeClustersCommand.js +3 -3
- package/dist-es/commands/InitializeClusterCommand.js +3 -3
- package/dist-es/commands/ListTagsCommand.js +3 -3
- package/dist-es/commands/ModifyBackupAttributesCommand.js +3 -3
- package/dist-es/commands/ModifyClusterCommand.js +3 -3
- package/dist-es/commands/RestoreBackupCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_1.js +271 -275
- package/dist-types/protocols/Aws_json1_1.d.ts +120 -30
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +30 -30
- package/package.json +29 -29
|
@@ -15,33 +15,123 @@ import { ModifyClusterCommandInput, ModifyClusterCommandOutput } from "../comman
|
|
|
15
15
|
import { RestoreBackupCommandInput, RestoreBackupCommandOutput } from "../commands/RestoreBackupCommand";
|
|
16
16
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
17
17
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export declare const
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export declare const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
export declare const
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
export declare const
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
export declare const
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
export declare const
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
export declare const
|
|
46
|
-
|
|
47
|
-
|
|
18
|
+
/**
|
|
19
|
+
* serializeAws_json1_1CopyBackupToRegionCommand
|
|
20
|
+
*/
|
|
21
|
+
export declare const se_CopyBackupToRegionCommand: (input: CopyBackupToRegionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
/**
|
|
23
|
+
* serializeAws_json1_1CreateClusterCommand
|
|
24
|
+
*/
|
|
25
|
+
export declare const se_CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
/**
|
|
27
|
+
* serializeAws_json1_1CreateHsmCommand
|
|
28
|
+
*/
|
|
29
|
+
export declare const se_CreateHsmCommand: (input: CreateHsmCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
/**
|
|
31
|
+
* serializeAws_json1_1DeleteBackupCommand
|
|
32
|
+
*/
|
|
33
|
+
export declare const se_DeleteBackupCommand: (input: DeleteBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
/**
|
|
35
|
+
* serializeAws_json1_1DeleteClusterCommand
|
|
36
|
+
*/
|
|
37
|
+
export declare const se_DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_json1_1DeleteHsmCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_DeleteHsmCommand: (input: DeleteHsmCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_json1_1DescribeBackupsCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_DescribeBackupsCommand: (input: DescribeBackupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_json1_1DescribeClustersCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_DescribeClustersCommand: (input: DescribeClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
/**
|
|
51
|
+
* serializeAws_json1_1InitializeClusterCommand
|
|
52
|
+
*/
|
|
53
|
+
export declare const se_InitializeClusterCommand: (input: InitializeClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_json1_1ListTagsCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_ListTagsCommand: (input: ListTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* serializeAws_json1_1ModifyBackupAttributesCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const se_ModifyBackupAttributesCommand: (input: ModifyBackupAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* serializeAws_json1_1ModifyClusterCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const se_ModifyClusterCommand: (input: ModifyClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
/**
|
|
67
|
+
* serializeAws_json1_1RestoreBackupCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const se_RestoreBackupCommand: (input: RestoreBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_json1_1TagResourceCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* serializeAws_json1_1UntagResourceCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
/**
|
|
79
|
+
* deserializeAws_json1_1CopyBackupToRegionCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const de_CopyBackupToRegionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CopyBackupToRegionCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* deserializeAws_json1_1CreateClusterCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const de_CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* deserializeAws_json1_1CreateHsmCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const de_CreateHsmCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHsmCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* deserializeAws_json1_1DeleteBackupCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const de_DeleteBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBackupCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* deserializeAws_json1_1DeleteClusterCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const de_DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* deserializeAws_json1_1DeleteHsmCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const de_DeleteHsmCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHsmCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* deserializeAws_json1_1DescribeBackupsCommand
|
|
104
|
+
*/
|
|
105
|
+
export declare const de_DescribeBackupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeBackupsCommandOutput>;
|
|
106
|
+
/**
|
|
107
|
+
* deserializeAws_json1_1DescribeClustersCommand
|
|
108
|
+
*/
|
|
109
|
+
export declare const de_DescribeClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClustersCommandOutput>;
|
|
110
|
+
/**
|
|
111
|
+
* deserializeAws_json1_1InitializeClusterCommand
|
|
112
|
+
*/
|
|
113
|
+
export declare const de_InitializeClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<InitializeClusterCommandOutput>;
|
|
114
|
+
/**
|
|
115
|
+
* deserializeAws_json1_1ListTagsCommand
|
|
116
|
+
*/
|
|
117
|
+
export declare const de_ListTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsCommandOutput>;
|
|
118
|
+
/**
|
|
119
|
+
* deserializeAws_json1_1ModifyBackupAttributesCommand
|
|
120
|
+
*/
|
|
121
|
+
export declare const de_ModifyBackupAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyBackupAttributesCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* deserializeAws_json1_1ModifyClusterCommand
|
|
124
|
+
*/
|
|
125
|
+
export declare const de_ModifyClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyClusterCommandOutput>;
|
|
126
|
+
/**
|
|
127
|
+
* deserializeAws_json1_1RestoreBackupCommand
|
|
128
|
+
*/
|
|
129
|
+
export declare const de_RestoreBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreBackupCommandOutput>;
|
|
130
|
+
/**
|
|
131
|
+
* deserializeAws_json1_1TagResourceCommand
|
|
132
|
+
*/
|
|
133
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
134
|
+
/**
|
|
135
|
+
* deserializeAws_json1_1UntagResourceCommand
|
|
136
|
+
*/
|
|
137
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
@@ -63,123 +63,123 @@ import {
|
|
|
63
63
|
UntagResourceCommandInput,
|
|
64
64
|
UntagResourceCommandOutput,
|
|
65
65
|
} from "../commands/UntagResourceCommand";
|
|
66
|
-
export declare const
|
|
66
|
+
export declare const se_CopyBackupToRegionCommand: (
|
|
67
67
|
input: CopyBackupToRegionCommandInput,
|
|
68
68
|
context: __SerdeContext
|
|
69
69
|
) => Promise<__HttpRequest>;
|
|
70
|
-
export declare const
|
|
70
|
+
export declare const se_CreateClusterCommand: (
|
|
71
71
|
input: CreateClusterCommandInput,
|
|
72
72
|
context: __SerdeContext
|
|
73
73
|
) => Promise<__HttpRequest>;
|
|
74
|
-
export declare const
|
|
74
|
+
export declare const se_CreateHsmCommand: (
|
|
75
75
|
input: CreateHsmCommandInput,
|
|
76
76
|
context: __SerdeContext
|
|
77
77
|
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const
|
|
78
|
+
export declare const se_DeleteBackupCommand: (
|
|
79
79
|
input: DeleteBackupCommandInput,
|
|
80
80
|
context: __SerdeContext
|
|
81
81
|
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const
|
|
82
|
+
export declare const se_DeleteClusterCommand: (
|
|
83
83
|
input: DeleteClusterCommandInput,
|
|
84
84
|
context: __SerdeContext
|
|
85
85
|
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const
|
|
86
|
+
export declare const se_DeleteHsmCommand: (
|
|
87
87
|
input: DeleteHsmCommandInput,
|
|
88
88
|
context: __SerdeContext
|
|
89
89
|
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const
|
|
90
|
+
export declare const se_DescribeBackupsCommand: (
|
|
91
91
|
input: DescribeBackupsCommandInput,
|
|
92
92
|
context: __SerdeContext
|
|
93
93
|
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const
|
|
94
|
+
export declare const se_DescribeClustersCommand: (
|
|
95
95
|
input: DescribeClustersCommandInput,
|
|
96
96
|
context: __SerdeContext
|
|
97
97
|
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const
|
|
98
|
+
export declare const se_InitializeClusterCommand: (
|
|
99
99
|
input: InitializeClusterCommandInput,
|
|
100
100
|
context: __SerdeContext
|
|
101
101
|
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const
|
|
102
|
+
export declare const se_ListTagsCommand: (
|
|
103
103
|
input: ListTagsCommandInput,
|
|
104
104
|
context: __SerdeContext
|
|
105
105
|
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const
|
|
106
|
+
export declare const se_ModifyBackupAttributesCommand: (
|
|
107
107
|
input: ModifyBackupAttributesCommandInput,
|
|
108
108
|
context: __SerdeContext
|
|
109
109
|
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const
|
|
110
|
+
export declare const se_ModifyClusterCommand: (
|
|
111
111
|
input: ModifyClusterCommandInput,
|
|
112
112
|
context: __SerdeContext
|
|
113
113
|
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const
|
|
114
|
+
export declare const se_RestoreBackupCommand: (
|
|
115
115
|
input: RestoreBackupCommandInput,
|
|
116
116
|
context: __SerdeContext
|
|
117
117
|
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const
|
|
118
|
+
export declare const se_TagResourceCommand: (
|
|
119
119
|
input: TagResourceCommandInput,
|
|
120
120
|
context: __SerdeContext
|
|
121
121
|
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const
|
|
122
|
+
export declare const se_UntagResourceCommand: (
|
|
123
123
|
input: UntagResourceCommandInput,
|
|
124
124
|
context: __SerdeContext
|
|
125
125
|
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const
|
|
126
|
+
export declare const de_CopyBackupToRegionCommand: (
|
|
127
127
|
output: __HttpResponse,
|
|
128
128
|
context: __SerdeContext
|
|
129
129
|
) => Promise<CopyBackupToRegionCommandOutput>;
|
|
130
|
-
export declare const
|
|
130
|
+
export declare const de_CreateClusterCommand: (
|
|
131
131
|
output: __HttpResponse,
|
|
132
132
|
context: __SerdeContext
|
|
133
133
|
) => Promise<CreateClusterCommandOutput>;
|
|
134
|
-
export declare const
|
|
134
|
+
export declare const de_CreateHsmCommand: (
|
|
135
135
|
output: __HttpResponse,
|
|
136
136
|
context: __SerdeContext
|
|
137
137
|
) => Promise<CreateHsmCommandOutput>;
|
|
138
|
-
export declare const
|
|
138
|
+
export declare const de_DeleteBackupCommand: (
|
|
139
139
|
output: __HttpResponse,
|
|
140
140
|
context: __SerdeContext
|
|
141
141
|
) => Promise<DeleteBackupCommandOutput>;
|
|
142
|
-
export declare const
|
|
142
|
+
export declare const de_DeleteClusterCommand: (
|
|
143
143
|
output: __HttpResponse,
|
|
144
144
|
context: __SerdeContext
|
|
145
145
|
) => Promise<DeleteClusterCommandOutput>;
|
|
146
|
-
export declare const
|
|
146
|
+
export declare const de_DeleteHsmCommand: (
|
|
147
147
|
output: __HttpResponse,
|
|
148
148
|
context: __SerdeContext
|
|
149
149
|
) => Promise<DeleteHsmCommandOutput>;
|
|
150
|
-
export declare const
|
|
150
|
+
export declare const de_DescribeBackupsCommand: (
|
|
151
151
|
output: __HttpResponse,
|
|
152
152
|
context: __SerdeContext
|
|
153
153
|
) => Promise<DescribeBackupsCommandOutput>;
|
|
154
|
-
export declare const
|
|
154
|
+
export declare const de_DescribeClustersCommand: (
|
|
155
155
|
output: __HttpResponse,
|
|
156
156
|
context: __SerdeContext
|
|
157
157
|
) => Promise<DescribeClustersCommandOutput>;
|
|
158
|
-
export declare const
|
|
158
|
+
export declare const de_InitializeClusterCommand: (
|
|
159
159
|
output: __HttpResponse,
|
|
160
160
|
context: __SerdeContext
|
|
161
161
|
) => Promise<InitializeClusterCommandOutput>;
|
|
162
|
-
export declare const
|
|
162
|
+
export declare const de_ListTagsCommand: (
|
|
163
163
|
output: __HttpResponse,
|
|
164
164
|
context: __SerdeContext
|
|
165
165
|
) => Promise<ListTagsCommandOutput>;
|
|
166
|
-
export declare const
|
|
166
|
+
export declare const de_ModifyBackupAttributesCommand: (
|
|
167
167
|
output: __HttpResponse,
|
|
168
168
|
context: __SerdeContext
|
|
169
169
|
) => Promise<ModifyBackupAttributesCommandOutput>;
|
|
170
|
-
export declare const
|
|
170
|
+
export declare const de_ModifyClusterCommand: (
|
|
171
171
|
output: __HttpResponse,
|
|
172
172
|
context: __SerdeContext
|
|
173
173
|
) => Promise<ModifyClusterCommandOutput>;
|
|
174
|
-
export declare const
|
|
174
|
+
export declare const de_RestoreBackupCommand: (
|
|
175
175
|
output: __HttpResponse,
|
|
176
176
|
context: __SerdeContext
|
|
177
177
|
) => Promise<RestoreBackupCommandOutput>;
|
|
178
|
-
export declare const
|
|
178
|
+
export declare const de_TagResourceCommand: (
|
|
179
179
|
output: __HttpResponse,
|
|
180
180
|
context: __SerdeContext
|
|
181
181
|
) => Promise<TagResourceCommandOutput>;
|
|
182
|
-
export declare const
|
|
182
|
+
export declare const de_UntagResourceCommand: (
|
|
183
183
|
output: __HttpResponse,
|
|
184
184
|
context: __SerdeContext
|
|
185
185
|
) => Promise<UntagResourceCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudhsm-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudhsm V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.309.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,37 +21,37 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.309.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.309.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.309.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.303.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
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.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.309.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.309.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|