@aws-sdk/client-sagemaker 3.832.0 → 3.835.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 (56) hide show
  1. package/dist-cjs/index.js +64 -23
  2. package/dist-es/models/models_0.js +0 -26
  3. package/dist-es/models/models_1.js +26 -5
  4. package/dist-es/models/models_2.js +5 -5
  5. package/dist-es/models/models_3.js +5 -5
  6. package/dist-es/models/models_4.js +5 -0
  7. package/dist-es/protocols/Aws_json1_1.js +47 -2
  8. package/dist-types/commands/CreateModelPackageGroupCommand.d.ts +2 -1
  9. package/dist-types/commands/CreateModelQualityJobDefinitionCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateProjectCommand.d.ts +15 -0
  11. package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +2 -1
  12. package/dist-types/commands/DescribeFeatureMetadataCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeFlowDefinitionCommand.d.ts +1 -2
  14. package/dist-types/commands/DescribeProjectCommand.d.ts +20 -0
  15. package/dist-types/commands/ListCandidatesForAutoMLJobCommand.d.ts +1 -1
  16. package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -1
  17. package/dist-types/commands/ListClusterSchedulerConfigsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListClustersCommand.d.ts +1 -1
  19. package/dist-types/commands/SearchCommand.d.ts +20 -0
  20. package/dist-types/commands/StartInferenceExperimentCommand.d.ts +1 -1
  21. package/dist-types/commands/StartMlflowTrackingServerCommand.d.ts +1 -1
  22. package/dist-types/commands/StartMonitoringScheduleCommand.d.ts +1 -1
  23. package/dist-types/commands/StartNotebookInstanceCommand.d.ts +1 -1
  24. package/dist-types/commands/StartPipelineExecutionCommand.d.ts +1 -1
  25. package/dist-types/commands/StopAutoMLJobCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdateProjectCommand.d.ts +14 -0
  27. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  28. package/dist-types/models/models_0.d.ts +148 -88
  29. package/dist-types/models/models_1.d.ts +88 -167
  30. package/dist-types/models/models_2.d.ts +184 -233
  31. package/dist-types/models/models_3.d.ts +250 -256
  32. package/dist-types/models/models_4.d.ts +262 -124
  33. package/dist-types/models/models_5.d.ts +140 -4
  34. package/dist-types/ts3.4/commands/CreateModelPackageGroupCommand.d.ts +2 -4
  35. package/dist-types/ts3.4/commands/CreateModelQualityJobDefinitionCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +2 -4
  37. package/dist-types/ts3.4/commands/DescribeFeatureMetadataCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/DescribeFlowDefinitionCommand.d.ts +4 -2
  39. package/dist-types/ts3.4/commands/ListCandidatesForAutoMLJobCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListClusterSchedulerConfigsCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/StartInferenceExperimentCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/StartMlflowTrackingServerCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/StartMonitoringScheduleCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/StartNotebookInstanceCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/StopAutoMLJobCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +4 -1
  50. package/dist-types/ts3.4/models/models_0.d.ts +35 -33
  51. package/dist-types/ts3.4/models/models_1.d.ts +34 -46
  52. package/dist-types/ts3.4/models/models_2.d.ts +49 -62
  53. package/dist-types/ts3.4/models/models_3.d.ts +66 -76
  54. package/dist-types/ts3.4/models/models_4.d.ts +75 -35
  55. package/dist-types/ts3.4/models/models_5.d.ts +41 -1
  56. package/package.json +11 -11
package/dist-cjs/index.js CHANGED
@@ -2494,6 +2494,9 @@ var ConditionOutcome = {
2494
2494
  FALSE: "False",
2495
2495
  TRUE: "True"
2496
2496
  };
