@aws-sdk/client-sagemaker 3.644.0 → 3.646.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.
Files changed (40) hide show
  1. package/dist-cjs/index.js +60 -27
  2. package/dist-es/commands/DescribeModelCardCommand.js +1 -1
  3. package/dist-es/models/models_0.js +4 -0
  4. package/dist-es/models/models_1.js +0 -15
  5. package/dist-es/models/models_2.js +15 -0
  6. package/dist-es/models/models_3.js +0 -7
  7. package/dist-es/models/models_4.js +7 -0
  8. package/dist-es/protocols/Aws_json1_1.js +27 -0
  9. package/dist-types/commands/CreateArtifactCommand.d.ts +2 -1
  10. package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -2
  11. package/dist-types/commands/CreateDomainCommand.d.ts +24 -0
  12. package/dist-types/commands/CreateSpaceCommand.d.ts +10 -0
  13. package/dist-types/commands/CreateUserProfileCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeDomainCommand.d.ts +24 -0
  15. package/dist-types/commands/DescribeModelBiasJobDefinitionCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeModelCardCommand.d.ts +1 -2
  17. package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeSpaceCommand.d.ts +10 -0
  19. package/dist-types/commands/DescribeUserProfileCommand.d.ts +16 -0
  20. package/dist-types/commands/ListModelCardsCommand.d.ts +1 -1
  21. package/dist-types/commands/UpdateDomainCommand.d.ts +24 -0
  22. package/dist-types/commands/UpdateSpaceCommand.d.ts +10 -0
  23. package/dist-types/commands/UpdateUserProfileCommand.d.ts +16 -0
  24. package/dist-types/models/models_0.d.ts +55 -107
  25. package/dist-types/models/models_1.d.ts +113 -40
  26. package/dist-types/models/models_2.d.ts +73 -161
  27. package/dist-types/models/models_3.d.ts +162 -139
  28. package/dist-types/models/models_4.d.ts +137 -1
  29. package/dist-types/ts3.4/commands/CreateArtifactCommand.d.ts +2 -4
  30. package/dist-types/ts3.4/commands/CreateAutoMLJobCommand.d.ts +4 -2
  31. package/dist-types/ts3.4/commands/DescribeModelBiasJobDefinitionCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/DescribeModelCardCommand.d.ts +4 -2
  33. package/dist-types/ts3.4/commands/DescribeModelCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/ListModelCardsCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +16 -19
  36. package/dist-types/ts3.4/models/models_1.d.ts +24 -21
  37. package/dist-types/ts3.4/models/models_2.d.ts +29 -44
  38. package/dist-types/ts3.4/models/models_3.d.ts +41 -32
  39. package/dist-types/ts3.4/models/models_4.d.ts +33 -2
  40. package/package.json +6 -6
