@aws-sdk/client-sagemaker 3.194.0 → 3.196.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 +19 -0
- package/dist-cjs/SageMaker.js +15 -0
- package/dist-cjs/commands/ListInferenceRecommendationsJobStepsCommand.js +46 -0
- package/dist-cjs/commands/ListModelMetadataCommand.js +2 -1
- package/dist-cjs/commands/ListModelPackageGroupsCommand.js +1 -2
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/models/models_2.js +24 -25
- package/dist-cjs/models/models_3.js +26 -5
- package/dist-cjs/pagination/ListInferenceRecommendationsJobStepsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +94 -8
- package/dist-es/SageMaker.js +15 -0
- package/dist-es/commands/ListInferenceRecommendationsJobStepsCommand.js +42 -0
- package/dist-es/commands/ListModelMetadataCommand.js +2 -1
- package/dist-es/commands/ListModelPackageGroupsCommand.js +1 -2
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_2.js +16 -17
- package/dist-es/models/models_3.js +17 -0
- package/dist-es/pagination/ListInferenceRecommendationsJobStepsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +84 -0
- package/dist-types/SageMaker.d.ts +8 -0
- package/dist-types/SageMakerClient.d.ts +3 -2
- package/dist-types/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +38 -0
- package/dist-types/commands/ListModelMetadataCommand.d.ts +2 -1
- package/dist-types/commands/ListModelPackageGroupsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1 -0
- package/dist-types/models/models_2.d.ts +98 -113
- package/dist-types/models/models_3.d.ts +114 -1
- package/dist-types/pagination/ListInferenceRecommendationsJobStepsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +3 -0
- package/dist-types/ts3.4/SageMaker.d.ts +23 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListModelMetadataCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListModelPackageGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +38 -43
- package/dist-types/ts3.4/models/models_3.d.ts +43 -1
- package/dist-types/ts3.4/pagination/ListInferenceRecommendationsJobStepsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -715,6 +715,10 @@ import {
|
|
|
715
715
|
ListInferenceRecommendationsJobsCommandInput,
|
|
716
716
|
ListInferenceRecommendationsJobsCommandOutput,
|
|
717
717
|
} from "./commands/ListInferenceRecommendationsJobsCommand";
|
|
718
|
+
import {
|
|
719
|
+
ListInferenceRecommendationsJobStepsCommandInput,
|
|
720
|
+
ListInferenceRecommendationsJobStepsCommandOutput,
|
|
721
|
+
} from "./commands/ListInferenceRecommendationsJobStepsCommand";
|
|
718
722
|
import {
|
|
719
723
|
ListLabelingJobsCommandInput,
|
|
720
724
|
ListLabelingJobsCommandOutput,
|
|
@@ -3464,6 +3468,25 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
3464
3468
|
options: __HttpHandlerOptions,
|
|
3465
3469
|
cb: (err: any, data?: ListInferenceRecommendationsJobsCommandOutput) => void
|
|
3466
3470
|
): void;
|
|
3471
|
+
listInferenceRecommendationsJobSteps(
|
|
3472
|
+
args: ListInferenceRecommendationsJobStepsCommandInput,
|
|
3473
|
+
options?: __HttpHandlerOptions
|
|
3474
|
+
): Promise<ListInferenceRecommendationsJobStepsCommandOutput>;
|
|
3475
|
+
listInferenceRecommendationsJobSteps(
|
|
3476
|
+
args: ListInferenceRecommendationsJobStepsCommandInput,
|
|
3477
|
+
cb: (
|
|
3478
|
+
err: any,
|
|
3479
|
+
data?: ListInferenceRecommendationsJobStepsCommandOutput
|
|
3480
|
+
) => void
|
|
3481
|
+
): void;
|
|
3482
|
+
listInferenceRecommendationsJobSteps(
|
|
3483
|
+
args: ListInferenceRecommendationsJobStepsCommandInput,
|
|
3484
|
+
options: __HttpHandlerOptions,
|
|
3485
|
+
cb: (
|
|
3486
|
+
err: any,
|
|
3487
|
+
data?: ListInferenceRecommendationsJobStepsCommandOutput
|
|
3488
|
+
) => void
|
|
3489
|
+
): void;
|
|
3467
3490
|
listLabelingJobs(
|
|
3468
3491
|
args: ListLabelingJobsCommandInput,
|
|
3469
3492
|
options?: __HttpHandlerOptions
|
|
@@ -759,6 +759,10 @@ import {
|
|
|
759
759
|
ListInferenceRecommendationsJobsCommandInput,
|
|
760
760
|
ListInferenceRecommendationsJobsCommandOutput,
|
|
761
761
|
} from "./commands/ListInferenceRecommendationsJobsCommand";
|
|
762
|
+
import {
|
|
763
|
+
ListInferenceRecommendationsJobStepsCommandInput,
|
|
764
|
+
ListInferenceRecommendationsJobStepsCommandOutput,
|
|
765
|
+
} from "./commands/ListInferenceRecommendationsJobStepsCommand";
|
|
762
766
|
import {
|
|
763
767
|
ListLabelingJobsCommandInput,
|
|
764
768
|
ListLabelingJobsCommandOutput,
|
|
@@ -1279,6 +1283,7 @@ export declare type ServiceInputTypes =
|
|
|
1279
1283
|
| ListHyperParameterTuningJobsCommandInput
|
|
1280
1284
|
| ListImageVersionsCommandInput
|
|
1281
1285
|
| ListImagesCommandInput
|
|
1286
|
+
| ListInferenceRecommendationsJobStepsCommandInput
|
|
1282
1287
|
| ListInferenceRecommendationsJobsCommandInput
|
|
1283
1288
|
| ListLabelingJobsCommandInput
|
|
1284
1289
|
| ListLabelingJobsForWorkteamCommandInput
|
|
@@ -1543,6 +1548,7 @@ export declare type ServiceOutputTypes =
|
|
|
1543
1548
|
| ListHyperParameterTuningJobsCommandOutput
|
|
1544
1549
|
| ListImageVersionsCommandOutput
|
|
1545
1550
|
| ListImagesCommandOutput
|
|
1551
|
+
| ListInferenceRecommendationsJobStepsCommandOutput
|
|
1546
1552
|
| ListInferenceRecommendationsJobsCommandOutput
|
|
1547
1553
|
| ListLabelingJobsCommandOutput
|
|
1548
1554
|
| ListLabelingJobsForWorkteamCommandOutput
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListInferenceRecommendationsJobStepsRequest,
|
|
11
|
+
ListInferenceRecommendationsJobStepsResponse,
|
|
12
|
+
} from "../models/models_2";
|
|
13
|
+
import {
|
|
14
|
+
SageMakerClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../SageMakerClient";
|
|
18
|
+
export interface ListInferenceRecommendationsJobStepsCommandInput
|
|
19
|
+
extends ListInferenceRecommendationsJobStepsRequest {}
|
|
20
|
+
export interface ListInferenceRecommendationsJobStepsCommandOutput
|
|
21
|
+
extends ListInferenceRecommendationsJobStepsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListInferenceRecommendationsJobStepsCommand extends $Command<
|
|
24
|
+
ListInferenceRecommendationsJobStepsCommandInput,
|
|
25
|
+
ListInferenceRecommendationsJobStepsCommandOutput,
|
|
26
|
+
SageMakerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListInferenceRecommendationsJobStepsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListInferenceRecommendationsJobStepsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SageMakerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListInferenceRecommendationsJobStepsCommandInput,
|
|
37
|
+
ListInferenceRecommendationsJobStepsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
ListModelMetadataResponse,
|
|
12
|
-
} from "../models/models_2";
|
|
9
|
+
import { ListModelMetadataRequest } from "../models/models_2";
|
|
10
|
+
import { ListModelMetadataResponse } from "../models/models_3";
|
|
13
11
|
import {
|
|
14
12
|
SageMakerClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -6,8 +6,10 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
ListModelPackageGroupsInput,
|
|
11
|
+
ListModelPackageGroupsOutput,
|
|
12
|
+
} from "../models/models_3";
|
|
11
13
|
import {
|
|
12
14
|
SageMakerClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -176,6 +176,7 @@ export * from "./ListHumanTaskUisCommand";
|
|
|
176
176
|
export * from "./ListHyperParameterTuningJobsCommand";
|
|
177
177
|
export * from "./ListImageVersionsCommand";
|
|
178
178
|
export * from "./ListImagesCommand";
|
|
179
|
+
export * from "./ListInferenceRecommendationsJobStepsCommand";
|
|
179
180
|
export * from "./ListInferenceRecommendationsJobsCommand";
|
|
180
181
|
export * from "./ListLabelingJobsCommand";
|
|
181
182
|
export * from "./ListLabelingJobsForWorkteamCommand";
|
|
@@ -1626,6 +1626,21 @@ export interface InferenceRecommendationsJob {
|
|
|
1626
1626
|
LastModifiedTime: Date | undefined;
|
|
1627
1627
|
FailureReason?: string;
|
|
1628
1628
|
}
|
|
1629
|
+
export interface RecommendationJobInferenceBenchmark {
|
|
1630
|
+
Metrics?: RecommendationMetrics;
|
|
1631
|
+
EndpointConfiguration?: EndpointOutputConfiguration;
|
|
1632
|
+
ModelConfiguration: ModelConfiguration | undefined;
|
|
1633
|
+
FailureReason?: string;
|
|
1634
|
+
}
|
|
1635
|
+
export declare enum RecommendationStepType {
|
|
1636
|
+
BENCHMARK = "BENCHMARK",
|
|
1637
|
+
}
|
|
1638
|
+
export interface InferenceRecommendationsJobStep {
|
|
1639
|
+
StepType: RecommendationStepType | string | undefined;
|
|
1640
|
+
JobName: string | undefined;
|
|
1641
|
+
Status: RecommendationJobStatus | string | undefined;
|
|
1642
|
+
InferenceBenchmark?: RecommendationJobInferenceBenchmark;
|
|
1643
|
+
}
|
|
1629
1644
|
export interface LabelCountersForWorkteam {
|
|
1630
1645
|
HumanLabeled?: number;
|
|
1631
1646
|
PendingHuman?: number;
|
|
@@ -2120,6 +2135,17 @@ export interface ListInferenceRecommendationsJobsResponse {
|
|
|
2120
2135
|
InferenceRecommendationsJobs: InferenceRecommendationsJob[] | undefined;
|
|
2121
2136
|
NextToken?: string;
|
|
2122
2137
|
}
|
|
2138
|
+
export interface ListInferenceRecommendationsJobStepsRequest {
|
|
2139
|
+
JobName: string | undefined;
|
|
2140
|
+
Status?: RecommendationJobStatus | string;
|
|
2141
|
+
StepType?: RecommendationStepType | string;
|
|
2142
|
+
MaxResults?: number;
|
|
2143
|
+
NextToken?: string;
|
|
2144
|
+
}
|
|
2145
|
+
export interface ListInferenceRecommendationsJobStepsResponse {
|
|
2146
|
+
Steps?: InferenceRecommendationsJobStep[];
|
|
2147
|
+
NextToken?: string;
|
|
2148
|
+
}
|
|
2123
2149
|
export declare enum SortBy {
|
|
2124
2150
|
CREATION_TIME = "CreationTime",
|
|
2125
2151
|
NAME = "Name",
|
|
@@ -2220,37 +2246,6 @@ export interface ListModelMetadataRequest {
|
|
|
2220
2246
|
NextToken?: string;
|
|
2221
2247
|
MaxResults?: number;
|
|
2222
2248
|
}
|
|
2223
|
-
export interface ModelMetadataSummary {
|
|
2224
|
-
Domain: string | undefined;
|
|
2225
|
-
Framework: string | undefined;
|
|
2226
|
-
Task: string | undefined;
|
|
2227
|
-
Model: string | undefined;
|
|
2228
|
-
FrameworkVersion: string | undefined;
|
|
2229
|
-
}
|
|
2230
|
-
export interface ListModelMetadataResponse {
|
|
2231
|
-
ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
|
|
2232
|
-
NextToken?: string;
|
|
2233
|
-
}
|
|
2234
|
-
export declare enum ModelPackageGroupSortBy {
|
|
2235
|
-
CREATION_TIME = "CreationTime",
|
|
2236
|
-
NAME = "Name",
|
|
2237
|
-
}
|
|
2238
|
-
export interface ListModelPackageGroupsInput {
|
|
2239
|
-
CreationTimeAfter?: Date;
|
|
2240
|
-
CreationTimeBefore?: Date;
|
|
2241
|
-
MaxResults?: number;
|
|
2242
|
-
NameContains?: string;
|
|
2243
|
-
NextToken?: string;
|
|
2244
|
-
SortBy?: ModelPackageGroupSortBy | string;
|
|
2245
|
-
SortOrder?: SortOrder | string;
|
|
2246
|
-
}
|
|
2247
|
-
export interface ModelPackageGroupSummary {
|
|
2248
|
-
ModelPackageGroupName: string | undefined;
|
|
2249
|
-
ModelPackageGroupArn: string | undefined;
|
|
2250
|
-
ModelPackageGroupDescription?: string;
|
|
2251
|
-
CreationTime: Date | undefined;
|
|
2252
|
-
ModelPackageGroupStatus: ModelPackageGroupStatus | string | undefined;
|
|
2253
|
-
}
|
|
2254
2249
|
export declare const ProductionVariantStatusFilterSensitiveLog: (
|
|
2255
2250
|
obj: ProductionVariantStatus
|
|
2256
2251
|
) => any;
|
|
@@ -2714,6 +2709,12 @@ export declare const ImageVersionFilterSensitiveLog: (obj: ImageVersion) => any;
|
|
|
2714
2709
|
export declare const InferenceRecommendationsJobFilterSensitiveLog: (
|
|
2715
2710
|
obj: InferenceRecommendationsJob
|
|
2716
2711
|
) => any;
|
|
2712
|
+
export declare const RecommendationJobInferenceBenchmarkFilterSensitiveLog: (
|
|
2713
|
+
obj: RecommendationJobInferenceBenchmark
|
|
2714
|
+
) => any;
|
|
2715
|
+
export declare const InferenceRecommendationsJobStepFilterSensitiveLog: (
|
|
2716
|
+
obj: InferenceRecommendationsJobStep
|
|
2717
|
+
) => any;
|
|
2717
2718
|
export declare const LabelCountersForWorkteamFilterSensitiveLog: (
|
|
2718
2719
|
obj: LabelCountersForWorkteam
|
|
2719
2720
|
) => any;
|
|
@@ -2894,6 +2895,12 @@ export declare const ListInferenceRecommendationsJobsRequestFilterSensitiveLog:
|
|
|
2894
2895
|
export declare const ListInferenceRecommendationsJobsResponseFilterSensitiveLog: (
|
|
2895
2896
|
obj: ListInferenceRecommendationsJobsResponse
|
|
2896
2897
|
) => any;
|
|
2898
|
+
export declare const ListInferenceRecommendationsJobStepsRequestFilterSensitiveLog: (
|
|
2899
|
+
obj: ListInferenceRecommendationsJobStepsRequest
|
|
2900
|
+
) => any;
|
|
2901
|
+
export declare const ListInferenceRecommendationsJobStepsResponseFilterSensitiveLog: (
|
|
2902
|
+
obj: ListInferenceRecommendationsJobStepsResponse
|
|
2903
|
+
) => any;
|
|
2897
2904
|
export declare const ListLabelingJobsRequestFilterSensitiveLog: (
|
|
2898
2905
|
obj: ListLabelingJobsRequest
|
|
2899
2906
|
) => any;
|
|
@@ -2933,15 +2940,3 @@ export declare const ModelMetadataSearchExpressionFilterSensitiveLog: (
|
|
|
2933
2940
|
export declare const ListModelMetadataRequestFilterSensitiveLog: (
|
|
2934
2941
|
obj: ListModelMetadataRequest
|
|
2935
2942
|
) => any;
|
|
2936
|
-
export declare const ModelMetadataSummaryFilterSensitiveLog: (
|
|
2937
|
-
obj: ModelMetadataSummary
|
|
2938
|
-
) => any;
|
|
2939
|
-
export declare const ListModelMetadataResponseFilterSensitiveLog: (
|
|
2940
|
-
obj: ListModelMetadataResponse
|
|
2941
|
-
) => any;
|
|
2942
|
-
export declare const ListModelPackageGroupsInputFilterSensitiveLog: (
|
|
2943
|
-
obj: ListModelPackageGroupsInput
|
|
2944
|
-
) => any;
|
|
2945
|
-
export declare const ModelPackageGroupSummaryFilterSensitiveLog: (
|
|
2946
|
-
obj: ModelPackageGroupSummary
|
|
2947
|
-
) => any;
|
|
@@ -96,7 +96,6 @@ import {
|
|
|
96
96
|
LineageType,
|
|
97
97
|
MetricData,
|
|
98
98
|
ModelPackageGroupStatus,
|
|
99
|
-
ModelPackageGroupSummary,
|
|
100
99
|
ModelPackageStatusDetails,
|
|
101
100
|
MonitoringExecutionSummary,
|
|
102
101
|
MonitoringJobDefinitionSortKey,
|
|
@@ -127,6 +126,37 @@ import {
|
|
|
127
126
|
Workforce,
|
|
128
127
|
Workteam,
|
|
129
128
|
} from "./models_2";
|
|
129
|
+
export interface ModelMetadataSummary {
|
|
130
|
+
Domain: string | undefined;
|
|
131
|
+
Framework: string | undefined;
|
|
132
|
+
Task: string | undefined;
|
|
133
|
+
Model: string | undefined;
|
|
134
|
+
FrameworkVersion: string | undefined;
|
|
135
|
+
}
|
|
136
|
+
export interface ListModelMetadataResponse {
|
|
137
|
+
ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
|
|
138
|
+
NextToken?: string;
|
|
139
|
+
}
|
|
140
|
+
export declare enum ModelPackageGroupSortBy {
|
|
141
|
+
CREATION_TIME = "CreationTime",
|
|
142
|
+
NAME = "Name",
|
|
143
|
+
}
|
|
144
|
+
export interface ListModelPackageGroupsInput {
|
|
145
|
+
CreationTimeAfter?: Date;
|
|
146
|
+
CreationTimeBefore?: Date;
|
|
147
|
+
MaxResults?: number;
|
|
148
|
+
NameContains?: string;
|
|
149
|
+
NextToken?: string;
|
|
150
|
+
SortBy?: ModelPackageGroupSortBy | string;
|
|
151
|
+
SortOrder?: SortOrder | string;
|
|
152
|
+
}
|
|
153
|
+
export interface ModelPackageGroupSummary {
|
|
154
|
+
ModelPackageGroupName: string | undefined;
|
|
155
|
+
ModelPackageGroupArn: string | undefined;
|
|
156
|
+
ModelPackageGroupDescription?: string;
|
|
157
|
+
CreationTime: Date | undefined;
|
|
158
|
+
ModelPackageGroupStatus: ModelPackageGroupStatus | string | undefined;
|
|
159
|
+
}
|
|
130
160
|
export interface ListModelPackageGroupsOutput {
|
|
131
161
|
ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
|
|
132
162
|
NextToken?: string;
|
|
@@ -1432,6 +1462,18 @@ export interface SearchRequest {
|
|
|
1432
1462
|
NextToken?: string;
|
|
1433
1463
|
MaxResults?: number;
|
|
1434
1464
|
}
|
|
1465
|
+
export declare const ModelMetadataSummaryFilterSensitiveLog: (
|
|
1466
|
+
obj: ModelMetadataSummary
|
|
1467
|
+
) => any;
|
|
1468
|
+
export declare const ListModelMetadataResponseFilterSensitiveLog: (
|
|
1469
|
+
obj: ListModelMetadataResponse
|
|
1470
|
+
) => any;
|
|
1471
|
+
export declare const ListModelPackageGroupsInputFilterSensitiveLog: (
|
|
1472
|
+
obj: ListModelPackageGroupsInput
|
|
1473
|
+
) => any;
|
|
1474
|
+
export declare const ModelPackageGroupSummaryFilterSensitiveLog: (
|
|
1475
|
+
obj: ModelPackageGroupSummary
|
|
1476
|
+
) => any;
|
|
1435
1477
|
export declare const ListModelPackageGroupsOutputFilterSensitiveLog: (
|
|
1436
1478
|
obj: ListModelPackageGroupsOutput
|
|
1437
1479
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListInferenceRecommendationsJobStepsCommandInput,
|
|
4
|
+
ListInferenceRecommendationsJobStepsCommandOutput,
|
|
5
|
+
} from "../commands/ListInferenceRecommendationsJobStepsCommand";
|
|
6
|
+
import { SageMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListInferenceRecommendationsJobSteps(
|
|
8
|
+
config: SageMakerPaginationConfiguration,
|
|
9
|
+
input: ListInferenceRecommendationsJobStepsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListInferenceRecommendationsJobStepsCommandOutput>;
|
|
@@ -24,6 +24,7 @@ export * from "./ListHumanTaskUisPaginator";
|
|
|
24
24
|
export * from "./ListHyperParameterTuningJobsPaginator";
|
|
25
25
|
export * from "./ListImageVersionsPaginator";
|
|
26
26
|
export * from "./ListImagesPaginator";
|
|
27
|
+
export * from "./ListInferenceRecommendationsJobStepsPaginator";
|
|
27
28
|
export * from "./ListInferenceRecommendationsJobsPaginator";
|
|
28
29
|
export * from "./ListLabelingJobsForWorkteamPaginator";
|
|
29
30
|
export * from "./ListLabelingJobsPaginator";
|
|
@@ -719,6 +719,10 @@ import {
|
|
|
719
719
|
ListInferenceRecommendationsJobsCommandInput,
|
|
720
720
|
ListInferenceRecommendationsJobsCommandOutput,
|
|
721
721
|
} from "../commands/ListInferenceRecommendationsJobsCommand";
|
|
722
|
+
import {
|
|
723
|
+
ListInferenceRecommendationsJobStepsCommandInput,
|
|
724
|
+
ListInferenceRecommendationsJobStepsCommandOutput,
|
|
725
|
+
} from "../commands/ListInferenceRecommendationsJobStepsCommand";
|
|
722
726
|
import {
|
|
723
727
|
ListLabelingJobsCommandInput,
|
|
724
728
|
ListLabelingJobsCommandOutput,
|
|
@@ -1771,6 +1775,10 @@ export declare const serializeAws_json1_1ListInferenceRecommendationsJobsCommand
|
|
|
1771
1775
|
input: ListInferenceRecommendationsJobsCommandInput,
|
|
1772
1776
|
context: __SerdeContext
|
|
1773
1777
|
) => Promise<__HttpRequest>;
|
|
1778
|
+
export declare const serializeAws_json1_1ListInferenceRecommendationsJobStepsCommand: (
|
|
1779
|
+
input: ListInferenceRecommendationsJobStepsCommandInput,
|
|
1780
|
+
context: __SerdeContext
|
|
1781
|
+
) => Promise<__HttpRequest>;
|
|
1774
1782
|
export declare const serializeAws_json1_1ListLabelingJobsCommand: (
|
|
1775
1783
|
input: ListLabelingJobsCommandInput,
|
|
1776
1784
|
context: __SerdeContext
|
|
@@ -2823,6 +2831,10 @@ export declare const deserializeAws_json1_1ListInferenceRecommendationsJobsComma
|
|
|
2823
2831
|
output: __HttpResponse,
|
|
2824
2832
|
context: __SerdeContext
|
|
2825
2833
|
) => Promise<ListInferenceRecommendationsJobsCommandOutput>;
|
|
2834
|
+
export declare const deserializeAws_json1_1ListInferenceRecommendationsJobStepsCommand: (
|
|
2835
|
+
output: __HttpResponse,
|
|
2836
|
+
context: __SerdeContext
|
|
2837
|
+
) => Promise<ListInferenceRecommendationsJobStepsCommandOutput>;
|
|
2826
2838
|
export declare const deserializeAws_json1_1ListLabelingJobsCommand: (
|
|
2827
2839
|
output: __HttpResponse,
|
|
2828
2840
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.196.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,9 +19,9 @@
|
|
|
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.
|
|
22
|
+
"@aws-sdk/client-sts": "3.196.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.193.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.196.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.193.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.193.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.193.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.188.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.193.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-node": "3.193.0",
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.196.0",
|
|
51
51
|
"@aws-sdk/util-user-agent-browser": "3.193.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-node": "3.193.0",
|
|
53
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|