@aws-sdk/client-sagemaker-a2i-runtime 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/DeleteHumanLoopCommand.js +2 -14
- package/dist-es/commands/DescribeHumanLoopCommand.js +2 -14
- package/dist-es/commands/ListHumanLoopsCommand.js +2 -14
- package/dist-es/commands/StartHumanLoopCommand.js +2 -14
- package/dist-es/commands/StopHumanLoopCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/DeleteHumanLoopCommand.d.ts +3 -8
- package/dist-types/commands/DescribeHumanLoopCommand.d.ts +3 -8
- package/dist-types/commands/ListHumanLoopsCommand.d.ts +3 -8
- package/dist-types/commands/StartHumanLoopCommand.d.ts +3 -8
- package/dist-types/commands/StopHumanLoopCommand.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/DeleteHumanLoopCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeHumanLoopCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListHumanLoopsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartHumanLoopCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StopHumanLoopCommand.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, createPaginator } = 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
|
|
|
@@ -552,64 +553,23 @@ class SageMakerA2IRuntimeClient extends Client {
|
|
|
552
553
|
}
|
|
553
554
|
}
|
|
554
555
|
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
})
|
|
561
|
-
.s("AmazonSageMakerA2IRuntime", "DeleteHumanLoop", {})
|
|
562
|
-
.n("SageMakerA2IRuntimeClient", "DeleteHumanLoopCommand")
|
|
563
|
-
.sc(DeleteHumanLoop$)
|
|
564
|
-
.build() {
|
|
556
|
+
const command = makeBuilder(commonParams, "AmazonSageMakerA2IRuntime", "SageMakerA2IRuntimeClient", getEndpointPlugin);
|
|
557
|
+
const _ep0 = {};
|
|
558
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
559
|
+
|
|
560
|
+
class DeleteHumanLoopCommand extends command(_ep0, _mw0, "DeleteHumanLoop", DeleteHumanLoop$) {
|
|
565
561
|
}
|
|
566
562
|
|
|
567
|
-
class DescribeHumanLoopCommand extends
|
|
568
|
-
.classBuilder()
|
|
569
|
-
.ep(commonParams)
|
|
570
|
-
.m(function (Command, cs, config, o) {
|
|
571
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
572
|
-
})
|
|
573
|
-
.s("AmazonSageMakerA2IRuntime", "DescribeHumanLoop", {})
|
|
574
|
-
.n("SageMakerA2IRuntimeClient", "DescribeHumanLoopCommand")
|
|
575
|
-
.sc(DescribeHumanLoop$)
|
|
576
|
-
.build() {
|
|
563
|
+
class DescribeHumanLoopCommand extends command(_ep0, _mw0, "DescribeHumanLoop", DescribeHumanLoop$) {
|
|
577
564
|
}
|
|
578
565
|
|
|
579
|
-
class ListHumanLoopsCommand extends
|
|
580
|
-
.classBuilder()
|
|
581
|
-
.ep(commonParams)
|
|
582
|
-
.m(function (Command, cs, config, o) {
|
|
583
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
584
|
-
})
|
|
585
|
-
.s("AmazonSageMakerA2IRuntime", "ListHumanLoops", {})
|
|
586
|
-
.n("SageMakerA2IRuntimeClient", "ListHumanLoopsCommand")
|
|
587
|
-
.sc(ListHumanLoops$)
|
|
588
|
-
.build() {
|
|
566
|
+
class ListHumanLoopsCommand extends command(_ep0, _mw0, "ListHumanLoops", ListHumanLoops$) {
|
|
589
567
|
}
|
|
590
568
|
|
|
591
|
-
class StartHumanLoopCommand extends
|
|
592
|
-
.classBuilder()
|
|
593
|
-
.ep(commonParams)
|
|
594
|
-
.m(function (Command, cs, config, o) {
|
|
595
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
596
|
-
})
|
|
597
|
-
.s("AmazonSageMakerA2IRuntime", "StartHumanLoop", {})
|
|
598
|
-
.n("SageMakerA2IRuntimeClient", "StartHumanLoopCommand")
|
|
599
|
-
.sc(StartHumanLoop$)
|
|
600
|
-
.build() {
|
|
569
|
+
class StartHumanLoopCommand extends command(_ep0, _mw0, "StartHumanLoop", StartHumanLoop$) {
|
|
601
570
|
}
|
|
602
571
|
|
|
603
|
-
class StopHumanLoopCommand extends
|
|
604
|
-
.classBuilder()
|
|
605
|
-
.ep(commonParams)
|
|
606
|
-
.m(function (Command, cs, config, o) {
|
|
607
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
608
|
-
})
|
|
609
|
-
.s("AmazonSageMakerA2IRuntime", "StopHumanLoop", {})
|
|
610
|
-
.n("SageMakerA2IRuntimeClient", "StopHumanLoopCommand")
|
|
611
|
-
.sc(StopHumanLoop$)
|
|
612
|
-
.build() {
|
|
572
|
+
class StopHumanLoopCommand extends command(_ep0, _mw0, "StopHumanLoop", StopHumanLoop$) {
|
|
613
573
|
}
|
|
614
574
|
|
|
615
575
|
const paginateListHumanLoops = createPaginator(SageMakerA2IRuntimeClient, ListHumanLoopsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -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, "AmazonSageMakerA2IRuntime", "SageMakerA2IRuntimeClient", 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 { DeleteHumanLoop$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DeleteHumanLoopCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AmazonSageMakerA2IRuntime", "DeleteHumanLoop", {})
|
|
13
|
-
.n("SageMakerA2IRuntimeClient", "DeleteHumanLoopCommand")
|
|
14
|
-
.sc(DeleteHumanLoop$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DeleteHumanLoopCommand extends command(_ep0, _mw0, "DeleteHumanLoop", DeleteHumanLoop$) {
|
|
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 { DescribeHumanLoop$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DescribeHumanLoopCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AmazonSageMakerA2IRuntime", "DescribeHumanLoop", {})
|
|
13
|
-
.n("SageMakerA2IRuntimeClient", "DescribeHumanLoopCommand")
|
|
14
|
-
.sc(DescribeHumanLoop$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DescribeHumanLoopCommand extends command(_ep0, _mw0, "DescribeHumanLoop", DescribeHumanLoop$) {
|
|
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 { ListHumanLoops$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListHumanLoopsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AmazonSageMakerA2IRuntime", "ListHumanLoops", {})
|
|
13
|
-
.n("SageMakerA2IRuntimeClient", "ListHumanLoopsCommand")
|
|
14
|
-
.sc(ListHumanLoops$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListHumanLoopsCommand extends command(_ep0, _mw0, "ListHumanLoops", ListHumanLoops$) {
|
|
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 { StartHumanLoop$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StartHumanLoopCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AmazonSageMakerA2IRuntime", "StartHumanLoop", {})
|
|
13
|
-
.n("SageMakerA2IRuntimeClient", "StartHumanLoopCommand")
|
|
14
|
-
.sc(StartHumanLoop$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StartHumanLoopCommand extends command(_ep0, _mw0, "StartHumanLoop", StartHumanLoop$) {
|
|
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 { StopHumanLoop$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StopHumanLoopCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AmazonSageMakerA2IRuntime", "StopHumanLoop", {})
|
|
13
|
-
.n("SageMakerA2IRuntimeClient", "StopHumanLoopCommand")
|
|
14
|
-
.sc(StopHumanLoop$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StopHumanLoopCommand extends command(_ep0, _mw0, "StopHumanLoop", StopHumanLoop$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./SageMakerA2IRuntimeClient";
|
|
2
2
|
export * from "./SageMakerA2IRuntime";
|
|
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 "./pagination";
|
|
6
7
|
export * from "./models/enums";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./SageMakerA2IRuntimeClient";
|
|
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, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SageMakerA2IRuntimeClientResolvedConfig, 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
2
|
import type { DeleteHumanLoopRequest, DeleteHumanLoopResponse } from "../models/models_0";
|
|
4
|
-
import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
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 DeleteHumanLoopCommandInput extends DeleteHumanLoopRequest {
|
|
|
22
19
|
export interface DeleteHumanLoopCommandOutput extends DeleteHumanLoopResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteHumanLoopCommand_base: {
|
|
25
|
-
new (input: DeleteHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Deletes the specified human loop for a flow definition.</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
2
|
import type { DescribeHumanLoopRequest, DescribeHumanLoopResponse } from "../models/models_0";
|
|
4
|
-
import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
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 DescribeHumanLoopCommandInput extends DescribeHumanLoopRequest
|
|
|
22
19
|
export interface DescribeHumanLoopCommandOutput extends DescribeHumanLoopResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DescribeHumanLoopCommand_base: {
|
|
25
|
-
new (input: DescribeHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DescribeHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DescribeHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DescribeHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns information about the specified human loop. If the human loop was deleted, this
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListHumanLoopsRequest, ListHumanLoopsResponse } from "../models/models_0";
|
|
4
|
-
import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
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 ListHumanLoopsCommandInput extends ListHumanLoopsRequest {
|
|
|
22
19
|
export interface ListHumanLoopsCommandOutput extends ListHumanLoopsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListHumanLoopsCommand_base: {
|
|
25
|
-
new (input: ListHumanLoopsCommandInput): import("@smithy/core/client").CommandImpl<ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListHumanLoopsCommandInput): import("@smithy/core/client").CommandImpl<ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListHumanLoopsCommandInput): import("@smithy/core/client").CommandImpl<ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListHumanLoopsCommandInput): import("@smithy/core/client").CommandImpl<ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns information about human loops, given the specified parameters. If a human loop was deleted, it will not be included.</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
2
|
import type { StartHumanLoopRequest, StartHumanLoopResponse } from "../models/models_0";
|
|
4
|
-
import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
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 StartHumanLoopCommandInput extends StartHumanLoopRequest {
|
|
|
22
19
|
export interface StartHumanLoopCommandOutput extends StartHumanLoopResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartHumanLoopCommand_base: {
|
|
25
|
-
new (input: StartHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<StartHumanLoopCommandInput, StartHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StartHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<StartHumanLoopCommandInput, StartHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<StartHumanLoopCommandInput, StartHumanLoopCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<StartHumanLoopCommandInput, StartHumanLoopCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Starts a human loop, provided that at least one activation condition is met.</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
2
|
import type { StopHumanLoopRequest, StopHumanLoopResponse } from "../models/models_0";
|
|
4
|
-
import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
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 StopHumanLoopCommandInput extends StopHumanLoopRequest {
|
|
|
22
19
|
export interface StopHumanLoopCommandOutput extends StopHumanLoopResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StopHumanLoopCommand_base: {
|
|
25
|
-
new (input: StopHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<StopHumanLoopCommandInput, StopHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StopHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<StopHumanLoopCommandInput, StopHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StopHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<StopHumanLoopCommandInput, StopHumanLoopCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StopHumanLoopCommandInput): import("@smithy/core/client").CommandImpl<StopHumanLoopCommandInput, StopHumanLoopCommandOutput, import("..").SageMakerA2IRuntimeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Stops the specified human loop.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
34
34
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
35
35
|
export type { SageMakerA2IRuntimeExtensionConfiguration } from "./extensionConfiguration";
|
|
36
36
|
export * from "./commands";
|
|
37
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
37
38
|
export * from "./schemas/schemas_0";
|
|
38
39
|
export * from "./pagination";
|
|
39
40
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
SageMakerA2IRuntimeClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./SageMakerA2IRuntimeClient";
|
|
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
|
+
SageMakerA2IRuntimeClientResolvedConfig,
|
|
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
|
+
SageMakerA2IRuntimeClientResolvedConfig,
|
|
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
2
|
import {
|
|
4
3
|
DeleteHumanLoopRequest,
|
|
5
4
|
DeleteHumanLoopResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../SageMakerA2IRuntimeClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteHumanLoopCommandInput extends DeleteHumanLoopRequest {}
|
|
15
8
|
export interface DeleteHumanLoopCommandOutput
|
|
16
9
|
extends DeleteHumanLoopResponse,
|
|
@@ -21,22 +14,20 @@ declare const DeleteHumanLoopCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DeleteHumanLoopCommandInput,
|
|
23
16
|
DeleteHumanLoopCommandOutput,
|
|
24
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DeleteHumanLoopCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DeleteHumanLoopCommandInput,
|
|
32
25
|
DeleteHumanLoopCommandOutput,
|
|
33
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class DeleteHumanLoopCommand extends DeleteHumanLoopCommand_base {
|
|
42
33
|
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
2
|
import {
|
|
4
3
|
DescribeHumanLoopRequest,
|
|
5
4
|
DescribeHumanLoopResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../SageMakerA2IRuntimeClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeHumanLoopCommandInput
|
|
15
8
|
extends DescribeHumanLoopRequest {}
|
|
16
9
|
export interface DescribeHumanLoopCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DescribeHumanLoopCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DescribeHumanLoopCommandInput,
|
|
24
17
|
DescribeHumanLoopCommandOutput,
|
|
25
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DescribeHumanLoopCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DescribeHumanLoopCommandInput,
|
|
33
26
|
DescribeHumanLoopCommandOutput,
|
|
34
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
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 DescribeHumanLoopCommand extends DescribeHumanLoopCommand_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
2
|
import {
|
|
4
3
|
ListHumanLoopsRequest,
|
|
5
4
|
ListHumanLoopsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../SageMakerA2IRuntimeClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListHumanLoopsCommandInput extends ListHumanLoopsRequest {}
|
|
15
8
|
export interface ListHumanLoopsCommandOutput
|
|
16
9
|
extends ListHumanLoopsResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListHumanLoopsCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListHumanLoopsCommandInput,
|
|
23
16
|
ListHumanLoopsCommandOutput,
|
|
24
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: ListHumanLoopsCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListHumanLoopsCommandInput,
|
|
32
25
|
ListHumanLoopsCommandOutput,
|
|
33
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ListHumanLoopsCommand extends ListHumanLoopsCommand_base {
|
|
42
33
|
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
2
|
import {
|
|
4
3
|
StartHumanLoopRequest,
|
|
5
4
|
StartHumanLoopResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../SageMakerA2IRuntimeClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface StartHumanLoopCommandInput extends StartHumanLoopRequest {}
|
|
15
8
|
export interface StartHumanLoopCommandOutput
|
|
16
9
|
extends StartHumanLoopResponse,
|
|
@@ -21,22 +14,20 @@ declare const StartHumanLoopCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
StartHumanLoopCommandInput,
|
|
23
16
|
StartHumanLoopCommandOutput,
|
|
24
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: StartHumanLoopCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
StartHumanLoopCommandInput,
|
|
32
25
|
StartHumanLoopCommandOutput,
|
|
33
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class StartHumanLoopCommand extends StartHumanLoopCommand_base {
|
|
42
33
|
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
2
|
import {
|
|
4
3
|
StopHumanLoopRequest,
|
|
5
4
|
StopHumanLoopResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../SageMakerA2IRuntimeClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface StopHumanLoopCommandInput extends StopHumanLoopRequest {}
|
|
15
8
|
export interface StopHumanLoopCommandOutput
|
|
16
9
|
extends StopHumanLoopResponse,
|
|
@@ -21,22 +14,20 @@ declare const StopHumanLoopCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
StopHumanLoopCommandInput,
|
|
23
16
|
StopHumanLoopCommandOutput,
|
|
24
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: StopHumanLoopCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
StopHumanLoopCommandInput,
|
|
32
25
|
StopHumanLoopCommandOutput,
|
|
33
|
-
SageMakerA2IRuntimeClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SageMakerA2IRuntimeClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class StopHumanLoopCommand extends StopHumanLoopCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SageMakerA2IRuntimeExtensionConfiguration } 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 "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-a2i-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker A2i Runtime 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": {
|