@aws-sdk/client-sagemaker 3.876.0 → 3.879.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/dist-cjs/index.js +44 -15
- package/dist-es/models/models_0.js +13 -14
- package/dist-es/models/models_1.js +14 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/models/models_3.js +0 -5
- package/dist-es/models/models_4.js +5 -4
- package/dist-es/models/models_5.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +10 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +5 -0
- package/dist-types/commands/CreateModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +7 -0
- package/dist-types/commands/DescribeCodeRepositoryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCompilationJobCommand.d.ts +1 -2
- package/dist-types/commands/GetSearchSuggestionsCommand.d.ts +2 -1
- package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateClusterCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +79 -186
- package/dist-types/models/models_1.d.ts +197 -100
- package/dist-types/models/models_2.d.ts +111 -74
- package/dist-types/models/models_3.d.ts +75 -119
- package/dist-types/models/models_4.d.ts +119 -126
- package/dist-types/models/models_5.d.ts +138 -5
- package/dist-types/ts3.4/commands/CreateModelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeCodeRepositoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeCompilationJobCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetSearchSuggestionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +29 -52
- package/dist-types/ts3.4/models/models_1.d.ts +60 -29
- package/dist-types/ts3.4/models/models_2.d.ts +33 -23
- package/dist-types/ts3.4/models/models_3.d.ts +23 -36
- package/dist-types/ts3.4/models/models_4.d.ts +33 -36
- package/dist-types/ts3.4/models/models_5.d.ts +41 -4
- package/package.json +12 -12
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
GetSearchSuggestionsResponse,
|
|
6
|
-
} from "../models/models_3";
|
|
3
|
+
import { GetSearchSuggestionsRequest } from "../models/models_3";
|
|
4
|
+
import { GetSearchSuggestionsResponse } from "../models/models_4";
|
|
7
5
|
import {
|
|
8
6
|
SageMakerClientResolvedConfig,
|
|
9
7
|
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
|
+
ListWorkforcesRequest,
|
|
5
|
+
ListWorkforcesResponse,
|
|
6
|
+
} from "../models/models_5";
|
|
5
7
|
import {
|
|
6
8
|
SageMakerClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -2383,6 +2383,35 @@ export interface ClarifyExplainerConfig {
|
|
|
2383
2383
|
InferenceConfig?: ClarifyInferenceConfig | undefined;
|
|
2384
2384
|
ShapConfig: ClarifyShapConfig | undefined;
|
|
2385
2385
|
}
|
|
2386
|
+
export declare const ClusterAutoScalerType: {
|
|
2387
|
+
readonly KARPENTER: "Karpenter";
|
|
2388
|
+
};
|
|
2389
|
+
export type ClusterAutoScalerType =
|
|
2390
|
+
(typeof ClusterAutoScalerType)[keyof typeof ClusterAutoScalerType];
|
|
2391
|
+
export declare const ClusterAutoScalingMode: {
|
|
2392
|
+
readonly DISABLE: "Disable";
|
|
2393
|
+
readonly ENABLE: "Enable";
|
|
2394
|
+
};
|
|
2395
|
+
export type ClusterAutoScalingMode =
|
|
2396
|
+
(typeof ClusterAutoScalingMode)[keyof typeof ClusterAutoScalingMode];
|
|
2397
|
+
export interface ClusterAutoScalingConfig {
|
|
2398
|
+
Mode: ClusterAutoScalingMode | undefined;
|
|
2399
|
+
AutoScalerType?: ClusterAutoScalerType | undefined;
|
|
2400
|
+
}
|
|
2401
|
+
export declare const ClusterAutoScalingStatus: {
|
|
2402
|
+
readonly CREATING: "Creating";
|
|
2403
|
+
readonly DELETING: "Deleting";
|
|
2404
|
+
readonly FAILED: "Failed";
|
|
2405
|
+
readonly INSERVICE: "InService";
|
|
2406
|
+
};
|
|
2407
|
+
export type ClusterAutoScalingStatus =
|
|
2408
|
+
(typeof ClusterAutoScalingStatus)[keyof typeof ClusterAutoScalingStatus];
|
|
2409
|
+
export interface ClusterAutoScalingConfigOutput {
|
|
2410
|
+
Mode: ClusterAutoScalingMode | undefined;
|
|
2411
|
+
AutoScalerType?: ClusterAutoScalerType | undefined;
|
|
2412
|
+
Status: ClusterAutoScalingStatus | undefined;
|
|
2413
|
+
FailureMessage?: string | undefined;
|
|
2414
|
+
}
|
|
2386
2415
|
export interface ClusterEbsVolumeConfig {
|
|
2387
2416
|
VolumeSizeInGB?: number | undefined;
|
|
2388
2417
|
VolumeKmsKeyId?: string | undefined;
|
|
@@ -2762,55 +2791,3 @@ export interface FSxLustreConfig {
|
|
|
2762
2791
|
SizeInGiB: number | undefined;
|
|
2763
2792
|
PerUnitStorageThroughput: number | undefined;
|
|
2764
2793
|
}
|
|
2765
|
-
export interface EnvironmentConfigDetails {
|
|
2766
|
-
FSxLustreConfig?: FSxLustreConfig | undefined;
|
|
2767
|
-
S3OutputPath?: string | undefined;
|
|
2768
|
-
}
|
|
2769
|
-
export interface ClusterRestrictedInstanceGroupDetails {
|
|
2770
|
-
CurrentCount?: number | undefined;
|
|
2771
|
-
TargetCount?: number | undefined;
|
|
2772
|
-
InstanceGroupName?: string | undefined;
|
|
2773
|
-
InstanceType?: ClusterInstanceType | undefined;
|
|
2774
|
-
ExecutionRole?: string | undefined;
|
|
2775
|
-
ThreadsPerCore?: number | undefined;
|
|
2776
|
-
InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
|
|
2777
|
-
OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
|
|
2778
|
-
Status?: InstanceGroupStatus | undefined;
|
|
2779
|
-
TrainingPlanArn?: string | undefined;
|
|
2780
|
-
TrainingPlanStatus?: string | undefined;
|
|
2781
|
-
OverrideVpcConfig?: VpcConfig | undefined;
|
|
2782
|
-
ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
|
|
2783
|
-
EnvironmentConfig?: EnvironmentConfigDetails | undefined;
|
|
2784
|
-
}
|
|
2785
|
-
export interface EnvironmentConfig {
|
|
2786
|
-
FSxLustreConfig?: FSxLustreConfig | undefined;
|
|
2787
|
-
}
|
|
2788
|
-
export interface ClusterRestrictedInstanceGroupSpecification {
|
|
2789
|
-
InstanceCount: number | undefined;
|
|
2790
|
-
InstanceGroupName: string | undefined;
|
|
2791
|
-
InstanceType: ClusterInstanceType | undefined;
|
|
2792
|
-
ExecutionRole: string | undefined;
|
|
2793
|
-
ThreadsPerCore?: number | undefined;
|
|
2794
|
-
InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
|
|
2795
|
-
OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
|
|
2796
|
-
TrainingPlanArn?: string | undefined;
|
|
2797
|
-
OverrideVpcConfig?: VpcConfig | undefined;
|
|
2798
|
-
ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
|
|
2799
|
-
EnvironmentConfig: EnvironmentConfig | undefined;
|
|
2800
|
-
}
|
|
2801
|
-
export declare const SchedulerResourceStatus: {
|
|
2802
|
-
readonly CREATED: "Created";
|
|
2803
|
-
readonly CREATE_FAILED: "CreateFailed";
|
|
2804
|
-
readonly CREATE_ROLLBACK_FAILED: "CreateRollbackFailed";
|
|
2805
|
-
readonly CREATING: "Creating";
|
|
2806
|
-
readonly DELETED: "Deleted";
|
|
2807
|
-
readonly DELETE_FAILED: "DeleteFailed";
|
|
2808
|
-
readonly DELETE_ROLLBACK_FAILED: "DeleteRollbackFailed";
|
|
2809
|
-
readonly DELETING: "Deleting";
|
|
2810
|
-
readonly UPDATED: "Updated";
|
|
2811
|
-
readonly UPDATE_FAILED: "UpdateFailed";
|
|
2812
|
-
readonly UPDATE_ROLLBACK_FAILED: "UpdateRollbackFailed";
|
|
2813
|
-
readonly UPDATING: "Updating";
|
|
2814
|
-
};
|
|
2815
|
-
export type SchedulerResourceStatus =
|
|
2816
|
-
(typeof SchedulerResourceStatus)[keyof typeof SchedulerResourceStatus];
|
|
@@ -49,15 +49,19 @@ import {
|
|
|
49
49
|
ChannelSpecification,
|
|
50
50
|
CheckpointConfig,
|
|
51
51
|
ClarifyExplainerConfig,
|
|
52
|
+
ClusterAutoScalingConfig,
|
|
52
53
|
ClusterInstanceGroupSpecification,
|
|
54
|
+
ClusterInstanceStorageConfig,
|
|
53
55
|
ClusterInstanceType,
|
|
54
56
|
ClusterNodeProvisioningMode,
|
|
55
57
|
ClusterNodeRecovery,
|
|
56
58
|
ClusterOrchestrator,
|
|
57
|
-
ClusterRestrictedInstanceGroupSpecification,
|
|
58
59
|
CodeEditorAppImageConfig,
|
|
60
|
+
DeepHealthCheckType,
|
|
59
61
|
FeatureStatus,
|
|
62
|
+
FSxLustreConfig,
|
|
60
63
|
InferenceSpecification,
|
|
64
|
+
InstanceGroupStatus,
|
|
61
65
|
JupyterLabAppImageConfig,
|
|
62
66
|
KernelGatewayImageConfig,
|
|
63
67
|
MetricDefinition,
|
|
@@ -69,7 +73,7 @@ import {
|
|
|
69
73
|
ProductionVariantInstanceType,
|
|
70
74
|
ResourceConfig,
|
|
71
75
|
ResourceSpec,
|
|
72
|
-
|
|
76
|
+
ScheduledUpdateConfig,
|
|
73
77
|
StoppingCondition,
|
|
74
78
|
Tag,
|
|
75
79
|
TrainingInputMode,
|
|
@@ -77,6 +81,58 @@ import {
|
|
|
77
81
|
VpcConfig,
|
|
78
82
|
} from "./models_0";
|
|
79
83
|
import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
|
|
84
|
+
export interface EnvironmentConfigDetails {
|
|
85
|
+
FSxLustreConfig?: FSxLustreConfig | undefined;
|
|
86
|
+
S3OutputPath?: string | undefined;
|
|
87
|
+
}
|
|
88
|
+
export interface ClusterRestrictedInstanceGroupDetails {
|
|
89
|
+
CurrentCount?: number | undefined;
|
|
90
|
+
TargetCount?: number | undefined;
|
|
91
|
+
InstanceGroupName?: string | undefined;
|
|
92
|
+
InstanceType?: ClusterInstanceType | undefined;
|
|
93
|
+
ExecutionRole?: string | undefined;
|
|
94
|
+
ThreadsPerCore?: number | undefined;
|
|
95
|
+
InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
|
|
96
|
+
OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
|
|
97
|
+
Status?: InstanceGroupStatus | undefined;
|
|
98
|
+
TrainingPlanArn?: string | undefined;
|
|
99
|
+
TrainingPlanStatus?: string | undefined;
|
|
100
|
+
OverrideVpcConfig?: VpcConfig | undefined;
|
|
101
|
+
ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
|
|
102
|
+
EnvironmentConfig?: EnvironmentConfigDetails | undefined;
|
|
103
|
+
}
|
|
104
|
+
export interface EnvironmentConfig {
|
|
105
|
+
FSxLustreConfig?: FSxLustreConfig | undefined;
|
|
106
|
+
}
|
|
107
|
+
export interface ClusterRestrictedInstanceGroupSpecification {
|
|
108
|
+
InstanceCount: number | undefined;
|
|
109
|
+
InstanceGroupName: string | undefined;
|
|
110
|
+
InstanceType: ClusterInstanceType | undefined;
|
|
111
|
+
ExecutionRole: string | undefined;
|
|
112
|
+
ThreadsPerCore?: number | undefined;
|
|
113
|
+
InstanceStorageConfigs?: ClusterInstanceStorageConfig[] | undefined;
|
|
114
|
+
OnStartDeepHealthChecks?: DeepHealthCheckType[] | undefined;
|
|
115
|
+
TrainingPlanArn?: string | undefined;
|
|
116
|
+
OverrideVpcConfig?: VpcConfig | undefined;
|
|
117
|
+
ScheduledUpdateConfig?: ScheduledUpdateConfig | undefined;
|
|
118
|
+
EnvironmentConfig: EnvironmentConfig | undefined;
|
|
119
|
+
}
|
|
120
|
+
export declare const SchedulerResourceStatus: {
|
|
121
|
+
readonly CREATED: "Created";
|
|
122
|
+
readonly CREATE_FAILED: "CreateFailed";
|
|
123
|
+
readonly CREATE_ROLLBACK_FAILED: "CreateRollbackFailed";
|
|
124
|
+
readonly CREATING: "Creating";
|
|
125
|
+
readonly DELETED: "Deleted";
|
|
126
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
127
|
+
readonly DELETE_ROLLBACK_FAILED: "DeleteRollbackFailed";
|
|
128
|
+
readonly DELETING: "Deleting";
|
|
129
|
+
readonly UPDATED: "Updated";
|
|
130
|
+
readonly UPDATE_FAILED: "UpdateFailed";
|
|
131
|
+
readonly UPDATE_ROLLBACK_FAILED: "UpdateRollbackFailed";
|
|
132
|
+
readonly UPDATING: "Updating";
|
|
133
|
+
};
|
|
134
|
+
export type SchedulerResourceStatus =
|
|
135
|
+
(typeof SchedulerResourceStatus)[keyof typeof SchedulerResourceStatus];
|
|
80
136
|
export interface ClusterSchedulerConfigSummary {
|
|
81
137
|
ClusterSchedulerConfigArn: string | undefined;
|
|
82
138
|
ClusterSchedulerConfigId: string | undefined;
|
|
@@ -594,6 +650,8 @@ export interface CreateClusterRequest {
|
|
|
594
650
|
Orchestrator?: ClusterOrchestrator | undefined;
|
|
595
651
|
NodeRecovery?: ClusterNodeRecovery | undefined;
|
|
596
652
|
NodeProvisioningMode?: ClusterNodeProvisioningMode | undefined;
|
|
653
|
+
ClusterRole?: string | undefined;
|
|
654
|
+
AutoScaling?: ClusterAutoScalingConfig | undefined;
|
|
597
655
|
}
|
|
598
656
|
export interface CreateClusterResponse {
|
|
599
657
|
ClusterArn: string | undefined;
|
|
@@ -2217,30 +2275,3 @@ export interface CreateMlflowTrackingServerRequest {
|
|
|
2217
2275
|
export interface CreateMlflowTrackingServerResponse {
|
|
2218
2276
|
TrackingServerArn?: string | undefined;
|
|
2219
2277
|
}
|
|
2220
|
-
export declare const InferenceExecutionMode: {
|
|
2221
|
-
readonly DIRECT: "Direct";
|
|
2222
|
-
readonly SERIAL: "Serial";
|
|
2223
|
-
};
|
|
2224
|
-
export type InferenceExecutionMode =
|
|
2225
|
-
(typeof InferenceExecutionMode)[keyof typeof InferenceExecutionMode];
|
|
2226
|
-
export interface InferenceExecutionConfig {
|
|
2227
|
-
Mode: InferenceExecutionMode | undefined;
|
|
2228
|
-
}
|
|
2229
|
-
export interface CreateModelInput {
|
|
2230
|
-
ModelName: string | undefined;
|
|
2231
|
-
PrimaryContainer?: ContainerDefinition | undefined;
|
|
2232
|
-
Containers?: ContainerDefinition[] | undefined;
|
|
2233
|
-
InferenceExecutionConfig?: InferenceExecutionConfig | undefined;
|
|
2234
|
-
ExecutionRoleArn?: string | undefined;
|
|
2235
|
-
Tags?: Tag[] | undefined;
|
|
2236
|
-
VpcConfig?: VpcConfig | undefined;
|
|
2237
|
-
EnableNetworkIsolation?: boolean | undefined;
|
|
2238
|
-
}
|
|
2239
|
-
export interface CreateModelOutput {
|
|
2240
|
-
ModelArn: string | undefined;
|
|
2241
|
-
}
|
|
2242
|
-
export interface ModelBiasAppSpecification {
|
|
2243
|
-
ImageUri: string | undefined;
|
|
2244
|
-
ConfigUri: string | undefined;
|
|
2245
|
-
Environment?: Record<string, string> | undefined;
|
|
2246
|
-
}
|
|
@@ -36,13 +36,13 @@ import {
|
|
|
36
36
|
CfnCreateTemplateProvider,
|
|
37
37
|
Channel,
|
|
38
38
|
CheckpointConfig,
|
|
39
|
+
ClusterAutoScalingConfigOutput,
|
|
39
40
|
ClusterEventDetail,
|
|
40
41
|
ClusterInstanceGroupDetails,
|
|
41
42
|
ClusterNodeDetails,
|
|
42
43
|
ClusterNodeProvisioningMode,
|
|
43
44
|
ClusterNodeRecovery,
|
|
44
45
|
ClusterOrchestrator,
|
|
45
|
-
ClusterRestrictedInstanceGroupDetails,
|
|
46
46
|
CodeEditorAppImageConfig,
|
|
47
47
|
FeatureStatus,
|
|
48
48
|
InferenceSpecification,
|
|
@@ -58,7 +58,6 @@ import {
|
|
|
58
58
|
ProductionVariantInstanceType,
|
|
59
59
|
ResourceConfig,
|
|
60
60
|
ResourceSpec,
|
|
61
|
-
SchedulerResourceStatus,
|
|
62
61
|
StoppingCondition,
|
|
63
62
|
Tag,
|
|
64
63
|
TransformInput,
|
|
@@ -70,20 +69,20 @@ import {
|
|
|
70
69
|
} from "./models_0";
|
|
71
70
|
import {
|
|
72
71
|
_InstanceType,
|
|
72
|
+
ClusterRestrictedInstanceGroupDetails,
|
|
73
73
|
ClusterStatus,
|
|
74
74
|
CodeRepository,
|
|
75
75
|
CognitoConfig,
|
|
76
76
|
CognitoMemberDefinition,
|
|
77
77
|
CollectionConfiguration,
|
|
78
|
+
ContainerDefinition,
|
|
78
79
|
DeviceSelectionConfig,
|
|
79
80
|
EdgeDeploymentConfig,
|
|
80
81
|
EndpointInput,
|
|
81
|
-
GitConfig,
|
|
82
82
|
HubContentType,
|
|
83
83
|
JupyterServerAppSettings,
|
|
84
84
|
KernelGatewayAppSettings,
|
|
85
85
|
MetadataProperties,
|
|
86
|
-
ModelBiasAppSpecification,
|
|
87
86
|
ModelDeployConfig,
|
|
88
87
|
MonitoringConstraintsResource,
|
|
89
88
|
MonitoringNetworkConfig,
|
|
@@ -95,9 +94,37 @@ import {
|
|
|
95
94
|
ProcessingS3UploadMode,
|
|
96
95
|
RetryStrategy,
|
|
97
96
|
SchedulerConfig,
|
|
97
|
+
SchedulerResourceStatus,
|
|
98
98
|
TrainingSpecification,
|
|
99
99
|
UserSettings,
|
|
100
100
|
} from "./models_1";
|
|
101
|
+
export declare const InferenceExecutionMode: {
|
|
102
|
+
readonly DIRECT: "Direct";
|
|
103
|
+
readonly SERIAL: "Serial";
|
|
104
|
+
};
|
|
105
|
+
export type InferenceExecutionMode =
|
|
106
|
+
(typeof InferenceExecutionMode)[keyof typeof InferenceExecutionMode];
|
|
107
|
+
export interface InferenceExecutionConfig {
|
|
108
|
+
Mode: InferenceExecutionMode | undefined;
|
|
109
|
+
}
|
|
110
|
+
export interface CreateModelInput {
|
|
111
|
+
ModelName: string | undefined;
|
|
112
|
+
PrimaryContainer?: ContainerDefinition | undefined;
|
|
113
|
+
Containers?: ContainerDefinition[] | undefined;
|
|
114
|
+
InferenceExecutionConfig?: InferenceExecutionConfig | undefined;
|
|
115
|
+
ExecutionRoleArn?: string | undefined;
|
|
116
|
+
Tags?: Tag[] | undefined;
|
|
117
|
+
VpcConfig?: VpcConfig | undefined;
|
|
118
|
+
EnableNetworkIsolation?: boolean | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface CreateModelOutput {
|
|
121
|
+
ModelArn: string | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface ModelBiasAppSpecification {
|
|
124
|
+
ImageUri: string | undefined;
|
|
125
|
+
ConfigUri: string | undefined;
|
|
126
|
+
Environment?: Record<string, string> | undefined;
|
|
127
|
+
}
|
|
101
128
|
export interface ModelBiasBaselineConfig {
|
|
102
129
|
BaseliningJobName?: string | undefined;
|
|
103
130
|
ConstraintsResource?: MonitoringConstraintsResource | undefined;
|
|
@@ -1723,6 +1750,8 @@ export interface DescribeClusterResponse {
|
|
|
1723
1750
|
Orchestrator?: ClusterOrchestrator | undefined;
|
|
1724
1751
|
NodeRecovery?: ClusterNodeRecovery | undefined;
|
|
1725
1752
|
NodeProvisioningMode?: ClusterNodeProvisioningMode | undefined;
|
|
1753
|
+
ClusterRole?: string | undefined;
|
|
1754
|
+
AutoScaling?: ClusterAutoScalingConfigOutput | undefined;
|
|
1726
1755
|
}
|
|
1727
1756
|
export interface DescribeClusterEventRequest {
|
|
1728
1757
|
EventId: string | undefined;
|
|
@@ -1758,25 +1787,6 @@ export interface DescribeClusterSchedulerConfigResponse {
|
|
|
1758
1787
|
LastModifiedTime?: Date | undefined;
|
|
1759
1788
|
LastModifiedBy?: UserContext | undefined;
|
|
1760
1789
|
}
|
|
1761
|
-
export interface DescribeCodeRepositoryInput {
|
|
1762
|
-
CodeRepositoryName: string | undefined;
|
|
1763
|
-
}
|
|
1764
|
-
export interface DescribeCodeRepositoryOutput {
|
|
1765
|
-
CodeRepositoryName: string | undefined;
|
|
1766
|
-
CodeRepositoryArn: string | undefined;
|
|
1767
|
-
CreationTime: Date | undefined;
|
|
1768
|
-
LastModifiedTime: Date | undefined;
|
|
1769
|
-
GitConfig?: GitConfig | undefined;
|
|
1770
|
-
}
|
|
1771
|
-
export interface DescribeCompilationJobRequest {
|
|
1772
|
-
CompilationJobName: string | undefined;
|
|
1773
|
-
}
|
|
1774
|
-
export interface ModelArtifacts {
|
|
1775
|
-
S3ModelArtifacts: string | undefined;
|
|
1776
|
-
}
|
|
1777
|
-
export interface ModelDigests {
|
|
1778
|
-
ArtifactDigest?: string | undefined;
|
|
1779
|
-
}
|
|
1780
1790
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
1781
1791
|
obj: CreateModelCardRequest
|
|
1782
1792
|
) => any;
|
|
@@ -26,7 +26,6 @@ import {
|
|
|
26
26
|
ProductionVariantInstanceType,
|
|
27
27
|
ResourceConfig,
|
|
28
28
|
ResourceSpec,
|
|
29
|
-
SchedulerResourceStatus,
|
|
30
29
|
StoppingCondition,
|
|
31
30
|
Tag,
|
|
32
31
|
TransformInput,
|
|
@@ -61,6 +60,7 @@ import {
|
|
|
61
60
|
FeatureDefinition,
|
|
62
61
|
FeatureType,
|
|
63
62
|
FlowDefinitionOutputConfig,
|
|
63
|
+
GitConfig,
|
|
64
64
|
HubContentType,
|
|
65
65
|
HubS3StorageConfig,
|
|
66
66
|
HumanLoopActivationConfig,
|
|
@@ -73,7 +73,6 @@ import {
|
|
|
73
73
|
HyperParameterTuningJobWarmStartConfig,
|
|
74
74
|
InferenceComponentComputeResourceRequirements,
|
|
75
75
|
InferenceComponentStartupParameters,
|
|
76
|
-
InferenceExecutionConfig,
|
|
77
76
|
InferenceExperimentDataStorageConfig,
|
|
78
77
|
InferenceExperimentSchedule,
|
|
79
78
|
InferenceExperimentType,
|
|
@@ -84,7 +83,6 @@ import {
|
|
|
84
83
|
LabelingJobOutputConfig,
|
|
85
84
|
LabelingJobStoppingConditions,
|
|
86
85
|
MetadataProperties,
|
|
87
|
-
ModelBiasAppSpecification,
|
|
88
86
|
ModelInfrastructureConfig,
|
|
89
87
|
MonitoringNetworkConfig,
|
|
90
88
|
MonitoringOutputConfig,
|
|
@@ -104,6 +102,7 @@ import {
|
|
|
104
102
|
RecommendationJobStoppingConditions,
|
|
105
103
|
RecommendationJobType,
|
|
106
104
|
RetryStrategy,
|
|
105
|
+
SchedulerResourceStatus,
|
|
107
106
|
ShadowModeConfig,
|
|
108
107
|
TagPropagation,
|
|
109
108
|
ThroughputMode,
|
|
@@ -127,17 +126,17 @@ import {
|
|
|
127
126
|
DirectInternetAccess,
|
|
128
127
|
DriftCheckBaselines,
|
|
129
128
|
ExperimentConfig,
|
|
129
|
+
InferenceExecutionConfig,
|
|
130
130
|
InfraCheckConfig,
|
|
131
131
|
InstanceMetadataServiceConfiguration,
|
|
132
132
|
MemberDefinition,
|
|
133
|
-
|
|
133
|
+
ModelBiasAppSpecification,
|
|
134
134
|
ModelBiasBaselineConfig,
|
|
135
135
|
ModelBiasJobInput,
|
|
136
136
|
ModelCardExportOutputConfig,
|
|
137
137
|
ModelCardSecurityConfig,
|
|
138
138
|
ModelCardStatus,
|
|
139
139
|
ModelClientConfig,
|
|
140
|
-
ModelDigests,
|
|
141
140
|
ModelExplainabilityAppSpecification,
|
|
142
141
|
ModelExplainabilityBaselineConfig,
|
|
143
142
|
ModelExplainabilityJobInput,
|
|
@@ -189,6 +188,25 @@ import {
|
|
|
189
188
|
WorkerAccessConfiguration,
|
|
190
189
|
WorkforceIpAddressType,
|
|
191
190
|
} from "./models_2";
|
|
191
|
+
export interface DescribeCodeRepositoryInput {
|
|
192
|
+
CodeRepositoryName: string | undefined;
|
|
193
|
+
}
|
|
194
|
+
export interface DescribeCodeRepositoryOutput {
|
|
195
|
+
CodeRepositoryName: string | undefined;
|
|
196
|
+
CodeRepositoryArn: string | undefined;
|
|
197
|
+
CreationTime: Date | undefined;
|
|
198
|
+
LastModifiedTime: Date | undefined;
|
|
199
|
+
GitConfig?: GitConfig | undefined;
|
|
200
|
+
}
|
|
201
|
+
export interface DescribeCompilationJobRequest {
|
|
202
|
+
CompilationJobName: string | undefined;
|
|
203
|
+
}
|
|
204
|
+
export interface ModelArtifacts {
|
|
205
|
+
S3ModelArtifacts: string | undefined;
|
|
206
|
+
}
|
|
207
|
+
export interface ModelDigests {
|
|
208
|
+
ArtifactDigest?: string | undefined;
|
|
209
|
+
}
|
|
192
210
|
export interface DescribeCompilationJobResponse {
|
|
193
211
|
CompilationJobName: string | undefined;
|
|
194
212
|
CompilationJobArn: string | undefined;
|
|
@@ -2597,37 +2615,6 @@ export interface GetSearchSuggestionsRequest {
|
|
|
2597
2615
|
Resource: ResourceType | undefined;
|
|
2598
2616
|
SuggestionQuery?: SuggestionQuery | undefined;
|
|
2599
2617
|
}
|
|
2600
|
-
export interface PropertyNameSuggestion {
|
|
2601
|
-
PropertyName?: string | undefined;
|
|
2602
|
-
}
|
|
2603
|
-
export interface GetSearchSuggestionsResponse {
|
|
2604
|
-
PropertyNameSuggestions?: PropertyNameSuggestion[] | undefined;
|
|
2605
|
-
}
|
|
2606
|
-
export interface GitConfigForUpdate {
|
|
2607
|
-
SecretArn?: string | undefined;
|
|
2608
|
-
}
|
|
2609
|
-
export interface HubContentInfo {
|
|
2610
|
-
HubContentName: string | undefined;
|
|
2611
|
-
HubContentArn: string | undefined;
|
|
2612
|
-
SageMakerPublicHubContentArn?: string | undefined;
|
|
2613
|
-
HubContentVersion: string | undefined;
|
|
2614
|
-
HubContentType: HubContentType | undefined;
|
|
2615
|
-
DocumentSchemaVersion: string | undefined;
|
|
2616
|
-
HubContentDisplayName?: string | undefined;
|
|
2617
|
-
HubContentDescription?: string | undefined;
|
|
2618
|
-
SupportStatus?: HubContentSupportStatus | undefined;
|
|
2619
|
-
HubContentSearchKeywords?: string[] | undefined;
|
|
2620
|
-
HubContentStatus: HubContentStatus | undefined;
|
|
2621
|
-
CreationTime: Date | undefined;
|
|
2622
|
-
OriginalCreationTime?: Date | undefined;
|
|
2623
|
-
}
|
|
2624
|
-
export declare const HubContentSortBy: {
|
|
2625
|
-
readonly CREATION_TIME: "CreationTime";
|
|
2626
|
-
readonly HUB_CONTENT_NAME: "HubContentName";
|
|
2627
|
-
readonly HUB_CONTENT_STATUS: "HubContentStatus";
|
|
2628
|
-
};
|
|
2629
|
-
export type HubContentSortBy =
|
|
2630
|
-
(typeof HubContentSortBy)[keyof typeof HubContentSortBy];
|
|
2631
2618
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2632
2619
|
obj: DescribeModelCardResponse
|
|
2633
2620
|
) => any;
|
|
@@ -28,7 +28,6 @@ import {
|
|
|
28
28
|
ModelApprovalStatus,
|
|
29
29
|
ModelPackageStatus,
|
|
30
30
|
OutputParameter,
|
|
31
|
-
SchedulerResourceStatus,
|
|
32
31
|
Tag,
|
|
33
32
|
UserContext,
|
|
34
33
|
} from "./models_0";
|
|
@@ -55,6 +54,7 @@ import {
|
|
|
55
54
|
LabelingJobInputConfig,
|
|
56
55
|
RecommendationJobType,
|
|
57
56
|
ResourceLimits,
|
|
57
|
+
SchedulerResourceStatus,
|
|
58
58
|
} from "./models_1";
|
|
59
59
|
import {
|
|
60
60
|
CrossAccountFilterOption,
|
|
@@ -94,8 +94,7 @@ import {
|
|
|
94
94
|
FeatureGroupStatus,
|
|
95
95
|
FeatureGroupSummary,
|
|
96
96
|
FlowDefinitionSummary,
|
|
97
|
-
|
|
98
|
-
HubContentSortBy,
|
|
97
|
+
HubContentStatus,
|
|
99
98
|
HubContentSupportStatus,
|
|
100
99
|
HubStatus,
|
|
101
100
|
HyperParameterTrainingJobSummary,
|
|
@@ -139,10 +138,40 @@ import {
|
|
|
139
138
|
TransformJobStatus,
|
|
140
139
|
TrialComponentSource,
|
|
141
140
|
TrialSource,
|
|
142
|
-
UserProfileStatus,
|
|
143
141
|
WarmPoolResourceStatus,
|
|
144
142
|
WarmPoolStatus,
|
|
145
143
|
} from "./models_3";
|
|
144
|
+
export interface PropertyNameSuggestion {
|
|
145
|
+
PropertyName?: string | undefined;
|
|
146
|
+
}
|
|
147
|
+
export interface GetSearchSuggestionsResponse {
|
|
148
|
+
PropertyNameSuggestions?: PropertyNameSuggestion[] | undefined;
|
|
149
|
+
}
|
|
150
|
+
export interface GitConfigForUpdate {
|
|
151
|
+
SecretArn?: string | undefined;
|
|
152
|
+
}
|
|
153
|
+
export interface HubContentInfo {
|
|
154
|
+
HubContentName: string | undefined;
|
|
155
|
+
HubContentArn: string | undefined;
|
|
156
|
+
SageMakerPublicHubContentArn?: string | undefined;
|
|
157
|
+
HubContentVersion: string | undefined;
|
|
158
|
+
HubContentType: HubContentType | undefined;
|
|
159
|
+
DocumentSchemaVersion: string | undefined;
|
|
160
|
+
HubContentDisplayName?: string | undefined;
|
|
161
|
+
HubContentDescription?: string | undefined;
|
|
162
|
+
SupportStatus?: HubContentSupportStatus | undefined;
|
|
163
|
+
HubContentSearchKeywords?: string[] | undefined;
|
|
164
|
+
HubContentStatus: HubContentStatus | undefined;
|
|
165
|
+
CreationTime: Date | undefined;
|
|
166
|
+
OriginalCreationTime?: Date | undefined;
|
|
167
|
+
}
|
|
168
|
+
export declare const HubContentSortBy: {
|
|
169
|
+
readonly CREATION_TIME: "CreationTime";
|
|
170
|
+
readonly HUB_CONTENT_NAME: "HubContentName";
|
|
171
|
+
readonly HUB_CONTENT_STATUS: "HubContentStatus";
|
|
172
|
+
};
|
|
173
|
+
export type HubContentSortBy =
|
|
174
|
+
(typeof HubContentSortBy)[keyof typeof HubContentSortBy];
|
|
146
175
|
export interface HubInfo {
|
|
147
176
|
HubName: string | undefined;
|
|
148
177
|
HubArn: string | undefined;
|
|
@@ -2242,35 +2271,3 @@ export declare const UserProfileSortKey: {
|
|
|
2242
2271
|
};
|
|
2243
2272
|
export type UserProfileSortKey =
|
|
2244
2273
|
(typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
|
|
2245
|
-
export interface ListUserProfilesRequest {
|
|
2246
|
-
NextToken?: string | undefined;
|
|
2247
|
-
MaxResults?: number | undefined;
|
|
2248
|
-
SortOrder?: SortOrder | undefined;
|
|
2249
|
-
SortBy?: UserProfileSortKey | undefined;
|
|
2250
|
-
DomainIdEquals?: string | undefined;
|
|
2251
|
-
UserProfileNameContains?: string | undefined;
|
|
2252
|
-
}
|
|
2253
|
-
export interface UserProfileDetails {
|
|
2254
|
-
DomainId?: string | undefined;
|
|
2255
|
-
UserProfileName?: string | undefined;
|
|
2256
|
-
Status?: UserProfileStatus | undefined;
|
|
2257
|
-
CreationTime?: Date | undefined;
|
|
2258
|
-
LastModifiedTime?: Date | undefined;
|
|
2259
|
-
}
|
|
2260
|
-
export interface ListUserProfilesResponse {
|
|
2261
|
-
UserProfiles?: UserProfileDetails[] | undefined;
|
|
2262
|
-
NextToken?: string | undefined;
|
|
2263
|
-
}
|
|
2264
|
-
export declare const ListWorkforcesSortByOptions: {
|
|
2265
|
-
readonly CreateDate: "CreateDate";
|
|
2266
|
-
readonly Name: "Name";
|
|
2267
|
-
};
|
|
2268
|
-
export type ListWorkforcesSortByOptions =
|
|
2269
|
-
(typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
|
|
2270
|
-
export interface ListWorkforcesRequest {
|
|
2271
|
-
SortBy?: ListWorkforcesSortByOptions | undefined;
|
|
2272
|
-
SortOrder?: SortOrder | undefined;
|
|
2273
|
-
NameContains?: string | undefined;
|
|
2274
|
-
NextToken?: string | undefined;
|
|
2275
|
-
MaxResults?: number | undefined;
|
|
2276
|
-
}
|