@aws-sdk/client-sagemaker 3.844.0 → 3.846.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/README.md +16 -0
- package/dist-cjs/index.js +223 -44
- package/dist-es/SageMaker.js +4 -0
- package/dist-es/commands/ListPipelineVersionsCommand.js +22 -0
- package/dist-es/commands/SearchCommand.js +1 -1
- package/dist-es/commands/UpdatePipelineVersionCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +0 -5
- package/dist-es/models/models_1.js +5 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/models/models_3.js +1 -10
- package/dist-es/models/models_4.js +10 -11
- package/dist-es/models/models_5.js +12 -0
- package/dist-es/pagination/ListPipelineVersionsPaginator.js +4 -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 +14 -0
- package/dist-types/SageMakerClient.d.ts +4 -2
- package/dist-types/commands/BatchDeleteClusterNodesCommand.d.ts +1 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +55 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +59 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribePipelineCommand.d.ts +3 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +1 -0
- package/dist-types/commands/GetSearchSuggestionsCommand.d.ts +1 -1
- package/dist-types/commands/ListAppsCommand.d.ts +2 -1
- package/dist-types/commands/ListArtifactsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineVersionsCommand.d.ts +90 -0
- package/dist-types/commands/SearchCommand.d.ts +17 -3
- package/dist-types/commands/SearchTrainingPlanOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/SendPipelineExecutionStepFailureCommand.d.ts +1 -2
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +55 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +1 -0
- package/dist-types/commands/UpdatePipelineVersionCommand.d.ts +82 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +183 -130
- package/dist-types/models/models_1.d.ts +133 -87
- package/dist-types/models/models_2.d.ts +104 -164
- package/dist-types/models/models_3.d.ts +191 -120
- package/dist-types/models/models_4.d.ts +274 -394
- package/dist-types/models/models_5.d.ts +442 -4
- package/dist-types/pagination/ListPipelineVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/SageMaker.d.ts +34 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DescribeEndpointConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchTrainingPlanOfferingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendPipelineExecutionStepFailureCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdatePipelineVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +41 -34
- package/dist-types/ts3.4/models/models_1.d.ts +40 -27
- package/dist-types/ts3.4/models/models_2.d.ts +36 -44
- package/dist-types/ts3.4/models/models_3.d.ts +48 -39
- package/dist-types/ts3.4/models/models_4.d.ts +74 -100
- package/dist-types/ts3.4/models/models_5.d.ts +131 -2
- package/dist-types/ts3.4/pagination/ListPipelineVersionsPaginator.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 +24 -0
- package/package.json +11 -11
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
DescribeEndpointConfigInput,
|
|
5
5
|
DescribeEndpointConfigOutput,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_3";
|
|
7
7
|
import {
|
|
8
8
|
SageMakerClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { ListAppsRequest
|
|
3
|
+
import { ListAppsRequest } from "../models/models_3";
|
|
4
|
+
import { ListAppsResponse } from "../models/models_4";
|
|
4
5
|
import {
|
|
5
6
|
SageMakerClientResolvedConfig,
|
|
6
7
|
ServiceInputTypes,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListPipelineVersionsRequest,
|
|
5
|
+
ListPipelineVersionsResponse,
|
|
6
|
+
} from "../models/models_4";
|
|
7
|
+
import {
|
|
8
|
+
SageMakerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../SageMakerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListPipelineVersionsCommandInput
|
|
15
|
+
extends ListPipelineVersionsRequest {}
|
|
16
|
+
export interface ListPipelineVersionsCommandOutput
|
|
17
|
+
extends ListPipelineVersionsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListPipelineVersionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListPipelineVersionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListPipelineVersionsCommandInput,
|
|
24
|
+
ListPipelineVersionsCommandOutput,
|
|
25
|
+
SageMakerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListPipelineVersionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListPipelineVersionsCommandInput,
|
|
33
|
+
ListPipelineVersionsCommandOutput,
|
|
34
|
+
SageMakerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListPipelineVersionsCommand extends ListPipelineVersionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListPipelineVersionsRequest;
|
|
44
|
+
output: ListPipelineVersionsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListPipelineVersionsCommandInput;
|
|
48
|
+
output: ListPipelineVersionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { SearchResponse } from "../models/
|
|
4
|
-
import { SearchRequest } from "../models/models_5";
|
|
3
|
+
import { SearchRequest, SearchResponse } from "../models/models_5";
|
|
5
4
|
import {
|
|
6
5
|
SageMakerClientResolvedConfig,
|
|
7
6
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
SearchTrainingPlanOfferingsRequest,
|
|
5
5
|
SearchTrainingPlanOfferingsResponse,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_5";
|
|
7
7
|
import {
|
|
8
8
|
SageMakerClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
SendPipelineExecutionStepFailureRequest,
|
|
5
|
+
SendPipelineExecutionStepFailureResponse,
|
|
6
|
+
} from "../models/models_5";
|
|
5
7
|
import {
|
|
6
8
|
SageMakerClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdatePipelineVersionRequest,
|
|
5
|
+
UpdatePipelineVersionResponse,
|
|
6
|
+
} from "../models/models_5";
|
|
7
|
+
import {
|
|
8
|
+
SageMakerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../SageMakerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdatePipelineVersionCommandInput
|
|
15
|
+
extends UpdatePipelineVersionRequest {}
|
|
16
|
+
export interface UpdatePipelineVersionCommandOutput
|
|
17
|
+
extends UpdatePipelineVersionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdatePipelineVersionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdatePipelineVersionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdatePipelineVersionCommandInput,
|
|
24
|
+
UpdatePipelineVersionCommandOutput,
|
|
25
|
+
SageMakerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdatePipelineVersionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdatePipelineVersionCommandInput,
|
|
33
|
+
UpdatePipelineVersionCommandOutput,
|
|
34
|
+
SageMakerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdatePipelineVersionCommand extends UpdatePipelineVersionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdatePipelineVersionRequest;
|
|
44
|
+
output: UpdatePipelineVersionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdatePipelineVersionCommandInput;
|
|
48
|
+
output: UpdatePipelineVersionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -265,6 +265,7 @@ export * from "./ListPartnerAppsCommand";
|
|
|
265
265
|
export * from "./ListPipelineExecutionStepsCommand";
|
|
266
266
|
export * from "./ListPipelineExecutionsCommand";
|
|
267
267
|
export * from "./ListPipelineParametersForExecutionCommand";
|
|
268
|
+
export * from "./ListPipelineVersionsCommand";
|
|
268
269
|
export * from "./ListPipelinesCommand";
|
|
269
270
|
export * from "./ListProcessingJobsCommand";
|
|
270
271
|
export * from "./ListProjectsCommand";
|
|
@@ -350,6 +351,7 @@ export * from "./UpdateNotebookInstanceLifecycleConfigCommand";
|
|
|
350
351
|
export * from "./UpdatePartnerAppCommand";
|
|
351
352
|
export * from "./UpdatePipelineCommand";
|
|
352
353
|
export * from "./UpdatePipelineExecutionCommand";
|
|
354
|
+
export * from "./UpdatePipelineVersionCommand";
|
|
353
355
|
export * from "./UpdateProjectCommand";
|
|
354
356
|
export * from "./UpdateSpaceCommand";
|
|
355
357
|
export * from "./UpdateTrainingJobCommand";
|
|
@@ -1857,7 +1857,7 @@ export interface BatchDataCaptureConfig {
|
|
|
1857
1857
|
}
|
|
1858
1858
|
export interface BatchDeleteClusterNodesRequest {
|
|
1859
1859
|
ClusterName: string | undefined;
|
|
1860
|
-
NodeIds
|
|
1860
|
+
NodeIds?: string[] | undefined;
|
|
1861
1861
|
}
|
|
1862
1862
|
export declare const BatchDeleteClusterNodesErrorCode: {
|
|
1863
1863
|
readonly INVALID_NODE_STATUS: "InvalidNodeStatus";
|
|
@@ -2545,6 +2545,46 @@ export interface ClusterOrchestratorEksConfig {
|
|
|
2545
2545
|
export interface ClusterOrchestrator {
|
|
2546
2546
|
Eks: ClusterOrchestratorEksConfig | undefined;
|
|
2547
2547
|
}
|
|
2548
|
+
export interface FSxLustreConfig {
|
|
2549
|
+
SizeInGiB: number | undefined;
|
|
2550
|
+
PerUnitStorageThroughput: number | undefined;
|
|
2551
|
+
}
|
|
2552
|
+
export interface EnvironmentConfigDetails {
|
|
2553
|
+
FSxLustreConfig?: FSxLustreConfig | undefined;
|
|
2554
|
+
S3OutputPath?: string | undefined;
|
|
2555
|
+
}
|
|
2556
|
+
export interface ClusterRestrictedInstanceGroupDetails {
|
|
2557
|
+
CurrentCount?: number | undefined;
|
|
2558
|
+
TargetCount?: number | undefined;
|
|
2559
|
+
InstanceGroupName?: string | undefined;
|
|
2560
|
+
InstanceType?: ClusterInstanceType | undefined;
|
|
2561
|
+
ExecutionRole?: string | undefined;
|
|
2562
|
+
ThreadsPerCore?: number | undefined;
|
|
2563
|
+
InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
|
|
2564
|
+
OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
|
|
2565
|
+
Status?: InstanceGroupStatus | undefined;
|
|
2566
|
+
TrainingPlanArn?: string | undefined;
|
|
2567
|
+
TrainingPlanStatus?: string | undefined;
|
|
2568
|
+
OverrideVpcConfig?: VpcConfig | undefined;
|
|
2569
|
+
ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
|
|
2570
|
+
EnvironmentConfig?: EnvironmentConfigDetails | undefined;
|
|
2571
|
+
}
|
|
2572
|
+
export interface EnvironmentConfig {
|
|
2573
|
+
FSxLustreConfig?: FSxLustreConfig | undefined;
|
|
2574
|
+
}
|
|
2575
|
+
export interface ClusterRestrictedInstanceGroupSpecification {
|
|
2576
|
+
InstanceCount: number | undefined;
|
|
2577
|
+
InstanceGroupName: string | undefined;
|
|
2578
|
+
InstanceType: ClusterInstanceType | undefined;
|
|
2579
|
+
ExecutionRole: string | undefined;
|
|
2580
|
+
ThreadsPerCore?: number | undefined;
|
|
2581
|
+
InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
|
|
2582
|
+
OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
|
|
2583
|
+
TrainingPlanArn?: string | undefined;
|
|
2584
|
+
OverrideVpcConfig?: VpcConfig | undefined;
|
|
2585
|
+
ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
|
|
2586
|
+
EnvironmentConfig: EnvironmentConfig | undefined;
|
|
2587
|
+
}
|
|
2548
2588
|
export declare const SchedulerResourceStatus: {
|
|
2549
2589
|
readonly CREATED: "Created";
|
|
2550
2590
|
readonly CREATE_FAILED: "CreateFailed";
|
|
@@ -2776,36 +2816,3 @@ export declare const PreemptTeamTasks: {
|
|
|
2776
2816
|
};
|
|
2777
2817
|
export type PreemptTeamTasks =
|
|
2778
2818
|
(typeof PreemptTeamTasks)[keyof typeof PreemptTeamTasks];
|
|
2779
|
-
export declare const ResourceSharingStrategy: {
|
|
2780
|
-
readonly DONTLEND: "DontLend";
|
|
2781
|
-
readonly LEND: "Lend";
|
|
2782
|
-
readonly LENDANDBORROW: "LendAndBorrow";
|
|
2783
|
-
};
|
|
2784
|
-
export type ResourceSharingStrategy =
|
|
2785
|
-
(typeof ResourceSharingStrategy)[keyof typeof ResourceSharingStrategy];
|
|
2786
|
-
export interface ResourceSharingConfig {
|
|
2787
|
-
Strategy: ResourceSharingStrategy | undefined;
|
|
2788
|
-
BorrowLimit?: number | undefined;
|
|
2789
|
-
}
|
|
2790
|
-
export interface ComputeQuotaConfig {
|
|
2791
|
-
ComputeQuotaResources?: ComputeQuotaResourceConfig[] | undefined;
|
|
2792
|
-
ResourceSharingConfig?: ResourceSharingConfig | undefined;
|
|
2793
|
-
PreemptTeamTasks?: PreemptTeamTasks | undefined;
|
|
2794
|
-
}
|
|
2795
|
-
export interface ComputeQuotaTarget {
|
|
2796
|
-
TeamName: string | undefined;
|
|
2797
|
-
FairShareWeight?: number | undefined;
|
|
2798
|
-
}
|
|
2799
|
-
export interface ComputeQuotaSummary {
|
|
2800
|
-
ComputeQuotaArn: string | undefined;
|
|
2801
|
-
ComputeQuotaId: string | undefined;
|
|
2802
|
-
Name: string | undefined;
|
|
2803
|
-
ComputeQuotaVersion?: number | undefined;
|
|
2804
|
-
Status: SchedulerResourceStatus | undefined;
|
|
2805
|
-
ClusterArn?: string | undefined;
|
|
2806
|
-
ComputeQuotaConfig?: ComputeQuotaConfig | undefined;
|
|
2807
|
-
ComputeQuotaTarget: ComputeQuotaTarget | undefined;
|
|
2808
|
-
ActivationState?: ActivationState | undefined;
|
|
2809
|
-
CreationTime: Date | undefined;
|
|
2810
|
-
LastModifiedTime?: Date | undefined;
|
|
2811
|
-
}
|
|
@@ -36,7 +36,6 @@ import {
|
|
|
36
36
|
AwsManagedHumanLoopRequestSource,
|
|
37
37
|
BatchTransformInput,
|
|
38
38
|
BestObjectiveNotImproving,
|
|
39
|
-
Bias,
|
|
40
39
|
BlueGreenUpdatePolicy,
|
|
41
40
|
CanvasAppSettings,
|
|
42
41
|
CapacityReservationPreference,
|
|
@@ -53,14 +52,14 @@ import {
|
|
|
53
52
|
ClusterInstanceGroupSpecification,
|
|
54
53
|
ClusterNodeRecovery,
|
|
55
54
|
ClusterOrchestrator,
|
|
55
|
+
ClusterRestrictedInstanceGroupSpecification,
|
|
56
56
|
CodeEditorAppImageConfig,
|
|
57
57
|
CodeEditorAppSettings,
|
|
58
58
|
CodeRepository,
|
|
59
59
|
CollectionConfig,
|
|
60
60
|
CollectionType,
|
|
61
61
|
CompleteOnConvergence,
|
|
62
|
-
|
|
63
|
-
ComputeQuotaTarget,
|
|
62
|
+
ComputeQuotaResourceConfig,
|
|
64
63
|
CustomImage,
|
|
65
64
|
FeatureStatus,
|
|
66
65
|
GitConfig,
|
|
@@ -71,12 +70,14 @@ import {
|
|
|
71
70
|
MetricsSource,
|
|
72
71
|
ModelDataSource,
|
|
73
72
|
OutputDataConfig,
|
|
73
|
+
PreemptTeamTasks,
|
|
74
74
|
ProblemType,
|
|
75
75
|
ProcessingS3DataDistributionType,
|
|
76
76
|
ProcessingS3InputMode,
|
|
77
77
|
ProductionVariantInstanceType,
|
|
78
78
|
ResourceConfig,
|
|
79
79
|
ResourceSpec,
|
|
80
|
+
SchedulerResourceStatus,
|
|
80
81
|
StoppingCondition,
|
|
81
82
|
Tag,
|
|
82
83
|
TargetDevice,
|
|
@@ -88,6 +89,39 @@ import {
|
|
|
88
89
|
VpcConfig,
|
|
89
90
|
} from "./models_0";
|
|
90
91
|
import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
|
|
92
|
+
export declare const ResourceSharingStrategy: {
|
|
93
|
+
readonly DONTLEND: "DontLend";
|
|
94
|
+
readonly LEND: "Lend";
|
|
95
|
+
readonly LENDANDBORROW: "LendAndBorrow";
|
|
96
|
+
};
|
|
97
|
+
export type ResourceSharingStrategy =
|
|
98
|
+
(typeof ResourceSharingStrategy)[keyof typeof ResourceSharingStrategy];
|
|
99
|
+
export interface ResourceSharingConfig {
|
|
100
|
+
Strategy: ResourceSharingStrategy | undefined;
|
|
101
|
+
BorrowLimit?: number | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface ComputeQuotaConfig {
|
|
104
|
+
ComputeQuotaResources?: ComputeQuotaResourceConfig[] | undefined;
|
|
105
|
+
ResourceSharingConfig?: ResourceSharingConfig | undefined;
|
|
106
|
+
PreemptTeamTasks?: PreemptTeamTasks | undefined;
|
|
107
|
+
}
|
|
108
|
+
export interface ComputeQuotaTarget {
|
|
109
|
+
TeamName: string | undefined;
|
|
110
|
+
FairShareWeight?: number | undefined;
|
|
111
|
+
}
|
|
112
|
+
export interface ComputeQuotaSummary {
|
|
113
|
+
ComputeQuotaArn: string | undefined;
|
|
114
|
+
ComputeQuotaId: string | undefined;
|
|
115
|
+
Name: string | undefined;
|
|
116
|
+
ComputeQuotaVersion?: number | undefined;
|
|
117
|
+
Status: SchedulerResourceStatus | undefined;
|
|
118
|
+
ClusterArn?: string | undefined;
|
|
119
|
+
ComputeQuotaConfig?: ComputeQuotaConfig | undefined;
|
|
120
|
+
ComputeQuotaTarget: ComputeQuotaTarget | undefined;
|
|
121
|
+
ActivationState?: ActivationState | undefined;
|
|
122
|
+
CreationTime: Date | undefined;
|
|
123
|
+
LastModifiedTime?: Date | undefined;
|
|
124
|
+
}
|
|
91
125
|
export declare const ConditionOutcome: {
|
|
92
126
|
readonly FALSE: "False";
|
|
93
127
|
readonly TRUE: "True";
|
|
@@ -346,6 +380,9 @@ export interface CreateAutoMLJobV2Response {
|
|
|
346
380
|
export interface CreateClusterRequest {
|
|
347
381
|
ClusterName: string | undefined;
|
|
348
382
|
InstanceGroups?: ClusterInstanceGroupSpecification[] | undefined;
|
|
383
|
+
RestrictedInstanceGroups?:
|
|
384
|
+
| ClusterRestrictedInstanceGroupSpecification[]
|
|
385
|
+
| undefined;
|
|
349
386
|
VpcConfig?: VpcConfig | undefined;
|
|
350
387
|
Tags?: Tag[] | undefined;
|
|
351
388
|
Orchestrator?: ClusterOrchestrator | undefined;
|
|
@@ -2116,30 +2153,6 @@ export interface ModelQuality {
|
|
|
2116
2153
|
Statistics?: MetricsSource | undefined;
|
|
2117
2154
|
Constraints?: MetricsSource | undefined;
|
|
2118
2155
|
}
|
|
2119
|
-
export interface ModelMetrics {
|
|
2120
|
-
ModelQuality?: ModelQuality | undefined;
|
|
2121
|
-
ModelDataQuality?: ModelDataQuality | undefined;
|
|
2122
|
-
Bias?: Bias | undefined;
|
|
2123
|
-
Explainability?: Explainability | undefined;
|
|
2124
|
-
}
|
|
2125
|
-
export interface ModelPackageSecurityConfig {
|
|
2126
|
-
KmsKeyId: string | undefined;
|
|
2127
|
-
}
|
|
2128
|
-
export declare const SkipModelValidation: {
|
|
2129
|
-
readonly ALL: "All";
|
|
2130
|
-
readonly NONE: "None";
|
|
2131
|
-
};
|
|
2132
|
-
export type SkipModelValidation =
|
|
2133
|
-
(typeof SkipModelValidation)[keyof typeof SkipModelValidation];
|
|
2134
|
-
export interface SourceAlgorithm {
|
|
2135
|
-
ModelDataUrl?: string | undefined;
|
|
2136
|
-
ModelDataSource?: ModelDataSource | undefined;
|
|
2137
|
-
ModelDataETag?: string | undefined;
|
|
2138
|
-
AlgorithmName: string | undefined;
|
|
2139
|
-
}
|
|
2140
|
-
export interface SourceAlgorithmSpecification {
|
|
2141
|
-
SourceAlgorithms: SourceAlgorithm[] | undefined;
|
|
2142
|
-
}
|
|
2143
2156
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
2144
2157
|
obj: CreateModelCardRequest
|
|
2145
2158
|
) => any;
|
|
@@ -36,6 +36,7 @@ import {
|
|
|
36
36
|
BatchDataCaptureConfig,
|
|
37
37
|
BatchStrategy,
|
|
38
38
|
BatchTransformInput,
|
|
39
|
+
Bias,
|
|
39
40
|
CapacityReservationPreference,
|
|
40
41
|
CaptureStatus,
|
|
41
42
|
CfnCreateTemplateProvider,
|
|
@@ -45,6 +46,7 @@ import {
|
|
|
45
46
|
ClusterNodeDetails,
|
|
46
47
|
ClusterNodeRecovery,
|
|
47
48
|
ClusterOrchestrator,
|
|
49
|
+
ClusterRestrictedInstanceGroupDetails,
|
|
48
50
|
ClusterStatus,
|
|
49
51
|
CodeEditorAppImageConfig,
|
|
50
52
|
CodeRepository,
|
|
@@ -52,14 +54,13 @@ import {
|
|
|
52
54
|
CognitoMemberDefinition,
|
|
53
55
|
CollectionConfiguration,
|
|
54
56
|
CompilationJobStatus,
|
|
55
|
-
ComputeQuotaConfig,
|
|
56
|
-
ComputeQuotaTarget,
|
|
57
57
|
FeatureStatus,
|
|
58
58
|
GitConfig,
|
|
59
59
|
InferenceSpecification,
|
|
60
60
|
JupyterLabAppImageConfig,
|
|
61
61
|
KernelGatewayImageConfig,
|
|
62
62
|
ModelApprovalStatus,
|
|
63
|
+
ModelDataSource,
|
|
63
64
|
OutputDataConfig,
|
|
64
65
|
ProblemType,
|
|
65
66
|
ProcessingS3DataDistributionType,
|
|
@@ -79,8 +80,9 @@ import {
|
|
|
79
80
|
} from "./models_0";
|
|
80
81
|
import {
|
|
81
82
|
_InstanceType,
|
|
83
|
+
ComputeQuotaConfig,
|
|
84
|
+
ComputeQuotaTarget,
|
|
82
85
|
ContextSource,
|
|
83
|
-
DataCaptureConfig,
|
|
84
86
|
DataQualityAppSpecification,
|
|
85
87
|
DataQualityBaselineConfig,
|
|
86
88
|
DataQualityJobInput,
|
|
@@ -94,17 +96,18 @@ import {
|
|
|
94
96
|
EdgeOutputConfig,
|
|
95
97
|
EdgePresetDeploymentType,
|
|
96
98
|
EndpointInput,
|
|
99
|
+
Explainability,
|
|
97
100
|
ExplainerConfig,
|
|
98
101
|
HubContentType,
|
|
99
102
|
InputConfig,
|
|
100
103
|
JupyterServerAppSettings,
|
|
101
104
|
KernelGatewayAppSettings,
|
|
102
105
|
MetadataProperties,
|
|
106
|
+
ModelDataQuality,
|
|
103
107
|
ModelDeployConfig,
|
|
104
108
|
ModelLifeCycle,
|
|
105
|
-
ModelMetrics,
|
|
106
109
|
ModelPackageModelCard,
|
|
107
|
-
|
|
110
|
+
ModelQuality,
|
|
108
111
|
MonitoringConstraintsResource,
|
|
109
112
|
MonitoringGroundTruthS3Input,
|
|
110
113
|
MonitoringNetworkConfig,
|
|
@@ -116,19 +119,40 @@ import {
|
|
|
116
119
|
OutputConfig,
|
|
117
120
|
ProcessingInstanceType,
|
|
118
121
|
ProcessingS3UploadMode,
|
|
119
|
-
ProductionVariant,
|
|
120
122
|
ProductionVariantAcceleratorType,
|
|
121
123
|
ProductionVariantManagedInstanceScaling,
|
|
122
124
|
ProductionVariantRoutingConfig,
|
|
123
125
|
ProductionVariantServerlessConfig,
|
|
124
126
|
RetryStrategy,
|
|
125
127
|
SchedulerConfig,
|
|
126
|
-
SkipModelValidation,
|
|
127
|
-
SourceAlgorithmSpecification,
|
|
128
128
|
TagPropagation,
|
|
129
129
|
TrainingSpecification,
|
|
130
130
|
UserSettings,
|
|
131
131
|
} from "./models_1";
|
|
132
|
+
export interface ModelMetrics {
|
|
133
|
+
ModelQuality?: ModelQuality | undefined;
|
|
134
|
+
ModelDataQuality?: ModelDataQuality | undefined;
|
|
135
|
+
Bias?: Bias | undefined;
|
|
136
|
+
Explainability?: Explainability | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface ModelPackageSecurityConfig {
|
|
139
|
+
KmsKeyId: string | undefined;
|
|
140
|
+
}
|
|
141
|
+
export declare const SkipModelValidation: {
|
|
142
|
+
readonly ALL: "All";
|
|
143
|
+
readonly NONE: "None";
|
|
144
|
+
};
|
|
145
|
+
export type SkipModelValidation =
|
|
146
|
+
(typeof SkipModelValidation)[keyof typeof SkipModelValidation];
|
|
147
|
+
export interface SourceAlgorithm {
|
|
148
|
+
ModelDataUrl?: string | undefined;
|
|
149
|
+
ModelDataSource?: ModelDataSource | undefined;
|
|
150
|
+
ModelDataETag?: string | undefined;
|
|
151
|
+
AlgorithmName: string | undefined;
|
|
152
|
+
}
|
|
153
|
+
export interface SourceAlgorithmSpecification {
|
|
154
|
+
SourceAlgorithms: SourceAlgorithm[] | undefined;
|
|
155
|
+
}
|
|
132
156
|
export interface ModelPackageValidationProfile {
|
|
133
157
|
ProfileName: string | undefined;
|
|
134
158
|
TransformJobDefinition: TransformJobDefinition | undefined;
|
|
@@ -1560,13 +1584,16 @@ export interface DescribeClusterResponse {
|
|
|
1560
1584
|
CreationTime?: Date | undefined;
|
|
1561
1585
|
FailureMessage?: string | undefined;
|
|
1562
1586
|
InstanceGroups: ClusterInstanceGroupDetails[] | undefined;
|
|
1587
|
+
RestrictedInstanceGroups?:
|
|
1588
|
+
| ClusterRestrictedInstanceGroupDetails[]
|
|
1589
|
+
| undefined;
|
|
1563
1590
|
VpcConfig?: VpcConfig | undefined;
|
|
1564
1591
|
Orchestrator?: ClusterOrchestrator | undefined;
|
|
1565
1592
|
NodeRecovery?: ClusterNodeRecovery | undefined;
|
|
1566
1593
|
}
|
|
1567
1594
|
export interface DescribeClusterNodeRequest {
|
|
1568
1595
|
ClusterName: string | undefined;
|
|
1569
|
-
NodeId
|
|
1596
|
+
NodeId?: string | undefined;
|
|
1570
1597
|
}
|
|
1571
1598
|
export interface DescribeClusterNodeResponse {
|
|
1572
1599
|
NodeDetails: ClusterNodeDetails | undefined;
|
|
@@ -1913,41 +1940,6 @@ export interface DescribeEndpointOutput {
|
|
|
1913
1940
|
ExplainerConfig?: ExplainerConfig | undefined;
|
|
1914
1941
|
ShadowProductionVariants?: ProductionVariantSummary[] | undefined;
|
|
1915
1942
|
}
|
|
1916
|
-
export interface DescribeEndpointConfigInput {
|
|
1917
|
-
EndpointConfigName: string | undefined;
|
|
1918
|
-
}
|
|
1919
|
-
export interface DescribeEndpointConfigOutput {
|
|
1920
|
-
EndpointConfigName: string | undefined;
|
|
1921
|
-
EndpointConfigArn: string | undefined;
|
|
1922
|
-
ProductionVariants: ProductionVariant[] | undefined;
|
|
1923
|
-
DataCaptureConfig?: DataCaptureConfig | undefined;
|
|
1924
|
-
KmsKeyId?: string | undefined;
|
|
1925
|
-
CreationTime: Date | undefined;
|
|
1926
|
-
AsyncInferenceConfig?: AsyncInferenceConfig | undefined;
|
|
1927
|
-
ExplainerConfig?: ExplainerConfig | undefined;
|
|
1928
|
-
ShadowProductionVariants?: ProductionVariant[] | undefined;
|
|
1929
|
-
ExecutionRoleArn?: string | undefined;
|
|
1930
|
-
VpcConfig?: VpcConfig | undefined;
|
|
1931
|
-
EnableNetworkIsolation?: boolean | undefined;
|
|
1932
|
-
}
|
|
1933
|
-
export interface DescribeExperimentRequest {
|
|
1934
|
-
ExperimentName: string | undefined;
|
|
1935
|
-
}
|
|
1936
|
-
export interface ExperimentSource {
|
|
1937
|
-
SourceArn: string | undefined;
|
|
1938
|
-
SourceType?: string | undefined;
|
|
1939
|
-
}
|
|
1940
|
-
export interface DescribeExperimentResponse {
|
|
1941
|
-
ExperimentName?: string | undefined;
|
|
1942
|
-
ExperimentArn?: string | undefined;
|
|
1943
|
-
DisplayName?: string | undefined;
|
|
1944
|
-
Source?: ExperimentSource | undefined;
|
|
1945
|
-
Description?: string | undefined;
|
|
1946
|
-
CreationTime?: Date | undefined;
|
|
1947
|
-
CreatedBy?: UserContext | undefined;
|
|
1948
|
-
LastModifiedTime?: Date | undefined;
|
|
1949
|
-
LastModifiedBy?: UserContext | undefined;
|
|
1950
|
-
}
|
|
1951
1943
|
export declare const CreateModelPackageInputFilterSensitiveLog: (
|
|
1952
1944
|
obj: CreateModelPackageInput
|
|
1953
1945
|
) => any;
|