@aws-sdk/client-sagemaker 3.929.0 → 3.931.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 +52 -130
- package/dist-es/models/models_0.js +1 -48
- package/dist-es/models/models_1.js +0 -20
- package/dist-es/models/models_2.js +0 -34
- package/dist-es/models/models_3.js +0 -22
- package/dist-es/models/models_4.js +4 -4
- package/dist-es/models/models_5.js +4 -0
- package/dist-es/schemas/schemas_0.js +52 -8
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +1 -1
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +2 -2
- package/dist-types/commands/CreateComputeQuotaCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelPackageCommand.d.ts +2 -2
- package/dist-types/commands/CreatePartnerAppCommand.d.ts +12 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +2 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +3 -4
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeComputeQuotaCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +2 -2
- package/dist-types/commands/DescribePartnerAppCommand.d.ts +20 -0
- package/dist-types/commands/GetSagemakerServicecatalogPortfolioStatusCommand.d.ts +2 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -1
- package/dist-types/commands/ListComputeQuotasCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +2 -1
- package/dist-types/commands/SearchCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterCommand.d.ts +2 -2
- package/dist-types/commands/UpdateComputeQuotaCommand.d.ts +1 -1
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -2
- package/dist-types/commands/UpdatePartnerAppCommand.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +34 -16
- package/dist-types/models/models_1.d.ts +20 -19
- package/dist-types/models/models_2.d.ts +62 -136
- package/dist-types/models/models_3.d.ts +163 -29
- package/dist-types/models/models_4.d.ts +22 -27
- package/dist-types/models/models_5.d.ts +38 -1
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeAutoMLJobV2Command.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetSagemakerServicecatalogPortfolioStatusCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +6 -14
- package/dist-types/ts3.4/models/models_1.d.ts +3 -7
- package/dist-types/ts3.4/models/models_2.d.ts +12 -43
- package/dist-types/ts3.4/models/models_3.d.ts +52 -14
- package/dist-types/ts3.4/models/models_4.d.ts +9 -9
- package/dist-types/ts3.4/models/models_5.d.ts +12 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +34 -34
|
@@ -13,10 +13,7 @@ import {
|
|
|
13
13
|
AthenaDatasetDefinition,
|
|
14
14
|
AutoMLCandidate,
|
|
15
15
|
AutoMLChannel,
|
|
16
|
-
AutoMLComputeConfig,
|
|
17
|
-
AutoMLDataSplitConfig,
|
|
18
16
|
AutoMLJobArtifacts,
|
|
19
|
-
AutoMLJobChannel,
|
|
20
17
|
AutoMLJobCompletionCriteria,
|
|
21
18
|
AutoMLJobConfig,
|
|
22
19
|
AutoMLJobObjective,
|
|
@@ -24,10 +21,6 @@ import {
|
|
|
24
21
|
AutoMLJobStatus,
|
|
25
22
|
AutoMLOutputDataConfig,
|
|
26
23
|
AutoMLPartialFailureReason,
|
|
27
|
-
AutoMLProblemTypeConfig,
|
|
28
|
-
AutoMLProblemTypeConfigName,
|
|
29
|
-
AutoMLResolvedAttributes,
|
|
30
|
-
AutoMLSecurityConfig,
|
|
31
24
|
BatchDataCaptureConfig,
|
|
32
25
|
BatchStrategy,
|
|
33
26
|
BatchTransformInput,
|
|
@@ -78,7 +71,6 @@ import {
|
|
|
78
71
|
LabelingJobAlgorithmsConfig,
|
|
79
72
|
LabelingJobInputConfig,
|
|
80
73
|
LabelingJobOutputConfig,
|
|
81
|
-
LabelingJobStoppingConditions,
|
|
82
74
|
MetadataProperties,
|
|
83
75
|
ModelDeployConfig,
|
|
84
76
|
MonitoringConstraintsResource,
|
|
@@ -93,6 +85,10 @@ import {
|
|
|
93
85
|
TrainingSpecification,
|
|
94
86
|
UserSettings,
|
|
95
87
|
} from "./models_1";
|
|
88
|
+
export interface LabelingJobStoppingConditions {
|
|
89
|
+
MaxHumanLabeledObjectCount?: number | undefined;
|
|
90
|
+
MaxPercentageOfInputDatasetLabeled?: number | undefined;
|
|
91
|
+
}
|
|
96
92
|
export interface CreateLabelingJobRequest {
|
|
97
93
|
LabelingJobName: string | undefined;
|
|
98
94
|
LabelAttributeName: string | undefined;
|
|
@@ -620,7 +616,6 @@ export declare namespace OptimizationConfig {
|
|
|
620
616
|
ModelShardingConfig: (value: ModelShardingConfig) => T;
|
|
621
617
|
_: (name: string, value: any) => T;
|
|
622
618
|
}
|
|
623
|
-
const visit: <T>(value: OptimizationConfig, visitor: Visitor<T>) => T;
|
|
624
619
|
}
|
|
625
620
|
export interface OptimizationJobOutputConfig {
|
|
626
621
|
KmsKeyId?: string | undefined;
|
|
@@ -645,9 +640,15 @@ export interface CreateOptimizationJobRequest {
|
|
|
645
640
|
export interface CreateOptimizationJobResponse {
|
|
646
641
|
OptimizationJobArn: string | undefined;
|
|
647
642
|
}
|
|
643
|
+
export interface RoleGroupAssignment {
|
|
644
|
+
RoleName: string | undefined;
|
|
645
|
+
GroupPatterns: string[] | undefined;
|
|
646
|
+
}
|
|
648
647
|
export interface PartnerAppConfig {
|
|
649
648
|
AdminUsers?: string[] | undefined;
|
|
650
649
|
Arguments?: Record<string, string> | undefined;
|
|
650
|
+
AssignedGroupPatterns?: string[] | undefined;
|
|
651
|
+
RoleGroupAssignments?: RoleGroupAssignment[] | undefined;
|
|
651
652
|
}
|
|
652
653
|
export declare const PartnerAppAuthType: {
|
|
653
654
|
readonly IAM: "IAM";
|
|
@@ -675,6 +676,7 @@ export interface CreatePartnerAppRequest {
|
|
|
675
676
|
ApplicationConfig?: PartnerAppConfig | undefined;
|
|
676
677
|
AuthType: PartnerAppAuthType | undefined;
|
|
677
678
|
EnableIamSessionBasedIdentity?: boolean | undefined;
|
|
679
|
+
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
678
680
|
ClientToken?: string | undefined;
|
|
679
681
|
Tags?: Tag[] | undefined;
|
|
680
682
|
}
|
|
@@ -943,7 +945,6 @@ export declare namespace CustomFileSystem {
|
|
|
943
945
|
S3FileSystem: (value: S3FileSystem) => T;
|
|
944
946
|
_: (name: string, value: any) => T;
|
|
945
947
|
}
|
|
946
|
-
const visit: <T>(value: CustomFileSystem, visitor: Visitor<T>) => T;
|
|
947
948
|
}
|
|
948
949
|
export interface SpaceJupyterLabAppSettings {
|
|
949
950
|
DefaultResourceSpec?: ResourceSpec | undefined;
|
|
@@ -1056,7 +1057,7 @@ export interface CreateTrainingJobRequest {
|
|
|
1056
1057
|
OutputDataConfig: OutputDataConfig | undefined;
|
|
1057
1058
|
ResourceConfig?: ResourceConfig | undefined;
|
|
1058
1059
|
VpcConfig?: VpcConfig | undefined;
|
|
1059
|
-
StoppingCondition
|
|
1060
|
+
StoppingCondition?: StoppingCondition | undefined;
|
|
1060
1061
|
Tags?: Tag[] | undefined;
|
|
1061
1062
|
EnableNetworkIsolation?: boolean | undefined;
|
|
1062
1063
|
EnableInterContainerTrafficEncryption?: boolean | undefined;
|
|
@@ -1158,10 +1159,6 @@ export declare namespace TrialComponentParameterValue {
|
|
|
1158
1159
|
NumberValue: (value: number) => T;
|
|
1159
1160
|
_: (name: string, value: any) => T;
|
|
1160
1161
|
}
|
|
1161
|
-
const visit: <T>(
|
|
1162
|
-
value: TrialComponentParameterValue,
|
|
1163
|
-
visitor: Visitor<T>
|
|
1164
|
-
) => T;
|
|
1165
1162
|
}
|
|
1166
1163
|
export declare const TrialComponentPrimaryStatus: {
|
|
1167
1164
|
readonly COMPLETED: "Completed";
|
|
@@ -1745,31 +1742,3 @@ export interface DescribeAutoMLJobResponse {
|
|
|
1745
1742
|
export interface DescribeAutoMLJobV2Request {
|
|
1746
1743
|
AutoMLJobName: string | undefined;
|
|
1747
1744
|
}
|
|
1748
|
-
export interface DescribeAutoMLJobV2Response {
|
|
1749
|
-
AutoMLJobName: string | undefined;
|
|
1750
|
-
AutoMLJobArn: string | undefined;
|
|
1751
|
-
AutoMLJobInputDataConfig: AutoMLJobChannel[] | undefined;
|
|
1752
|
-
OutputDataConfig: AutoMLOutputDataConfig | undefined;
|
|
1753
|
-
RoleArn: string | undefined;
|
|
1754
|
-
AutoMLJobObjective?: AutoMLJobObjective | undefined;
|
|
1755
|
-
AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig | undefined;
|
|
1756
|
-
AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | undefined;
|
|
1757
|
-
CreationTime: Date | undefined;
|
|
1758
|
-
EndTime?: Date | undefined;
|
|
1759
|
-
LastModifiedTime: Date | undefined;
|
|
1760
|
-
FailureReason?: string | undefined;
|
|
1761
|
-
PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
|
|
1762
|
-
BestCandidate?: AutoMLCandidate | undefined;
|
|
1763
|
-
AutoMLJobStatus: AutoMLJobStatus | undefined;
|
|
1764
|
-
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
|
|
1765
|
-
AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
|
|
1766
|
-
ResolvedAttributes?: AutoMLResolvedAttributes | undefined;
|
|
1767
|
-
ModelDeployConfig?: ModelDeployConfig | undefined;
|
|
1768
|
-
ModelDeployResult?: ModelDeployResult | undefined;
|
|
1769
|
-
DataSplitConfig?: AutoMLDataSplitConfig | undefined;
|
|
1770
|
-
SecurityConfig?: AutoMLSecurityConfig | undefined;
|
|
1771
|
-
AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
|
|
1772
|
-
}
|
|
1773
|
-
export interface DescribeClusterRequest {
|
|
1774
|
-
ClusterName: string | undefined;
|
|
1775
|
-
}
|
|
@@ -10,8 +10,23 @@ import {
|
|
|
10
10
|
AssociationEdgeType,
|
|
11
11
|
AsyncInferenceConfig,
|
|
12
12
|
AuthMode,
|
|
13
|
+
AutoMLCandidate,
|
|
14
|
+
AutoMLComputeConfig,
|
|
15
|
+
AutoMLDataSplitConfig,
|
|
16
|
+
AutoMLJobArtifacts,
|
|
17
|
+
AutoMLJobChannel,
|
|
18
|
+
AutoMLJobObjective,
|
|
19
|
+
AutoMLJobSecondaryStatus,
|
|
20
|
+
AutoMLJobStatus,
|
|
21
|
+
AutoMLOutputDataConfig,
|
|
22
|
+
AutoMLPartialFailureReason,
|
|
23
|
+
AutoMLProblemTypeConfig,
|
|
24
|
+
AutoMLProblemTypeConfigName,
|
|
25
|
+
AutoMLResolvedAttributes,
|
|
26
|
+
AutoMLSecurityConfig,
|
|
13
27
|
AutoRollbackConfig,
|
|
14
28
|
Autotune,
|
|
29
|
+
AvailableUpgrade,
|
|
15
30
|
BatchDataCaptureConfig,
|
|
16
31
|
BatchStrategy,
|
|
17
32
|
CapacityReservationPreference,
|
|
@@ -92,8 +107,8 @@ import {
|
|
|
92
107
|
LabelingJobAlgorithmsConfig,
|
|
93
108
|
LabelingJobInputConfig,
|
|
94
109
|
LabelingJobOutputConfig,
|
|
95
|
-
LabelingJobStoppingConditions,
|
|
96
110
|
MetadataProperties,
|
|
111
|
+
ModelDeployConfig,
|
|
97
112
|
ModelInfrastructureConfig,
|
|
98
113
|
MonitoringNetworkConfig,
|
|
99
114
|
MonitoringOutputConfig,
|
|
@@ -140,6 +155,7 @@ import {
|
|
|
140
155
|
InferenceExecutionConfig,
|
|
141
156
|
InfraCheckConfig,
|
|
142
157
|
InstanceMetadataServiceConfiguration,
|
|
158
|
+
LabelingJobStoppingConditions,
|
|
143
159
|
MemberDefinition,
|
|
144
160
|
ModelBiasAppSpecification,
|
|
145
161
|
ModelBiasBaselineConfig,
|
|
@@ -148,6 +164,7 @@ import {
|
|
|
148
164
|
ModelCardSecurityConfig,
|
|
149
165
|
ModelCardStatus,
|
|
150
166
|
ModelClientConfig,
|
|
167
|
+
ModelDeployResult,
|
|
151
168
|
ModelExplainabilityAppSpecification,
|
|
152
169
|
ModelExplainabilityBaselineConfig,
|
|
153
170
|
ModelExplainabilityJobInput,
|
|
@@ -200,6 +217,34 @@ import {
|
|
|
200
217
|
WorkerAccessConfiguration,
|
|
201
218
|
WorkforceIpAddressType,
|
|
202
219
|
} from "./models_2";
|
|
220
|
+
export interface DescribeAutoMLJobV2Response {
|
|
221
|
+
AutoMLJobName: string | undefined;
|
|
222
|
+
AutoMLJobArn: string | undefined;
|
|
223
|
+
AutoMLJobInputDataConfig: AutoMLJobChannel[] | undefined;
|
|
224
|
+
OutputDataConfig: AutoMLOutputDataConfig | undefined;
|
|
225
|
+
RoleArn: string | undefined;
|
|
226
|
+
AutoMLJobObjective?: AutoMLJobObjective | undefined;
|
|
227
|
+
AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig | undefined;
|
|
228
|
+
AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | undefined;
|
|
229
|
+
CreationTime: Date | undefined;
|
|
230
|
+
EndTime?: Date | undefined;
|
|
231
|
+
LastModifiedTime: Date | undefined;
|
|
232
|
+
FailureReason?: string | undefined;
|
|
233
|
+
PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
|
|
234
|
+
BestCandidate?: AutoMLCandidate | undefined;
|
|
235
|
+
AutoMLJobStatus: AutoMLJobStatus | undefined;
|
|
236
|
+
AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
|
|
237
|
+
AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
|
|
238
|
+
ResolvedAttributes?: AutoMLResolvedAttributes | undefined;
|
|
239
|
+
ModelDeployConfig?: ModelDeployConfig | undefined;
|
|
240
|
+
ModelDeployResult?: ModelDeployResult | undefined;
|
|
241
|
+
DataSplitConfig?: AutoMLDataSplitConfig | undefined;
|
|
242
|
+
SecurityConfig?: AutoMLSecurityConfig | undefined;
|
|
243
|
+
AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
|
|
244
|
+
}
|
|
245
|
+
export interface DescribeClusterRequest {
|
|
246
|
+
ClusterName: string | undefined;
|
|
247
|
+
}
|
|
203
248
|
export interface DescribeClusterResponse {
|
|
204
249
|
ClusterArn: string | undefined;
|
|
205
250
|
ClusterName?: string | undefined;
|
|
@@ -1582,6 +1627,7 @@ export interface DescribeOptimizationJobResponse {
|
|
|
1582
1627
|
}
|
|
1583
1628
|
export interface DescribePartnerAppRequest {
|
|
1584
1629
|
Arn: string | undefined;
|
|
1630
|
+
IncludeAvailableUpgrade?: boolean | undefined;
|
|
1585
1631
|
}
|
|
1586
1632
|
export interface ErrorInfo {
|
|
1587
1633
|
Code?: string | undefined;
|
|
@@ -1615,6 +1661,9 @@ export interface DescribePartnerAppResponse {
|
|
|
1615
1661
|
AuthType?: PartnerAppAuthType | undefined;
|
|
1616
1662
|
EnableIamSessionBasedIdentity?: boolean | undefined;
|
|
1617
1663
|
Error?: ErrorInfo | undefined;
|
|
1664
|
+
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
1665
|
+
CurrentVersionEolDate?: Date | undefined;
|
|
1666
|
+
AvailableUpgrade?: AvailableUpgrade | undefined;
|
|
1618
1667
|
}
|
|
1619
1668
|
export interface DescribePipelineRequest {
|
|
1620
1669
|
PipelineName: string | undefined;
|
|
@@ -1944,11 +1993,11 @@ export interface DescribeTrainingJobResponse {
|
|
|
1944
1993
|
SecondaryStatus: SecondaryStatus | undefined;
|
|
1945
1994
|
FailureReason?: string | undefined;
|
|
1946
1995
|
HyperParameters?: Record<string, string> | undefined;
|
|
1947
|
-
AlgorithmSpecification
|
|
1996
|
+
AlgorithmSpecification?: AlgorithmSpecification | undefined;
|
|
1948
1997
|
RoleArn?: string | undefined;
|
|
1949
1998
|
InputDataConfig?: Channel[] | undefined;
|
|
1950
1999
|
OutputDataConfig?: OutputDataConfig | undefined;
|
|
1951
|
-
ResourceConfig
|
|
2000
|
+
ResourceConfig?: ResourceConfig | undefined;
|
|
1952
2001
|
WarmPoolStatus?: WarmPoolStatus | undefined;
|
|
1953
2002
|
VpcConfig?: VpcConfig | undefined;
|
|
1954
2003
|
StoppingCondition: StoppingCondition | undefined;
|
|
@@ -2364,7 +2413,6 @@ export declare namespace MetricSpecification {
|
|
|
2364
2413
|
Customized: (value: CustomizedMetricSpecification) => T;
|
|
2365
2414
|
_: (name: string, value: any) => T;
|
|
2366
2415
|
}
|
|
2367
|
-
const visit: <T>(value: MetricSpecification, visitor: Visitor<T>) => T;
|
|
2368
2416
|
}
|
|
2369
2417
|
export interface TargetTrackingScalingPolicyConfiguration {
|
|
2370
2418
|
MetricSpecification?: MetricSpecification | undefined;
|
|
@@ -2386,7 +2434,6 @@ export declare namespace ScalingPolicy {
|
|
|
2386
2434
|
TargetTracking: (value: TargetTrackingScalingPolicyConfiguration) => T;
|
|
2387
2435
|
_: (name: string, value: any) => T;
|
|
2388
2436
|
}
|
|
2389
|
-
const visit: <T>(value: ScalingPolicy, visitor: Visitor<T>) => T;
|
|
2390
2437
|
}
|
|
2391
2438
|
export interface DynamicScalingConfiguration {
|
|
2392
2439
|
MinCapacity?: number | undefined;
|
|
@@ -2622,12 +2669,3 @@ export interface GetModelPackageGroupPolicyOutput {
|
|
|
2622
2669
|
ResourcePolicy: string | undefined;
|
|
2623
2670
|
}
|
|
2624
2671
|
export interface GetSagemakerServicecatalogPortfolioStatusInput {}
|
|
2625
|
-
export declare const SagemakerServicecatalogStatus: {
|
|
2626
|
-
readonly DISABLED: "Disabled";
|
|
2627
|
-
readonly ENABLED: "Enabled";
|
|
2628
|
-
};
|
|
2629
|
-
export type SagemakerServicecatalogStatus =
|
|
2630
|
-
(typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
|
|
2631
|
-
export interface GetSagemakerServicecatalogPortfolioStatusOutput {
|
|
2632
|
-
Status?: SagemakerServicecatalogStatus | undefined;
|
|
2633
|
-
}
|
|
@@ -140,6 +140,15 @@ import {
|
|
|
140
140
|
WarmPoolResourceStatus,
|
|
141
141
|
WarmPoolStatus,
|
|
142
142
|
} from "./models_3";
|
|
143
|
+
export declare const SagemakerServicecatalogStatus: {
|
|
144
|
+
readonly DISABLED: "Disabled";
|
|
145
|
+
readonly ENABLED: "Enabled";
|
|
146
|
+
};
|
|
147
|
+
export type SagemakerServicecatalogStatus =
|
|
148
|
+
(typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
|
|
149
|
+
export interface GetSagemakerServicecatalogPortfolioStatusOutput {
|
|
150
|
+
Status?: SagemakerServicecatalogStatus | undefined;
|
|
151
|
+
}
|
|
143
152
|
export interface ScalingPolicyObjective {
|
|
144
153
|
MinInvocationsPerMinute?: number | undefined;
|
|
145
154
|
MaxInvocationsPerMinute?: number | undefined;
|
|
@@ -2259,12 +2268,3 @@ export interface TrialComponentSummary {
|
|
|
2259
2268
|
LastModifiedTime?: Date | undefined;
|
|
2260
2269
|
LastModifiedBy?: UserContext | undefined;
|
|
2261
2270
|
}
|
|
2262
|
-
export interface ListTrialComponentsResponse {
|
|
2263
|
-
TrialComponentSummaries?: TrialComponentSummary[] | undefined;
|
|
2264
|
-
NextToken?: string | undefined;
|
|
2265
|
-
}
|
|
2266
|
-
export declare const SortTrialsBy: {
|
|
2267
|
-
readonly CREATION_TIME: "CreationTime";
|
|
2268
|
-
readonly NAME: "Name";
|
|
2269
|
-
};
|
|
2270
|
-
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
@@ -171,8 +171,17 @@ import {
|
|
|
171
171
|
Parameter,
|
|
172
172
|
ResourceType,
|
|
173
173
|
SortOrder,
|
|
174
|
-
|
|
174
|
+
TrialComponentSummary,
|
|
175
175
|
} from "./models_4";
|
|
176
|
+
export interface ListTrialComponentsResponse {
|
|
177
|
+
TrialComponentSummaries?: TrialComponentSummary[] | undefined;
|
|
178
|
+
NextToken?: string | undefined;
|
|
179
|
+
}
|
|
180
|
+
export declare const SortTrialsBy: {
|
|
181
|
+
readonly CREATION_TIME: "CreationTime";
|
|
182
|
+
readonly NAME: "Name";
|
|
183
|
+
};
|
|
184
|
+
export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
|
|
176
185
|
export interface ListTrialsRequest {
|
|
177
186
|
ExperimentName?: string | undefined;
|
|
178
187
|
TrialComponentName?: string | undefined;
|
|
@@ -1248,6 +1257,8 @@ export interface UpdatePartnerAppRequest {
|
|
|
1248
1257
|
Tier?: string | undefined;
|
|
1249
1258
|
ApplicationConfig?: PartnerAppConfig | undefined;
|
|
1250
1259
|
EnableIamSessionBasedIdentity?: boolean | undefined;
|
|
1260
|
+
EnableAutoMinorVersionUpgrade?: boolean | undefined;
|
|
1261
|
+
AppVersion?: string | undefined;
|
|
1251
1262
|
ClientToken?: string | undefined;
|
|
1252
1263
|
Tags?: Tag[] | undefined;
|
|
1253
1264
|
}
|
|
@@ -73,6 +73,7 @@ export declare var AutoMLSecurityConfig: StaticStructureSchema;
|
|
|
73
73
|
export declare var AutoParameter: StaticStructureSchema;
|
|
74
74
|
export declare var AutoRollbackConfig: StaticStructureSchema;
|
|
75
75
|
export declare var Autotune: StaticStructureSchema;
|
|
76
|
+
export declare var AvailableUpgrade: StaticStructureSchema;
|
|
76
77
|
export declare var BatchAddClusterNodesError: StaticStructureSchema;
|
|
77
78
|
export declare var BatchAddClusterNodesRequest: StaticStructureSchema;
|
|
78
79
|
export declare var BatchAddClusterNodesResponse: StaticStructureSchema;
|
|
@@ -1117,6 +1118,7 @@ export declare var RetentionPolicy: StaticStructureSchema;
|
|
|
1117
1118
|
export declare var RetryPipelineExecutionRequest: StaticStructureSchema;
|
|
1118
1119
|
export declare var RetryPipelineExecutionResponse: StaticStructureSchema;
|
|
1119
1120
|
export declare var RetryStrategy: StaticStructureSchema;
|
|
1121
|
+
export declare var RoleGroupAssignment: StaticStructureSchema;
|
|
1120
1122
|
export declare var RollingDeploymentPolicy: StaticStructureSchema;
|
|
1121
1123
|
export declare var RollingUpdatePolicy: StaticStructureSchema;
|
|
1122
1124
|
export declare var RSessionAppSettings: StaticStructureSchema;
|
|
@@ -1388,6 +1390,7 @@ export declare var AppImageConfigList: StaticListSchema;
|
|
|
1388
1390
|
export declare var AppList: StaticListSchema;
|
|
1389
1391
|
export declare var ArtifactSourceTypes: StaticListSchema;
|
|
1390
1392
|
export declare var ArtifactSummaries: StaticListSchema;
|
|
1393
|
+
export declare var AssignedGroupPatternsList: number;
|
|
1391
1394
|
export declare var AssociationSummaries: StaticListSchema;
|
|
1392
1395
|
export declare var AssumableRoleArns: number;
|
|
1393
1396
|
export declare var AsyncNotificationTopicTypeList: number;
|
|
@@ -1496,6 +1499,7 @@ export declare var FlowDefinitionSummaries: StaticListSchema;
|
|
|
1496
1499
|
export declare var FlowDefinitionTaskKeywords: number;
|
|
1497
1500
|
export declare var ForecastQuantiles: number;
|
|
1498
1501
|
export declare var GroupingAttributeNames: number;
|
|
1502
|
+
export declare var GroupPatternsList: number;
|
|
1499
1503
|
export declare var Groups: number;
|
|
1500
1504
|
export declare var HiddenAppTypesList: number;
|
|
1501
1505
|
export declare var HiddenInstanceTypesList: number;
|
|
@@ -1616,11 +1620,13 @@ export declare var RecommendationJobSupportedInstanceTypes: number;
|
|
|
1616
1620
|
export declare var RecommendationJobSupportedResponseMIMETypes: number;
|
|
1617
1621
|
export declare var RecommendationJobVpcSecurityGroupIds: number;
|
|
1618
1622
|
export declare var RecommendationJobVpcSubnets: number;
|
|
1623
|
+
export declare var ReleaseNotesList: number;
|
|
1619
1624
|
export declare var RenderingErrorList: StaticListSchema;
|
|
1620
1625
|
export declare var ReservedCapacityOfferings: StaticListSchema;
|
|
1621
1626
|
export declare var ReservedCapacitySummaries: StaticListSchema;
|
|
1622
1627
|
export declare var ResourceCatalogList: StaticListSchema;
|
|
1623
1628
|
export declare var ResponseMIMETypes: number;
|
|
1629
|
+
export declare var RoleGroupAssignmentsList: StaticListSchema;
|
|
1624
1630
|
export declare var SageMakerImageVersionAliases: number;
|
|
1625
1631
|
export declare var SageMakerResourceNames: number;
|
|
1626
1632
|
export declare var ScalingPolicies: StaticListSchema;
|
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.931.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.931.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.931.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.931.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.931.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/util-waiter": "^4.2.
|
|
59
|
+
"@smithy/util-waiter": "^4.2.5",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|