@aws-sdk/client-rbin 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/RbinServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +61 -1
- package/dist-cjs/protocols/Aws_restJson1.js +88 -258
- package/dist-es/index.js +1 -0
- package/dist-es/models/RbinServiceException.js +12 -0
- package/dist-es/models/models_0.js +57 -1
- package/dist-es/protocols/Aws_restJson1.js +169 -295
- package/dist-types/RbinClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RbinServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +30 -13
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/RbinClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RbinServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -13
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateRuleCommandInput, CreateRuleCommandOutput } from "./commands/CreateRuleCommand";
|
|
10
10
|
import { DeleteRuleCommandInput, DeleteRuleCommandOutput } from "./commands/DeleteRuleCommand";
|
|
11
11
|
import { GetRuleCommandInput, GetRuleCommandOutput } from "./commands/GetRuleCommand";
|
|
@@ -36,7 +36,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
36
36
|
* A function that can calculate the length of a request body.
|
|
37
37
|
* @internal
|
|
38
38
|
*/
|
|
39
|
-
bodyLengthChecker?:
|
|
39
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
40
40
|
/**
|
|
41
41
|
* A function that converts a stream into an array of bytes.
|
|
42
42
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Rbin service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class RbinServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { RbinServiceException as __BaseException } from "./RbinServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Information about the resource tags used to identify resources that are retained by the retention
|
|
4
5
|
* rule.</p>
|
|
@@ -148,10 +149,14 @@ export declare namespace CreateRuleResponse {
|
|
|
148
149
|
/**
|
|
149
150
|
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
150
151
|
*/
|
|
151
|
-
export
|
|
152
|
-
name: "InternalServerException";
|
|
153
|
-
$fault: "server";
|
|
152
|
+
export declare class InternalServerException extends __BaseException {
|
|
153
|
+
readonly name: "InternalServerException";
|
|
154
|
+
readonly $fault: "server";
|
|
154
155
|
Message?: string;
|
|
156
|
+
/**
|
|
157
|
+
* @internal
|
|
158
|
+
*/
|
|
159
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
155
160
|
}
|
|
156
161
|
export declare enum ServiceQuotaExceededExceptionReason {
|
|
157
162
|
SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED"
|
|
@@ -159,14 +164,18 @@ export declare enum ServiceQuotaExceededExceptionReason {
|
|
|
159
164
|
/**
|
|
160
165
|
* <p>The request would cause a service quota for the number of tags per resource to be exceeded.</p>
|
|
161
166
|
*/
|
|
162
|
-
export
|
|
163
|
-
name: "ServiceQuotaExceededException";
|
|
164
|
-
$fault: "client";
|
|
167
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
168
|
+
readonly name: "ServiceQuotaExceededException";
|
|
169
|
+
readonly $fault: "client";
|
|
165
170
|
Message?: string;
|
|
166
171
|
/**
|
|
167
172
|
* <p>The reason for the exception.</p>
|
|
168
173
|
*/
|
|
169
174
|
Reason?: ServiceQuotaExceededExceptionReason | string;
|
|
175
|
+
/**
|
|
176
|
+
* @internal
|
|
177
|
+
*/
|
|
178
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
170
179
|
}
|
|
171
180
|
export declare enum ValidationExceptionReason {
|
|
172
181
|
INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
|
|
@@ -175,14 +184,18 @@ export declare enum ValidationExceptionReason {
|
|
|
175
184
|
/**
|
|
176
185
|
* <p>One or more of the parameters in the request is not valid.</p>
|
|
177
186
|
*/
|
|
178
|
-
export
|
|
179
|
-
name: "ValidationException";
|
|
180
|
-
$fault: "client";
|
|
187
|
+
export declare class ValidationException extends __BaseException {
|
|
188
|
+
readonly name: "ValidationException";
|
|
189
|
+
readonly $fault: "client";
|
|
181
190
|
Message?: string;
|
|
182
191
|
/**
|
|
183
192
|
* <p>The reason for the exception.</p>
|
|
184
193
|
*/
|
|
185
194
|
Reason?: ValidationExceptionReason | string;
|
|
195
|
+
/**
|
|
196
|
+
* @internal
|
|
197
|
+
*/
|
|
198
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
186
199
|
}
|
|
187
200
|
export interface DeleteRuleRequest {
|
|
188
201
|
/**
|
|
@@ -210,14 +223,18 @@ export declare enum ResourceNotFoundExceptionReason {
|
|
|
210
223
|
/**
|
|
211
224
|
* <p>The specified resource was not found.</p>
|
|
212
225
|
*/
|
|
213
|
-
export
|
|
214
|
-
name: "ResourceNotFoundException";
|
|
215
|
-
$fault: "client";
|
|
226
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
227
|
+
readonly name: "ResourceNotFoundException";
|
|
228
|
+
readonly $fault: "client";
|
|
216
229
|
Message?: string;
|
|
217
230
|
/**
|
|
218
231
|
* <p>The reason for the exception.</p>
|
|
219
232
|
*/
|
|
220
233
|
Reason?: ResourceNotFoundExceptionReason | string;
|
|
234
|
+
/**
|
|
235
|
+
* @internal
|
|
236
|
+
*/
|
|
237
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
221
238
|
}
|
|
222
239
|
export interface GetRuleRequest {
|
|
223
240
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateRuleCommandInput, CreateRuleCommandOutput } from "./commands/CreateRuleCommand";
|
|
10
10
|
import { DeleteRuleCommandInput, DeleteRuleCommandOutput } from "./commands/DeleteRuleCommand";
|
|
11
11
|
import { GetRuleCommandInput, GetRuleCommandOutput } from "./commands/GetRuleCommand";
|
|
@@ -24,7 +24,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
24
24
|
|
|
25
25
|
urlParser?: __UrlParser;
|
|
26
26
|
|
|
27
|
-
bodyLengthChecker?:
|
|
27
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
28
28
|
|
|
29
29
|
streamCollector?: __StreamCollector;
|
|
30
30
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { RbinServiceException as __BaseException } from "./RbinServiceException";
|
|
2
3
|
|
|
3
4
|
export interface ResourceTag {
|
|
4
5
|
|
|
@@ -80,33 +81,39 @@ export declare namespace CreateRuleResponse {
|
|
|
80
81
|
const filterSensitiveLog: (obj: CreateRuleResponse) => any;
|
|
81
82
|
}
|
|
82
83
|
|
|
83
|
-
export
|
|
84
|
-
name: "InternalServerException";
|
|
85
|
-
$fault: "server";
|
|
84
|
+
export declare class InternalServerException extends __BaseException {
|
|
85
|
+
readonly name: "InternalServerException";
|
|
86
|
+
readonly $fault: "server";
|
|
86
87
|
Message?: string;
|
|
88
|
+
|
|
89
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
87
90
|
}
|
|
88
91
|
export declare enum ServiceQuotaExceededExceptionReason {
|
|
89
92
|
SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED"
|
|
90
93
|
}
|
|
91
94
|
|
|
92
|
-
export
|
|
93
|
-
name: "ServiceQuotaExceededException";
|
|
94
|
-
$fault: "client";
|
|
95
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
96
|
+
readonly name: "ServiceQuotaExceededException";
|
|
97
|
+
readonly $fault: "client";
|
|
95
98
|
Message?: string;
|
|
96
99
|
|
|
97
100
|
Reason?: ServiceQuotaExceededExceptionReason | string;
|
|
101
|
+
|
|
102
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
98
103
|
}
|
|
99
104
|
export declare enum ValidationExceptionReason {
|
|
100
105
|
INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
|
|
101
106
|
INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE"
|
|
102
107
|
}
|
|
103
108
|
|
|
104
|
-
export
|
|
105
|
-
name: "ValidationException";
|
|
106
|
-
$fault: "client";
|
|
109
|
+
export declare class ValidationException extends __BaseException {
|
|
110
|
+
readonly name: "ValidationException";
|
|
111
|
+
readonly $fault: "client";
|
|
107
112
|
Message?: string;
|
|
108
113
|
|
|
109
114
|
Reason?: ValidationExceptionReason | string;
|
|
115
|
+
|
|
116
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
110
117
|
}
|
|
111
118
|
export interface DeleteRuleRequest {
|
|
112
119
|
|
|
@@ -126,12 +133,14 @@ export declare enum ResourceNotFoundExceptionReason {
|
|
|
126
133
|
RULE_NOT_FOUND = "RULE_NOT_FOUND"
|
|
127
134
|
}
|
|
128
135
|
|
|
129
|
-
export
|
|
130
|
-
name: "ResourceNotFoundException";
|
|
131
|
-
$fault: "client";
|
|
136
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
137
|
+
readonly name: "ResourceNotFoundException";
|
|
138
|
+
readonly $fault: "client";
|
|
132
139
|
Message?: string;
|
|
133
140
|
|
|
134
141
|
Reason?: ResourceNotFoundExceptionReason | string;
|
|
142
|
+
|
|
143
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
135
144
|
}
|
|
136
145
|
export interface GetRuleRequest {
|
|
137
146
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rbin",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rbin Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,40 +18,40 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|