@aws-sdk/client-iot-jobs-data-plane 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/IoTJobsDataPlaneServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +94 -1
- package/dist-cjs/protocols/Aws_restJson1.js +84 -223
- package/dist-es/index.js +1 -0
- package/dist-es/models/IoTJobsDataPlaneServiceException.js +12 -0
- package/dist-es/models/models_0.js +87 -1
- package/dist-es/protocols/Aws_restJson1.js +125 -247
- package/dist-types/IoTJobsDataPlaneClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IoTJobsDataPlaneServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +43 -36
- 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/IoTJobsDataPlaneClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IoTJobsDataPlaneServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +33 -30
- 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 { DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput } from "./commands/DescribeJobExecutionCommand";
|
|
10
10
|
import { GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput } from "./commands/GetPendingJobExecutionsCommand";
|
|
11
11
|
import { StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput } from "./commands/StartNextPendingJobExecutionCommand";
|
|
@@ -32,7 +32,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
32
32
|
* A function that can calculate the length of a request body.
|
|
33
33
|
* @internal
|
|
34
34
|
*/
|
|
35
|
-
bodyLengthChecker?:
|
|
35
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
36
36
|
/**
|
|
37
37
|
* A function that converts a stream into an array of bytes.
|
|
38
38
|
* @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 IoTJobsDataPlane service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class IoTJobsDataPlaneServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IoTJobsDataPlaneServiceException as __BaseException } from "./IoTJobsDataPlaneServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The certificate is invalid.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "CertificateValidationException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class CertificateValidationException extends __BaseException {
|
|
7
|
+
readonly name: "CertificateValidationException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
/**
|
|
9
|
-
*
|
|
10
|
+
* @internal
|
|
10
11
|
*/
|
|
11
|
-
|
|
12
|
+
constructor(opts: __ExceptionOptionType<CertificateValidationException, __BaseException>);
|
|
12
13
|
}
|
|
13
14
|
export interface DescribeJobExecutionRequest {
|
|
14
15
|
/**
|
|
@@ -121,58 +122,61 @@ export declare namespace DescribeJobExecutionResponse {
|
|
|
121
122
|
/**
|
|
122
123
|
* <p>The contents of the request were invalid. For example, this code is returned when an UpdateJobExecution request contains invalid status details. The message contains details about the error.</p>
|
|
123
124
|
*/
|
|
124
|
-
export
|
|
125
|
-
name: "InvalidRequestException";
|
|
126
|
-
$fault: "client";
|
|
125
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
126
|
+
readonly name: "InvalidRequestException";
|
|
127
|
+
readonly $fault: "client";
|
|
127
128
|
/**
|
|
128
|
-
*
|
|
129
|
+
* @internal
|
|
129
130
|
*/
|
|
130
|
-
|
|
131
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
131
132
|
}
|
|
132
133
|
/**
|
|
133
134
|
* <p>The specified resource does not exist.</p>
|
|
134
135
|
*/
|
|
135
|
-
export
|
|
136
|
-
name: "ResourceNotFoundException";
|
|
137
|
-
$fault: "client";
|
|
136
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
137
|
+
readonly name: "ResourceNotFoundException";
|
|
138
|
+
readonly $fault: "client";
|
|
138
139
|
/**
|
|
139
|
-
*
|
|
140
|
+
* @internal
|
|
140
141
|
*/
|
|
141
|
-
|
|
142
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
142
143
|
}
|
|
143
144
|
/**
|
|
144
145
|
* <p>The service is temporarily unavailable.</p>
|
|
145
146
|
*/
|
|
146
|
-
export
|
|
147
|
-
name: "ServiceUnavailableException";
|
|
148
|
-
$fault: "server";
|
|
147
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
148
|
+
readonly name: "ServiceUnavailableException";
|
|
149
|
+
readonly $fault: "server";
|
|
149
150
|
/**
|
|
150
|
-
*
|
|
151
|
+
* @internal
|
|
151
152
|
*/
|
|
152
|
-
|
|
153
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
153
154
|
}
|
|
154
155
|
/**
|
|
155
156
|
* <p>The job is in a terminal state.</p>
|
|
156
157
|
*/
|
|
157
|
-
export
|
|
158
|
-
name: "TerminalStateException";
|
|
159
|
-
$fault: "client";
|
|
160
|
-
|
|
158
|
+
export declare class TerminalStateException extends __BaseException {
|
|
159
|
+
readonly name: "TerminalStateException";
|
|
160
|
+
readonly $fault: "client";
|
|
161
|
+
/**
|
|
162
|
+
* @internal
|
|
163
|
+
*/
|
|
164
|
+
constructor(opts: __ExceptionOptionType<TerminalStateException, __BaseException>);
|
|
161
165
|
}
|
|
162
166
|
/**
|
|
163
167
|
* <p>The rate exceeds the limit.</p>
|
|
164
168
|
*/
|
|
165
|
-
export
|
|
166
|
-
name: "ThrottlingException";
|
|
167
|
-
$fault: "client";
|
|
168
|
-
/**
|
|
169
|
-
* <p>The message associated with the exception.</p>
|
|
170
|
-
*/
|
|
171
|
-
message?: string;
|
|
169
|
+
export declare class ThrottlingException extends __BaseException {
|
|
170
|
+
readonly name: "ThrottlingException";
|
|
171
|
+
readonly $fault: "client";
|
|
172
172
|
/**
|
|
173
173
|
* <p>The payload associated with the exception.</p>
|
|
174
174
|
*/
|
|
175
175
|
payload?: Uint8Array;
|
|
176
|
+
/**
|
|
177
|
+
* @internal
|
|
178
|
+
*/
|
|
179
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
176
180
|
}
|
|
177
181
|
export interface GetPendingJobExecutionsRequest {
|
|
178
182
|
/**
|
|
@@ -243,10 +247,13 @@ export declare namespace GetPendingJobExecutionsResponse {
|
|
|
243
247
|
* current state (for example, an attempt to change a request in state SUCCESS to state IN_PROGRESS). In this
|
|
244
248
|
* case, the body of the error message also contains the executionState field.</p>
|
|
245
249
|
*/
|
|
246
|
-
export
|
|
247
|
-
name: "InvalidStateTransitionException";
|
|
248
|
-
$fault: "client";
|
|
249
|
-
|
|
250
|
+
export declare class InvalidStateTransitionException extends __BaseException {
|
|
251
|
+
readonly name: "InvalidStateTransitionException";
|
|
252
|
+
readonly $fault: "client";
|
|
253
|
+
/**
|
|
254
|
+
* @internal
|
|
255
|
+
*/
|
|
256
|
+
constructor(opts: __ExceptionOptionType<InvalidStateTransitionException, __BaseException>);
|
|
250
257
|
}
|
|
251
258
|
export interface StartNextPendingJobExecutionRequest {
|
|
252
259
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
|
|
|
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: IoTJobsDataPlaneClientConfig) =>
|
|
|
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: IoTJobsDataPlaneClientConfig) =>
|
|
|
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 { DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput } from "./commands/DescribeJobExecutionCommand";
|
|
10
10
|
import { GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput } from "./commands/GetPendingJobExecutionsCommand";
|
|
11
11
|
import { StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput } from "./commands/StartNextPendingJobExecutionCommand";
|
|
@@ -20,7 +20,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
20
20
|
|
|
21
21
|
urlParser?: __UrlParser;
|
|
22
22
|
|
|
23
|
-
bodyLengthChecker?:
|
|
23
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
24
24
|
|
|
25
25
|
streamCollector?: __StreamCollector;
|
|
26
26
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class IoTJobsDataPlaneServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IoTJobsDataPlaneServiceException as __BaseException } from "./IoTJobsDataPlaneServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "CertificateValidationException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class CertificateValidationException extends __BaseException {
|
|
5
|
+
readonly name: "CertificateValidationException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
constructor(opts: __ExceptionOptionType<CertificateValidationException, __BaseException>);
|
|
8
9
|
}
|
|
9
10
|
export interface DescribeJobExecutionRequest {
|
|
10
11
|
|
|
@@ -70,40 +71,41 @@ export declare namespace DescribeJobExecutionResponse {
|
|
|
70
71
|
const filterSensitiveLog: (obj: DescribeJobExecutionResponse) => any;
|
|
71
72
|
}
|
|
72
73
|
|
|
73
|
-
export
|
|
74
|
-
name: "InvalidRequestException";
|
|
75
|
-
$fault: "client";
|
|
74
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
75
|
+
readonly name: "InvalidRequestException";
|
|
76
|
+
readonly $fault: "client";
|
|
76
77
|
|
|
77
|
-
|
|
78
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
78
79
|
}
|
|
79
80
|
|
|
80
|
-
export
|
|
81
|
-
name: "ResourceNotFoundException";
|
|
82
|
-
$fault: "client";
|
|
81
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
82
|
+
readonly name: "ResourceNotFoundException";
|
|
83
|
+
readonly $fault: "client";
|
|
83
84
|
|
|
84
|
-
|
|
85
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
85
86
|
}
|
|
86
87
|
|
|
87
|
-
export
|
|
88
|
-
name: "ServiceUnavailableException";
|
|
89
|
-
$fault: "server";
|
|
88
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
89
|
+
readonly name: "ServiceUnavailableException";
|
|
90
|
+
readonly $fault: "server";
|
|
90
91
|
|
|
91
|
-
|
|
92
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
92
93
|
}
|
|
93
94
|
|
|
94
|
-
export
|
|
95
|
-
name: "TerminalStateException";
|
|
96
|
-
$fault: "client";
|
|
97
|
-
|
|
95
|
+
export declare class TerminalStateException extends __BaseException {
|
|
96
|
+
readonly name: "TerminalStateException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
|
|
99
|
+
constructor(opts: __ExceptionOptionType<TerminalStateException, __BaseException>);
|
|
98
100
|
}
|
|
99
101
|
|
|
100
|
-
export
|
|
101
|
-
name: "ThrottlingException";
|
|
102
|
-
$fault: "client";
|
|
103
|
-
|
|
104
|
-
message?: string;
|
|
102
|
+
export declare class ThrottlingException extends __BaseException {
|
|
103
|
+
readonly name: "ThrottlingException";
|
|
104
|
+
readonly $fault: "client";
|
|
105
105
|
|
|
106
106
|
payload?: Uint8Array;
|
|
107
|
+
|
|
108
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
107
109
|
}
|
|
108
110
|
export interface GetPendingJobExecutionsRequest {
|
|
109
111
|
|
|
@@ -143,10 +145,11 @@ export declare namespace GetPendingJobExecutionsResponse {
|
|
|
143
145
|
const filterSensitiveLog: (obj: GetPendingJobExecutionsResponse) => any;
|
|
144
146
|
}
|
|
145
147
|
|
|
146
|
-
export
|
|
147
|
-
name: "InvalidStateTransitionException";
|
|
148
|
-
$fault: "client";
|
|
149
|
-
|
|
148
|
+
export declare class InvalidStateTransitionException extends __BaseException {
|
|
149
|
+
readonly name: "InvalidStateTransitionException";
|
|
150
|
+
readonly $fault: "client";
|
|
151
|
+
|
|
152
|
+
constructor(opts: __ExceptionOptionType<InvalidStateTransitionException, __BaseException>);
|
|
150
153
|
}
|
|
151
154
|
export interface StartNextPendingJobExecutionRequest {
|
|
152
155
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
|
|
|
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: IoTJobsDataPlaneClientConfig) =>
|
|
|
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: IoTJobsDataPlaneClientConfig) =>
|
|
|
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-iot-jobs-data-plane",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Jobs Data Plane 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"
|