package/dist-cjs/index.js CHANGED
@@ -345,6 +345,7 @@ __export(src_exports, {
345
345
  JoinSource: () => JoinSource,
346
346
  LabelingJobStatus: () => LabelingJobStatus,
347
347
  LastUpdateStatusValue: () => LastUpdateStatusValue,
348
+ LifecycleManagement: () => LifecycleManagement,
348
349
  LineageType: () => LineageType,
349
350
  ListActionsCommand: () => ListActionsCommand,
350
351
  ListAlgorithmsCommand: () => ListAlgorithmsCommand,
@@ -1627,6 +1628,10 @@ var AppImageConfigSortKey = {
1627
1628
  LastModifiedTime: "LastModifiedTime",
1628
1629
  Name: "Name"
1629
1630
  };
1631
+ var LifecycleManagement = {
1632
+ Disabled: "DISABLED",
1633
+ Enabled: "ENABLED"
1634
+ };
1630
1635
  var AppNetworkAccessType = {
1631
1636
  PublicInternetOnly: "PublicInternetOnly",
1632
1637
  VpcOnly: "VpcOnly"
@@ -2225,6 +2230,21 @@ var ResourceInUse = _ResourceInUse;
2225
2230
 
2226
2231
  // src/models/models_2.ts
2227
2232
 
2233
+ var DataDistributionType = {
2234
+ FULLYREPLICATED: "FullyReplicated",
2235
+ SHARDEDBYS3KEY: "ShardedByS3Key"
2236
+ };
2237
+ var InputMode = {
2238
+ FILE: "File",
2239
+ PIPE: "Pipe"
2240
+ };
2241
+ var RedshiftResultCompressionType = {
2242
+ BZIP2: "BZIP2",
2243
+ GZIP: "GZIP",
2244
+ NONE: "None",
2245
+ SNAPPY: "SNAPPY",
2246
+ ZSTD: "ZSTD"
2247
+ };
2228
2248
  var RedshiftResultFormat = {
2229
2249
  CSV: "CSV",
2230
2250
  PARQUET: "PARQUET"
@@ -10329,6 +10349,11 @@ var de_AppImageConfigList = /* @__PURE__ */ __name((output, context) => {
10329
10349
  });
10330
10350
  return retVal;
10331
10351
  }, "de_AppImageConfigList");
10352
+ var de_AppLifecycleManagement = /* @__PURE__ */ __name((output, context) => {
10353
+ return (0, import_smithy_client.take)(output, {
10354
+ IdleSettings: (_) => de_IdleSettings(_, context)
10355
+ });
10356
+ }, "de_AppLifecycleManagement");
10332
10357
  var de_AppList = /* @__PURE__ */ __name((output, context) => {
10333
10358
  const retVal = (output || []).filter((e) => e != null).map((entry) => {
10334
10359
  return de_AppDetails(entry, context);
@@ -11146,6 +11171,7 @@ var de_CodeEditorAppImageConfig = /* @__PURE__ */ __name((output, context) => {
11146
11171
  }, "de_CodeEditorAppImageConfig");
11147
11172
  var de_CodeEditorAppSettings = /* @__PURE__ */ __name((output, context) => {
11148
11173
  return (0, import_smithy_client.take)(output, {
11174
+ AppLifecycleManagement: (_) => de_AppLifecycleManagement(_, context),
11149
11175
  CustomImages: (_) => de_CustomImages(_, context),
11150
11176
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
11151
11177
  LifecycleConfigArns: (_) => de_LifecycleConfigArns(_, context)
@@ -14220,6 +14246,14 @@ var de_IdentityProviderOAuthSettings = /* @__PURE__ */ __name((output, context)
14220
14246
  });
14221
14247
  return retVal;
14222
14248
  }, "de_IdentityProviderOAuthSettings");
14249
+ var de_IdleSettings = /* @__PURE__ */ __name((output, context) => {
14250
+ return (0, import_smithy_client.take)(output, {
14251
+ IdleTimeoutInMinutes: import_smithy_client.expectInt32,
14252
+ LifecycleManagement: import_smithy_client.expectString,
14253
+ MaxIdleTimeoutInMinutes: import_smithy_client.expectInt32,
14254
+ MinIdleTimeoutInMinutes: import_smithy_client.expectInt32
14255
+ });
14256
+ }, "de_IdleSettings");
14223
14257
  var de_Image = /* @__PURE__ */ __name((output, context) => {
14224
14258
  return (0, import_smithy_client.take)(output, {
14225
14259
  CreationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
@@ -14519,6 +14553,7 @@ var de_JupyterLabAppImageConfig = /* @__PURE__ */ __name((output, context) => {
14519
14553
  }, "de_JupyterLabAppImageConfig");
14520
14554
  var de_JupyterLabAppSettings = /* @__PURE__ */ __name((output, context) => {
14521
14555
  return (0, import_smithy_client.take)(output, {
14556
+ AppLifecycleManagement: (_) => de_AppLifecycleManagement(_, context),
14522
14557
  CodeRepositories: (_) => de_CodeRepositories(_, context),
14523
14558
  CustomImages: (_) => de_CustomImages(_, context),
14524
14559
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
@@ -17400,8 +17435,14 @@ var de_SourceIpConfig = /* @__PURE__ */ __name((output, context) => {
17400
17435
  Cidrs: (_) => de_Cidrs(_, context)
17401
17436
  });
17402
17437
  }, "de_SourceIpConfig");
17438
+ var de_SpaceAppLifecycleManagement = /* @__PURE__ */ __name((output, context) => {
17439
+ return (0, import_smithy_client.take)(output, {
17440
+ IdleSettings: (_) => de_SpaceIdleSettings(_, context)
17441
+ });
17442
+ }, "de_SpaceAppLifecycleManagement");
17403
17443
  var de_SpaceCodeEditorAppSettings = /* @__PURE__ */ __name((output, context) => {
17404
17444
  return (0, import_smithy_client.take)(output, {
17445
+ AppLifecycleManagement: (_) => de_SpaceAppLifecycleManagement(_, context),
17405
17446
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context)
17406
17447
  });
17407
17448
  }, "de_SpaceCodeEditorAppSettings");
@@ -17418,8 +17459,14 @@ var de_SpaceDetails = /* @__PURE__ */ __name((output, context) => {
17418
17459
  Status: import_smithy_client.expectString
17419
17460
  });
17420
17461
  }, "de_SpaceDetails");
17462
+ var de_SpaceIdleSettings = /* @__PURE__ */ __name((output, context) => {
17463
+ return (0, import_smithy_client.take)(output, {
17464
+ IdleTimeoutInMinutes: import_smithy_client.expectInt32
17465
+ });
17466
+ }, "de_SpaceIdleSettings");
17421
17467
  var de_SpaceJupyterLabAppSettings = /* @__PURE__ */ __name((output, context) => {
17422
17468
  return (0, import_smithy_client.take)(output, {
17469
+ AppLifecycleManagement: (_) => de_SpaceAppLifecycleManagement(_, context),
17423
17470
  CodeRepositories: (_) => de_CodeRepositories(_, context),
17424
17471
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context)
17425
17472
  });
@@ -19627,21 +19674,6 @@ var OptimizationConfig;
19627
19674
  return visitor._(value.$unknown[0], value.$unknown[1]);
19628
19675
  }, "visit");
19629
19676
  })(OptimizationConfig || (OptimizationConfig = {}));
19630
- var DataDistributionType = {
19631
- FULLYREPLICATED: "FullyReplicated",
19632
- SHARDEDBYS3KEY: "ShardedByS3Key"
19633
- };
19634
- var InputMode = {
19635
- FILE: "File",
19636
- PIPE: "Pipe"
19637
- };
19638
- var RedshiftResultCompressionType = {
19639
- BZIP2: "BZIP2",
19640
- GZIP: "GZIP",
19641
- NONE: "None",
19642
- SNAPPY: "SNAPPY",
19643
- ZSTD: "ZSTD"
19644
- };
19645
19677
  var CreateModelCardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
19646
19678
  ...obj,
19647
19679
  ...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
@@ -21899,13 +21931,6 @@ var ModelCardSortBy = {
21899
21931
  CREATION_TIME: "CreationTime",
21900
21932
  NAME: "Name"
21901
21933
  };
21902
- var ModelCardSortOrder = {
21903
- ASCENDING: "Ascending",
21904
- DESCENDING: "Descending"
21905
- };
21906
- var ModelCardVersionSortBy = {
21907
- VERSION: "Version"
21908
- };
21909
21934
  var DescribeModelCardResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
21910
21935
  ...obj,
21911
21936
  ...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
@@ -23807,6 +23832,13 @@ var RetryPipelineExecutionCommand = _RetryPipelineExecutionCommand;
23807
23832
 
23808
23833
  // src/models/models_4.ts
23809
23834
 
23835
+ var ModelCardSortOrder = {
23836
+ ASCENDING: "Ascending",
23837
+ DESCENDING: "Descending"
23838
+ };
23839
+ var ModelCardVersionSortBy = {
23840
+ VERSION: "Version"
23841
+ };
23810
23842
  var ModelMetadataFilterType = {
23811
23843
  DOMAIN: "Domain",
23812
23844
  FRAMEWORK: "Framework",
@@ -26651,6 +26683,7 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
26651
26683
  AppInstanceType,
26652
26684
  AppStatus,
26653
26685
  AppImageConfigSortKey,
26686
+ LifecycleManagement,
26654
26687
  AppNetworkAccessType,
26655
26688
  AppSecurityGroupManagement,
26656
26689
  AppSortKey,
@@ -26769,12 +26802,12 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
26769
26802
  RootAccess,
26770
26803
  OptimizationJobDeploymentInstanceType,
26771
26804
  OptimizationConfig,
26772
- DataDistributionType,
26773
- InputMode,
26774
- RedshiftResultCompressionType,
26775
26805
  CreateModelCardRequestFilterSensitiveLog,
26776
26806
  ModelPackageModelCardFilterSensitiveLog,
26777
26807
  CreateModelPackageInputFilterSensitiveLog,
26808
+ DataDistributionType,
26809
+ InputMode,
26810
+ RedshiftResultCompressionType,
26778
26811
  RedshiftResultFormat,
26779
26812
  ProcessingS3CompressionType,
26780
26813
  ProcessingS3DataType,
@@ -26880,10 +26913,10 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
26880
26913
  ModelCardExportJobSortBy,
26881
26914
  ModelCardExportJobSortOrder,
26882
26915
  ModelCardSortBy,
26883
- ModelCardSortOrder,
26884
- ModelCardVersionSortBy,
26885
26916
  DescribeModelCardResponseFilterSensitiveLog,
26886
26917
  DescribeModelPackageOutputFilterSensitiveLog,
26918
+ ModelCardSortOrder,
26919
+ ModelCardVersionSortBy,
26887
26920
  ModelMetadataFilterType,
26888
26921
  ModelPackageGroupSortBy,
26889
26922
  ModelPackageType,
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { DescribeModelCardResponseFilterSensitiveLog } from "../models/models_3";
5
+ import { DescribeModelCardResponseFilterSensitiveLog, } from "../models/models_3";
6
6
  import { de_DescribeModelCardCommand, se_DescribeModelCardCommand } from "../protocols/Aws_json1_1";
7
7
  export { $Command };
8
8
  export class DescribeModelCardCommand extends $Command
@@ -684,6 +684,10 @@ export const AppImageConfigSortKey = {
684
684
  LastModifiedTime: "LastModifiedTime",
685
685
  Name: "Name",
686
686
  };
687
+ export const LifecycleManagement = {
688
+ Disabled: "DISABLED",
689
+ Enabled: "ENABLED",
690
+ };
687
691
  export const AppNetworkAccessType = {
688
692
  PublicInternetOnly: "PublicInternetOnly",
689
693
  VpcOnly: "VpcOnly",
@@ -481,21 +481,6 @@ export var OptimizationConfig;
481
481
  return visitor._(value.$unknown[0], value.$unknown[1]);
482
482
  };
483
483
  })(OptimizationConfig || (OptimizationConfig = {}));
484
- export const DataDistributionType = {
485
- FULLYREPLICATED: "FullyReplicated",
486
- SHARDEDBYS3KEY: "ShardedByS3Key",
487
- };
488
- export const InputMode = {
489
- FILE: "File",
490
- PIPE: "Pipe",
491
- };
492
- export const RedshiftResultCompressionType = {
493
- BZIP2: "BZIP2",
494
- GZIP: "GZIP",
495
- NONE: "None",
496
- SNAPPY: "SNAPPY",
497
- ZSTD: "ZSTD",
498
- };
499
484
  export const CreateModelCardRequestFilterSensitiveLog = (obj) => ({
500
485
  ...obj,
501
486
  ...(obj.Content && { Content: SENSITIVE_STRING }),
@@ -1,4 +1,19 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ export const DataDistributionType = {
3
+ FULLYREPLICATED: "FullyReplicated",
4
+ SHARDEDBYS3KEY: "ShardedByS3Key",
5
+ };
6
+ export const InputMode = {
7
+ FILE: "File",
8
+ PIPE: "Pipe",
9
+ };
10
+ export const RedshiftResultCompressionType = {
11
+ BZIP2: "BZIP2",
12
+ GZIP: "GZIP",
13
+ NONE: "None",
14
+ SNAPPY: "SNAPPY",
15
+ ZSTD: "ZSTD",
16
+ };
2
17
  export const RedshiftResultFormat = {
3
18
  CSV: "CSV",
4
19
  PARQUET: "PARQUET",
@@ -384,13 +384,6 @@ export const ModelCardSortBy = {
384
384
  CREATION_TIME: "CreationTime",
385
385
  NAME: "Name",
386
386
  };
387
- export const ModelCardSortOrder = {
388
- ASCENDING: "Ascending",
389
- DESCENDING: "Descending",
390
- };
391
- export const ModelCardVersionSortBy = {
392
- VERSION: "Version",
393
- };
394
387
  export const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
395
388
  ...obj,
396
389
  ...(obj.Content && { Content: SENSITIVE_STRING }),
@@ -1,6 +1,13 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { ModelPackageModelCardFilterSensitiveLog, } from "./models_1";
3
3
  import { OidcConfigFilterSensitiveLog, } from "./models_2";
4
+ export const ModelCardSortOrder = {
5
+ ASCENDING: "Ascending",
6
+ DESCENDING: "Descending",
7
+ };
8
+ export const ModelCardVersionSortBy = {
9
+ VERSION: "Version",
10
+ };
4
11
  export const ModelMetadataFilterType = {
5
12
  DOMAIN: "Domain",
6
13
  FRAMEWORK: "Framework",
@@ -7842,6 +7842,11 @@ const de_AppImageConfigList = (output, context) => {
7842
7842
  });
7843
7843
  return retVal;
7844
7844
  };
7845
+ const de_AppLifecycleManagement = (output, context) => {
7846
+ return take(output, {
7847
+ IdleSettings: (_) => de_IdleSettings(_, context),
7848
+ });
7849
+ };
7845
7850
  const de_AppList = (output, context) => {
7846
7851
  const retVal = (output || [])
7847
7852
  .filter((e) => e != null)
@@ -8710,6 +8715,7 @@ const de_CodeEditorAppImageConfig = (output, context) => {
8710
8715
  };
8711
8716
  const de_CodeEditorAppSettings = (output, context) => {
8712
8717
  return take(output, {
8718
+ AppLifecycleManagement: (_) => de_AppLifecycleManagement(_, context),
8713
8719
  CustomImages: (_) => de_CustomImages(_, context),
8714
8720
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
8715
8721
  LifecycleConfigArns: (_) => de_LifecycleConfigArns(_, context),
@@ -11922,6 +11928,14 @@ const de_IdentityProviderOAuthSettings = (output, context) => {
11922
11928
  });
11923
11929
  return retVal;
11924
11930
  };
11931
+ const de_IdleSettings = (output, context) => {
11932
+ return take(output, {
11933
+ IdleTimeoutInMinutes: __expectInt32,
11934
+ LifecycleManagement: __expectString,
11935
+ MaxIdleTimeoutInMinutes: __expectInt32,
11936
+ MinIdleTimeoutInMinutes: __expectInt32,
11937
+ });
11938
+ };
11925
11939
  const de_Image = (output, context) => {
11926
11940
  return take(output, {
11927
11941
  CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -12247,6 +12261,7 @@ const de_JupyterLabAppImageConfig = (output, context) => {
12247
12261
  };
12248
12262
  const de_JupyterLabAppSettings = (output, context) => {
12249
12263
  return take(output, {
12264
+ AppLifecycleManagement: (_) => de_AppLifecycleManagement(_, context),
12250
12265
  CodeRepositories: (_) => de_CodeRepositories(_, context),
12251
12266
  CustomImages: (_) => de_CustomImages(_, context),
12252
12267
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
@@ -15304,8 +15319,14 @@ const de_SourceIpConfig = (output, context) => {
15304
15319
  Cidrs: (_) => de_Cidrs(_, context),
15305
15320
  });
15306
15321
  };
15322
+ const de_SpaceAppLifecycleManagement = (output, context) => {
15323
+ return take(output, {
15324
+ IdleSettings: (_) => de_SpaceIdleSettings(_, context),
15325
+ });
15326
+ };
15307
15327
  const de_SpaceCodeEditorAppSettings = (output, context) => {
15308
15328
  return take(output, {
15329
+ AppLifecycleManagement: (_) => de_SpaceAppLifecycleManagement(_, context),
15309
15330
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
15310
15331
  });
15311
15332
  };
@@ -15322,8 +15343,14 @@ const de_SpaceDetails = (output, context) => {
15322
15343
  Status: __expectString,
15323
15344
  });
15324
15345
  };
15346
+ const de_SpaceIdleSettings = (output, context) => {
15347
+ return take(output, {
15348
+ IdleTimeoutInMinutes: __expectInt32,
15349
+ });
15350
+ };
15325
15351
  const de_SpaceJupyterLabAppSettings = (output, context) => {
15326
15352
  return take(output, {
15353
+ AppLifecycleManagement: (_) => de_SpaceAppLifecycleManagement(_, context),
15327
15354
  CodeRepositories: (_) => de_CodeRepositories(_, context),
15328
15355
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
15329
15356
  });
@@ -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 { CreateArtifactRequest, CreateArtifactResponse } from "../models/models_0";
3
+ import { CreateArtifactRequest } from "../models/models_0";
4
+ import { CreateArtifactResponse } from "../models/models_1";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @public
@@ -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 { CreateAutoMLJobRequest } from "../models/models_0";
4
- import { CreateAutoMLJobResponse } from "../models/models_1";
3
+ import { CreateAutoMLJobRequest, CreateAutoMLJobResponse } from "../models/models_1";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -207,6 +207,14 @@ declare const CreateDomainCommand_base: {
207
207
  * LifecycleConfigArns: [
208
208
  * "STRING_VALUE",
209
209
  * ],
210
+ * AppLifecycleManagement: { // AppLifecycleManagement
211
+ * IdleSettings: { // IdleSettings
212
+ * LifecycleManagement: "ENABLED" || "DISABLED",
213
+ * IdleTimeoutInMinutes: Number("int"),
214
+ * MinIdleTimeoutInMinutes: Number("int"),
215
+ * MaxIdleTimeoutInMinutes: Number("int"),
216
+ * },
217
+ * },
210
218
  * },
211
219
  * JupyterLabAppSettings: { // JupyterLabAppSettings
212
220
  * DefaultResourceSpec: "<ResourceSpec>",
@@ -225,6 +233,14 @@ declare const CreateDomainCommand_base: {
225
233
  * RepositoryUrl: "STRING_VALUE", // required
226
234
  * },
227
235
  * ],
236
+ * AppLifecycleManagement: {
237
+ * IdleSettings: {
238
+ * LifecycleManagement: "ENABLED" || "DISABLED",
239
+ * IdleTimeoutInMinutes: Number("int"),
240
+ * MinIdleTimeoutInMinutes: Number("int"),
241
+ * MaxIdleTimeoutInMinutes: Number("int"),
242
+ * },
243
+ * },
228
244
  * EmrSettings: { // EmrSettings
229
245
  * AssumableRoleArns: [ // AssumableRoleArns
230
246
  * "STRING_VALUE",
@@ -336,6 +352,14 @@ declare const CreateDomainCommand_base: {
336
352
  * RepositoryUrl: "STRING_VALUE", // required
337
353
  * },
338
354
  * ],
355
+ * AppLifecycleManagement: {
356
+ * IdleSettings: {
357
+ * LifecycleManagement: "ENABLED" || "DISABLED",
358
+ * IdleTimeoutInMinutes: Number("int"),
359
+ * MinIdleTimeoutInMinutes: Number("int"),
360
+ * MaxIdleTimeoutInMinutes: Number("int"),
361
+ * },
362
+ * },
339
363
  * EmrSettings: {
340
364
  * AssumableRoleArns: [
341
365
  * "STRING_VALUE",
@@ -88,6 +88,11 @@ declare const CreateSpaceCommand_base: {
88
88
  * InstanceType: "system" || "ml.t3.micro" || "ml.t3.small" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.m5d.large" || "ml.m5d.xlarge" || "ml.m5d.2xlarge" || "ml.m5d.4xlarge" || "ml.m5d.8xlarge" || "ml.m5d.12xlarge" || "ml.m5d.16xlarge" || "ml.m5d.24xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.g6.xlarge" || "ml.g6.2xlarge" || "ml.g6.4xlarge" || "ml.g6.8xlarge" || "ml.g6.12xlarge" || "ml.g6.16xlarge" || "ml.g6.24xlarge" || "ml.g6.48xlarge" || "ml.geospatial.interactive" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge" || "ml.p5.48xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.m6id.large" || "ml.m6id.xlarge" || "ml.m6id.2xlarge" || "ml.m6id.4xlarge" || "ml.m6id.8xlarge" || "ml.m6id.12xlarge" || "ml.m6id.16xlarge" || "ml.m6id.24xlarge" || "ml.m6id.32xlarge" || "ml.c6id.large" || "ml.c6id.xlarge" || "ml.c6id.2xlarge" || "ml.c6id.4xlarge" || "ml.c6id.8xlarge" || "ml.c6id.12xlarge" || "ml.c6id.16xlarge" || "ml.c6id.24xlarge" || "ml.c6id.32xlarge" || "ml.r6id.large" || "ml.r6id.xlarge" || "ml.r6id.2xlarge" || "ml.r6id.4xlarge" || "ml.r6id.8xlarge" || "ml.r6id.12xlarge" || "ml.r6id.16xlarge" || "ml.r6id.24xlarge" || "ml.r6id.32xlarge",
89
89
  * LifecycleConfigArn: "STRING_VALUE",
90
90
  * },
91
+ * AppLifecycleManagement: { // SpaceAppLifecycleManagement
92
+ * IdleSettings: { // SpaceIdleSettings
93
+ * IdleTimeoutInMinutes: Number("int"),
94
+ * },
95
+ * },
91
96
  * },
92
97
  * JupyterLabAppSettings: { // SpaceJupyterLabAppSettings
93
98
  * DefaultResourceSpec: {
@@ -102,6 +107,11 @@ declare const CreateSpaceCommand_base: {
102
107
  * RepositoryUrl: "STRING_VALUE", // required
103
108
  * },
104
109
  * ],
110
+ * AppLifecycleManagement: {
111
+ * IdleSettings: {
112
+ * IdleTimeoutInMinutes: Number("int"),
113
+ * },
114
+ * },
105
115
  * },
106
116
  * AppType: "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
107
117
  * SpaceStorageSettings: { // SpaceStorageSettings
@@ -178,6 +178,14 @@ declare const CreateUserProfileCommand_base: {
178
178
  * LifecycleConfigArns: [
179
179
  * "STRING_VALUE",
180
180
  * ],
181
+ * AppLifecycleManagement: { // AppLifecycleManagement
182
+ * IdleSettings: { // IdleSettings
183
+ * LifecycleManagement: "ENABLED" || "DISABLED",
184
+ * IdleTimeoutInMinutes: Number("int"),
185
+ * MinIdleTimeoutInMinutes: Number("int"),
186
+ * MaxIdleTimeoutInMinutes: Number("int"),
187
+ * },
188
+ * },
181
189
  * },
182
190
  * JupyterLabAppSettings: { // JupyterLabAppSettings
183
191
  * DefaultResourceSpec: "<ResourceSpec>",
@@ -196,6 +204,14 @@ declare const CreateUserProfileCommand_base: {
196
204
  * RepositoryUrl: "STRING_VALUE", // required
197
205
  * },
198
206
  * ],
207
+ * AppLifecycleManagement: {
208
+ * IdleSettings: {
209
+ * LifecycleManagement: "ENABLED" || "DISABLED",
210
+ * IdleTimeoutInMinutes: Number("int"),
211
+ * MinIdleTimeoutInMinutes: Number("int"),
212
+ * MaxIdleTimeoutInMinutes: Number("int"),
213
+ * },
214
+ * },
199
215
  * EmrSettings: { // EmrSettings
200
216
  * AssumableRoleArns: [ // AssumableRoleArns
201
217
  * "STRING_VALUE",
@@ -179,6 +179,14 @@ declare const DescribeDomainCommand_base: {
179
179
  * // LifecycleConfigArns: [
180
180
  * // "STRING_VALUE",
181
181
  * // ],
182
+ * // AppLifecycleManagement: { // AppLifecycleManagement
183
+ * // IdleSettings: { // IdleSettings
184
+ * // LifecycleManagement: "ENABLED" || "DISABLED",
185
+ * // IdleTimeoutInMinutes: Number("int"),
186
+ * // MinIdleTimeoutInMinutes: Number("int"),
187
+ * // MaxIdleTimeoutInMinutes: Number("int"),
188
+ * // },
189
+ * // },
182
190
  * // },
183
191
  * // JupyterLabAppSettings: { // JupyterLabAppSettings
184
192
  * // DefaultResourceSpec: "<ResourceSpec>",
@@ -197,6 +205,14 @@ declare const DescribeDomainCommand_base: {
197
205
  * // RepositoryUrl: "STRING_VALUE", // required
198
206
  * // },
199
207
  * // ],
208
+ * // AppLifecycleManagement: {
209
+ * // IdleSettings: {
210
+ * // LifecycleManagement: "ENABLED" || "DISABLED",
211
+ * // IdleTimeoutInMinutes: Number("int"),
212
+ * // MinIdleTimeoutInMinutes: Number("int"),
213
+ * // MaxIdleTimeoutInMinutes: Number("int"),
214
+ * // },
215
+ * // },
200
216
  * // EmrSettings: { // EmrSettings
201
217
  * // AssumableRoleArns: [ // AssumableRoleArns
202
218
  * // "STRING_VALUE",
@@ -303,6 +319,14 @@ declare const DescribeDomainCommand_base: {
303
319
  * // RepositoryUrl: "STRING_VALUE", // required
304
320
  * // },
305
321
  * // ],
322
+ * // AppLifecycleManagement: {
323
+ * // IdleSettings: {
324
+ * // LifecycleManagement: "ENABLED" || "DISABLED",
325
+ * // IdleTimeoutInMinutes: Number("int"),
326
+ * // MinIdleTimeoutInMinutes: Number("int"),
327
+ * // MaxIdleTimeoutInMinutes: Number("int"),
328
+ * // },
329
+ * // },
306
330
  * // EmrSettings: {
307
331
  * // AssumableRoleArns: [
308
332
  * // "STRING_VALUE",
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeModelBiasJobDefinitionRequest, DescribeModelBiasJobDefinitionResponse } from "../models/models_2";
3
+ import { DescribeModelBiasJobDefinitionRequest, DescribeModelBiasJobDefinitionResponse } from "../models/models_3";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -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 { DescribeModelCardRequest } from "../models/models_2";
4
- import { DescribeModelCardResponse } from "../models/models_3";
3
+ import { DescribeModelCardRequest, DescribeModelCardResponse } from "../models/models_3";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeModelInput, DescribeModelOutput } from "../models/models_2";
3
+ import { DescribeModelInput, DescribeModelOutput } from "../models/models_3";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -94,6 +94,11 @@ declare const DescribeSpaceCommand_base: {
94
94
  * // InstanceType: "system" || "ml.t3.micro" || "ml.t3.small" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.m5d.large" || "ml.m5d.xlarge" || "ml.m5d.2xlarge" || "ml.m5d.4xlarge" || "ml.m5d.8xlarge" || "ml.m5d.12xlarge" || "ml.m5d.16xlarge" || "ml.m5d.24xlarge" || "ml.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.g6.xlarge" || "ml.g6.2xlarge" || "ml.g6.4xlarge" || "ml.g6.8xlarge" || "ml.g6.12xlarge" || "ml.g6.16xlarge" || "ml.g6.24xlarge" || "ml.g6.48xlarge" || "ml.geospatial.interactive" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge" || "ml.p5.48xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.m6id.large" || "ml.m6id.xlarge" || "ml.m6id.2xlarge" || "ml.m6id.4xlarge" || "ml.m6id.8xlarge" || "ml.m6id.12xlarge" || "ml.m6id.16xlarge" || "ml.m6id.24xlarge" || "ml.m6id.32xlarge" || "ml.c6id.large" || "ml.c6id.xlarge" || "ml.c6id.2xlarge" || "ml.c6id.4xlarge" || "ml.c6id.8xlarge" || "ml.c6id.12xlarge" || "ml.c6id.16xlarge" || "ml.c6id.24xlarge" || "ml.c6id.32xlarge" || "ml.r6id.large" || "ml.r6id.xlarge" || "ml.r6id.2xlarge" || "ml.r6id.4xlarge" || "ml.r6id.8xlarge" || "ml.r6id.12xlarge" || "ml.r6id.16xlarge" || "ml.r6id.24xlarge" || "ml.r6id.32xlarge",
95
95
  * // LifecycleConfigArn: "STRING_VALUE",
96
96
  * // },
97
+ * // AppLifecycleManagement: { // SpaceAppLifecycleManagement
98
+ * // IdleSettings: { // SpaceIdleSettings
99
+ * // IdleTimeoutInMinutes: Number("int"),
100
+ * // },
101
+ * // },
97
102
  * // },
98
103
  * // JupyterLabAppSettings: { // SpaceJupyterLabAppSettings
99
104
  * // DefaultResourceSpec: {
@@ -108,6 +113,11 @@ declare const DescribeSpaceCommand_base: {
108
113
  * // RepositoryUrl: "STRING_VALUE", // required
109
114
  * // },
110
115
  * // ],
116
+ * // AppLifecycleManagement: {
117
+ * // IdleSettings: {
118
+ * // IdleTimeoutInMinutes: Number("int"),
119
+ * // },
120
+ * // },
111
121
  * // },
112
122
  * // AppType: "JupyterServer" || "KernelGateway" || "DetailedProfiler" || "TensorBoard" || "CodeEditor" || "JupyterLab" || "RStudioServerPro" || "RSessionGateway" || "Canvas",
113
123
  * // SpaceStorageSettings: { // SpaceStorageSettings
@@ -178,6 +178,14 @@ declare const DescribeUserProfileCommand_base: {
178
178
  * // LifecycleConfigArns: [
179
179
  * // "STRING_VALUE",
180
180
  * // ],
181
+ * // AppLifecycleManagement: { // AppLifecycleManagement
182
+ * // IdleSettings: { // IdleSettings
183
+ * // LifecycleManagement: "ENABLED" || "DISABLED",
184
+ * // IdleTimeoutInMinutes: Number("int"),
185
+ * // MinIdleTimeoutInMinutes: Number("int"),
186
+ * // MaxIdleTimeoutInMinutes: Number("int"),
187
+ * // },
188
+ * // },
181
189
  * // },
182
190
  * // JupyterLabAppSettings: { // JupyterLabAppSettings
183
191
  * // DefaultResourceSpec: "<ResourceSpec>",
@@ -196,6 +204,14 @@ declare const DescribeUserProfileCommand_base: {
196
204
  * // RepositoryUrl: "STRING_VALUE", // required
197
205
  * // },
198
206
  * // ],
207
+ * // AppLifecycleManagement: {
208
+ * // IdleSettings: {
209
+ * // LifecycleManagement: "ENABLED" || "DISABLED",
210
+ * // IdleTimeoutInMinutes: Number("int"),
211
+ * // MinIdleTimeoutInMinutes: Number("int"),
212
+ * // MaxIdleTimeoutInMinutes: Number("int"),
213
+ * // },
214
+ * // },
199
215
  * // EmrSettings: { // EmrSettings
200
216
  * // AssumableRoleArns: [ // AssumableRoleArns
201
217
  * // "STRING_VALUE",
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListModelCardsRequest, ListModelCardsResponse } from "../models/models_3";
3
+ import { ListModelCardsRequest, ListModelCardsResponse } from "../models/models_4";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public