@aws-sdk/client-machine-learning 3.169.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/MachineLearning.d.ts +508 -145
- package/dist-types/ts3.4/MachineLearningClient.d.ts +298 -101
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +28 -28
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/MachineLearningServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1200 -1129
- package/dist-types/ts3.4/pagination/DescribeBatchPredictionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeDataSourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeEvaluationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeMLModelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +341 -86
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/dist-types/ts3.4/waiters/index.d.ts +4 -4
- package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +13 -7
- package/package.json +36 -36
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: MachineLearningClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: MachineLearningClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|
|
@@ -1,37 +1,69 @@
|
|
|
1
|
-
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
2
|
-
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: MachineLearningClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler:
|
|
9
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
10
|
+
any,
|
|
11
|
+
any,
|
|
12
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
13
|
+
> &
|
|
14
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
15
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
16
|
+
apiVersion: string;
|
|
17
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
18
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
19
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
20
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
23
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
26
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
32
|
+
credentialDefaultProvider: (
|
|
33
|
+
input: any
|
|
34
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
35
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
36
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
37
|
+
import("@aws-sdk/types").UserAgent
|
|
38
|
+
>;
|
|
39
|
+
defaultsMode:
|
|
40
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
41
|
+
| import("@aws-sdk/types").Provider<
|
|
42
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
43
|
+
>;
|
|
44
|
+
endpoint?:
|
|
45
|
+
| string
|
|
46
|
+
| import("@aws-sdk/types").Endpoint
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
48
|
+
| undefined;
|
|
49
|
+
tls?: boolean | undefined;
|
|
50
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
51
|
+
credentials?:
|
|
52
|
+
| import("@aws-sdk/types").Credentials
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
54
|
+
| undefined;
|
|
55
|
+
signer?:
|
|
56
|
+
| import("@aws-sdk/types").RequestSigner
|
|
57
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
58
|
+
| undefined;
|
|
59
|
+
signingEscapePath?: boolean | undefined;
|
|
60
|
+
systemClockOffset?: number | undefined;
|
|
61
|
+
signingRegion?: string | undefined;
|
|
62
|
+
signerConstructor?:
|
|
63
|
+
| (new (
|
|
64
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
65
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
66
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
67
|
+
| undefined;
|
|
68
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
69
|
+
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { MachineLearningClientConfig } from "./MachineLearningClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: MachineLearningClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
logger: __Logger;
|
|
10
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
|
+
serviceId: string;
|
|
12
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./waitForBatchPredictionAvailable";
|
|
2
|
-
export * from "./waitForDataSourceAvailable";
|
|
3
|
-
export * from "./waitForEvaluationAvailable";
|
|
4
|
-
export * from "./waitForMLModelAvailable";
|
|
1
|
+
export * from "./waitForBatchPredictionAvailable";
|
|
2
|
+
export * from "./waitForDataSourceAvailable";
|
|
3
|
+
export * from "./waitForEvaluationAvailable";
|
|
4
|
+
export * from "./waitForMLModelAvailable";
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
-
import { DescribeBatchPredictionsCommandInput } from "../commands/DescribeBatchPredictionsCommand";
|
|
3
|
-
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
-
|
|
5
|
-
export declare const waitForBatchPredictionAvailable: (
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { DescribeBatchPredictionsCommandInput } from "../commands/DescribeBatchPredictionsCommand";
|
|
3
|
+
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
|
|
5
|
+
export declare const waitForBatchPredictionAvailable: (
|
|
6
|
+
params: WaiterConfiguration<MachineLearningClient>,
|
|
7
|
+
input: DescribeBatchPredictionsCommandInput
|
|
8
|
+
) => Promise<WaiterResult>;
|
|
9
|
+
|
|
10
|
+
export declare const waitUntilBatchPredictionAvailable: (
|
|
11
|
+
params: WaiterConfiguration<MachineLearningClient>,
|
|
12
|
+
input: DescribeBatchPredictionsCommandInput
|
|
13
|
+
) => Promise<WaiterResult>;
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
-
import { DescribeDataSourcesCommandInput } from "../commands/DescribeDataSourcesCommand";
|
|
3
|
-
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
-
|
|
5
|
-
export declare const waitForDataSourceAvailable: (
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { DescribeDataSourcesCommandInput } from "../commands/DescribeDataSourcesCommand";
|
|
3
|
+
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
|
|
5
|
+
export declare const waitForDataSourceAvailable: (
|
|
6
|
+
params: WaiterConfiguration<MachineLearningClient>,
|
|
7
|
+
input: DescribeDataSourcesCommandInput
|
|
8
|
+
) => Promise<WaiterResult>;
|
|
9
|
+
|
|
10
|
+
export declare const waitUntilDataSourceAvailable: (
|
|
11
|
+
params: WaiterConfiguration<MachineLearningClient>,
|
|
12
|
+
input: DescribeDataSourcesCommandInput
|
|
13
|
+
) => Promise<WaiterResult>;
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
-
import { DescribeEvaluationsCommandInput } from "../commands/DescribeEvaluationsCommand";
|
|
3
|
-
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
-
|
|
5
|
-
export declare const waitForEvaluationAvailable: (
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { DescribeEvaluationsCommandInput } from "../commands/DescribeEvaluationsCommand";
|
|
3
|
+
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
|
|
5
|
+
export declare const waitForEvaluationAvailable: (
|
|
6
|
+
params: WaiterConfiguration<MachineLearningClient>,
|
|
7
|
+
input: DescribeEvaluationsCommandInput
|
|
8
|
+
) => Promise<WaiterResult>;
|
|
9
|
+
|
|
10
|
+
export declare const waitUntilEvaluationAvailable: (
|
|
11
|
+
params: WaiterConfiguration<MachineLearningClient>,
|
|
12
|
+
input: DescribeEvaluationsCommandInput
|
|
13
|
+
) => Promise<WaiterResult>;
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
-
import { DescribeMLModelsCommandInput } from "../commands/DescribeMLModelsCommand";
|
|
3
|
-
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
-
|
|
5
|
-
export declare const waitForMLModelAvailable: (
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { DescribeMLModelsCommandInput } from "../commands/DescribeMLModelsCommand";
|
|
3
|
+
import { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
|
|
5
|
+
export declare const waitForMLModelAvailable: (
|
|
6
|
+
params: WaiterConfiguration<MachineLearningClient>,
|
|
7
|
+
input: DescribeMLModelsCommandInput
|
|
8
|
+
) => Promise<WaiterResult>;
|
|
9
|
+
|
|
10
|
+
export declare const waitUntilMLModelAvailable: (
|
|
11
|
+
params: WaiterConfiguration<MachineLearningClient>,
|
|
12
|
+
input: DescribeMLModelsCommandInput
|
|
13
|
+
) => Promise<WaiterResult>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-machine-learning",
|
|
3
3
|
"description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.170.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",
|
|
@@ -19,47 +19,47 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-sdk-machinelearning": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
53
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
54
|
-
"@aws-sdk/util-waiter": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.170.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.170.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.170.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.170.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.170.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.170.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.170.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.170.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.170.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.170.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.170.0",
|
|
33
|
+
"@aws-sdk/middleware-sdk-machinelearning": "3.170.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.170.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.170.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.170.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.170.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.170.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.170.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.170.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.170.0",
|
|
42
|
+
"@aws-sdk/types": "3.170.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.170.0",
|
|
44
|
+
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
45
|
+
"@aws-sdk/util-base64-node": "3.170.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.170.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.170.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.170.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.170.0",
|
|
52
|
+
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
53
|
+
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
54
|
+
"@aws-sdk/util-waiter": "3.170.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
58
|
+
"@aws-sdk/service-client-documentation-generator": "3.170.0",
|
|
59
59
|
"@tsconfig/recommended": "1.0.1",
|
|
60
60
|
"@types/node": "^12.7.5",
|
|
61
61
|
"concurrently": "7.0.0",
|
|
62
|
-
"downlevel-dts": "0.
|
|
62
|
+
"downlevel-dts": "0.10.1",
|
|
63
63
|
"rimraf": "3.0.2",
|
|
64
64
|
"typedoc": "0.19.2",
|
|
65
65
|
"typescript": "~4.6.2"
|