2497
+
2498
+ // src/models/models_1.ts
2499
+
2497
2500
  var ConflictException = class _ConflictException extends SageMakerServiceException {
2498
2501
  static {
2499
2502
  __name(this, "ConflictException");
@@ -2526,9 +2529,6 @@ var ModelCacheSetting = {
2526
2529
  DISABLED: "Disabled",
2527
2530
  ENABLED: "Enabled"
2528
2531
  };
2529
-
2530
- // src/models/models_1.ts
2531
-
2532
2532
  var ContentClassifier = {
2533
2533
  FREE_OF_ADULT_CONTENT: "FreeOfAdultContent",
2534
2534
  FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation"
@@ -3074,11 +3074,6 @@ var SkipModelValidation = {
3074
3074
  ALL: "All",
3075
3075
  NONE: "None"
3076
3076
  };
3077
- var MonitoringProblemType = {
3078
- BINARY_CLASSIFICATION: "BinaryClassification",
3079
- MULTICLASS_CLASSIFICATION: "MulticlassClassification",
3080
- REGRESSION: "Regression"
3081
- };
3082
3077
  var CreateModelCardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3083
3078
  ...obj,
3084
3079
  ...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
@@ -3094,6 +3089,11 @@ var CreateModelPackageInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
3094
3089
 
3095
3090
  // src/models/models_2.ts
3096
3091
 
3092
+ var MonitoringProblemType = {
3093
+ BINARY_CLASSIFICATION: "BinaryClassification",
3094
+ MULTICLASS_CLASSIFICATION: "MulticlassClassification",
3095
+ REGRESSION: "Regression"
3096
+ };
3097
3097
  var MonitoringType = {
3098
3098
  DATA_QUALITY: "DataQuality",
3099
3099
  MODEL_BIAS: "ModelBias",
@@ -3334,11 +3334,6 @@ var LastUpdateStatusValue = {
3334
3334
  IN_PROGRESS: "InProgress",
3335
3335
  SUCCESSFUL: "Successful"
3336
3336
  };
3337
- var OfflineStoreStatusValue = {
3338
- ACTIVE: "Active",
3339
- BLOCKED: "Blocked",
3340
- DISABLED: "Disabled"
3341
- };
3342
3337
  var OidcConfigFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3343
3338
  ...obj,
3344
3339
  ...obj.ClientSecret && { ClientSecret: import_smithy_client.SENSITIVE_STRING }
@@ -12316,6 +12311,34 @@ var de_CategoricalParameters = /* @__PURE__ */ __name((output, context) => {
12316
12311
  });
12317
12312
  return retVal;
12318
12313
  }, "de_CategoricalParameters");
12314
+ var de_CfnStackDetail = /* @__PURE__ */ __name((output, context) => {
12315
+ return (0, import_smithy_client.take)(output, {
12316
+ Id: import_smithy_client.expectString,
12317
+ Name: import_smithy_client.expectString,
12318
+ StatusMessage: import_smithy_client.expectString
12319
+ });
12320
+ }, "de_CfnStackDetail");
12321
+ var de_CfnStackParameter = /* @__PURE__ */ __name((output, context) => {
12322
+ return (0, import_smithy_client.take)(output, {
12323
+ Key: import_smithy_client.expectString,
12324
+ Value: import_smithy_client.expectString
12325
+ });
12326
+ }, "de_CfnStackParameter");
12327
+ var de_CfnStackParameters = /* @__PURE__ */ __name((output, context) => {
12328
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
12329
+ return de_CfnStackParameter(entry, context);
12330
+ });
12331
+ return retVal;
12332
+ }, "de_CfnStackParameters");
12333
+ var de_CfnTemplateProviderDetail = /* @__PURE__ */ __name((output, context) => {
12334
+ return (0, import_smithy_client.take)(output, {
12335
+ Parameters: /* @__PURE__ */ __name((_) => de_CfnStackParameters(_, context), "Parameters"),
12336
+ RoleARN: import_smithy_client.expectString,
12337
+ StackDetail: /* @__PURE__ */ __name((_) => de_CfnStackDetail(_, context), "StackDetail"),
12338
+ TemplateName: import_smithy_client.expectString,
12339
+ TemplateURL: import_smithy_client.expectString
12340
+ });
12341
+ }, "de_CfnTemplateProviderDetail");
12319
12342
  var de_Channel = /* @__PURE__ */ __name((output, context) => {
12320
12343
  return (0, import_smithy_client.take)(output, {
12321
12344
  ChannelName: import_smithy_client.expectString,
@@ -14456,7 +14479,8 @@ var de_DescribeProjectOutput = /* @__PURE__ */ __name((output, context) => {
14456
14479
  ProjectName: import_smithy_client.expectString,
14457
14480
  ProjectStatus: import_smithy_client.expectString,
14458
14481
  ServiceCatalogProvisionedProductDetails: /* @__PURE__ */ __name((_) => de_ServiceCatalogProvisionedProductDetails(_, context), "ServiceCatalogProvisionedProductDetails"),
14459
- ServiceCatalogProvisioningDetails: /* @__PURE__ */ __name((_) => de_ServiceCatalogProvisioningDetails(_, context), "ServiceCatalogProvisioningDetails")
14482
+ ServiceCatalogProvisioningDetails: /* @__PURE__ */ __name((_) => de_ServiceCatalogProvisioningDetails(_, context), "ServiceCatalogProvisioningDetails"),
14483
+ TemplateProviderDetails: /* @__PURE__ */ __name((_) => de_TemplateProviderDetailList(_, context), "TemplateProviderDetails")
14460
14484
  });
14461
14485
  }, "de_DescribeProjectOutput");
14462
14486
  var de_DescribeSpaceResponse = /* @__PURE__ */ __name((output, context) => {
@@ -18657,7 +18681,8 @@ var de_Project = /* @__PURE__ */ __name((output, context) => {
18657
18681
  ProjectStatus: import_smithy_client.expectString,
18658
18682
  ServiceCatalogProvisionedProductDetails: /* @__PURE__ */ __name((_) => de_ServiceCatalogProvisionedProductDetails(_, context), "ServiceCatalogProvisionedProductDetails"),
18659
18683
  ServiceCatalogProvisioningDetails: /* @__PURE__ */ __name((_) => de_ServiceCatalogProvisioningDetails(_, context), "ServiceCatalogProvisioningDetails"),
18660
- Tags: /* @__PURE__ */ __name((_) => de_TagList(_, context), "Tags")
18684
+ Tags: /* @__PURE__ */ __name((_) => de_TagList(_, context), "Tags"),
18685
+ TemplateProviderDetails: /* @__PURE__ */ __name((_) => de_TemplateProviderDetailList(_, context), "TemplateProviderDetails")
18661
18686
  });
18662
18687
  }, "de_Project");
18663
18688
  var de_ProjectSummary = /* @__PURE__ */ __name((output, context) => {
@@ -19515,6 +19540,17 @@ var de_TaskKeywords = /* @__PURE__ */ __name((output, context) => {
19515
19540
  });
19516
19541
  return retVal;
19517
19542
  }, "de_TaskKeywords");
19543
+ var de_TemplateProviderDetail = /* @__PURE__ */ __name((output, context) => {
19544
+ return (0, import_smithy_client.take)(output, {
19545
+ CfnTemplateProviderDetail: /* @__PURE__ */ __name((_) => de_CfnTemplateProviderDetail(_, context), "CfnTemplateProviderDetail")
19546
+ });
19547
+ }, "de_TemplateProviderDetail");
19548
+ var de_TemplateProviderDetailList = /* @__PURE__ */ __name((output, context) => {
19549
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
19550
+ return de_TemplateProviderDetail(entry, context);
19551
+ });
19552
+ return retVal;
19553
+ }, "de_TemplateProviderDetailList");
19518
19554
  var de_TensorBoardAppSettings = /* @__PURE__ */ __name((output, context) => {
19519
19555
  return (0, import_smithy_client.take)(output, {
19520
19556
  DefaultResourceSpec: /* @__PURE__ */ __name((_) => de_ResourceSpec(_, context), "DefaultResourceSpec")
@@ -23037,6 +23073,11 @@ var DescribeModelBiasJobDefinitionCommand = class extends import_smithy_client.C
23037
23073
 
23038
23074
  // src/models/models_3.ts
23039
23075
 
23076
+ var OfflineStoreStatusValue = {
23077
+ ACTIVE: "Active",
23078
+ BLOCKED: "Blocked",
23079
+ DISABLED: "Disabled"
23080
+ };
23040
23081
  var FlowDefinitionStatus = {
23041
23082
  ACTIVE: "Active",
23042
23083
  DELETING: "Deleting",
@@ -23512,11 +23553,6 @@ var SortAssociationsBy = {
23512
23553
  SOURCE_ARN: "SourceArn",
23513
23554
  SOURCE_TYPE: "SourceType"
23514
23555
  };
23515
- var SortClusterSchedulerConfigBy = {
23516
- CREATION_TIME: "CreationTime",
23517
- NAME: "Name",
23518
- STATUS: "Status"
23519
- };
23520
23556
  var DescribeModelCardResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
23521
23557
  ...obj,
23522
23558
  ...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
@@ -25390,6 +25426,11 @@ var RetryPipelineExecutionCommand = class extends import_smithy_client.Command.c
25390
25426
 
25391
25427
  // src/models/models_4.ts
25392
25428
 
25429
+ var SortClusterSchedulerConfigBy = {
25430
+ CREATION_TIME: "CreationTime",
25431
+ NAME: "Name",
25432
+ STATUS: "Status"
25433
+ };
25393
25434
  var ListCompilationJobsSortBy = {
25394
25435
  CREATION_TIME: "CreationTime",
25395
25436
  NAME: "Name",
@@ -28576,10 +28617,10 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
28576
28617
  InferenceExecutionMode,
28577
28618
  ModelCardStatus,
28578
28619
  SkipModelValidation,
28579
- MonitoringProblemType,
28580
28620
  CreateModelCardRequestFilterSensitiveLog,
28581
28621
  ModelPackageModelCardFilterSensitiveLog,
28582
28622
  CreateModelPackageInputFilterSensitiveLog,
28623
+ MonitoringProblemType,
28583
28624
  MonitoringType,
28584
28625
  NotebookInstanceAcceleratorType,
28585
28626
  DirectInternetAccess,
@@ -28615,9 +28656,9 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
28615
28656
  VariantStatus,
28616
28657
  FeatureGroupStatus,
28617
28658
  LastUpdateStatusValue,
28618
- OfflineStoreStatusValue,
28619
28659
  OidcConfigFilterSensitiveLog,
28620
28660
  CreateWorkforceRequestFilterSensitiveLog,
28661
+ OfflineStoreStatusValue,
28621
28662
  FlowDefinitionStatus,
28622
28663
  HubStatus,
28623
28664
  HubContentStatus,
@@ -28686,9 +28727,9 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
28686
28727
  SortOrder,
28687
28728
  SortArtifactsBy,
28688
28729
  SortAssociationsBy,
28689
- SortClusterSchedulerConfigBy,
28690
28730
  DescribeModelCardResponseFilterSensitiveLog,
28691
28731
  DescribeModelPackageOutputFilterSensitiveLog,
28732
+ SortClusterSchedulerConfigBy,
28692
28733
  ListCompilationJobsSortBy,
28693
28734
  SortQuotaBy,
28694
28735
  SortContextsBy,
@@ -1489,29 +1489,3 @@ export const ConditionOutcome = {
1489
1489
  FALSE: "False",
1490
1490
  TRUE: "True",
1491
1491
  };
1492
- export class ConflictException extends __BaseException {
1493
- name = "ConflictException";
1494
- $fault = "client";
1495
- Message;
1496
- constructor(opts) {
1497
- super({
1498
- name: "ConflictException",
1499
- $fault: "client",
1500
- ...opts,
1501
- });
1502
- Object.setPrototypeOf(this, ConflictException.prototype);
1503
- this.Message = opts.Message;
1504
- }
1505
- }
1506
- export const RepositoryAccessMode = {
1507
- PLATFORM: "Platform",
1508
- VPC: "Vpc",
1509
- };
1510
- export const ContainerMode = {
1511
- MULTI_MODEL: "MultiModel",
1512
- SINGLE_MODEL: "SingleModel",
1513
- };
1514
- export const ModelCacheSetting = {
1515
- DISABLED: "Disabled",
1516
- ENABLED: "Enabled",
1517
- };
@@ -1,5 +1,31 @@
1
1
  import { SENSITIVE_STRING, } from "@smithy/smithy-client";
2
2
  import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
3
+ export class ConflictException extends __BaseException {
4
+ name = "ConflictException";
5
+ $fault = "client";
6
+ Message;
7
+ constructor(opts) {
8
+ super({
9
+ name: "ConflictException",
10
+ $fault: "client",
11
+ ...opts,
12
+ });
13
+ Object.setPrototypeOf(this, ConflictException.prototype);
14
+ this.Message = opts.Message;
15
+ }
16
+ }
17
+ export const RepositoryAccessMode = {
18
+ PLATFORM: "Platform",
19
+ VPC: "Vpc",
20
+ };
21
+ export const ContainerMode = {
22
+ MULTI_MODEL: "MultiModel",
23
+ SINGLE_MODEL: "SingleModel",
24
+ };
25
+ export const ModelCacheSetting = {
26
+ DISABLED: "Disabled",
27
+ ENABLED: "Enabled",
28
+ };
3
29
  export const ContentClassifier = {
4
30
  FREE_OF_ADULT_CONTENT: "FreeOfAdultContent",
5
31
  FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation",
@@ -540,11 +566,6 @@ export const SkipModelValidation = {
540
566
  ALL: "All",
541
567
  NONE: "None",
542
568
  };
543
- export const MonitoringProblemType = {
544
- BINARY_CLASSIFICATION: "BinaryClassification",
545
- MULTICLASS_CLASSIFICATION: "MulticlassClassification",
546
- REGRESSION: "Regression",
547
- };
548
569
  export const CreateModelCardRequestFilterSensitiveLog = (obj) => ({
549
570
  ...obj,
550
571
  ...(obj.Content && { Content: SENSITIVE_STRING }),
@@ -1,4 +1,9 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ export const MonitoringProblemType = {
3
+ BINARY_CLASSIFICATION: "BinaryClassification",
4
+ MULTICLASS_CLASSIFICATION: "MulticlassClassification",
5
+ REGRESSION: "Regression",
6
+ };
2
7
  export const MonitoringType = {
3
8
  DATA_QUALITY: "DataQuality",
4
9
  MODEL_BIAS: "ModelBias",
@@ -245,11 +250,6 @@ export const LastUpdateStatusValue = {
245
250
  IN_PROGRESS: "InProgress",
246
251
  SUCCESSFUL: "Successful",
247
252
  };
248
- export const OfflineStoreStatusValue = {
249
- ACTIVE: "Active",
250
- BLOCKED: "Blocked",
251
- DISABLED: "Disabled",
252
- };
253
253
  export const OidcConfigFilterSensitiveLog = (obj) => ({
254
254
  ...obj,
255
255
  ...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
@@ -1,5 +1,10 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { ModelPackageModelCardFilterSensitiveLog, } from "./models_1";
3
+ export const OfflineStoreStatusValue = {
4
+ ACTIVE: "Active",
5
+ BLOCKED: "Blocked",
6
+ DISABLED: "Disabled",
7
+ };
3
8
  export const FlowDefinitionStatus = {
4
9
  ACTIVE: "Active",
5
10
  DELETING: "Deleting",
@@ -478,11 +483,6 @@ export const SortAssociationsBy = {
478
483
  SOURCE_ARN: "SourceArn",
479
484
  SOURCE_TYPE: "SourceType",
480
485
  };
481
- export const SortClusterSchedulerConfigBy = {
482
- CREATION_TIME: "CreationTime",
483
- NAME: "Name",
484
- STATUS: "Status",
485
- };
486
486
  export const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
487
487
  ...obj,
488
488
  ...(obj.Content && { Content: SENSITIVE_STRING }),
@@ -1,5 +1,10 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { ModelPackageModelCardFilterSensitiveLog, } from "./models_1";
3
+ export const SortClusterSchedulerConfigBy = {
4
+ CREATION_TIME: "CreationTime",
5
+ NAME: "Name",
6
+ STATUS: "Status",
7
+ };
3
8
  export const ListCompilationJobsSortBy = {
4
9
  CREATION_TIME: "CreationTime",
5
10
  NAME: "Name",
@@ -2,8 +2,8 @@ import { awsExpectUnion as __expectUnion, loadRestJsonErrorCode, parseJsonBody a
2
2
  import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
3
3
  import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, LazyJsonString as __LazyJsonString, limitedParseDouble as __limitedParseDouble, limitedParseFloat32 as __limitedParseFloat32, parseEpochTimestamp as __parseEpochTimestamp, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
4
4
  import { v4 as generateIdempotencyToken } from "uuid";
5
- import { ConflictException, ResourceLimitExceeded, ResourceNotFound, } from "../models/models_0";
6
- import { ResourceInUse, } from "../models/models_1";
5
+ import { ResourceLimitExceeded, ResourceNotFound, } from "../models/models_0";
6
+ import { ConflictException, ResourceInUse, } from "../models/models_1";
7
7
  import { TrialComponentParameterValue, } from "../models/models_2";
8
8
  import { SageMakerServiceException as __BaseException } from "../models/SageMakerServiceException";
9
9
  export const se_AddAssociationCommand = async (input, context) => {
@@ -9035,6 +9035,36 @@ const de_CategoricalParameters = (output, context) => {
9035
9035
  });
9036
9036
  return retVal;
9037
9037
  };
9038
+ const de_CfnStackDetail = (output, context) => {
9039
+ return take(output, {
9040
+ Id: __expectString,
9041
+ Name: __expectString,
9042
+ StatusMessage: __expectString,
9043
+ });
9044
+ };
9045
+ const de_CfnStackParameter = (output, context) => {
9046
+ return take(output, {
9047
+ Key: __expectString,
9048
+ Value: __expectString,
9049
+ });
9050
+ };
9051
+ const de_CfnStackParameters = (output, context) => {
9052
+ const retVal = (output || [])
9053
+ .filter((e) => e != null)
9054
+ .map((entry) => {
9055
+ return de_CfnStackParameter(entry, context);
9056
+ });
9057
+ return retVal;
9058
+ };
9059
+ const de_CfnTemplateProviderDetail = (output, context) => {
9060
+ return take(output, {
9061
+ Parameters: (_) => de_CfnStackParameters(_, context),
9062
+ RoleARN: __expectString,
9063
+ StackDetail: (_) => de_CfnStackDetail(_, context),
9064
+ TemplateName: __expectString,
9065
+ TemplateURL: __expectString,
9066
+ });
9067
+ };
9038
9068
  const de_Channel = (output, context) => {
9039
9069
  return take(output, {
9040
9070
  ChannelName: __expectString,
@@ -11251,6 +11281,7 @@ const de_DescribeProjectOutput = (output, context) => {
11251
11281
  ProjectStatus: __expectString,
11252
11282
  ServiceCatalogProvisionedProductDetails: (_) => de_ServiceCatalogProvisionedProductDetails(_, context),
11253
11283
  ServiceCatalogProvisioningDetails: (_) => de_ServiceCatalogProvisioningDetails(_, context),
11284
+ TemplateProviderDetails: (_) => de_TemplateProviderDetailList(_, context),
11254
11285
  });
11255
11286
  };
11256
11287
  const de_DescribeSpaceResponse = (output, context) => {
@@ -15700,6 +15731,7 @@ const de_Project = (output, context) => {
15700
15731
  ServiceCatalogProvisionedProductDetails: (_) => de_ServiceCatalogProvisionedProductDetails(_, context),
15701
15732
  ServiceCatalogProvisioningDetails: (_) => de_ServiceCatalogProvisioningDetails(_, context),
15702
15733
  Tags: (_) => de_TagList(_, context),
15734
+ TemplateProviderDetails: (_) => de_TemplateProviderDetailList(_, context),
15703
15735
  });
15704
15736
  };
15705
15737
  const de_ProjectSummary = (output, context) => {
@@ -16632,6 +16664,19 @@ const de_TaskKeywords = (output, context) => {
16632
16664
  });
16633
16665
  return retVal;
16634
16666
  };
16667
+ const de_TemplateProviderDetail = (output, context) => {
16668
+ return take(output, {
16669
+ CfnTemplateProviderDetail: (_) => de_CfnTemplateProviderDetail(_, context),
16670
+ });
16671
+ };
16672
+ const de_TemplateProviderDetailList = (output, context) => {
16673
+ const retVal = (output || [])
16674
+ .filter((e) => e != null)
16675
+ .map((entry) => {
16676
+ return de_TemplateProviderDetail(entry, context);
16677
+ });
16678
+ return retVal;
16679
+ };
16635
16680
  const de_TensorBoardAppSettings = (output, context) => {
16636
16681
  return take(output, {
16637
16682
  DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
@@ -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 { CreateModelPackageGroupInput, CreateModelPackageGroupOutput } from "../models/models_1";
3
+ import { CreateModelPackageGroupInput } from "../models/models_1";
4
+ import { CreateModelPackageGroupOutput } from "../models/models_2";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @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 { CreateModelQualityJobDefinitionRequest, CreateModelQualityJobDefinitionResponse } from "../models/models_1";
3
+ import { CreateModelQualityJobDefinitionRequest, CreateModelQualityJobDefinitionResponse } from "../models/models_2";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -54,6 +54,21 @@ declare const CreateProjectCommand_base: {
54
54
  * Value: "STRING_VALUE", // required
55
55
  * },
56
56
  * ],
57
+ * TemplateProviders: [ // CreateTemplateProviderList
58
+ * { // CreateTemplateProvider
59
+ * CfnTemplateProvider: { // CfnCreateTemplateProvider
60
+ * TemplateName: "STRING_VALUE", // required
61
+ * TemplateURL: "STRING_VALUE", // required
62
+ * RoleARN: "STRING_VALUE",
63
+ * Parameters: [ // CfnStackCreateParameters
64
+ * { // CfnStackCreateParameter
65
+ * Key: "STRING_VALUE", // required
66
+ * Value: "STRING_VALUE",
67
+ * },
68
+ * ],
69
+ * },
70
+ * },
71
+ * ],
57
72
  * };
58
73
  * const command = new CreateProjectCommand(input);
59
74
  * const response = await client.send(command);
@@ -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 { DescribeFeatureGroupRequest, DescribeFeatureGroupResponse } from "../models/models_2";
3
+ import { DescribeFeatureGroupRequest } from "../models/models_2";
4
+ import { DescribeFeatureGroupResponse } from "../models/models_3";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  /**
6
7
  * @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 { DescribeFeatureMetadataRequest, DescribeFeatureMetadataResponse } from "../models/models_2";
3
+ import { DescribeFeatureMetadataRequest, DescribeFeatureMetadataResponse } 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 { DescribeFlowDefinitionRequest } from "../models/models_2";
4
- import { DescribeFlowDefinitionResponse } from "../models/models_3";
3
+ import { DescribeFlowDefinitionRequest, DescribeFlowDefinitionResponse } from "../models/models_3";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -60,6 +60,26 @@ declare const DescribeProjectCommand_base: {
60
60
  * // ProvisionedProductStatusMessage: "STRING_VALUE",
61
61
  * // },
62
62
  * // ProjectStatus: "Pending" || "CreateInProgress" || "CreateCompleted" || "CreateFailed" || "DeleteInProgress" || "DeleteFailed" || "DeleteCompleted" || "UpdateInProgress" || "UpdateCompleted" || "UpdateFailed", // required
63
+ * // TemplateProviderDetails: [ // TemplateProviderDetailList
64
+ * // { // TemplateProviderDetail
65
+ * // CfnTemplateProviderDetail: { // CfnTemplateProviderDetail
66
+ * // TemplateName: "STRING_VALUE", // required
67
+ * // TemplateURL: "STRING_VALUE", // required
68
+ * // RoleARN: "STRING_VALUE",
69
+ * // Parameters: [ // CfnStackParameters
70
+ * // { // CfnStackParameter
71
+ * // Key: "STRING_VALUE", // required
72
+ * // Value: "STRING_VALUE",
73
+ * // },
74
+ * // ],
75
+ * // StackDetail: { // CfnStackDetail
76
+ * // Name: "STRING_VALUE",
77
+ * // Id: "STRING_VALUE",
78
+ * // StatusMessage: "STRING_VALUE", // required
79
+ * // },
80
+ * // },
81
+ * // },
82
+ * // ],
63
83
  * // CreatedBy: { // UserContext
64
84
  * // UserProfileArn: "STRING_VALUE",
65
85
  * // UserProfileName: "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 { ListCandidatesForAutoMLJobRequest, ListCandidatesForAutoMLJobResponse } from "../models/models_3";
3
+ import { ListCandidatesForAutoMLJobRequest, ListCandidatesForAutoMLJobResponse } from "../models/models_4";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
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 { ListClusterNodesRequest, ListClusterNodesResponse } from "../models/models_3";
3
+ import { ListClusterNodesRequest, ListClusterNodesResponse } from "../models/models_4";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
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 { ListClusterSchedulerConfigsRequest, ListClusterSchedulerConfigsResponse } from "../models/models_3";
3
+ import { ListClusterSchedulerConfigsRequest, ListClusterSchedulerConfigsResponse } from "../models/models_4";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
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 { ListClustersRequest, ListClustersResponse } from "../models/models_3";
3
+ import { ListClustersRequest, ListClustersResponse } from "../models/models_4";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -1560,6 +1560,26 @@ declare const SearchCommand_base: {
1560
1560
  * // ProjectStatus: "Pending" || "CreateInProgress" || "CreateCompleted" || "CreateFailed" || "DeleteInProgress" || "DeleteFailed" || "DeleteCompleted" || "UpdateInProgress" || "UpdateCompleted" || "UpdateFailed",
1561
1561
  * // CreatedBy: "<UserContext>",
1562
1562
  * // CreationTime: new Date("TIMESTAMP"),
1563
+ * // TemplateProviderDetails: [ // TemplateProviderDetailList
1564
+ * // { // TemplateProviderDetail
1565
+ * // CfnTemplateProviderDetail: { // CfnTemplateProviderDetail
1566
+ * // TemplateName: "STRING_VALUE", // required
1567
+ * // TemplateURL: "STRING_VALUE", // required
1568
+ * // RoleARN: "STRING_VALUE",
1569
+ * // Parameters: [ // CfnStackParameters
1570
+ * // { // CfnStackParameter
1571
+ * // Key: "STRING_VALUE", // required
1572
+ * // Value: "STRING_VALUE",
1573
+ * // },
1574
+ * // ],
1575
+ * // StackDetail: { // CfnStackDetail
1576
+ * // Name: "STRING_VALUE",
1577
+ * // Id: "STRING_VALUE",
1578
+ * // StatusMessage: "STRING_VALUE", // required
1579
+ * // },
1580
+ * // },
1581
+ * // },
1582
+ * // ],
1563
1583
  * // Tags: "<TagList>",
1564
1584
  * // LastModifiedTime: new Date("TIMESTAMP"),
1565
1585
  * // LastModifiedBy: "<UserContext>",
@@ -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 { StartInferenceExperimentRequest, StartInferenceExperimentResponse } from "../models/models_4";
3
+ import { StartInferenceExperimentRequest, StartInferenceExperimentResponse } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
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 { StartMlflowTrackingServerRequest, StartMlflowTrackingServerResponse } from "../models/models_4";
3
+ import { StartMlflowTrackingServerRequest, StartMlflowTrackingServerResponse } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
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 { StartMonitoringScheduleRequest } from "../models/models_4";
3
+ import { StartMonitoringScheduleRequest } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
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 { StartNotebookInstanceInput } from "../models/models_4";
3
+ import { StartNotebookInstanceInput } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
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 { StartPipelineExecutionRequest, StartPipelineExecutionResponse } from "../models/models_4";
3
+ import { StartPipelineExecutionRequest, StartPipelineExecutionResponse } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
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 { StopAutoMLJobRequest } from "../models/models_4";
3
+ import { StopAutoMLJobRequest } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -52,6 +52,20 @@ declare const UpdateProjectCommand_base: {
52
52
  * Value: "STRING_VALUE", // required
53
53
  * },
54
54
  * ],
55
+ * TemplateProvidersToUpdate: [ // UpdateTemplateProviderList
56
+ * { // UpdateTemplateProvider
57
+ * CfnTemplateProvider: { // CfnUpdateTemplateProvider
58
+ * TemplateName: "STRING_VALUE", // required
59
+ * TemplateURL: "STRING_VALUE", // required
60
+ * Parameters: [ // CfnStackUpdateParameters
61
+ * { // CfnStackUpdateParameter
62
+ * Key: "STRING_VALUE", // required
63
+ * Value: "STRING_VALUE",
64
+ * },
65
+ * ],
66
+ * },
67
+ * },
68
+ * ],
55
69
  * };
56
70
  * const command = new UpdateProjectCommand(input);
57
71
  * const response = await client.send(command);