@aws-sdk/client-iot-jobs-data-plane 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/IoTJobsDataPlane.d.ts +76 -25
- package/dist-types/ts3.4/IoTJobsDataPlaneClient.d.ts +154 -77
- package/dist-types/ts3.4/commands/DescribeJobExecutionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetPendingJobExecutionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartNextPendingJobExecutionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateJobExecutionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/IoTJobsDataPlaneServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +222 -196
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -14
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-iot-jobs-data-plane
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-iot-jobs-data-plane
|
|
@@ -1,25 +1,76 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeJobExecutionCommandInput,
|
|
4
|
+
DescribeJobExecutionCommandOutput,
|
|
5
|
+
} from "./commands/DescribeJobExecutionCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetPendingJobExecutionsCommandInput,
|
|
8
|
+
GetPendingJobExecutionsCommandOutput,
|
|
9
|
+
} from "./commands/GetPendingJobExecutionsCommand";
|
|
10
|
+
import {
|
|
11
|
+
StartNextPendingJobExecutionCommandInput,
|
|
12
|
+
StartNextPendingJobExecutionCommandOutput,
|
|
13
|
+
} from "./commands/StartNextPendingJobExecutionCommand";
|
|
14
|
+
import {
|
|
15
|
+
UpdateJobExecutionCommandInput,
|
|
16
|
+
UpdateJobExecutionCommandOutput,
|
|
17
|
+
} from "./commands/UpdateJobExecutionCommand";
|
|
18
|
+
import { IoTJobsDataPlaneClient } from "./IoTJobsDataPlaneClient";
|
|
19
|
+
|
|
20
|
+
export declare class IoTJobsDataPlane extends IoTJobsDataPlaneClient {
|
|
21
|
+
describeJobExecution(
|
|
22
|
+
args: DescribeJobExecutionCommandInput,
|
|
23
|
+
options?: __HttpHandlerOptions
|
|
24
|
+
): Promise<DescribeJobExecutionCommandOutput>;
|
|
25
|
+
describeJobExecution(
|
|
26
|
+
args: DescribeJobExecutionCommandInput,
|
|
27
|
+
cb: (err: any, data?: DescribeJobExecutionCommandOutput) => void
|
|
28
|
+
): void;
|
|
29
|
+
describeJobExecution(
|
|
30
|
+
args: DescribeJobExecutionCommandInput,
|
|
31
|
+
options: __HttpHandlerOptions,
|
|
32
|
+
cb: (err: any, data?: DescribeJobExecutionCommandOutput) => void
|
|
33
|
+
): void;
|
|
34
|
+
|
|
35
|
+
getPendingJobExecutions(
|
|
36
|
+
args: GetPendingJobExecutionsCommandInput,
|
|
37
|
+
options?: __HttpHandlerOptions
|
|
38
|
+
): Promise<GetPendingJobExecutionsCommandOutput>;
|
|
39
|
+
getPendingJobExecutions(
|
|
40
|
+
args: GetPendingJobExecutionsCommandInput,
|
|
41
|
+
cb: (err: any, data?: GetPendingJobExecutionsCommandOutput) => void
|
|
42
|
+
): void;
|
|
43
|
+
getPendingJobExecutions(
|
|
44
|
+
args: GetPendingJobExecutionsCommandInput,
|
|
45
|
+
options: __HttpHandlerOptions,
|
|
46
|
+
cb: (err: any, data?: GetPendingJobExecutionsCommandOutput) => void
|
|
47
|
+
): void;
|
|
48
|
+
|
|
49
|
+
startNextPendingJobExecution(
|
|
50
|
+
args: StartNextPendingJobExecutionCommandInput,
|
|
51
|
+
options?: __HttpHandlerOptions
|
|
52
|
+
): Promise<StartNextPendingJobExecutionCommandOutput>;
|
|
53
|
+
startNextPendingJobExecution(
|
|
54
|
+
args: StartNextPendingJobExecutionCommandInput,
|
|
55
|
+
cb: (err: any, data?: StartNextPendingJobExecutionCommandOutput) => void
|
|
56
|
+
): void;
|
|
57
|
+
startNextPendingJobExecution(
|
|
58
|
+
args: StartNextPendingJobExecutionCommandInput,
|
|
59
|
+
options: __HttpHandlerOptions,
|
|
60
|
+
cb: (err: any, data?: StartNextPendingJobExecutionCommandOutput) => void
|
|
61
|
+
): void;
|
|
62
|
+
|
|
63
|
+
updateJobExecution(
|
|
64
|
+
args: UpdateJobExecutionCommandInput,
|
|
65
|
+
options?: __HttpHandlerOptions
|
|
66
|
+
): Promise<UpdateJobExecutionCommandOutput>;
|
|
67
|
+
updateJobExecution(
|
|
68
|
+
args: UpdateJobExecutionCommandInput,
|
|
69
|
+
cb: (err: any, data?: UpdateJobExecutionCommandOutput) => void
|
|
70
|
+
): void;
|
|
71
|
+
updateJobExecution(
|
|
72
|
+
args: UpdateJobExecutionCommandInput,
|
|
73
|
+
options: __HttpHandlerOptions,
|
|
74
|
+
cb: (err: any, data?: UpdateJobExecutionCommandOutput) => void
|
|
75
|
+
): void;
|
|
76
|
+
}
|
|
@@ -1,77 +1,154 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
declare type
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
DescribeJobExecutionCommandInput,
|
|
47
|
+
DescribeJobExecutionCommandOutput,
|
|
48
|
+
} from "./commands/DescribeJobExecutionCommand";
|
|
49
|
+
import {
|
|
50
|
+
GetPendingJobExecutionsCommandInput,
|
|
51
|
+
GetPendingJobExecutionsCommandOutput,
|
|
52
|
+
} from "./commands/GetPendingJobExecutionsCommand";
|
|
53
|
+
import {
|
|
54
|
+
StartNextPendingJobExecutionCommandInput,
|
|
55
|
+
StartNextPendingJobExecutionCommandOutput,
|
|
56
|
+
} from "./commands/StartNextPendingJobExecutionCommand";
|
|
57
|
+
import {
|
|
58
|
+
UpdateJobExecutionCommandInput,
|
|
59
|
+
UpdateJobExecutionCommandOutput,
|
|
60
|
+
} from "./commands/UpdateJobExecutionCommand";
|
|
61
|
+
export declare type ServiceInputTypes =
|
|
62
|
+
| DescribeJobExecutionCommandInput
|
|
63
|
+
| GetPendingJobExecutionsCommandInput
|
|
64
|
+
| StartNextPendingJobExecutionCommandInput
|
|
65
|
+
| UpdateJobExecutionCommandInput;
|
|
66
|
+
export declare type ServiceOutputTypes =
|
|
67
|
+
| DescribeJobExecutionCommandOutput
|
|
68
|
+
| GetPendingJobExecutionsCommandOutput
|
|
69
|
+
| StartNextPendingJobExecutionCommandOutput
|
|
70
|
+
| UpdateJobExecutionCommandOutput;
|
|
71
|
+
export interface ClientDefaults
|
|
72
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
73
|
+
requestHandler?: __HttpHandler;
|
|
74
|
+
|
|
75
|
+
sha256?: __HashConstructor;
|
|
76
|
+
|
|
77
|
+
urlParser?: __UrlParser;
|
|
78
|
+
|
|
79
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
80
|
+
|
|
81
|
+
streamCollector?: __StreamCollector;
|
|
82
|
+
|
|
83
|
+
base64Decoder?: __Decoder;
|
|
84
|
+
|
|
85
|
+
base64Encoder?: __Encoder;
|
|
86
|
+
|
|
87
|
+
utf8Decoder?: __Decoder;
|
|
88
|
+
|
|
89
|
+
utf8Encoder?: __Encoder;
|
|
90
|
+
|
|
91
|
+
runtime?: string;
|
|
92
|
+
|
|
93
|
+
disableHostPrefix?: boolean;
|
|
94
|
+
|
|
95
|
+
maxAttempts?: number | __Provider<number>;
|
|
96
|
+
|
|
97
|
+
retryMode?: string | __Provider<string>;
|
|
98
|
+
|
|
99
|
+
logger?: __Logger;
|
|
100
|
+
|
|
101
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
102
|
+
|
|
103
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
104
|
+
|
|
105
|
+
serviceId?: string;
|
|
106
|
+
|
|
107
|
+
region?: string | __Provider<string>;
|
|
108
|
+
|
|
109
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
110
|
+
|
|
111
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
112
|
+
|
|
113
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
114
|
+
|
|
115
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
116
|
+
}
|
|
117
|
+
declare type IoTJobsDataPlaneClientConfigType = Partial<
|
|
118
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
119
|
+
> &
|
|
120
|
+
ClientDefaults &
|
|
121
|
+
RegionInputConfig &
|
|
122
|
+
EndpointsInputConfig &
|
|
123
|
+
RetryInputConfig &
|
|
124
|
+
HostHeaderInputConfig &
|
|
125
|
+
AwsAuthInputConfig &
|
|
126
|
+
UserAgentInputConfig;
|
|
127
|
+
|
|
128
|
+
export interface IoTJobsDataPlaneClientConfig
|
|
129
|
+
extends IoTJobsDataPlaneClientConfigType {}
|
|
130
|
+
declare type IoTJobsDataPlaneClientResolvedConfigType =
|
|
131
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
132
|
+
Required<ClientDefaults> &
|
|
133
|
+
RegionResolvedConfig &
|
|
134
|
+
EndpointsResolvedConfig &
|
|
135
|
+
RetryResolvedConfig &
|
|
136
|
+
HostHeaderResolvedConfig &
|
|
137
|
+
AwsAuthResolvedConfig &
|
|
138
|
+
UserAgentResolvedConfig;
|
|
139
|
+
|
|
140
|
+
export interface IoTJobsDataPlaneClientResolvedConfig
|
|
141
|
+
extends IoTJobsDataPlaneClientResolvedConfigType {}
|
|
142
|
+
|
|
143
|
+
export declare class IoTJobsDataPlaneClient extends __Client<
|
|
144
|
+
__HttpHandlerOptions,
|
|
145
|
+
ServiceInputTypes,
|
|
146
|
+
ServiceOutputTypes,
|
|
147
|
+
IoTJobsDataPlaneClientResolvedConfig
|
|
148
|
+
> {
|
|
149
|
+
readonly config: IoTJobsDataPlaneClientResolvedConfig;
|
|
150
|
+
constructor(configuration: IoTJobsDataPlaneClientConfig);
|
|
151
|
+
|
|
152
|
+
destroy(): void;
|
|
153
|
+
}
|
|
154
|
+
export {};
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTJobsDataPlaneClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeJobExecutionRequest,
|
|
15
|
+
DescribeJobExecutionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeJobExecutionCommandInput
|
|
18
|
+
extends DescribeJobExecutionRequest {}
|
|
19
|
+
export interface DescribeJobExecutionCommandOutput
|
|
20
|
+
extends DescribeJobExecutionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeJobExecutionCommand extends $Command<
|
|
24
|
+
DescribeJobExecutionCommandInput,
|
|
25
|
+
DescribeJobExecutionCommandOutput,
|
|
26
|
+
IoTJobsDataPlaneClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeJobExecutionCommandInput;
|
|
29
|
+
constructor(input: DescribeJobExecutionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTJobsDataPlaneClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeJobExecutionCommandInput,
|
|
37
|
+
DescribeJobExecutionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTJobsDataPlaneClient";
|
|
13
|
+
import {
|
|
14
|
+
GetPendingJobExecutionsRequest,
|
|
15
|
+
GetPendingJobExecutionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetPendingJobExecutionsCommandInput
|
|
18
|
+
extends GetPendingJobExecutionsRequest {}
|
|
19
|
+
export interface GetPendingJobExecutionsCommandOutput
|
|
20
|
+
extends GetPendingJobExecutionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetPendingJobExecutionsCommand extends $Command<
|
|
24
|
+
GetPendingJobExecutionsCommandInput,
|
|
25
|
+
GetPendingJobExecutionsCommandOutput,
|
|
26
|
+
IoTJobsDataPlaneClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetPendingJobExecutionsCommandInput;
|
|
29
|
+
constructor(input: GetPendingJobExecutionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTJobsDataPlaneClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetPendingJobExecutionsCommandInput,
|
|
37
|
+
GetPendingJobExecutionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTJobsDataPlaneClient";
|
|
13
|
+
import {
|
|
14
|
+
StartNextPendingJobExecutionRequest,
|
|
15
|
+
StartNextPendingJobExecutionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StartNextPendingJobExecutionCommandInput
|
|
18
|
+
extends StartNextPendingJobExecutionRequest {}
|
|
19
|
+
export interface StartNextPendingJobExecutionCommandOutput
|
|
20
|
+
extends StartNextPendingJobExecutionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartNextPendingJobExecutionCommand extends $Command<
|
|
24
|
+
StartNextPendingJobExecutionCommandInput,
|
|
25
|
+
StartNextPendingJobExecutionCommandOutput,
|
|
26
|
+
IoTJobsDataPlaneClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartNextPendingJobExecutionCommandInput;
|
|
29
|
+
constructor(input: StartNextPendingJobExecutionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTJobsDataPlaneClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StartNextPendingJobExecutionCommandInput,
|
|
37
|
+
StartNextPendingJobExecutionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTJobsDataPlaneClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateJobExecutionRequest,
|
|
15
|
+
UpdateJobExecutionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateJobExecutionCommandInput
|
|
18
|
+
extends UpdateJobExecutionRequest {}
|
|
19
|
+
export interface UpdateJobExecutionCommandOutput
|
|
20
|
+
extends UpdateJobExecutionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateJobExecutionCommand extends $Command<
|
|
24
|
+
UpdateJobExecutionCommandInput,
|
|
25
|
+
UpdateJobExecutionCommandOutput,
|
|
26
|
+
IoTJobsDataPlaneClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateJobExecutionCommandInput;
|
|
29
|
+
constructor(input: UpdateJobExecutionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTJobsDataPlaneClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./DescribeJobExecutionCommand";
|
|
2
|
-
export * from "./GetPendingJobExecutionsCommand";
|
|
3
|
-
export * from "./StartNextPendingJobExecutionCommand";
|
|
4
|
-
export * from "./UpdateJobExecutionCommand";
|
|
1
|
+
export * from "./DescribeJobExecutionCommand";
|
|
2
|
+
export * from "./GetPendingJobExecutionsCommand";
|
|
3
|
+
export * from "./StartNextPendingJobExecutionCommand";
|
|
4
|
+
export * from "./UpdateJobExecutionCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./IoTJobsDataPlane";
|
|
2
|
-
export * from "./IoTJobsDataPlaneClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { IoTJobsDataPlaneServiceException } from "./models/IoTJobsDataPlaneServiceException";
|
|
1
|
+
export * from "./IoTJobsDataPlane";
|
|
2
|
+
export * from "./IoTJobsDataPlaneClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { IoTJobsDataPlaneServiceException } from "./models/IoTJobsDataPlaneServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class IoTJobsDataPlaneServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|