@aws-sdk/client-codeguruprofiler 3.52.0 → 3.54.1
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/CodeGuruProfilerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +84 -2
- package/dist-cjs/protocols/Aws_restJson1.js +258 -862
- package/dist-es/index.js +1 -0
- package/dist-es/models/CodeGuruProfilerServiceException.js +12 -0
- package/dist-es/models/models_0.js +77 -1
- package/dist-es/protocols/Aws_restJson1.js +523 -961
- package/dist-types/CodeGuruProfilerClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CodeGuruProfilerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -25
- 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/CodeGuruProfilerClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CodeGuruProfilerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -25
- 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 +27 -27
|
@@ -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 { AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput } from "./commands/AddNotificationChannelsCommand";
|
|
10
10
|
import { BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput } from "./commands/BatchGetFrameMetricDataCommand";
|
|
11
11
|
import { ConfigureAgentCommandInput, ConfigureAgentCommandOutput } from "./commands/ConfigureAgentCommand";
|
|
@@ -51,7 +51,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
51
51
|
* A function that can calculate the length of a request body.
|
|
52
52
|
* @internal
|
|
53
53
|
*/
|
|
54
|
-
bodyLengthChecker?:
|
|
54
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
55
55
|
/**
|
|
56
56
|
* A function that converts a stream into an array of bytes.
|
|
57
57
|
* @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 CodeGuruProfiler service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class CodeGuruProfilerServiceException 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 { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
2
3
|
export declare enum ActionGroup {
|
|
3
4
|
/**
|
|
4
5
|
* Permission group type for Agent APIs - ConfigureAgent, PostAgentProfile
|
|
@@ -91,27 +92,36 @@ export declare namespace AddNotificationChannelsResponse {
|
|
|
91
92
|
* before retrying this request.
|
|
92
93
|
* </p>
|
|
93
94
|
*/
|
|
94
|
-
export
|
|
95
|
-
name: "ConflictException";
|
|
96
|
-
$fault: "client";
|
|
97
|
-
|
|
95
|
+
export declare class ConflictException extends __BaseException {
|
|
96
|
+
readonly name: "ConflictException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
98
102
|
}
|
|
99
103
|
/**
|
|
100
104
|
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
101
105
|
*/
|
|
102
|
-
export
|
|
103
|
-
name: "InternalServerException";
|
|
104
|
-
$fault: "server";
|
|
106
|
+
export declare class InternalServerException extends __BaseException {
|
|
107
|
+
readonly name: "InternalServerException";
|
|
108
|
+
readonly $fault: "server";
|
|
105
109
|
$retryable: {};
|
|
106
|
-
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
113
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
107
114
|
}
|
|
108
115
|
/**
|
|
109
116
|
* <p>The resource specified in the request does not exist.</p>
|
|
110
117
|
*/
|
|
111
|
-
export
|
|
112
|
-
name: "ResourceNotFoundException";
|
|
113
|
-
$fault: "client";
|
|
114
|
-
|
|
118
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
119
|
+
readonly name: "ResourceNotFoundException";
|
|
120
|
+
readonly $fault: "client";
|
|
121
|
+
/**
|
|
122
|
+
* @internal
|
|
123
|
+
*/
|
|
124
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
115
125
|
}
|
|
116
126
|
/**
|
|
117
127
|
* <p>You have exceeded your service quota. To perform the requested action,
|
|
@@ -119,28 +129,37 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
119
129
|
* service quota increase.
|
|
120
130
|
* </p>
|
|
121
131
|
*/
|
|
122
|
-
export
|
|
123
|
-
name: "ServiceQuotaExceededException";
|
|
124
|
-
$fault: "client";
|
|
132
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
133
|
+
readonly name: "ServiceQuotaExceededException";
|
|
134
|
+
readonly $fault: "client";
|
|
125
135
|
$retryable: {};
|
|
126
|
-
|
|
136
|
+
/**
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
139
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
127
140
|
}
|
|
128
141
|
/**
|
|
129
142
|
* <p>The request was denied due to request throttling.</p>
|
|
130
143
|
*/
|
|
131
|
-
export
|
|
132
|
-
name: "ThrottlingException";
|
|
133
|
-
$fault: "client";
|
|
144
|
+
export declare class ThrottlingException extends __BaseException {
|
|
145
|
+
readonly name: "ThrottlingException";
|
|
146
|
+
readonly $fault: "client";
|
|
134
147
|
$retryable: {};
|
|
135
|
-
|
|
148
|
+
/**
|
|
149
|
+
* @internal
|
|
150
|
+
*/
|
|
151
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
136
152
|
}
|
|
137
153
|
/**
|
|
138
154
|
* <p>The parameter is not valid.</p>
|
|
139
155
|
*/
|
|
140
|
-
export
|
|
141
|
-
name: "ValidationException";
|
|
142
|
-
$fault: "client";
|
|
143
|
-
|
|
156
|
+
export declare class ValidationException extends __BaseException {
|
|
157
|
+
readonly name: "ValidationException";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
/**
|
|
160
|
+
* @internal
|
|
161
|
+
*/
|
|
162
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
144
163
|
}
|
|
145
164
|
export declare enum AgentParameterField {
|
|
146
165
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CodeGuruProfilerClientConfig) =>
|
|
|
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: CodeGuruProfilerClientConfig) =>
|
|
|
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: CodeGuruProfilerClientConfig) =>
|
|
|
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 { AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput } from "./commands/AddNotificationChannelsCommand";
|
|
10
10
|
import { BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput } from "./commands/BatchGetFrameMetricDataCommand";
|
|
11
11
|
import { ConfigureAgentCommandInput, ConfigureAgentCommandOutput } from "./commands/ConfigureAgentCommand";
|
|
@@ -39,7 +39,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
39
39
|
|
|
40
40
|
urlParser?: __UrlParser;
|
|
41
41
|
|
|
42
|
-
bodyLengthChecker?:
|
|
42
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
43
43
|
|
|
44
44
|
streamCollector?: __StreamCollector;
|
|
45
45
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class CodeGuruProfilerServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
2
3
|
export declare enum ActionGroup {
|
|
3
4
|
|
|
4
5
|
AGENT_PERMISSIONS = "agentPermissions"
|
|
@@ -50,43 +51,49 @@ export declare namespace AddNotificationChannelsResponse {
|
|
|
50
51
|
const filterSensitiveLog: (obj: AddNotificationChannelsResponse) => any;
|
|
51
52
|
}
|
|
52
53
|
|
|
53
|
-
export
|
|
54
|
-
name: "ConflictException";
|
|
55
|
-
$fault: "client";
|
|
56
|
-
|
|
54
|
+
export declare class ConflictException extends __BaseException {
|
|
55
|
+
readonly name: "ConflictException";
|
|
56
|
+
readonly $fault: "client";
|
|
57
|
+
|
|
58
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
57
59
|
}
|
|
58
60
|
|
|
59
|
-
export
|
|
60
|
-
name: "InternalServerException";
|
|
61
|
-
$fault: "server";
|
|
61
|
+
export declare class InternalServerException extends __BaseException {
|
|
62
|
+
readonly name: "InternalServerException";
|
|
63
|
+
readonly $fault: "server";
|
|
62
64
|
$retryable: {};
|
|
63
|
-
|
|
65
|
+
|
|
66
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
64
67
|
}
|
|
65
68
|
|
|
66
|
-
export
|
|
67
|
-
name: "ResourceNotFoundException";
|
|
68
|
-
$fault: "client";
|
|
69
|
-
|
|
69
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
70
|
+
readonly name: "ResourceNotFoundException";
|
|
71
|
+
readonly $fault: "client";
|
|
72
|
+
|
|
73
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
70
74
|
}
|
|
71
75
|
|
|
72
|
-
export
|
|
73
|
-
name: "ServiceQuotaExceededException";
|
|
74
|
-
$fault: "client";
|
|
76
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
77
|
+
readonly name: "ServiceQuotaExceededException";
|
|
78
|
+
readonly $fault: "client";
|
|
75
79
|
$retryable: {};
|
|
76
|
-
|
|
80
|
+
|
|
81
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
77
82
|
}
|
|
78
83
|
|
|
79
|
-
export
|
|
80
|
-
name: "ThrottlingException";
|
|
81
|
-
$fault: "client";
|
|
84
|
+
export declare class ThrottlingException extends __BaseException {
|
|
85
|
+
readonly name: "ThrottlingException";
|
|
86
|
+
readonly $fault: "client";
|
|
82
87
|
$retryable: {};
|
|
83
|
-
|
|
88
|
+
|
|
89
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
84
90
|
}
|
|
85
91
|
|
|
86
|
-
export
|
|
87
|
-
name: "ValidationException";
|
|
88
|
-
$fault: "client";
|
|
89
|
-
|
|
92
|
+
export declare class ValidationException extends __BaseException {
|
|
93
|
+
readonly name: "ValidationException";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
|
|
96
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
90
97
|
}
|
|
91
98
|
export declare enum AgentParameterField {
|
|
92
99
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CodeGuruProfilerClientConfig) =>
|
|
|
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: CodeGuruProfilerClientConfig) =>
|
|
|
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: CodeGuruProfilerClientConfig) =>
|
|
|
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-codeguruprofiler",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
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",
|
|
@@ -18,34 +18,34 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
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.
|
|
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.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|