@aws-sdk/client-iot-jobs-data-plane 3.1077.0 → 3.1078.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/index.js +13 -53
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/DescribeJobExecutionCommand.js +2 -14
- package/dist-es/commands/GetPendingJobExecutionsCommand.js +2 -14
- package/dist-es/commands/StartCommandExecutionCommand.js +2 -14
- package/dist-es/commands/StartNextPendingJobExecutionCommand.js +2 -14
- package/dist-es/commands/UpdateJobExecutionCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/DescribeJobExecutionCommand.d.ts +3 -8
- package/dist-types/commands/GetPendingJobExecutionsCommand.d.ts +3 -8
- package/dist-types/commands/StartCommandExecutionCommand.d.ts +3 -8
- package/dist-types/commands/StartNextPendingJobExecutionCommand.d.ts +3 -8
- package/dist-types/commands/UpdateJobExecutionCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/DescribeJobExecutionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetPendingJobExecutionsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartNextPendingJobExecutionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateJobExecutionCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1077.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -661,64 +662,23 @@ class IoTJobsDataPlaneClient extends Client {
|
|
|
661
662
|
}
|
|
662
663
|
}
|
|
663
664
|
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
})
|
|
670
|
-
.s("IotLaserThingJobManagerExternalService", "DescribeJobExecution", {})
|
|
671
|
-
.n("IoTJobsDataPlaneClient", "DescribeJobExecutionCommand")
|
|
672
|
-
.sc(DescribeJobExecution$)
|
|
673
|
-
.build() {
|
|
665
|
+
const command = makeBuilder(commonParams, "IotLaserThingJobManagerExternalService", "IoTJobsDataPlaneClient", getEndpointPlugin);
|
|
666
|
+
const _ep0 = {};
|
|
667
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
668
|
+
|
|
669
|
+
class DescribeJobExecutionCommand extends command(_ep0, _mw0, "DescribeJobExecution", DescribeJobExecution$) {
|
|
674
670
|
}
|
|
675
671
|
|
|
676
|
-
class GetPendingJobExecutionsCommand extends
|
|
677
|
-
.classBuilder()
|
|
678
|
-
.ep(commonParams)
|
|
679
|
-
.m(function (Command, cs, config, o) {
|
|
680
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
681
|
-
})
|
|
682
|
-
.s("IotLaserThingJobManagerExternalService", "GetPendingJobExecutions", {})
|
|
683
|
-
.n("IoTJobsDataPlaneClient", "GetPendingJobExecutionsCommand")
|
|
684
|
-
.sc(GetPendingJobExecutions$)
|
|
685
|
-
.build() {
|
|
672
|
+
class GetPendingJobExecutionsCommand extends command(_ep0, _mw0, "GetPendingJobExecutions", GetPendingJobExecutions$) {
|
|
686
673
|
}
|
|
687
674
|
|
|
688
|
-
class StartCommandExecutionCommand extends
|
|
689
|
-
.classBuilder()
|
|
690
|
-
.ep(commonParams)
|
|
691
|
-
.m(function (Command, cs, config, o) {
|
|
692
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
693
|
-
})
|
|
694
|
-
.s("IotLaserThingJobManagerExternalService", "StartCommandExecution", {})
|
|
695
|
-
.n("IoTJobsDataPlaneClient", "StartCommandExecutionCommand")
|
|
696
|
-
.sc(StartCommandExecution$)
|
|
697
|
-
.build() {
|
|
675
|
+
class StartCommandExecutionCommand extends command(_ep0, _mw0, "StartCommandExecution", StartCommandExecution$) {
|
|
698
676
|
}
|
|
699
677
|
|
|
700
|
-
class StartNextPendingJobExecutionCommand extends
|
|
701
|
-
.classBuilder()
|
|
702
|
-
.ep(commonParams)
|
|
703
|
-
.m(function (Command, cs, config, o) {
|
|
704
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
705
|
-
})
|
|
706
|
-
.s("IotLaserThingJobManagerExternalService", "StartNextPendingJobExecution", {})
|
|
707
|
-
.n("IoTJobsDataPlaneClient", "StartNextPendingJobExecutionCommand")
|
|
708
|
-
.sc(StartNextPendingJobExecution$)
|
|
709
|
-
.build() {
|
|
678
|
+
class StartNextPendingJobExecutionCommand extends command(_ep0, _mw0, "StartNextPendingJobExecution", StartNextPendingJobExecution$) {
|
|
710
679
|
}
|
|
711
680
|
|
|
712
|
-
class UpdateJobExecutionCommand extends
|
|
713
|
-
.classBuilder()
|
|
714
|
-
.ep(commonParams)
|
|
715
|
-
.m(function (Command, cs, config, o) {
|
|
716
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
717
|
-
})
|
|
718
|
-
.s("IotLaserThingJobManagerExternalService", "UpdateJobExecution", {})
|
|
719
|
-
.n("IoTJobsDataPlaneClient", "UpdateJobExecutionCommand")
|
|
720
|
-
.sc(UpdateJobExecution$)
|
|
721
|
-
.build() {
|
|
681
|
+
class UpdateJobExecutionCommand extends command(_ep0, _mw0, "UpdateJobExecution", UpdateJobExecution$) {
|
|
722
682
|
}
|
|
723
683
|
|
|
724
684
|
const commands = {
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "IotLaserThingJobManagerExternalService", "IoTJobsDataPlaneClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DescribeJobExecution$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DescribeJobExecutionCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("IotLaserThingJobManagerExternalService", "DescribeJobExecution", {})
|
|
13
|
-
.n("IoTJobsDataPlaneClient", "DescribeJobExecutionCommand")
|
|
14
|
-
.sc(DescribeJobExecution$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DescribeJobExecutionCommand extends command(_ep0, _mw0, "DescribeJobExecution", DescribeJobExecution$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetPendingJobExecutions$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetPendingJobExecutionsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("IotLaserThingJobManagerExternalService", "GetPendingJobExecutions", {})
|
|
13
|
-
.n("IoTJobsDataPlaneClient", "GetPendingJobExecutionsCommand")
|
|
14
|
-
.sc(GetPendingJobExecutions$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetPendingJobExecutionsCommand extends command(_ep0, _mw0, "GetPendingJobExecutions", GetPendingJobExecutions$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { StartCommandExecution$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StartCommandExecutionCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("IotLaserThingJobManagerExternalService", "StartCommandExecution", {})
|
|
13
|
-
.n("IoTJobsDataPlaneClient", "StartCommandExecutionCommand")
|
|
14
|
-
.sc(StartCommandExecution$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StartCommandExecutionCommand extends command(_ep0, _mw0, "StartCommandExecution", StartCommandExecution$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { StartNextPendingJobExecution$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StartNextPendingJobExecutionCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("IotLaserThingJobManagerExternalService", "StartNextPendingJobExecution", {})
|
|
13
|
-
.n("IoTJobsDataPlaneClient", "StartNextPendingJobExecutionCommand")
|
|
14
|
-
.sc(StartNextPendingJobExecution$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StartNextPendingJobExecutionCommand extends command(_ep0, _mw0, "StartNextPendingJobExecution", StartNextPendingJobExecution$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateJobExecution$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateJobExecutionCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("IotLaserThingJobManagerExternalService", "UpdateJobExecution", {})
|
|
13
|
-
.n("IoTJobsDataPlaneClient", "UpdateJobExecutionCommand")
|
|
14
|
-
.sc(UpdateJobExecution$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateJobExecutionCommand extends command(_ep0, _mw0, "UpdateJobExecution", UpdateJobExecution$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./IoTJobsDataPlaneClient";
|
|
2
2
|
export * from "./IoTJobsDataPlane";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./models/enums";
|
|
6
7
|
export * from "./models/errors";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./IoTJobsDataPlaneClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient";
|
|
4
2
|
import type { DescribeJobExecutionRequest, DescribeJobExecutionResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DescribeJobExecutionCommandInput extends DescribeJobExecutionRe
|
|
|
22
19
|
export interface DescribeJobExecutionCommandOutput extends DescribeJobExecutionResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DescribeJobExecutionCommand_base: {
|
|
25
|
-
new (input: DescribeJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DescribeJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DescribeJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DescribeJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<DescribeJobExecutionCommandInput, DescribeJobExecutionCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Gets details of a job execution.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient";
|
|
4
2
|
import type { GetPendingJobExecutionsRequest, GetPendingJobExecutionsResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetPendingJobExecutionsCommandInput extends GetPendingJobExecut
|
|
|
22
19
|
export interface GetPendingJobExecutionsCommandOutput extends GetPendingJobExecutionsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetPendingJobExecutionsCommand_base: {
|
|
25
|
-
new (input: GetPendingJobExecutionsCommandInput): import("@smithy/core/client").CommandImpl<GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetPendingJobExecutionsCommandInput): import("@smithy/core/client").CommandImpl<GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetPendingJobExecutionsCommandInput): import("@smithy/core/client").CommandImpl<GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetPendingJobExecutionsCommandInput): import("@smithy/core/client").CommandImpl<GetPendingJobExecutionsCommandInput, GetPendingJobExecutionsCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Gets the list of all jobs for a thing that are not in a terminal status.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient";
|
|
4
2
|
import type { StartCommandExecutionRequest, StartCommandExecutionResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StartCommandExecutionCommandInput extends StartCommandExecution
|
|
|
22
19
|
export interface StartCommandExecutionCommandOutput extends StartCommandExecutionResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartCommandExecutionCommand_base: {
|
|
25
|
-
new (input: StartCommandExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartCommandExecutionCommandInput, StartCommandExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StartCommandExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartCommandExecutionCommandInput, StartCommandExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartCommandExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartCommandExecutionCommandInput, StartCommandExecutionCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartCommandExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartCommandExecutionCommandInput, StartCommandExecutionCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Using the command created with the <code>CreateCommand</code> API, start a command
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient";
|
|
4
2
|
import type { StartNextPendingJobExecutionRequest, StartNextPendingJobExecutionResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StartNextPendingJobExecutionCommandInput extends StartNextPendi
|
|
|
22
19
|
export interface StartNextPendingJobExecutionCommandOutput extends StartNextPendingJobExecutionResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartNextPendingJobExecutionCommand_base: {
|
|
25
|
-
new (input: StartNextPendingJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StartNextPendingJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartNextPendingJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartNextPendingJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<StartNextPendingJobExecutionCommandInput, StartNextPendingJobExecutionCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Gets and starts the next pending (status IN_PROGRESS or QUEUED) job execution for a
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient";
|
|
4
2
|
import type { UpdateJobExecutionRequest, UpdateJobExecutionResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateJobExecutionCommandInput extends UpdateJobExecutionReques
|
|
|
22
19
|
export interface UpdateJobExecutionCommandOutput extends UpdateJobExecutionResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateJobExecutionCommand_base: {
|
|
25
|
-
new (input: UpdateJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput, IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateJobExecutionCommandInput): import("@smithy/core/client").CommandImpl<UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput, import("..").IoTJobsDataPlaneClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates the status of a job execution.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
29
29
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
30
30
|
export type { IoTJobsDataPlaneExtensionConfiguration } from "./extensionConfiguration";
|
|
31
31
|
export * from "./commands";
|
|
32
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
32
33
|
export * from "./schemas/schemas_0";
|
|
33
34
|
export * from "./models/enums";
|
|
34
35
|
export * from "./models/errors";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./IoTJobsDataPlaneClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
IoTJobsDataPlaneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../IoTJobsDataPlaneClient";
|
|
8
2
|
import {
|
|
9
3
|
DescribeJobExecutionRequest,
|
|
10
4
|
DescribeJobExecutionResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeJobExecutionCommandInput
|
|
15
8
|
extends DescribeJobExecutionRequest {}
|
|
16
9
|
export interface DescribeJobExecutionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DescribeJobExecutionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DescribeJobExecutionCommandInput,
|
|
24
17
|
DescribeJobExecutionCommandOutput,
|
|
25
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DescribeJobExecutionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DescribeJobExecutionCommandInput,
|
|
33
26
|
DescribeJobExecutionCommandOutput,
|
|
34
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DescribeJobExecutionCommand extends DescribeJobExecutionCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../IoTJobsDataPlaneClient";
|
|
8
2
|
import {
|
|
9
3
|
GetPendingJobExecutionsRequest,
|
|
10
4
|
GetPendingJobExecutionsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetPendingJobExecutionsCommandInput
|
|
15
8
|
extends GetPendingJobExecutionsRequest {}
|
|
16
9
|
export interface GetPendingJobExecutionsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetPendingJobExecutionsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetPendingJobExecutionsCommandInput,
|
|
24
17
|
GetPendingJobExecutionsCommandOutput,
|
|
25
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetPendingJobExecutionsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetPendingJobExecutionsCommandInput,
|
|
33
26
|
GetPendingJobExecutionsCommandOutput,
|
|
34
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetPendingJobExecutionsCommand extends GetPendingJobExecutionsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../IoTJobsDataPlaneClient";
|
|
8
2
|
import {
|
|
9
3
|
StartCommandExecutionRequest,
|
|
10
4
|
StartCommandExecutionResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface StartCommandExecutionCommandInput
|
|
15
8
|
extends StartCommandExecutionRequest {}
|
|
16
9
|
export interface StartCommandExecutionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const StartCommandExecutionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
StartCommandExecutionCommandInput,
|
|
24
17
|
StartCommandExecutionCommandOutput,
|
|
25
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: StartCommandExecutionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
StartCommandExecutionCommandInput,
|
|
33
26
|
StartCommandExecutionCommandOutput,
|
|
34
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class StartCommandExecutionCommand extends StartCommandExecutionCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../IoTJobsDataPlaneClient";
|
|
8
2
|
import {
|
|
9
3
|
StartNextPendingJobExecutionRequest,
|
|
10
4
|
StartNextPendingJobExecutionResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface StartNextPendingJobExecutionCommandInput
|
|
15
8
|
extends StartNextPendingJobExecutionRequest {}
|
|
16
9
|
export interface StartNextPendingJobExecutionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const StartNextPendingJobExecutionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
StartNextPendingJobExecutionCommandInput,
|
|
24
17
|
StartNextPendingJobExecutionCommandOutput,
|
|
25
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: StartNextPendingJobExecutionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
StartNextPendingJobExecutionCommandInput,
|
|
33
26
|
StartNextPendingJobExecutionCommandOutput,
|
|
34
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class StartNextPendingJobExecutionCommand extends StartNextPendingJobExecutionCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../IoTJobsDataPlaneClient";
|
|
8
2
|
import {
|
|
9
3
|
UpdateJobExecutionRequest,
|
|
10
4
|
UpdateJobExecutionResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateJobExecutionCommandInput
|
|
15
8
|
extends UpdateJobExecutionRequest {}
|
|
16
9
|
export interface UpdateJobExecutionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateJobExecutionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateJobExecutionCommandInput,
|
|
24
17
|
UpdateJobExecutionCommandOutput,
|
|
25
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdateJobExecutionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateJobExecutionCommandInput,
|
|
33
26
|
UpdateJobExecutionCommandOutput,
|
|
34
|
-
IoTJobsDataPlaneClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").IoTJobsDataPlaneClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateJobExecutionCommand extends UpdateJobExecutionCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { IoTJobsDataPlaneExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
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.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.26",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|