@aws-sdk/client-sagemaker-a2i-runtime 3.50.0 → 3.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/SageMakerA2IRuntime.d.ts +30 -0
- package/dist-types/ts3.4/SageMakerA2IRuntimeClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/DeleteHumanLoopCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeHumanLoopCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListHumanLoopsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartHumanLoopCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopHumanLoopCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +204 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListHumanLoopsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +17 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-sagemaker-a2i-runtime
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-sagemaker-a2i-runtime
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput } from "./commands/DeleteHumanLoopCommand";
|
|
3
|
+
import { DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput } from "./commands/DescribeHumanLoopCommand";
|
|
4
|
+
import { ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput } from "./commands/ListHumanLoopsCommand";
|
|
5
|
+
import { StartHumanLoopCommandInput, StartHumanLoopCommandOutput } from "./commands/StartHumanLoopCommand";
|
|
6
|
+
import { StopHumanLoopCommandInput, StopHumanLoopCommandOutput } from "./commands/StopHumanLoopCommand";
|
|
7
|
+
import { SageMakerA2IRuntimeClient } from "./SageMakerA2IRuntimeClient";
|
|
8
|
+
|
|
9
|
+
export declare class SageMakerA2IRuntime extends SageMakerA2IRuntimeClient {
|
|
10
|
+
|
|
11
|
+
deleteHumanLoop(args: DeleteHumanLoopCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHumanLoopCommandOutput>;
|
|
12
|
+
deleteHumanLoop(args: DeleteHumanLoopCommandInput, cb: (err: any, data?: DeleteHumanLoopCommandOutput) => void): void;
|
|
13
|
+
deleteHumanLoop(args: DeleteHumanLoopCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHumanLoopCommandOutput) => void): void;
|
|
14
|
+
|
|
15
|
+
describeHumanLoop(args: DescribeHumanLoopCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHumanLoopCommandOutput>;
|
|
16
|
+
describeHumanLoop(args: DescribeHumanLoopCommandInput, cb: (err: any, data?: DescribeHumanLoopCommandOutput) => void): void;
|
|
17
|
+
describeHumanLoop(args: DescribeHumanLoopCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHumanLoopCommandOutput) => void): void;
|
|
18
|
+
|
|
19
|
+
listHumanLoops(args: ListHumanLoopsCommandInput, options?: __HttpHandlerOptions): Promise<ListHumanLoopsCommandOutput>;
|
|
20
|
+
listHumanLoops(args: ListHumanLoopsCommandInput, cb: (err: any, data?: ListHumanLoopsCommandOutput) => void): void;
|
|
21
|
+
listHumanLoops(args: ListHumanLoopsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHumanLoopsCommandOutput) => void): void;
|
|
22
|
+
|
|
23
|
+
startHumanLoop(args: StartHumanLoopCommandInput, options?: __HttpHandlerOptions): Promise<StartHumanLoopCommandOutput>;
|
|
24
|
+
startHumanLoop(args: StartHumanLoopCommandInput, cb: (err: any, data?: StartHumanLoopCommandOutput) => void): void;
|
|
25
|
+
startHumanLoop(args: StartHumanLoopCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartHumanLoopCommandOutput) => void): void;
|
|
26
|
+
|
|
27
|
+
stopHumanLoop(args: StopHumanLoopCommandInput, options?: __HttpHandlerOptions): Promise<StopHumanLoopCommandOutput>;
|
|
28
|
+
stopHumanLoop(args: StopHumanLoopCommandInput, cb: (err: any, data?: StopHumanLoopCommandOutput) => void): void;
|
|
29
|
+
stopHumanLoop(args: StopHumanLoopCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopHumanLoopCommandOutput) => void): void;
|
|
30
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput } from "./commands/DeleteHumanLoopCommand";
|
|
10
|
+
import { DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput } from "./commands/DescribeHumanLoopCommand";
|
|
11
|
+
import { ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput } from "./commands/ListHumanLoopsCommand";
|
|
12
|
+
import { StartHumanLoopCommandInput, StartHumanLoopCommandOutput } from "./commands/StartHumanLoopCommand";
|
|
13
|
+
import { StopHumanLoopCommandInput, StopHumanLoopCommandOutput } from "./commands/StopHumanLoopCommand";
|
|
14
|
+
export declare type ServiceInputTypes = DeleteHumanLoopCommandInput | DescribeHumanLoopCommandInput | ListHumanLoopsCommandInput | StartHumanLoopCommandInput | StopHumanLoopCommandInput;
|
|
15
|
+
export declare type ServiceOutputTypes = DeleteHumanLoopCommandOutput | DescribeHumanLoopCommandOutput | ListHumanLoopsCommandOutput | StartHumanLoopCommandOutput | StopHumanLoopCommandOutput;
|
|
16
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
17
|
+
|
|
18
|
+
requestHandler?: __HttpHandler;
|
|
19
|
+
|
|
20
|
+
sha256?: __HashConstructor;
|
|
21
|
+
|
|
22
|
+
urlParser?: __UrlParser;
|
|
23
|
+
|
|
24
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
25
|
+
|
|
26
|
+
streamCollector?: __StreamCollector;
|
|
27
|
+
|
|
28
|
+
base64Decoder?: __Decoder;
|
|
29
|
+
|
|
30
|
+
base64Encoder?: __Encoder;
|
|
31
|
+
|
|
32
|
+
utf8Decoder?: __Decoder;
|
|
33
|
+
|
|
34
|
+
utf8Encoder?: __Encoder;
|
|
35
|
+
|
|
36
|
+
runtime?: string;
|
|
37
|
+
|
|
38
|
+
disableHostPrefix?: boolean;
|
|
39
|
+
|
|
40
|
+
maxAttempts?: number | __Provider<number>;
|
|
41
|
+
|
|
42
|
+
retryMode?: string | __Provider<string>;
|
|
43
|
+
|
|
44
|
+
logger?: __Logger;
|
|
45
|
+
|
|
46
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
47
|
+
|
|
48
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
49
|
+
|
|
50
|
+
serviceId?: string;
|
|
51
|
+
|
|
52
|
+
region?: string | __Provider<string>;
|
|
53
|
+
|
|
54
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
55
|
+
|
|
56
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
57
|
+
|
|
58
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
59
|
+
|
|
60
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
61
|
+
}
|
|
62
|
+
declare type SageMakerA2IRuntimeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
63
|
+
|
|
64
|
+
export interface SageMakerA2IRuntimeClientConfig extends SageMakerA2IRuntimeClientConfigType {
|
|
65
|
+
}
|
|
66
|
+
declare type SageMakerA2IRuntimeClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
67
|
+
|
|
68
|
+
export interface SageMakerA2IRuntimeClientResolvedConfig extends SageMakerA2IRuntimeClientResolvedConfigType {
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export declare class SageMakerA2IRuntimeClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SageMakerA2IRuntimeClientResolvedConfig> {
|
|
72
|
+
|
|
73
|
+
readonly config: SageMakerA2IRuntimeClientResolvedConfig;
|
|
74
|
+
constructor(configuration: SageMakerA2IRuntimeClientConfig);
|
|
75
|
+
|
|
76
|
+
destroy(): void;
|
|
77
|
+
}
|
|
78
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteHumanLoopRequest, DeleteHumanLoopResponse } from "../models/models_0";
|
|
4
|
+
import { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
5
|
+
export interface DeleteHumanLoopCommandInput extends DeleteHumanLoopRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteHumanLoopCommandOutput extends DeleteHumanLoopResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteHumanLoopCommand extends $Command<DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteHumanLoopCommandInput;
|
|
12
|
+
constructor(input: DeleteHumanLoopCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerA2IRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeHumanLoopRequest, DescribeHumanLoopResponse } from "../models/models_0";
|
|
4
|
+
import { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
5
|
+
export interface DescribeHumanLoopCommandInput extends DescribeHumanLoopRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeHumanLoopCommandOutput extends DescribeHumanLoopResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeHumanLoopCommand extends $Command<DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeHumanLoopCommandInput;
|
|
12
|
+
constructor(input: DescribeHumanLoopCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerA2IRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListHumanLoopsRequest, ListHumanLoopsResponse } from "../models/models_0";
|
|
4
|
+
import { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
5
|
+
export interface ListHumanLoopsCommandInput extends ListHumanLoopsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListHumanLoopsCommandOutput extends ListHumanLoopsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListHumanLoopsCommand extends $Command<ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput, SageMakerA2IRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: ListHumanLoopsCommandInput;
|
|
12
|
+
constructor(input: ListHumanLoopsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerA2IRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { StartHumanLoopRequest, StartHumanLoopResponse } from "../models/models_0";
|
|
4
|
+
import { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
5
|
+
export interface StartHumanLoopCommandInput extends StartHumanLoopRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StartHumanLoopCommandOutput extends StartHumanLoopResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class StartHumanLoopCommand extends $Command<StartHumanLoopCommandInput, StartHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: StartHumanLoopCommandInput;
|
|
12
|
+
constructor(input: StartHumanLoopCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerA2IRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartHumanLoopCommandInput, StartHumanLoopCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { StopHumanLoopRequest, StopHumanLoopResponse } from "../models/models_0";
|
|
4
|
+
import { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerA2IRuntimeClient";
|
|
5
|
+
export interface StopHumanLoopCommandInput extends StopHumanLoopRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StopHumanLoopCommandOutput extends StopHumanLoopResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class StopHumanLoopCommand extends $Command<StopHumanLoopCommandInput, StopHumanLoopCommandOutput, SageMakerA2IRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: StopHumanLoopCommandInput;
|
|
12
|
+
constructor(input: StopHumanLoopCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerA2IRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopHumanLoopCommandInput, StopHumanLoopCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
export interface DeleteHumanLoopRequest {
|
|
3
|
+
|
|
4
|
+
HumanLoopName: string | undefined;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace DeleteHumanLoopRequest {
|
|
7
|
+
|
|
8
|
+
const filterSensitiveLog: (obj: DeleteHumanLoopRequest) => any;
|
|
9
|
+
}
|
|
10
|
+
export interface DeleteHumanLoopResponse {
|
|
11
|
+
}
|
|
12
|
+
export declare namespace DeleteHumanLoopResponse {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: DeleteHumanLoopResponse) => any;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
18
|
+
name: "InternalServerException";
|
|
19
|
+
$fault: "server";
|
|
20
|
+
Message?: string;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
24
|
+
name: "ResourceNotFoundException";
|
|
25
|
+
$fault: "client";
|
|
26
|
+
Message?: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
30
|
+
name: "ThrottlingException";
|
|
31
|
+
$fault: "client";
|
|
32
|
+
Message?: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
36
|
+
name: "ValidationException";
|
|
37
|
+
$fault: "client";
|
|
38
|
+
Message?: string;
|
|
39
|
+
}
|
|
40
|
+
export interface DescribeHumanLoopRequest {
|
|
41
|
+
|
|
42
|
+
HumanLoopName: string | undefined;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace DescribeHumanLoopRequest {
|
|
45
|
+
|
|
46
|
+
const filterSensitiveLog: (obj: DescribeHumanLoopRequest) => any;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export interface HumanLoopOutput {
|
|
50
|
+
|
|
51
|
+
OutputS3Uri: string | undefined;
|
|
52
|
+
}
|
|
53
|
+
export declare namespace HumanLoopOutput {
|
|
54
|
+
|
|
55
|
+
const filterSensitiveLog: (obj: HumanLoopOutput) => any;
|
|
56
|
+
}
|
|
57
|
+
export declare enum HumanLoopStatus {
|
|
58
|
+
COMPLETED = "Completed",
|
|
59
|
+
FAILED = "Failed",
|
|
60
|
+
IN_PROGRESS = "InProgress",
|
|
61
|
+
STOPPED = "Stopped",
|
|
62
|
+
STOPPING = "Stopping"
|
|
63
|
+
}
|
|
64
|
+
export interface DescribeHumanLoopResponse {
|
|
65
|
+
|
|
66
|
+
CreationTime: Date | undefined;
|
|
67
|
+
|
|
68
|
+
FailureReason?: string;
|
|
69
|
+
|
|
70
|
+
FailureCode?: string;
|
|
71
|
+
|
|
72
|
+
HumanLoopStatus: HumanLoopStatus | string | undefined;
|
|
73
|
+
|
|
74
|
+
HumanLoopName: string | undefined;
|
|
75
|
+
|
|
76
|
+
HumanLoopArn: string | undefined;
|
|
77
|
+
|
|
78
|
+
FlowDefinitionArn: string | undefined;
|
|
79
|
+
|
|
80
|
+
HumanLoopOutput?: HumanLoopOutput;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace DescribeHumanLoopResponse {
|
|
83
|
+
|
|
84
|
+
const filterSensitiveLog: (obj: DescribeHumanLoopResponse) => any;
|
|
85
|
+
}
|
|
86
|
+
export declare enum SortOrder {
|
|
87
|
+
ASCENDING = "Ascending",
|
|
88
|
+
DESCENDING = "Descending"
|
|
89
|
+
}
|
|
90
|
+
export interface ListHumanLoopsRequest {
|
|
91
|
+
|
|
92
|
+
CreationTimeAfter?: Date;
|
|
93
|
+
|
|
94
|
+
CreationTimeBefore?: Date;
|
|
95
|
+
|
|
96
|
+
FlowDefinitionArn: string | undefined;
|
|
97
|
+
|
|
98
|
+
SortOrder?: SortOrder | string;
|
|
99
|
+
|
|
100
|
+
NextToken?: string;
|
|
101
|
+
|
|
102
|
+
MaxResults?: number;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace ListHumanLoopsRequest {
|
|
105
|
+
|
|
106
|
+
const filterSensitiveLog: (obj: ListHumanLoopsRequest) => any;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface HumanLoopSummary {
|
|
110
|
+
|
|
111
|
+
HumanLoopName?: string;
|
|
112
|
+
|
|
113
|
+
HumanLoopStatus?: HumanLoopStatus | string;
|
|
114
|
+
|
|
115
|
+
CreationTime?: Date;
|
|
116
|
+
|
|
117
|
+
FailureReason?: string;
|
|
118
|
+
|
|
119
|
+
FlowDefinitionArn?: string;
|
|
120
|
+
}
|
|
121
|
+
export declare namespace HumanLoopSummary {
|
|
122
|
+
|
|
123
|
+
const filterSensitiveLog: (obj: HumanLoopSummary) => any;
|
|
124
|
+
}
|
|
125
|
+
export interface ListHumanLoopsResponse {
|
|
126
|
+
|
|
127
|
+
HumanLoopSummaries: HumanLoopSummary[] | undefined;
|
|
128
|
+
|
|
129
|
+
NextToken?: string;
|
|
130
|
+
}
|
|
131
|
+
export declare namespace ListHumanLoopsResponse {
|
|
132
|
+
|
|
133
|
+
const filterSensitiveLog: (obj: ListHumanLoopsResponse) => any;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
137
|
+
name: "ConflictException";
|
|
138
|
+
$fault: "client";
|
|
139
|
+
Message?: string;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
143
|
+
name: "ServiceQuotaExceededException";
|
|
144
|
+
$fault: "client";
|
|
145
|
+
Message?: string;
|
|
146
|
+
}
|
|
147
|
+
export declare enum ContentClassifier {
|
|
148
|
+
FREE_OF_ADULT_CONTENT = "FreeOfAdultContent",
|
|
149
|
+
FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION = "FreeOfPersonallyIdentifiableInformation"
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface HumanLoopDataAttributes {
|
|
153
|
+
|
|
154
|
+
ContentClassifiers: (ContentClassifier | string)[] | undefined;
|
|
155
|
+
}
|
|
156
|
+
export declare namespace HumanLoopDataAttributes {
|
|
157
|
+
|
|
158
|
+
const filterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface HumanLoopInput {
|
|
162
|
+
|
|
163
|
+
InputContent: string | undefined;
|
|
164
|
+
}
|
|
165
|
+
export declare namespace HumanLoopInput {
|
|
166
|
+
|
|
167
|
+
const filterSensitiveLog: (obj: HumanLoopInput) => any;
|
|
168
|
+
}
|
|
169
|
+
export interface StartHumanLoopRequest {
|
|
170
|
+
|
|
171
|
+
HumanLoopName: string | undefined;
|
|
172
|
+
|
|
173
|
+
FlowDefinitionArn: string | undefined;
|
|
174
|
+
|
|
175
|
+
HumanLoopInput: HumanLoopInput | undefined;
|
|
176
|
+
|
|
177
|
+
DataAttributes?: HumanLoopDataAttributes;
|
|
178
|
+
}
|
|
179
|
+
export declare namespace StartHumanLoopRequest {
|
|
180
|
+
|
|
181
|
+
const filterSensitiveLog: (obj: StartHumanLoopRequest) => any;
|
|
182
|
+
}
|
|
183
|
+
export interface StartHumanLoopResponse {
|
|
184
|
+
|
|
185
|
+
HumanLoopArn?: string;
|
|
186
|
+
}
|
|
187
|
+
export declare namespace StartHumanLoopResponse {
|
|
188
|
+
|
|
189
|
+
const filterSensitiveLog: (obj: StartHumanLoopResponse) => any;
|
|
190
|
+
}
|
|
191
|
+
export interface StopHumanLoopRequest {
|
|
192
|
+
|
|
193
|
+
HumanLoopName: string | undefined;
|
|
194
|
+
}
|
|
195
|
+
export declare namespace StopHumanLoopRequest {
|
|
196
|
+
|
|
197
|
+
const filterSensitiveLog: (obj: StopHumanLoopRequest) => any;
|
|
198
|
+
}
|
|
199
|
+
export interface StopHumanLoopResponse {
|
|
200
|
+
}
|
|
201
|
+
export declare namespace StopHumanLoopResponse {
|
|
202
|
+
|
|
203
|
+
const filterSensitiveLog: (obj: StopHumanLoopResponse) => any;
|
|
204
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { SageMakerA2IRuntime } from "../SageMakerA2IRuntime";
|
|
3
|
+
import { SageMakerA2IRuntimeClient } from "../SageMakerA2IRuntimeClient";
|
|
4
|
+
export interface SageMakerA2IRuntimePaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: SageMakerA2IRuntime | SageMakerA2IRuntimeClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput } from "../commands/ListHumanLoopsCommand";
|
|
3
|
+
import { SageMakerA2IRuntimePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListHumanLoops(config: SageMakerA2IRuntimePaginationConfiguration, input: ListHumanLoopsCommandInput, ...additionalArguments: any): Paginator<ListHumanLoopsCommandOutput>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput } from "../commands/DeleteHumanLoopCommand";
|
|
4
|
+
import { DescribeHumanLoopCommandInput, DescribeHumanLoopCommandOutput } from "../commands/DescribeHumanLoopCommand";
|
|
5
|
+
import { ListHumanLoopsCommandInput, ListHumanLoopsCommandOutput } from "../commands/ListHumanLoopsCommand";
|
|
6
|
+
import { StartHumanLoopCommandInput, StartHumanLoopCommandOutput } from "../commands/StartHumanLoopCommand";
|
|
7
|
+
import { StopHumanLoopCommandInput, StopHumanLoopCommandOutput } from "../commands/StopHumanLoopCommand";
|
|
8
|
+
export declare const serializeAws_restJson1DeleteHumanLoopCommand: (input: DeleteHumanLoopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
|
+
export declare const serializeAws_restJson1DescribeHumanLoopCommand: (input: DescribeHumanLoopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1ListHumanLoopsCommand: (input: ListHumanLoopsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
|
+
export declare const serializeAws_restJson1StartHumanLoopCommand: (input: StartHumanLoopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
export declare const serializeAws_restJson1StopHumanLoopCommand: (input: StopHumanLoopCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
+
export declare const deserializeAws_restJson1DeleteHumanLoopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHumanLoopCommandOutput>;
|
|
14
|
+
export declare const deserializeAws_restJson1DescribeHumanLoopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeHumanLoopCommandOutput>;
|
|
15
|
+
export declare const deserializeAws_restJson1ListHumanLoopsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHumanLoopsCommandOutput>;
|
|
16
|
+
export declare const deserializeAws_restJson1StartHumanLoopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartHumanLoopCommandOutput>;
|
|
17
|
+
export declare const deserializeAws_restJson1StopHumanLoopCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopHumanLoopCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SageMakerA2IRuntimeClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SageMakerA2IRuntimeClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: SageMakerA2IRuntimeClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SageMakerA2IRuntimeClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
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.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.50.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.50.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|