@aws-sdk/client-iot-jobs-data-plane 3.1076.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.
Files changed (35) hide show
  1. package/dist-cjs/index.js +16 -55
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/DescribeJobExecutionCommand.js +2 -14
  4. package/dist-es/commands/GetPendingJobExecutionsCommand.js +2 -14
  5. package/dist-es/commands/StartCommandExecutionCommand.js +2 -14
  6. package/dist-es/commands/StartNextPendingJobExecutionCommand.js +2 -14
  7. package/dist-es/commands/UpdateJobExecutionCommand.js +2 -14
  8. package/dist-es/index.js +1 -0
  9. package/dist-es/runtimeConfig.browser.js +0 -2
  10. package/dist-es/runtimeConfig.js +1 -2
  11. package/dist-es/runtimeConfig.native.js +0 -2
  12. package/dist-es/runtimeConfig.shared.js +2 -0
  13. package/dist-types/commandBuilder.d.ts +18 -0
  14. package/dist-types/commands/DescribeJobExecutionCommand.d.ts +3 -8
  15. package/dist-types/commands/GetPendingJobExecutionsCommand.d.ts +3 -8
  16. package/dist-types/commands/StartCommandExecutionCommand.d.ts +3 -8
  17. package/dist-types/commands/StartNextPendingJobExecutionCommand.d.ts +3 -8
  18. package/dist-types/commands/UpdateJobExecutionCommand.d.ts +3 -8
  19. package/dist-types/index.d.ts +1 -0
  20. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  21. package/dist-types/runtimeConfig.d.ts +1 -1
  22. package/dist-types/runtimeConfig.native.d.ts +1 -1
  23. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  24. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  25. package/dist-types/ts3.4/commands/DescribeJobExecutionCommand.d.ts +7 -16
  26. package/dist-types/ts3.4/commands/GetPendingJobExecutionsCommand.d.ts +7 -16
  27. package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +7 -16
  28. package/dist-types/ts3.4/commands/StartNextPendingJobExecutionCommand.d.ts +7 -16
  29. package/dist-types/ts3.4/commands/UpdateJobExecutionCommand.d.ts +7 -16
  30. package/dist-types/ts3.4/index.d.ts +1 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  35. package/package.json +8 -10
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, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
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");
@@ -10,9 +11,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
10
11
  const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
12
  const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
13
  const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
- const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
15
  const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
16
  const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
17
+ const { Sha256 } = require("@smithy/core/checksum");
16
18
 
17
19
  const defaultIoTJobsDataPlaneHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
20
  return {
@@ -67,7 +69,7 @@ const commonParams = {
67
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
68
70
  };
69
71
 
70
- var version = "3.1075.0";
72
+ var version = "3.1077.0";
71
73
  var packageInfo = {
72
74
  version: version};
73
75
 
@@ -539,6 +541,7 @@ const getRuntimeConfig$1 = (config) => {
539
541
  serviceTarget: "IotLaserThingJobManagerExternalService",
540
542
  },
541
543
  serviceId: config?.serviceId ?? "IoT Jobs Data Plane",
544
+ sha256: config?.sha256 ?? Sha256,
542
545
  urlParser: config?.urlParser ?? parseUrl,
543
546
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
544
547
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -572,7 +575,6 @@ const getRuntimeConfig = (config) => {
572
575
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
573
576
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
574
577
  }, config),
575
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
576
578
  streamCollector: config?.streamCollector ?? streamCollector,
577
579
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
578
580
  useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -660,64 +662,23 @@ class IoTJobsDataPlaneClient extends Client {
660
662
  }
661
663
  }
662
664
 
663
- class DescribeJobExecutionCommand extends Command
664
- .classBuilder()
665
- .ep(commonParams)
666
- .m(function (Command, cs, config, o) {
667
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
668
- })
669
- .s("IotLaserThingJobManagerExternalService", "DescribeJobExecution", {})
670
- .n("IoTJobsDataPlaneClient", "DescribeJobExecutionCommand")
671
- .sc(DescribeJobExecution$)
672
- .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$) {
673
670
  }
674
671
 
