@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
package/dist-cjs/index.js
CHANGED
|
@@ -1161,22 +1161,6 @@ const FillingType = {
|
|
|
1161
1161
|
Middlefill: "middlefill",
|
|
1162
1162
|
MiddlefillValue: "middlefill_value",
|
|
1163
1163
|
};
|
|
1164
|
-
exports.AutoMLProblemTypeConfig = void 0;
|
|
1165
|
-
(function (AutoMLProblemTypeConfig) {
|
|
1166
|
-
AutoMLProblemTypeConfig.visit = (value, visitor) => {
|
|
1167
|
-
if (value.ImageClassificationJobConfig !== undefined)
|
|
1168
|
-
return visitor.ImageClassificationJobConfig(value.ImageClassificationJobConfig);
|
|
1169
|
-
if (value.TextClassificationJobConfig !== undefined)
|
|
1170
|
-
return visitor.TextClassificationJobConfig(value.TextClassificationJobConfig);
|
|
1171
|
-
if (value.TimeSeriesForecastingJobConfig !== undefined)
|
|
1172
|
-
return visitor.TimeSeriesForecastingJobConfig(value.TimeSeriesForecastingJobConfig);
|
|
1173
|
-
if (value.TabularJobConfig !== undefined)
|
|
1174
|
-
return visitor.TabularJobConfig(value.TabularJobConfig);
|
|
1175
|
-
if (value.TextGenerationJobConfig !== undefined)
|
|
1176
|
-
return visitor.TextGenerationJobConfig(value.TextGenerationJobConfig);
|
|
1177
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1178
|
-
};
|
|
1179
|
-
})(exports.AutoMLProblemTypeConfig || (exports.AutoMLProblemTypeConfig = {}));
|
|
1180
1164
|
const AutoMLProblemTypeConfigName = {
|
|
1181
1165
|
IMAGE_CLASSIFICATION: "ImageClassification",
|
|
1182
1166
|
TABULAR: "Tabular",
|
|
@@ -1184,16 +1168,6 @@ const AutoMLProblemTypeConfigName = {
|
|
|
1184
1168
|
TEXT_GENERATION: "TextGeneration",
|
|
1185
1169
|
TIMESERIES_FORECASTING: "TimeSeriesForecasting",
|
|
1186
1170
|
};
|
|
1187
|
-
exports.AutoMLProblemTypeResolvedAttributes = void 0;
|
|
1188
|
-
(function (AutoMLProblemTypeResolvedAttributes) {
|
|
1189
|
-
AutoMLProblemTypeResolvedAttributes.visit = (value, visitor) => {
|
|
1190
|
-
if (value.TabularResolvedAttributes !== undefined)
|
|
1191
|
-
return visitor.TabularResolvedAttributes(value.TabularResolvedAttributes);
|
|
1192
|
-
if (value.TextGenerationResolvedAttributes !== undefined)
|
|
1193
|
-
return visitor.TextGenerationResolvedAttributes(value.TextGenerationResolvedAttributes);
|
|
1194
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1195
|
-
};
|
|
1196
|
-
})(exports.AutoMLProblemTypeResolvedAttributes || (exports.AutoMLProblemTypeResolvedAttributes = {}));
|
|
1197
1171
|
const AutoMLSortBy = {
|
|
1198
1172
|
CREATION_TIME: "CreationTime",
|
|
1199
1173
|
NAME: "Name",
|
|
@@ -1384,33 +1358,11 @@ const ClusterConfigMode = {
|
|
|
1384
1358
|
DISABLE: "Disable",
|
|
1385
1359
|
ENABLE: "Enable",
|
|
1386
1360
|
};
|
|
1387
|
-
exports.EventMetadata = void 0;
|
|
1388
|
-
(function (EventMetadata) {
|
|
1389
|
-
EventMetadata.visit = (value, visitor) => {
|
|
1390
|
-
if (value.Cluster !== undefined)
|
|
1391
|
-
return visitor.Cluster(value.Cluster);
|
|
1392
|
-
if (value.InstanceGroup !== undefined)
|
|
1393
|
-
return visitor.InstanceGroup(value.InstanceGroup);
|
|
1394
|
-
if (value.InstanceGroupScaling !== undefined)
|
|
1395
|
-
return visitor.InstanceGroupScaling(value.InstanceGroupScaling);
|
|
1396
|
-
if (value.Instance !== undefined)
|
|
1397
|
-
return visitor.Instance(value.Instance);
|
|
1398
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1399
|
-
};
|
|
1400
|
-
})(exports.EventMetadata || (exports.EventMetadata = {}));
|
|
1401
1361
|
const ClusterEventResourceType = {
|
|
1402
1362
|
CLUSTER: "Cluster",
|
|
1403
1363
|
INSTANCE: "Instance",
|
|
1404
1364
|
INSTANCE_GROUP: "InstanceGroup",
|
|
1405
1365
|
};
|
|
1406
|
-
exports.ClusterInstanceStorageConfig = void 0;
|
|
1407
|
-
(function (ClusterInstanceStorageConfig) {
|
|
1408
|
-
ClusterInstanceStorageConfig.visit = (value, visitor) => {
|
|
1409
|
-
if (value.EbsVolumeConfig !== undefined)
|
|
1410
|
-
return visitor.EbsVolumeConfig(value.EbsVolumeConfig);
|
|
1411
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1412
|
-
};
|
|
1413
|
-
})(exports.ClusterInstanceStorageConfig || (exports.ClusterInstanceStorageConfig = {}));
|
|
1414
1366
|
const ClusterInstanceType = {
|
|
1415
1367
|
ML_C5N_18XLARGE: "ml.c5n.18xlarge",
|
|
1416
1368
|
ML_C5N_2XLARGE: "ml.c5n.2xlarge",
|
|
@@ -1524,6 +1476,7 @@ const ClusterInstanceType = {
|
|
|
1524
1476
|
ML_T3_XLARGE: "ml.t3.xlarge",
|
|
1525
1477
|
ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge",
|
|
1526
1478
|
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
1479
|
+
ML_TRN2_3XLARGE: "ml.trn2.3xlarge",
|
|
1527
1480
|
ML_TRN2_48XLARGE: "ml.trn2.48xlarge",
|
|
1528
1481
|
};
|
|
1529
1482
|
const DeepHealthCheckType = {
|
|
@@ -1591,14 +1544,6 @@ const CodeRepositorySortOrder = {
|
|
|
1591
1544
|
ASCENDING: "Ascending",
|
|
1592
1545
|
DESCENDING: "Descending",
|
|
1593
1546
|
};
|
|
1594
|
-
exports.CollectionConfig = void 0;
|
|
1595
|
-
(function (CollectionConfig) {
|
|
1596
|
-
CollectionConfig.visit = (value, visitor) => {
|
|
1597
|
-
if (value.VectorConfig !== undefined)
|
|
1598
|
-
return visitor.VectorConfig(value.VectorConfig);
|
|
1599
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1600
|
-
};
|
|
1601
|
-
})(exports.CollectionConfig || (exports.CollectionConfig = {}));
|
|
1602
1547
|
const CollectionType = {
|
|
1603
1548
|
LIST: "List",
|
|
1604
1549
|
SET: "Set",
|
|
@@ -1890,18 +1835,6 @@ const ProcessingInstanceType = {
|
|
|
1890
1835
|
const EdgePresetDeploymentType = {
|
|
1891
1836
|
GreengrassV2Component: "GreengrassV2Component",
|
|
1892
1837
|
};
|
|
1893
|
-
exports.CustomFileSystemConfig = void 0;
|
|
1894
|
-
(function (CustomFileSystemConfig) {
|
|
1895
|
-
CustomFileSystemConfig.visit = (value, visitor) => {
|
|
1896
|
-
if (value.EFSFileSystemConfig !== undefined)
|
|
1897
|
-
return visitor.EFSFileSystemConfig(value.EFSFileSystemConfig);
|
|
1898
|
-
if (value.FSxLustreFileSystemConfig !== undefined)
|
|
1899
|
-
return visitor.FSxLustreFileSystemConfig(value.FSxLustreFileSystemConfig);
|
|
1900
|
-
if (value.S3FileSystemConfig !== undefined)
|
|
1901
|
-
return visitor.S3FileSystemConfig(value.S3FileSystemConfig);
|
|
1902
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1903
|
-
};
|
|
1904
|
-
})(exports.CustomFileSystemConfig || (exports.CustomFileSystemConfig = {}));
|
|
1905
1838
|
const RStudioServerProAccessStatus = {
|
|
1906
1839
|
Disabled: "DISABLED",
|
|
1907
1840
|
Enabled: "ENABLED",
|
|
@@ -2328,18 +2261,6 @@ const OptimizationJobDeploymentInstanceType = {
|
|
|
2328
2261
|
ML_TRN1_2XLARGE: "ml.trn1.2xlarge",
|
|
2329
2262
|
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
2330
2263
|
};
|
|
2331
|
-
exports.OptimizationConfig = void 0;
|
|
2332
|
-
(function (OptimizationConfig) {
|
|
2333
|
-
OptimizationConfig.visit = (value, visitor) => {
|
|
2334
|
-
if (value.ModelQuantizationConfig !== undefined)
|
|
2335
|
-
return visitor.ModelQuantizationConfig(value.ModelQuantizationConfig);
|
|
2336
|
-
if (value.ModelCompilationConfig !== undefined)
|
|
2337
|
-
return visitor.ModelCompilationConfig(value.ModelCompilationConfig);
|
|
2338
|
-
if (value.ModelShardingConfig !== undefined)
|
|
2339
|
-
return visitor.ModelShardingConfig(value.ModelShardingConfig);
|
|
2340
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2341
|
-
};
|
|
2342
|
-
})(exports.OptimizationConfig || (exports.OptimizationConfig = {}));
|
|
2343
2264
|
const PartnerAppAuthType = {
|
|
2344
2265
|
IAM: "IAM",
|
|
2345
2266
|
};
|
|
@@ -2376,18 +2297,6 @@ const ProcessingS3DataType = {
|
|
|
2376
2297
|
MANIFEST_FILE: "ManifestFile",
|
|
2377
2298
|
S3_PREFIX: "S3Prefix",
|
|
2378
2299
|
};
|
|
2379
|
-
exports.CustomFileSystem = void 0;
|
|
2380
|
-
(function (CustomFileSystem) {
|
|
2381
|
-
CustomFileSystem.visit = (value, visitor) => {
|
|
2382
|
-
if (value.EFSFileSystem !== undefined)
|
|
2383
|
-
return visitor.EFSFileSystem(value.EFSFileSystem);
|
|
2384
|
-
if (value.FSxLustreFileSystem !== undefined)
|
|
2385
|
-
return visitor.FSxLustreFileSystem(value.FSxLustreFileSystem);
|
|
2386
|
-
if (value.S3FileSystem !== undefined)
|
|
2387
|
-
return visitor.S3FileSystem(value.S3FileSystem);
|
|
2388
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2389
|
-
};
|
|
2390
|
-
})(exports.CustomFileSystem || (exports.CustomFileSystem = {}));
|
|
2391
2300
|
const SharingType = {
|
|
2392
2301
|
Private: "Private",
|
|
2393
2302
|
Shared: "Shared",
|
|
@@ -2402,16 +2311,6 @@ const JoinSource = {
|
|
|
2402
2311
|
INPUT: "Input",
|
|
2403
2312
|
NONE: "None",
|
|
2404
2313
|
};
|
|
2405
|
-
exports.TrialComponentParameterValue = void 0;
|
|
2406
|
-
(function (TrialComponentParameterValue) {
|
|
2407
|
-
TrialComponentParameterValue.visit = (value, visitor) => {
|
|
2408
|
-
if (value.StringValue !== undefined)
|
|
2409
|
-
return visitor.StringValue(value.StringValue);
|
|
2410
|
-
if (value.NumberValue !== undefined)
|
|
2411
|
-
return visitor.NumberValue(value.NumberValue);
|
|
2412
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2413
|
-
};
|
|
2414
|
-
})(exports.TrialComponentParameterValue || (exports.TrialComponentParameterValue = {}));
|
|
2415
2314
|
const TrialComponentPrimaryStatus = {
|
|
2416
2315
|
COMPLETED: "Completed",
|
|
2417
2316
|
FAILED: "Failed",
|
|
@@ -2867,24 +2766,6 @@ const Direction = {
|
|
|
2867
2766
|
BOTH: "Both",
|
|
2868
2767
|
DESCENDANTS: "Descendants",
|
|
2869
2768
|
};
|
|
2870
|
-
exports.MetricSpecification = void 0;
|
|
2871
|
-
(function (MetricSpecification) {
|
|
2872
|
-
MetricSpecification.visit = (value, visitor) => {
|
|
2873
|
-
if (value.Predefined !== undefined)
|
|
2874
|
-
return visitor.Predefined(value.Predefined);
|
|
2875
|
-
if (value.Customized !== undefined)
|
|
2876
|
-
return visitor.Customized(value.Customized);
|
|
2877
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2878
|
-
};
|
|
2879
|
-
})(exports.MetricSpecification || (exports.MetricSpecification = {}));
|
|
2880
|
-
exports.ScalingPolicy = void 0;
|
|
2881
|
-
(function (ScalingPolicy) {
|
|
2882
|
-
ScalingPolicy.visit = (value, visitor) => {
|
|
2883
|
-
if (value.TargetTracking !== undefined)
|
|
2884
|
-
return visitor.TargetTracking(value.TargetTracking);
|
|
2885
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2886
|
-
};
|
|
2887
|
-
})(exports.ScalingPolicy || (exports.ScalingPolicy = {}));
|
|
2888
2769
|
const EndpointConfigSortKey = {
|
|
2889
2770
|
CreationTime: "CreationTime",
|
|
2890
2771
|
Name: "Name",
|
|
@@ -2919,11 +2800,11 @@ const Operator = {
|
|
|
2919
2800
|
NOT_EQUALS: "NotEquals",
|
|
2920
2801
|
NOT_EXISTS: "NotExists",
|
|
2921
2802
|
};
|
|
2803
|
+
|
|
2922
2804
|
const SagemakerServicecatalogStatus = {
|
|
2923
2805
|
DISABLED: "Disabled",
|
|
2924
2806
|
ENABLED: "Enabled",
|
|
2925
2807
|
};
|
|
2926
|
-
|
|
2927
2808
|
const ResourceType = {
|
|
2928
2809
|
ENDPOINT: "Endpoint",
|
|
2929
2810
|
EXPERIMENT: "Experiment",
|
|
@@ -3237,11 +3118,11 @@ const SortTrialComponentsBy = {
|
|
|
3237
3118
|
CREATION_TIME: "CreationTime",
|
|
3238
3119
|
NAME: "Name",
|
|
3239
3120
|
};
|
|
3121
|
+
|
|
3240
3122
|
const SortTrialsBy = {
|
|
3241
3123
|
CREATION_TIME: "CreationTime",
|
|
3242
3124
|
NAME: "Name",
|
|
3243
3125
|
};
|
|
3244
|
-
|
|
3245
3126
|
const UltraServerHealthStatus = {
|
|
3246
3127
|
IMPAIRED: "Impaired",
|
|
3247
3128
|
INSUFFICIENT_DATA: "Insufficient-Data",
|
|
@@ -3313,6 +3194,7 @@ const _AEc = "AcceptEula";
|
|
|
3313
3194
|
const _AEu = "AuthorizationEndpoint";
|
|
3314
3195
|
const _AFRA = "AmazonForecastRoleArn";
|
|
3315
3196
|
const _AGEN = "AutoGenerateEndpointName";
|
|
3197
|
+
const _AGP = "AssignedGroupPatterns";
|
|
3316
3198
|
const _AIC = "AsyncInferenceConfig";
|
|
3317
3199
|
const _AICA = "AppImageConfigArn";
|
|
3318
3200
|
const _AICC = "AsyncInferenceClientConfig";
|
|
@@ -3441,11 +3323,13 @@ const _AU = "AuthorizedUrl";
|
|
|
3441
3323
|
const _AUC = "AuthorizedUrlConfigs";
|
|
3442
3324
|
const _AUd = "AdminUsers";
|
|
3443
3325
|
const _AUr = "ArtifactUrl";
|
|
3326
|
+
const _AUv = "AvailableUpgrade";
|
|
3444
3327
|
const _AV = "AgentVersion";
|
|
3445
3328
|
const _AVP = "AlgorithmValidationProfile";
|
|
3446
3329
|
const _AVPl = "AlgorithmValidationProfiles";
|
|
3447
3330
|
const _AVS = "AlgorithmValidationSpecification";
|
|
3448
3331
|
const _AVg = "AgentVersions";
|
|
3332
|
+
const _AVp = "AppVersion";
|
|
3449
3333
|
const _AW = "AssembleWith";
|
|
3450
3334
|
const _AZ = "AvailabilityZone";
|
|
3451
3335
|
const _AZI = "AvailabilityZoneId";
|
|
@@ -3919,6 +3803,7 @@ const _CUPR = "CreateUserProfileRequest";
|
|
|
3919
3803
|
const _CUPRr = "CreateUserProfileResponse";
|
|
3920
3804
|
const _CUTP = "CfnUpdateTemplateProvider";
|
|
3921
3805
|
const _CUp = "CpuUtilization";
|
|
3806
|
+
const _CVED = "CurrentVersionEolDate";
|
|
3922
3807
|
const _CW = "CurrentWeight";
|
|
3923
3808
|
const _CWR = "CreateWorkforceRequest";
|
|
3924
3809
|
const _CWRr = "CreateWorkforceResponse";
|
|
@@ -4430,6 +4315,7 @@ const _Dol = "Dollars";
|
|
|
4430
4315
|
const _Dom = "Domains";
|
|
4431
4316
|
const _E = "Environment";
|
|
4432
4317
|
const _EA = "EndpointArn";
|
|
4318
|
+
const _EAMVU = "EnableAutoMinorVersionUpgrade";
|
|
4433
4319
|
const _EAx = "ExperimentArn";
|
|
4434
4320
|
const _EAxp = "ExportArtifacts";
|
|
4435
4321
|
const _EC = "ErrorCode";
|
|
@@ -4653,6 +4539,7 @@ const _GLGPRe = "GetLineageGroupPolicyResponse";
|
|
|
4653
4539
|
const _GMPGP = "GetModelPackageGroupPolicy";
|
|
4654
4540
|
const _GMPGPI = "GetModelPackageGroupPolicyInput";
|
|
4655
4541
|
const _GMPGPO = "GetModelPackageGroupPolicyOutput";
|
|
4542
|
+
const _GP = "GroupPatterns";
|
|
4656
4543
|
const _GSCR = "GetScalingConfigurationRecommendation";
|
|
4657
4544
|
const _GSCRR = "GetScalingConfigurationRecommendationRequest";
|
|
4658
4545
|
const _GSCRRe = "GetScalingConfigurationRecommendationResponse";
|
|
@@ -4753,6 +4640,7 @@ const _IA = "InferenceAttribute";
|
|
|
4753
4640
|
const _IALMA = "InitialActiveLearningModelArn";
|
|
4754
4641
|
const _IAT = "IpAddressType";
|
|
4755
4642
|
const _IATR = "InputArtifactsToRemove";
|
|
4643
|
+
const _IAU = "IncludeAvailableUpgrade";
|
|
4756
4644
|
const _IAV = "InferenceAmiVersion";
|
|
4757
4645
|
const _IAm = "ImageArn";
|
|
4758
4646
|
const _IAn = "InputArtifacts";
|
|
@@ -5823,6 +5711,9 @@ const _RES = "RuleEvaluationStatus";
|
|
|
5823
5711
|
const _RETB = "RequestedEndTimeBefore";
|
|
5824
5712
|
const _REe = "RetryableError";
|
|
5825
5713
|
const _RG = "ReportGenerated";
|
|
5714
|
+
const _RGA = "RoleGroupAssignments";
|
|
5715
|
+
const _RGAL = "RoleGroupAssignmentsList";
|
|
5716
|
+
const _RGAo = "RoleGroupAssignment";
|
|
5826
5717
|
const _RI = "ResolvedImage";
|
|
5827
5718
|
const _RIFN = "RecordIdentifierFeatureName";
|
|
5828
5719
|
const _RIG = "RestrictedInstanceGroups";
|
|
@@ -5853,6 +5744,7 @@ const _RMec = "RecommendationMetrics";
|
|
|
5853
5744
|
const _RN = "ReleaseNotes";
|
|
5854
5745
|
const _RNB = "RegisterNewBaseline";
|
|
5855
5746
|
const _RNF = "ResourceNotFound";
|
|
5747
|
+
const _RNo = "RoleName";
|
|
5856
5748
|
const _RNu = "RunName";
|
|
5857
5749
|
const _ROSU = "ResolvedOutputS3Uri";
|
|
5858
5750
|
const _RP = "RuleParameters";
|
|
@@ -6861,6 +6753,7 @@ var AutoMLSecurityConfig = [
|
|
|
6861
6753
|
var AutoParameter = [3, n0, _AP, 0, [_N, _VH], [0, 0]];
|
|
6862
6754
|
var AutoRollbackConfig = [3, n0, _ARC, 0, [_Al], [() => AlarmList]];
|
|
6863
6755
|
var Autotune = [3, n0, _Au, 0, [_M], [0]];
|
|
6756
|
+
var AvailableUpgrade = [3, n0, _AUv, 0, [_V, _RN], [0, 64 | 0]];
|
|
6864
6757
|
var BatchAddClusterNodesError = [3, n0, _BACNE, 0, [_IGN, _EC, _FC, _Me], [0, 0, 1, 0]];
|
|
6865
6758
|
var BatchAddClusterNodesRequest = [
|
|
6866
6759
|
3,
|
|
@@ -8046,8 +7939,8 @@ var CreatePartnerAppRequest = [
|
|
|
8046
7939
|
n0,
|
|
8047
7940
|
_CPAR,
|
|
8048
7941
|
0,
|
|
8049
|
-
[_N, _Ty, _ERA, _KKI, _MCa, _Ti, _ACp, _ATu, _EISBI, _CTl, _T],
|
|
8050
|
-
[0, 0, 0, 0, () => PartnerAppMaintenanceConfig, 0, () => PartnerAppConfig, 0, 2, [0, 4], () => TagList],
|
|
7942
|
+
[_N, _Ty, _ERA, _KKI, _MCa, _Ti, _ACp, _ATu, _EISBI, _EAMVU, _CTl, _T],
|
|
7943
|
+
[0, 0, 0, 0, () => PartnerAppMaintenanceConfig, 0, () => PartnerAppConfig, 0, 2, 2, [0, 4], () => TagList],
|
|
8051
7944
|
];
|
|
8052
7945
|
var CreatePartnerAppResponse = [3, n0, _CPARr, 0, [_Ar], [0]];
|
|
8053
7946
|
var CreatePipelineRequest = [
|
|
@@ -9550,14 +9443,34 @@ var DescribeOptimizationJobResponse = [
|
|
|
9550
9443
|
() => OptimizationVpcConfig,
|
|
9551
9444
|
],
|
|
9552
9445
|
];
|
|
9553
|
-
var DescribePartnerAppRequest = [3, n0, _DPARes, 0, [_Ar], [0]];
|
|
9446
|
+
var DescribePartnerAppRequest = [3, n0, _DPARes, 0, [_Ar, _IAU], [0, 2]];
|
|
9554
9447
|
var DescribePartnerAppResponse = [
|
|
9555
9448
|
3,
|
|
9556
9449
|
n0,
|
|
9557
9450
|
_DPAResc,
|
|
9558
9451
|
0,
|
|
9559
|
-
[_Ar, _N, _Ty, _St, _CT, _LMT, _ERA, _KKI, _BU, _MCa, _Ti, _V, _ACp, _ATu, _EISBI, _Er],
|
|
9560
|
-
[
|
|
9452
|
+
[_Ar, _N, _Ty, _St, _CT, _LMT, _ERA, _KKI, _BU, _MCa, _Ti, _V, _ACp, _ATu, _EISBI, _Er, _EAMVU, _CVED, _AUv],
|
|
9453
|
+
[
|
|
9454
|
+
0,
|
|
9455
|
+
0,
|
|
9456
|
+
0,
|
|
9457
|
+
0,
|
|
9458
|
+
4,
|
|
9459
|
+
4,
|
|
9460
|
+
0,
|
|
9461
|
+
0,
|
|
9462
|
+
0,
|
|
9463
|
+
() => PartnerAppMaintenanceConfig,
|
|
9464
|
+
0,
|
|
9465
|
+
0,
|
|
9466
|
+
() => PartnerAppConfig,
|
|
9467
|
+
0,
|
|
9468
|
+
2,
|
|
9469
|
+
() => ErrorInfo,
|
|
9470
|
+
2,
|
|
9471
|
+
4,
|
|
9472
|
+
() => AvailableUpgrade,
|
|
9473
|
+
],
|
|
9561
9474
|
];
|
|
9562
9475
|
var DescribePipelineDefinitionForExecutionRequest = [3, n0, _DPDFER, 0, [_PEA], [0]];
|
|
9563
9476
|
var DescribePipelineDefinitionForExecutionResponse = [
|
|
@@ -12726,7 +12639,14 @@ var ParameterRanges = [
|
|
|
12726
12639
|
];
|
|
12727
12640
|
var Parent = [3, n0, _Pare, 0, [_TN, _ENx], [0, 0]];
|
|
12728
12641
|
var ParentHyperParameterTuningJob = [3, n0, _PHPTJa, 0, [_HPTJN], [0]];
|
|
12729
|
-
var PartnerAppConfig = [
|
|
12642
|
+
var PartnerAppConfig = [
|
|
12643
|
+
3,
|
|
12644
|
+
n0,
|
|
12645
|
+
_PAC,
|
|
12646
|
+
0,
|
|
12647
|
+
[_AUd, _Arg, _AGP, _RGA],
|
|
12648
|
+
[64 | 0, 128 | 0, 64 | 0, () => RoleGroupAssignmentsList],
|
|
12649
|
+
];
|
|
12730
12650
|
var PartnerAppMaintenanceConfig = [3, n0, _PAMC, 0, [_MWS], [0]];
|
|
12731
12651
|
var PartnerAppSummary = [3, n0, _PAS, 0, [_Ar, _N, _Ty, _St, _CT], [0, 0, 0, 0, 4]];
|
|
12732
12652
|
var PendingDeploymentSummary = [
|
|
@@ -13331,6 +13251,7 @@ var RetryPipelineExecutionRequest = [
|
|
|
13331
13251
|
];
|
|
13332
13252
|
var RetryPipelineExecutionResponse = [3, n0, _RPERe, 0, [_PEA], [0]];
|
|
13333
13253
|
var RetryStrategy = [3, n0, _RSe, 0, [_MRAa], [1]];
|
|
13254
|
+
var RoleGroupAssignment = [3, n0, _RGAo, 0, [_RNo, _GP], [0, 64 | 0]];
|
|
13334
13255
|
var RollingDeploymentPolicy = [
|
|
13335
13256
|
3,
|
|
13336
13257
|
n0,
|
|
@@ -14441,8 +14362,8 @@ var UpdatePartnerAppRequest = [
|
|
|
14441
14362
|
n0,
|
|
14442
14363
|
_UPAR,
|
|
14443
14364
|
0,
|
|
14444
|
-
[_Ar, _MCa, _Ti, _ACp, _EISBI, _CTl, _T],
|
|
14445
|
-
[0, () => PartnerAppMaintenanceConfig, 0, () => PartnerAppConfig, 2, [0, 4], () => TagList],
|
|
14365
|
+
[_Ar, _MCa, _Ti, _ACp, _EISBI, _EAMVU, _AVp, _CTl, _T],
|
|
14366
|
+
[0, () => PartnerAppMaintenanceConfig, 0, () => PartnerAppConfig, 2, 2, 0, [0, 4], () => TagList],
|
|
14446
14367
|
];
|
|
14447
14368
|
var UpdatePartnerAppResponse = [3, n0, _UPARp, 0, [_Ar], [0]];
|
|
14448
14369
|
var UpdatePipelineExecutionRequest = [
|
|
@@ -14974,6 +14895,7 @@ var RenderingErrorList = [1, n0, _REL, 0, () => RenderingError];
|
|
|
14974
14895
|
var ReservedCapacityOfferings = [1, n0, _RCOe, 0, () => ReservedCapacityOffering];
|
|
14975
14896
|
var ReservedCapacitySummaries = [1, n0, _RCS, 0, () => ReservedCapacitySummary];
|
|
14976
14897
|
var ResourceCatalogList = [1, n0, _RCL, 0, () => ResourceCatalog];
|
|
14898
|
+
var RoleGroupAssignmentsList = [1, n0, _RGAL, 0, () => RoleGroupAssignment];
|
|
14977
14899
|
var ScalingPolicies = [1, n0, _SP, 0, () => ScalingPolicy];
|
|
14978
14900
|
var SearchExpressionList = [1, n0, _SEL, 0, () => SearchExpression];
|
|
14979
14901
|
var SearchResultsList = [1, n0, _SRL, 0, [() => SearchRecord, 0]];
|
|
@@ -1042,22 +1042,6 @@ export const FillingType = {
|
|
|
1042
1042
|
Middlefill: "middlefill",
|
|
1043
1043
|
MiddlefillValue: "middlefill_value",
|
|
1044
1044
|
};
|
|
1045
|
-
export var AutoMLProblemTypeConfig;
|
|
1046
|
-
(function (AutoMLProblemTypeConfig) {
|
|
1047
|
-
AutoMLProblemTypeConfig.visit = (value, visitor) => {
|
|
1048
|
-
if (value.ImageClassificationJobConfig !== undefined)
|
|
1049
|
-
return visitor.ImageClassificationJobConfig(value.ImageClassificationJobConfig);
|
|
1050
|
-
if (value.TextClassificationJobConfig !== undefined)
|
|
1051
|
-
return visitor.TextClassificationJobConfig(value.TextClassificationJobConfig);
|
|
1052
|
-
if (value.TimeSeriesForecastingJobConfig !== undefined)
|
|
1053
|
-
return visitor.TimeSeriesForecastingJobConfig(value.TimeSeriesForecastingJobConfig);
|
|
1054
|
-
if (value.TabularJobConfig !== undefined)
|
|
1055
|
-
return visitor.TabularJobConfig(value.TabularJobConfig);
|
|
1056
|
-
if (value.TextGenerationJobConfig !== undefined)
|
|
1057
|
-
return visitor.TextGenerationJobConfig(value.TextGenerationJobConfig);
|
|
1058
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1059
|
-
};
|
|
1060
|
-
})(AutoMLProblemTypeConfig || (AutoMLProblemTypeConfig = {}));
|
|
1061
1045
|
export const AutoMLProblemTypeConfigName = {
|
|
1062
1046
|
IMAGE_CLASSIFICATION: "ImageClassification",
|
|
1063
1047
|
TABULAR: "Tabular",
|
|
@@ -1065,16 +1049,6 @@ export const AutoMLProblemTypeConfigName = {
|
|
|
1065
1049
|
TEXT_GENERATION: "TextGeneration",
|
|
1066
1050
|
TIMESERIES_FORECASTING: "TimeSeriesForecasting",
|
|
1067
1051
|
};
|
|
1068
|
-
export var AutoMLProblemTypeResolvedAttributes;
|
|
1069
|
-
(function (AutoMLProblemTypeResolvedAttributes) {
|
|
1070
|
-
AutoMLProblemTypeResolvedAttributes.visit = (value, visitor) => {
|
|
1071
|
-
if (value.TabularResolvedAttributes !== undefined)
|
|
1072
|
-
return visitor.TabularResolvedAttributes(value.TabularResolvedAttributes);
|
|
1073
|
-
if (value.TextGenerationResolvedAttributes !== undefined)
|
|
1074
|
-
return visitor.TextGenerationResolvedAttributes(value.TextGenerationResolvedAttributes);
|
|
1075
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1076
|
-
};
|
|
1077
|
-
})(AutoMLProblemTypeResolvedAttributes || (AutoMLProblemTypeResolvedAttributes = {}));
|
|
1078
1052
|
export const AutoMLSortBy = {
|
|
1079
1053
|
CREATION_TIME: "CreationTime",
|
|
1080
1054
|
NAME: "Name",
|
|
@@ -1265,33 +1239,11 @@ export const ClusterConfigMode = {
|
|
|
1265
1239
|
DISABLE: "Disable",
|
|
1266
1240
|
ENABLE: "Enable",
|
|
1267
1241
|
};
|
|
1268
|
-
export var EventMetadata;
|
|
1269
|
-
(function (EventMetadata) {
|
|
1270
|
-
EventMetadata.visit = (value, visitor) => {
|
|
1271
|
-
if (value.Cluster !== undefined)
|
|
1272
|
-
return visitor.Cluster(value.Cluster);
|
|
1273
|
-
if (value.InstanceGroup !== undefined)
|
|
1274
|
-
return visitor.InstanceGroup(value.InstanceGroup);
|
|
1275
|
-
if (value.InstanceGroupScaling !== undefined)
|
|
1276
|
-
return visitor.InstanceGroupScaling(value.InstanceGroupScaling);
|
|
1277
|
-
if (value.Instance !== undefined)
|
|
1278
|
-
return visitor.Instance(value.Instance);
|
|
1279
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1280
|
-
};
|
|
1281
|
-
})(EventMetadata || (EventMetadata = {}));
|
|
1282
1242
|
export const ClusterEventResourceType = {
|
|
1283
1243
|
CLUSTER: "Cluster",
|
|
1284
1244
|
INSTANCE: "Instance",
|
|
1285
1245
|
INSTANCE_GROUP: "InstanceGroup",
|
|
1286
1246
|
};
|
|
1287
|
-
export var ClusterInstanceStorageConfig;
|
|
1288
|
-
(function (ClusterInstanceStorageConfig) {
|
|
1289
|
-
ClusterInstanceStorageConfig.visit = (value, visitor) => {
|
|
1290
|
-
if (value.EbsVolumeConfig !== undefined)
|
|
1291
|
-
return visitor.EbsVolumeConfig(value.EbsVolumeConfig);
|
|
1292
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1293
|
-
};
|
|
1294
|
-
})(ClusterInstanceStorageConfig || (ClusterInstanceStorageConfig = {}));
|
|
1295
1247
|
export const ClusterInstanceType = {
|
|
1296
1248
|
ML_C5N_18XLARGE: "ml.c5n.18xlarge",
|
|
1297
1249
|
ML_C5N_2XLARGE: "ml.c5n.2xlarge",
|
|
@@ -1405,6 +1357,7 @@ export const ClusterInstanceType = {
|
|
|
1405
1357
|
ML_T3_XLARGE: "ml.t3.xlarge",
|
|
1406
1358
|
ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge",
|
|
1407
1359
|
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
1360
|
+
ML_TRN2_3XLARGE: "ml.trn2.3xlarge",
|
|
1408
1361
|
ML_TRN2_48XLARGE: "ml.trn2.48xlarge",
|
|
1409
1362
|
};
|
|
1410
1363
|
export const DeepHealthCheckType = {
|
|
@@ -35,14 +35,6 @@ export const CodeRepositorySortOrder = {
|
|
|
35
35
|
ASCENDING: "Ascending",
|
|
36
36
|
DESCENDING: "Descending",
|
|
37
37
|
};
|
|
38
|
-
export var CollectionConfig;
|
|
39
|
-
(function (CollectionConfig) {
|
|
40
|
-
CollectionConfig.visit = (value, visitor) => {
|
|
41
|
-
if (value.VectorConfig !== undefined)
|
|
42
|
-
return visitor.VectorConfig(value.VectorConfig);
|
|
43
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
44
|
-
};
|
|
45
|
-
})(CollectionConfig || (CollectionConfig = {}));
|
|
46
38
|
export const CollectionType = {
|
|
47
39
|
LIST: "List",
|
|
48
40
|
SET: "Set",
|
|
@@ -334,18 +326,6 @@ export const ProcessingInstanceType = {
|
|
|
334
326
|
export const EdgePresetDeploymentType = {
|
|
335
327
|
GreengrassV2Component: "GreengrassV2Component",
|
|
336
328
|
};
|
|
337
|
-
export var CustomFileSystemConfig;
|
|
338
|
-
(function (CustomFileSystemConfig) {
|
|
339
|
-
CustomFileSystemConfig.visit = (value, visitor) => {
|
|
340
|
-
if (value.EFSFileSystemConfig !== undefined)
|
|
341
|
-
return visitor.EFSFileSystemConfig(value.EFSFileSystemConfig);
|
|
342
|
-
if (value.FSxLustreFileSystemConfig !== undefined)
|
|
343
|
-
return visitor.FSxLustreFileSystemConfig(value.FSxLustreFileSystemConfig);
|
|
344
|
-
if (value.S3FileSystemConfig !== undefined)
|
|
345
|
-
return visitor.S3FileSystemConfig(value.S3FileSystemConfig);
|
|
346
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
347
|
-
};
|
|
348
|
-
})(CustomFileSystemConfig || (CustomFileSystemConfig = {}));
|
|
349
329
|
export const RStudioServerProAccessStatus = {
|
|
350
330
|
Disabled: "DISABLED",
|
|
351
331
|
Enabled: "ENABLED",
|
|
@@ -80,18 +80,6 @@ export const OptimizationJobDeploymentInstanceType = {
|
|
|
80
80
|
ML_TRN1_2XLARGE: "ml.trn1.2xlarge",
|
|
81
81
|
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
82
82
|
};
|
|
83
|
-
export var OptimizationConfig;
|
|
84
|
-
(function (OptimizationConfig) {
|
|
85
|
-
OptimizationConfig.visit = (value, visitor) => {
|
|
86
|
-
if (value.ModelQuantizationConfig !== undefined)
|
|
87
|
-
return visitor.ModelQuantizationConfig(value.ModelQuantizationConfig);
|
|
88
|
-
if (value.ModelCompilationConfig !== undefined)
|
|
89
|
-
return visitor.ModelCompilationConfig(value.ModelCompilationConfig);
|
|
90
|
-
if (value.ModelShardingConfig !== undefined)
|
|
91
|
-
return visitor.ModelShardingConfig(value.ModelShardingConfig);
|
|
92
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
93
|
-
};
|
|
94
|
-
})(OptimizationConfig || (OptimizationConfig = {}));
|
|
95
83
|
export const PartnerAppAuthType = {
|
|
96
84
|
IAM: "IAM",
|
|
97
85
|
};
|
|
@@ -128,18 +116,6 @@ export const ProcessingS3DataType = {
|
|
|
128
116
|
MANIFEST_FILE: "ManifestFile",
|
|
129
117
|
S3_PREFIX: "S3Prefix",
|
|
130
118
|
};
|
|
131
|
-
export var CustomFileSystem;
|
|
132
|
-
(function (CustomFileSystem) {
|
|
133
|
-
CustomFileSystem.visit = (value, visitor) => {
|
|
134
|
-
if (value.EFSFileSystem !== undefined)
|
|
135
|
-
return visitor.EFSFileSystem(value.EFSFileSystem);
|
|
136
|
-
if (value.FSxLustreFileSystem !== undefined)
|
|
137
|
-
return visitor.FSxLustreFileSystem(value.FSxLustreFileSystem);
|
|
138
|
-
if (value.S3FileSystem !== undefined)
|
|
139
|
-
return visitor.S3FileSystem(value.S3FileSystem);
|
|
140
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
141
|
-
};
|
|
142
|
-
})(CustomFileSystem || (CustomFileSystem = {}));
|
|
143
119
|
export const SharingType = {
|
|
144
120
|
Private: "Private",
|
|
145
121
|
Shared: "Shared",
|
|
@@ -154,16 +130,6 @@ export const JoinSource = {
|
|
|
154
130
|
INPUT: "Input",
|
|
155
131
|
NONE: "None",
|
|
156
132
|
};
|
|
157
|
-
export var TrialComponentParameterValue;
|
|
158
|
-
(function (TrialComponentParameterValue) {
|
|
159
|
-
TrialComponentParameterValue.visit = (value, visitor) => {
|
|
160
|
-
if (value.StringValue !== undefined)
|
|
161
|
-
return visitor.StringValue(value.StringValue);
|
|
162
|
-
if (value.NumberValue !== undefined)
|
|
163
|
-
return visitor.NumberValue(value.NumberValue);
|
|
164
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
165
|
-
};
|
|
166
|
-
})(TrialComponentParameterValue || (TrialComponentParameterValue = {}));
|
|
167
133
|
export const TrialComponentPrimaryStatus = {
|
|
168
134
|
COMPLETED: "Completed",
|
|
169
135
|
FAILED: "Failed",
|
|
@@ -398,24 +398,6 @@ export const Direction = {
|
|
|
398
398
|
BOTH: "Both",
|
|
399
399
|
DESCENDANTS: "Descendants",
|
|
400
400
|
};
|
|
401
|
-
export var MetricSpecification;
|
|
402
|
-
(function (MetricSpecification) {
|
|
403
|
-
MetricSpecification.visit = (value, visitor) => {
|
|
404
|
-
if (value.Predefined !== undefined)
|
|
405
|
-
return visitor.Predefined(value.Predefined);
|
|
406
|
-
if (value.Customized !== undefined)
|
|
407
|
-
return visitor.Customized(value.Customized);
|
|
408
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
409
|
-
};
|
|
410
|
-
})(MetricSpecification || (MetricSpecification = {}));
|
|
411
|
-
export var ScalingPolicy;
|
|
412
|
-
(function (ScalingPolicy) {
|
|
413
|
-
ScalingPolicy.visit = (value, visitor) => {
|
|
414
|
-
if (value.TargetTracking !== undefined)
|
|
415
|
-
return visitor.TargetTracking(value.TargetTracking);
|
|
416
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
417
|
-
};
|
|
418
|
-
})(ScalingPolicy || (ScalingPolicy = {}));
|
|
419
401
|
export const EndpointConfigSortKey = {
|
|
420
402
|
CreationTime: "CreationTime",
|
|
421
403
|
Name: "Name",
|
|
@@ -450,7 +432,3 @@ export const Operator = {
|
|
|
450
432
|
NOT_EQUALS: "NotEquals",
|
|
451
433
|
NOT_EXISTS: "NotExists",
|
|
452
434
|
};
|
|
453
|
-
export const SagemakerServicecatalogStatus = {
|
|
454
|
-
DISABLED: "Disabled",
|
|
455
|
-
ENABLED: "Enabled",
|
|
456
|
-
};
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export const SagemakerServicecatalogStatus = {
|
|
2
|
+
DISABLED: "Disabled",
|
|
3
|
+
ENABLED: "Enabled",
|
|
4
|
+
};
|
|
1
5
|
export const ResourceType = {
|
|
2
6
|
ENDPOINT: "Endpoint",
|
|
3
7
|
EXPERIMENT: "Experiment",
|
|
@@ -311,7 +315,3 @@ export const SortTrialComponentsBy = {
|
|
|
311
315
|
CREATION_TIME: "CreationTime",
|
|
312
316
|
NAME: "Name",
|
|
313
317
|
};
|
|
314
|
-
export const SortTrialsBy = {
|
|
315
|
-
CREATION_TIME: "CreationTime",
|
|
316
|
-
NAME: "Name",
|
|
317
|
-
};
|