@aws-sdk/client-sagemaker 3.193.0 → 3.195.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 +22 -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 +3 -3
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/models/models_1.js +6 -10
- package/dist-cjs/models/models_2.js +42 -42
- package/dist-cjs/models/models_3.js +41 -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 +150 -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 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_1.js +3 -8
- package/dist-es/models/models_2.js +30 -31
- package/dist-es/models/models_3.js +31 -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 +140 -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 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +4 -3
- package/dist-types/models/models_1.d.ts +17 -7
- package/dist-types/models/models_2.d.ts +144 -138
- package/dist-types/models/models_3.d.ts +138 -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 +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +5 -7
- package/dist-types/ts3.4/models/models_2.d.ts +61 -60
- package/dist-types/ts3.4/models/models_3.d.ts +59 -2
- 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 +3 -3
|
@@ -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";
|
|
@@ -19,7 +19,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
19
19
|
defaultSigningName: string;
|
|
20
20
|
};
|
|
21
21
|
export interface EndpointParameters extends __EndpointParameters {
|
|
22
|
-
Region
|
|
22
|
+
Region?: string;
|
|
23
23
|
UseDualStack?: boolean;
|
|
24
24
|
UseFIPS?: boolean;
|
|
25
25
|
Endpoint?: string;
|
|
@@ -320,6 +320,9 @@ export interface EndpointInputConfiguration {
|
|
|
320
320
|
InferenceSpecificationName?: string;
|
|
321
321
|
EnvironmentParameterRanges?: EnvironmentParameterRanges;
|
|
322
322
|
}
|
|
323
|
+
export interface EndpointInfo {
|
|
324
|
+
EndpointName: string | undefined;
|
|
325
|
+
}
|
|
323
326
|
export interface RecommendationJobResourceLimit {
|
|
324
327
|
MaxNumberOfTests?: number;
|
|
325
328
|
MaxParallelOfTests?: number;
|
|
@@ -344,6 +347,7 @@ export interface RecommendationJobInputConfig {
|
|
|
344
347
|
EndpointConfigurations?: EndpointInputConfiguration[];
|
|
345
348
|
VolumeKmsKeyId?: string;
|
|
346
349
|
ContainerConfig?: RecommendationJobContainerConfig;
|
|
350
|
+
Endpoints?: EndpointInfo[];
|
|
347
351
|
}
|
|
348
352
|
export declare enum RecommendationJobType {
|
|
349
353
|
ADVANCED = "Advanced",
|
|
@@ -1792,13 +1796,6 @@ export declare enum EndpointStatus {
|
|
|
1792
1796
|
SYSTEM_UPDATING = "SystemUpdating",
|
|
1793
1797
|
UPDATING = "Updating",
|
|
1794
1798
|
}
|
|
1795
|
-
export declare enum VariantStatus {
|
|
1796
|
-
ACTIVATING_TRAFFIC = "ActivatingTraffic",
|
|
1797
|
-
BAKING = "Baking",
|
|
1798
|
-
CREATING = "Creating",
|
|
1799
|
-
DELETING = "Deleting",
|
|
1800
|
-
UPDATING = "Updating",
|
|
1801
|
-
}
|
|
1802
1799
|
export declare const CreateFeatureGroupRequestFilterSensitiveLog: (
|
|
1803
1800
|
obj: CreateFeatureGroupRequest
|
|
1804
1801
|
) => any;
|
|
@@ -1909,6 +1906,7 @@ export declare const EnvironmentParameterRangesFilterSensitiveLog: (
|
|
|
1909
1906
|
export declare const EndpointInputConfigurationFilterSensitiveLog: (
|
|
1910
1907
|
obj: EndpointInputConfiguration
|
|
1911
1908
|
) => any;
|
|
1909
|
+
export declare const EndpointInfoFilterSensitiveLog: (obj: EndpointInfo) => any;
|
|
1912
1910
|
export declare const RecommendationJobResourceLimitFilterSensitiveLog: (
|
|
1913
1911
|
obj: RecommendationJobResourceLimit
|
|
1914
1912
|
) => any;
|
|
@@ -81,6 +81,7 @@ import {
|
|
|
81
81
|
DomainStatus,
|
|
82
82
|
DriftCheckBaselines,
|
|
83
83
|
EdgePackagingJobStatus,
|
|
84
|
+
EndpointInfo,
|
|
84
85
|
EndpointStatus,
|
|
85
86
|
ExperimentConfig,
|
|
86
87
|
FlowDefinitionOutputConfig,
|
|
@@ -140,8 +141,14 @@ import {
|
|
|
140
141
|
TrialComponentArtifact,
|
|
141
142
|
TrialComponentParameterValue,
|
|
142
143
|
TrialComponentStatus,
|
|
143
|
-
VariantStatus,
|
|
144
144
|
} from "./models_1";
|
|
145
|
+
export declare enum VariantStatus {
|
|
146
|
+
ACTIVATING_TRAFFIC = "ActivatingTraffic",
|
|
147
|
+
BAKING = "Baking",
|
|
148
|
+
CREATING = "Creating",
|
|
149
|
+
DELETING = "Deleting",
|
|
150
|
+
UPDATING = "Updating",
|
|
151
|
+
}
|
|
145
152
|
export interface ProductionVariantStatus {
|
|
146
153
|
Status: VariantStatus | string | undefined;
|
|
147
154
|
StatusMessage?: string;
|
|
@@ -443,6 +450,14 @@ export interface DescribeImageVersionResponse {
|
|
|
443
450
|
export interface DescribeInferenceRecommendationsJobRequest {
|
|
444
451
|
JobName: string | undefined;
|
|
445
452
|
}
|
|
453
|
+
export interface InferenceMetrics {
|
|
454
|
+
MaxInvocations: number | undefined;
|
|
455
|
+
ModelLatency: number | undefined;
|
|
456
|
+
}
|
|
457
|
+
export interface EndpointPerformance {
|
|
458
|
+
Metrics: InferenceMetrics | undefined;
|
|
459
|
+
EndpointInfo: EndpointInfo | undefined;
|
|
460
|
+
}
|
|
446
461
|
export interface EndpointOutputConfiguration {
|
|
447
462
|
EndpointName: string | undefined;
|
|
448
463
|
VariantName: string | undefined;
|
|
@@ -491,6 +506,7 @@ export interface DescribeInferenceRecommendationsJobResponse {
|
|
|
491
506
|
InputConfig: RecommendationJobInputConfig | undefined;
|
|
492
507
|
StoppingConditions?: RecommendationJobStoppingConditions;
|
|
493
508
|
InferenceRecommendations?: InferenceRecommendation[];
|
|
509
|
+
EndpointPerformances?: EndpointPerformance[];
|
|
494
510
|
}
|
|
495
511
|
export interface DescribeLabelingJobRequest {
|
|
496
512
|
LabelingJobName: string | undefined;
|
|
@@ -1610,6 +1626,21 @@ export interface InferenceRecommendationsJob {
|
|
|
1610
1626
|
LastModifiedTime: Date | undefined;
|
|
1611
1627
|
FailureReason?: string;
|
|
1612
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
|
+
}
|
|
1613
1644
|
export interface LabelCountersForWorkteam {
|
|
1614
1645
|
HumanLabeled?: number;
|
|
1615
1646
|
PendingHuman?: number;
|
|
@@ -2104,6 +2135,17 @@ export interface ListInferenceRecommendationsJobsResponse {
|
|
|
2104
2135
|
InferenceRecommendationsJobs: InferenceRecommendationsJob[] | undefined;
|
|
2105
2136
|
NextToken?: string;
|
|
2106
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
|
+
}
|
|
2107
2149
|
export declare enum SortBy {
|
|
2108
2150
|
CREATION_TIME = "CreationTime",
|
|
2109
2151
|
NAME = "Name",
|
|
@@ -2204,50 +2246,6 @@ export interface ListModelMetadataRequest {
|
|
|
2204
2246
|
NextToken?: string;
|
|
2205
2247
|
MaxResults?: number;
|
|
2206
2248
|
}
|
|
2207
|
-
export interface ModelMetadataSummary {
|
|
2208
|
-
Domain: string | undefined;
|
|
2209
|
-
Framework: string | undefined;
|
|
2210
|
-
Task: string | undefined;
|
|
2211
|
-
Model: string | undefined;
|
|
2212
|
-
FrameworkVersion: string | undefined;
|
|
2213
|
-
}
|
|
2214
|
-
export interface ListModelMetadataResponse {
|
|
2215
|
-
ModelMetadataSummaries: ModelMetadataSummary[] | undefined;
|
|
2216
|
-
NextToken?: string;
|
|
2217
|
-
}
|
|
2218
|
-
export declare enum ModelPackageGroupSortBy {
|
|
2219
|
-
CREATION_TIME = "CreationTime",
|
|
2220
|
-
NAME = "Name",
|
|
2221
|
-
}
|
|
2222
|
-
export interface ListModelPackageGroupsInput {
|
|
2223
|
-
CreationTimeAfter?: Date;
|
|
2224
|
-
CreationTimeBefore?: Date;
|
|
2225
|
-
MaxResults?: number;
|
|
2226
|
-
NameContains?: string;
|
|
2227
|
-
NextToken?: string;
|
|
2228
|
-
SortBy?: ModelPackageGroupSortBy | string;
|
|
2229
|
-
SortOrder?: SortOrder | string;
|
|
2230
|
-
}
|
|
2231
|
-
export interface ModelPackageGroupSummary {
|
|
2232
|
-
ModelPackageGroupName: string | undefined;
|
|
2233
|
-
ModelPackageGroupArn: string | undefined;
|
|
2234
|
-
ModelPackageGroupDescription?: string;
|
|
2235
|
-
CreationTime: Date | undefined;
|
|
2236
|
-
ModelPackageGroupStatus: ModelPackageGroupStatus | string | undefined;
|
|
2237
|
-
}
|
|
2238
|
-
export interface ListModelPackageGroupsOutput {
|
|
2239
|
-
ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
|
|
2240
|
-
NextToken?: string;
|
|
2241
|
-
}
|
|
2242
|
-
export declare enum ModelPackageType {
|
|
2243
|
-
BOTH = "Both",
|
|
2244
|
-
UNVERSIONED = "Unversioned",
|
|
2245
|
-
VERSIONED = "Versioned",
|
|
2246
|
-
}
|
|
2247
|
-
export declare enum ModelPackageSortBy {
|
|
2248
|
-
CREATION_TIME = "CreationTime",
|
|
2249
|
-
NAME = "Name",
|
|
2250
|
-
}
|
|
2251
2249
|
export declare const ProductionVariantStatusFilterSensitiveLog: (
|
|
2252
2250
|
obj: ProductionVariantStatus
|
|
2253
2251
|
) => any;
|
|
@@ -2347,6 +2345,12 @@ export declare const DescribeImageVersionResponseFilterSensitiveLog: (
|
|
|
2347
2345
|
export declare const DescribeInferenceRecommendationsJobRequestFilterSensitiveLog: (
|
|
2348
2346
|
obj: DescribeInferenceRecommendationsJobRequest
|
|
2349
2347
|
) => any;
|
|
2348
|
+
export declare const InferenceMetricsFilterSensitiveLog: (
|
|
2349
|
+
obj: InferenceMetrics
|
|
2350
|
+
) => any;
|
|
2351
|
+
export declare const EndpointPerformanceFilterSensitiveLog: (
|
|
2352
|
+
obj: EndpointPerformance
|
|
2353
|
+
) => any;
|
|
2350
2354
|
export declare const EndpointOutputConfigurationFilterSensitiveLog: (
|
|
2351
2355
|
obj: EndpointOutputConfiguration
|
|
2352
2356
|
) => any;
|
|
@@ -2705,6 +2709,12 @@ export declare const ImageVersionFilterSensitiveLog: (obj: ImageVersion) => any;
|
|
|
2705
2709
|
export declare const InferenceRecommendationsJobFilterSensitiveLog: (
|
|
2706
2710
|
obj: InferenceRecommendationsJob
|
|
2707
2711
|
) => any;
|
|
2712
|
+
export declare const RecommendationJobInferenceBenchmarkFilterSensitiveLog: (
|
|
2713
|
+
obj: RecommendationJobInferenceBenchmark
|
|
2714
|
+
) => any;
|
|
2715
|
+
export declare const InferenceRecommendationsJobStepFilterSensitiveLog: (
|
|
2716
|
+
obj: InferenceRecommendationsJobStep
|
|
2717
|
+
) => any;
|
|
2708
2718
|
export declare const LabelCountersForWorkteamFilterSensitiveLog: (
|
|
2709
2719
|
obj: LabelCountersForWorkteam
|
|
2710
2720
|
) => any;
|
|
@@ -2885,6 +2895,12 @@ export declare const ListInferenceRecommendationsJobsRequestFilterSensitiveLog:
|
|
|
2885
2895
|
export declare const ListInferenceRecommendationsJobsResponseFilterSensitiveLog: (
|
|
2886
2896
|
obj: ListInferenceRecommendationsJobsResponse
|
|
2887
2897
|
) => any;
|
|
2898
|
+
export declare const ListInferenceRecommendationsJobStepsRequestFilterSensitiveLog: (
|
|
2899
|
+
obj: ListInferenceRecommendationsJobStepsRequest
|
|
2900
|
+
) => any;
|
|
2901
|
+
export declare const ListInferenceRecommendationsJobStepsResponseFilterSensitiveLog: (
|
|
2902
|
+
obj: ListInferenceRecommendationsJobStepsResponse
|
|
2903
|
+
) => any;
|
|
2888
2904
|
export declare const ListLabelingJobsRequestFilterSensitiveLog: (
|
|
2889
2905
|
obj: ListLabelingJobsRequest
|
|
2890
2906
|
) => any;
|
|
@@ -2924,18 +2940,3 @@ export declare const ModelMetadataSearchExpressionFilterSensitiveLog: (
|
|
|
2924
2940
|
export declare const ListModelMetadataRequestFilterSensitiveLog: (
|
|
2925
2941
|
obj: ListModelMetadataRequest
|
|
2926
2942
|
) => any;
|
|
2927
|
-
export declare const ModelMetadataSummaryFilterSensitiveLog: (
|
|
2928
|
-
obj: ModelMetadataSummary
|
|
2929
|
-
) => any;
|
|
2930
|
-
export declare const ListModelMetadataResponseFilterSensitiveLog: (
|
|
2931
|
-
obj: ListModelMetadataResponse
|
|
2932
|
-
) => any;
|
|
2933
|
-
export declare const ListModelPackageGroupsInputFilterSensitiveLog: (
|
|
2934
|
-
obj: ListModelPackageGroupsInput
|
|
2935
|
-
) => any;
|
|
2936
|
-
export declare const ModelPackageGroupSummaryFilterSensitiveLog: (
|
|
2937
|
-
obj: ModelPackageGroupSummary
|
|
2938
|
-
) => any;
|
|
2939
|
-
export declare const ListModelPackageGroupsOutputFilterSensitiveLog: (
|
|
2940
|
-
obj: ListModelPackageGroupsOutput
|
|
2941
|
-
) => any;
|
|
@@ -96,9 +96,7 @@ import {
|
|
|
96
96
|
LineageType,
|
|
97
97
|
MetricData,
|
|
98
98
|
ModelPackageGroupStatus,
|
|
99
|
-
ModelPackageSortBy,
|
|
100
99
|
ModelPackageStatusDetails,
|
|
101
|
-
ModelPackageType,
|
|
102
100
|
MonitoringExecutionSummary,
|
|
103
101
|
MonitoringJobDefinitionSortKey,
|
|
104
102
|
MonitoringJobDefinitionSummary,
|
|
@@ -128,6 +126,50 @@ import {
|
|
|
128
126
|
Workforce,
|
|
129
127
|
Workteam,
|
|
130
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
|
+
}
|
|
160
|
+
export interface ListModelPackageGroupsOutput {
|
|
161
|
+
ModelPackageGroupSummaryList: ModelPackageGroupSummary[] | undefined;
|
|
162
|
+
NextToken?: string;
|
|
163
|
+
}
|
|
164
|
+
export declare enum ModelPackageType {
|
|
165
|
+
BOTH = "Both",
|
|
166
|
+
UNVERSIONED = "Unversioned",
|
|
167
|
+
VERSIONED = "Versioned",
|
|
168
|
+
}
|
|
169
|
+
export declare enum ModelPackageSortBy {
|
|
170
|
+
CREATION_TIME = "CreationTime",
|
|
171
|
+
NAME = "Name",
|
|
172
|
+
}
|
|
131
173
|
export interface ListModelPackagesInput {
|
|
132
174
|
CreationTimeAfter?: Date;
|
|
133
175
|
CreationTimeBefore?: Date;
|
|
@@ -1420,6 +1462,21 @@ export interface SearchRequest {
|
|
|
1420
1462
|
NextToken?: string;
|
|
1421
1463
|
MaxResults?: number;
|
|
1422
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;
|
|
1477
|
+
export declare const ListModelPackageGroupsOutputFilterSensitiveLog: (
|
|
1478
|
+
obj: ListModelPackageGroupsOutput
|
|
1479
|
+
) => any;
|
|
1423
1480
|
export declare const ListModelPackagesInputFilterSensitiveLog: (
|
|
1424
1481
|
obj: ListModelPackagesInput
|
|
1425
1482
|
) => 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.195.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,7 +19,7 @@
|
|
|
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.194.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.193.0",
|
|
24
24
|
"@aws-sdk/credential-provider-node": "3.193.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "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.194.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",
|