675
- class GetPendingJobExecutionsCommand extends Command
676
- .classBuilder()
677
- .ep(commonParams)
678
- .m(function (Command, cs, config, o) {
679
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
680
- })
681
- .s("IotLaserThingJobManagerExternalService", "GetPendingJobExecutions", {})
682
- .n("IoTJobsDataPlaneClient", "GetPendingJobExecutionsCommand")
683
- .sc(GetPendingJobExecutions$)
684
- .build() {
672
+ class GetPendingJobExecutionsCommand extends command(_ep0, _mw0, "GetPendingJobExecutions", GetPendingJobExecutions$) {
685
673
  }
686
674
 
687
- class StartCommandExecutionCommand extends Command
688
- .classBuilder()
689
- .ep(commonParams)
690
- .m(function (Command, cs, config, o) {
691
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
692
- })
693
- .s("IotLaserThingJobManagerExternalService", "StartCommandExecution", {})
694
- .n("IoTJobsDataPlaneClient", "StartCommandExecutionCommand")
695
- .sc(StartCommandExecution$)
696
- .build() {
675
+ class StartCommandExecutionCommand extends command(_ep0, _mw0, "StartCommandExecution", StartCommandExecution$) {
697
676
  }
698
677
 
699
- class StartNextPendingJobExecutionCommand extends Command
700
- .classBuilder()
701
- .ep(commonParams)
702
- .m(function (Command, cs, config, o) {
703
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
704
- })
705
- .s("IotLaserThingJobManagerExternalService", "StartNextPendingJobExecution", {})
706
- .n("IoTJobsDataPlaneClient", "StartNextPendingJobExecutionCommand")
707
- .sc(StartNextPendingJobExecution$)
708
- .build() {
678
+ class StartNextPendingJobExecutionCommand extends command(_ep0, _mw0, "StartNextPendingJobExecution", StartNextPendingJobExecution$) {
709
679
  }
710
680
 
711
- class UpdateJobExecutionCommand extends Command
712
- .classBuilder()
713
- .ep(commonParams)
714
- .m(function (Command, cs, config, o) {
715
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
716
- })
717
- .s("IotLaserThingJobManagerExternalService", "UpdateJobExecution", {})
718
- .n("IoTJobsDataPlaneClient", "UpdateJobExecutionCommand")
719
- .sc(UpdateJobExecution$)
720
- .build() {
681
+ class UpdateJobExecutionCommand extends command(_ep0, _mw0, "UpdateJobExecution", UpdateJobExecution$) {
721
682
  }
722
683
 
723
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 { Command as $Command } from "@smithy/core/client";
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 { $Command };
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 { Command as $Command } from "@smithy/core/client";
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 { $Command };
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 { Command as $Command } from "@smithy/core/client";
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 { $Command };
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 { Command as $Command } from "@smithy/core/client";
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 { $Command };
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 { Command as $Command } from "@smithy/core/client";
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 { $Command };
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";
@@ -1,5 +1,4 @@
1
1
  import packageInfo from "../package.json";
2
- import { Sha256 } from "@aws-crypto/sha256-browser";
3
2
  import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
4
3
  import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
5
4
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
@@ -23,7 +22,6 @@ export const getRuntimeConfig = (config) => {
23
22
  region: config?.region ?? invalidProvider("Region is missing"),
24
23
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
25
24
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
26
- sha256: config?.sha256 ?? Sha256,
27
25
  streamCollector: config?.streamCollector ?? streamCollector,
28
26
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
29
27
  useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
@@ -5,7 +5,7 @@ import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credentia
5
5
  import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
6
6
  import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
7
7
  import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
8
- import { calculateBodyLength, Hash } from "@smithy/core/serde";
8
+ import { calculateBodyLength } from "@smithy/core/serde";
9
9
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
10
10
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
11
11
  export const getRuntimeConfig = (config) => {
@@ -35,7 +35,6 @@ export const getRuntimeConfig = (config) => {
35
35
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
36
36
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
37
37
  }, config),
38
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
39
38
  streamCollector: config?.streamCollector ?? streamCollector,
40
39
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
41
40
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -1,4 +1,3 @@
1
- import { Sha256 } from "@aws-crypto/sha256-js";
2
1
  import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
3
2
  export const getRuntimeConfig = (config) => {
4
3
  const browserDefaults = getBrowserRuntimeConfig(config);
@@ -6,6 +5,5 @@ export const getRuntimeConfig = (config) => {
6
5
  ...browserDefaults,
7
6
  ...config,
8
7
  runtime: "react-native",
9
- sha256: config?.sha256 ?? Sha256,
10
8
  };
11
9
  };
@@ -1,5 +1,6 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
+ import { Sha256 } from "@smithy/core/checksum";
3
4
  import { NoOpLogger } from "@smithy/core/client";
4
5
  import { parseUrl } from "@smithy/core/protocols";
5
6
  import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
@@ -31,6 +32,7 @@ export const getRuntimeConfig = (config) => {
31
32
  serviceTarget: "IotLaserThingJobManagerExternalService",
32
33
  },
33
34
  serviceId: config?.serviceId ?? "IoT Jobs Data Plane",
35
+ sha256: config?.sha256 ?? Sha256,
34
36
  urlParser: config?.urlParser ?? parseUrl,
35
37
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
36
38
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -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>
@@ -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";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: IoTJobsDataPlaneClientConfig) =>
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -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";
@@ -22,7 +22,6 @@ export declare const getRuntimeConfig: (
22
22
  | import("@smithy/core/protocols").HttpHandler<any>
23
23
  | RequestHandler;
24
24
  retryMode: string | import("@smithy/types").Provider<string>;
25
- sha256: import("@smithy/types").HashConstructor;
26
25
  streamCollector: (
27
26
  stream:
28
27
  | import("stream").Readable
@@ -44,6 +43,7 @@ export declare const getRuntimeConfig: (
44
43
  [setting: string]: unknown;
45
44
  };
46
45
  apiVersion: string;
46
+ sha256: import("@smithy/types").HashConstructor;
47
47
  urlParser: import("@smithy/types").UrlParser;
48
48
  base64Decoder: import("@smithy/types").Decoder;
49
49
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -23,7 +23,6 @@ export declare const getRuntimeConfig: (
23
23
  | RequestHandler
24
24
  | import("@smithy/core/protocols").HttpHandler<any>;
25
25
  retryMode: string | import("@smithy/types").Provider<string>;
26
- sha256: import("@smithy/types").HashConstructor;
27
26
  streamCollector: (
28
27
  stream:
29
28
  | import("stream").Readable
@@ -44,6 +43,7 @@ export declare const getRuntimeConfig: (
44
43
  [setting: string]: unknown;
45
44
  };
46
45
  apiVersion: string;
46
+ sha256: import("@smithy/types").HashConstructor;
47
47
  urlParser: import("@smithy/types").UrlParser;
48
48
  base64Decoder: import("@smithy/types").Decoder;
49
49
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -3,7 +3,6 @@ export declare const getRuntimeConfig: (
3
3
  config: IoTJobsDataPlaneClientConfig
4
4
  ) => {
5
5
  runtime: string;
6
- sha256: import("@smithy/types").HashConstructor;
7
6
  requestHandler:
8
7
  | import("@smithy/types").NodeHttpHandlerOptions
9
8
  | import("@smithy/types").FetchHttpHandlerOptions
@@ -20,6 +19,7 @@ export declare const getRuntimeConfig: (
20
19
  [setting: string]: unknown;
21
20
  };
22
21
  apiVersion: string;
22
+ sha256: import("@smithy/types").HashConstructor;
23
23
  urlParser: import("@smithy/types").UrlParser;
24
24
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
25
25
  streamCollector: (
@@ -26,6 +26,7 @@ export declare const getRuntimeConfig: (
26
26
  defaultNamespace?: string;
27
27
  };
28
28
  serviceId: string;
29
+ sha256: import("@smithy/types").HashConstructor;
29
30
  urlParser: import("@smithy/types").UrlParser;
30
31
  utf8Decoder: import("@smithy/types").Decoder;
31
32
  utf8Encoder: (input: Uint8Array | string) => string;
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.1076.0",
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,15 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-crypto/sha256-browser": "5.2.0",
23
- "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.24",
25
- "@aws-sdk/credential-provider-node": "^3.972.59",
26
- "@aws-sdk/types": "^3.973.14",
27
- "@smithy/core": "^3.27.0",
28
- "@smithy/fetch-http-handler": "^5.6.0",
29
- "@smithy/node-http-handler": "^4.9.0",
30
- "@smithy/types": "^4.15.0",
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",
31
29
  "tslib": "^2.6.2"
32
30
  },
33
31
  "devDependencies": {