@aws-sdk/client-sagemaker 3.930.0 → 3.932.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 (31) hide show
  1. package/dist-cjs/index.js +51 -10
  2. package/dist-es/models/models_3.js +0 -4
  3. package/dist-es/models/models_4.js +4 -4
  4. package/dist-es/models/models_5.js +4 -0
  5. package/dist-es/schemas/schemas_0.js +52 -8
  6. package/dist-types/commands/CreatePartnerAppCommand.d.ts +12 -0
  7. package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +2 -1
  8. package/dist-types/commands/DescribeClusterCommand.d.ts +1 -2
  9. package/dist-types/commands/DescribePartnerAppCommand.d.ts +20 -0
  10. package/dist-types/commands/GetSagemakerServicecatalogPortfolioStatusCommand.d.ts +2 -1
  11. package/dist-types/commands/ListTrialComponentsCommand.d.ts +2 -1
  12. package/dist-types/commands/UpdatePartnerAppCommand.d.ts +13 -0
  13. package/dist-types/models/models_0.d.ts +16 -11
  14. package/dist-types/models/models_1.d.ts +12 -17
  15. package/dist-types/models/models_2.d.ts +49 -132
  16. package/dist-types/models/models_3.d.ts +153 -25
  17. package/dist-types/models/models_4.d.ts +22 -27
  18. package/dist-types/models/models_5.d.ts +38 -1
  19. package/dist-types/schemas/schemas_0.d.ts +6 -0
  20. package/dist-types/ts3.4/commands/DescribeAutoMLJobV2Command.d.ts +2 -4
  21. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +4 -2
  22. package/dist-types/ts3.4/commands/GetSagemakerServicecatalogPortfolioStatusCommand.d.ts +2 -4
  23. package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +2 -4
  24. package/dist-types/ts3.4/models/models_0.d.ts +4 -3
  25. package/dist-types/ts3.4/models/models_1.d.ts +3 -5
  26. package/dist-types/ts3.4/models/models_2.d.ts +11 -36
  27. package/dist-types/ts3.4/models/models_3.d.ts +50 -10
  28. package/dist-types/ts3.4/models/models_4.d.ts +9 -9
  29. package/dist-types/ts3.4/models/models_5.d.ts +12 -1
  30. package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
  31. package/package.json +5 -5
@@ -56,7 +56,6 @@ import {
56
56
  ClusterInstanceType,
57
57
  ClusterNodeProvisioningMode,
58
58
  ClusterNodeRecovery,
59
- ClusterOrchestratorEksConfig,
60
59
  CodeEditorAppImageConfig,
61
60
  DeepHealthCheckType,
62
61
  FeatureStatus,
@@ -81,6 +80,9 @@ import {
81
80
  VpcConfig,
82
81
  } from "./models_0";
83
82
  import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
83
+ export interface ClusterOrchestratorEksConfig {
84
+ ClusterArn: string | undefined;
85
+ }
84
86
  export interface ClusterOrchestrator {
85
87
  Eks: ClusterOrchestratorEksConfig | undefined;
86
88
  }
@@ -2256,7 +2258,3 @@ export interface LabelingJobOutputConfig {
2256
2258
  KmsKeyId?: string | undefined;
2257
2259
  SnsTopicArn?: string | undefined;
2258
2260
  }
2259
- export interface LabelingJobStoppingConditions {
2260
- MaxHumanLabeledObjectCount?: number | undefined;
2261
- MaxPercentageOfInputDatasetLabeled?: number | undefined;
2262
- }
@@ -13,10 +13,7 @@ import {
13
13
  AthenaDatasetDefinition,
14
14
  AutoMLCandidate,
15
15
  AutoMLChannel,
16
- AutoMLComputeConfig,
17
- AutoMLDataSplitConfig,
18
16
  AutoMLJobArtifacts,
19
- AutoMLJobChannel,
20
17
  AutoMLJobCompletionCriteria,
21
18
  AutoMLJobConfig,
22
19
  AutoMLJobObjective,
@@ -24,10 +21,6 @@ import {
24
21
  AutoMLJobStatus,
25
22
  AutoMLOutputDataConfig,
26
23
  AutoMLPartialFailureReason,
27
- AutoMLProblemTypeConfig,
28
- AutoMLProblemTypeConfigName,
29
- AutoMLResolvedAttributes,
30
- AutoMLSecurityConfig,
31
24
  BatchDataCaptureConfig,
32
25
  BatchStrategy,
33
26
  BatchTransformInput,
@@ -78,7 +71,6 @@ import {
78
71
  LabelingJobAlgorithmsConfig,
79
72
  LabelingJobInputConfig,
80
73
  LabelingJobOutputConfig,
81
- LabelingJobStoppingConditions,
82
74
  MetadataProperties,
83
75
  ModelDeployConfig,
84
76
  MonitoringConstraintsResource,
@@ -93,6 +85,10 @@ import {
93
85
  TrainingSpecification,
94
86
  UserSettings,
95
87
  } from "./models_1";
88
+ export interface LabelingJobStoppingConditions {
89
+ MaxHumanLabeledObjectCount?: number | undefined;
90
+ MaxPercentageOfInputDatasetLabeled?: number | undefined;
91
+ }
96
92
  export interface CreateLabelingJobRequest {
97
93
  LabelingJobName: string | undefined;
98
94
  LabelAttributeName: string | undefined;
@@ -644,9 +640,15 @@ export interface CreateOptimizationJobRequest {
644
640
  export interface CreateOptimizationJobResponse {
645
641
  OptimizationJobArn: string | undefined;
646
642
  }
643
+ export interface RoleGroupAssignment {
644
+ RoleName: string | undefined;
645
+ GroupPatterns: string[] | undefined;
646
+ }
647
647
  export interface PartnerAppConfig {
648
648
  AdminUsers?: string[] | undefined;
649
649
  Arguments?: Record<string, string> | undefined;
650
+ AssignedGroupPatterns?: string[] | undefined;
651
+ RoleGroupAssignments?: RoleGroupAssignment[] | undefined;
650
652
  }
651
653
  export declare const PartnerAppAuthType: {
652
654
  readonly IAM: "IAM";
@@ -674,6 +676,7 @@ export interface CreatePartnerAppRequest {
674
676
  ApplicationConfig?: PartnerAppConfig | undefined;
675
677
  AuthType: PartnerAppAuthType | undefined;
676
678
  EnableIamSessionBasedIdentity?: boolean | undefined;
679
+ EnableAutoMinorVersionUpgrade?: boolean | undefined;
677
680
  ClientToken?: string | undefined;
678
681
  Tags?: Tag[] | undefined;
679
682
  }
@@ -1739,31 +1742,3 @@ export interface DescribeAutoMLJobResponse {
1739
1742
  export interface DescribeAutoMLJobV2Request {
1740
1743
  AutoMLJobName: string | undefined;
1741
1744
  }
1742
- export interface DescribeAutoMLJobV2Response {
1743
- AutoMLJobName: string | undefined;
1744
- AutoMLJobArn: string | undefined;
1745
- AutoMLJobInputDataConfig: AutoMLJobChannel[] | undefined;
1746
- OutputDataConfig: AutoMLOutputDataConfig | undefined;
1747
- RoleArn: string | undefined;
1748
- AutoMLJobObjective?: AutoMLJobObjective | undefined;
1749
- AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig | undefined;
1750
- AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | undefined;
1751
- CreationTime: Date | undefined;
1752
- EndTime?: Date | undefined;
1753
- LastModifiedTime: Date | undefined;
1754
- FailureReason?: string | undefined;
1755
- PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
1756
- BestCandidate?: AutoMLCandidate | undefined;
1757
- AutoMLJobStatus: AutoMLJobStatus | undefined;
1758
- AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
1759
- AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
1760
- ResolvedAttributes?: AutoMLResolvedAttributes | undefined;
1761
- ModelDeployConfig?: ModelDeployConfig | undefined;
1762
- ModelDeployResult?: ModelDeployResult | undefined;
1763
- DataSplitConfig?: AutoMLDataSplitConfig | undefined;
1764
- SecurityConfig?: AutoMLSecurityConfig | undefined;
1765
- AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
1766
- }
1767
- export interface DescribeClusterRequest {
1768
- ClusterName: string | undefined;
1769
- }
@@ -10,8 +10,23 @@ import {
10
10
  AssociationEdgeType,
11
11
  AsyncInferenceConfig,
12
12
  AuthMode,
13
+ AutoMLCandidate,
14
+ AutoMLComputeConfig,
15
+ AutoMLDataSplitConfig,
16
+ AutoMLJobArtifacts,
17
+ AutoMLJobChannel,
18
+ AutoMLJobObjective,
19
+ AutoMLJobSecondaryStatus,
20
+ AutoMLJobStatus,
21
+ AutoMLOutputDataConfig,
22
+ AutoMLPartialFailureReason,
23
+ AutoMLProblemTypeConfig,
24
+ AutoMLProblemTypeConfigName,
25
+ AutoMLResolvedAttributes,
26
+ AutoMLSecurityConfig,
13
27
  AutoRollbackConfig,
14
28
  Autotune,
29
+ AvailableUpgrade,
15
30
  BatchDataCaptureConfig,
16
31
  BatchStrategy,
17
32
  CapacityReservationPreference,
@@ -92,8 +107,8 @@ import {
92
107
  LabelingJobAlgorithmsConfig,
93
108
  LabelingJobInputConfig,
94
109
  LabelingJobOutputConfig,
95
- LabelingJobStoppingConditions,
96
110
  MetadataProperties,
111
+ ModelDeployConfig,
97
112
  ModelInfrastructureConfig,
98
113
  MonitoringNetworkConfig,
99
114
  MonitoringOutputConfig,
@@ -140,6 +155,7 @@ import {
140
155
  InferenceExecutionConfig,
141
156
  InfraCheckConfig,
142
157
  InstanceMetadataServiceConfiguration,
158
+ LabelingJobStoppingConditions,
143
159
  MemberDefinition,
144
160
  ModelBiasAppSpecification,
145
161
  ModelBiasBaselineConfig,
@@ -148,6 +164,7 @@ import {
148
164
  ModelCardSecurityConfig,
149
165
  ModelCardStatus,
150
166
  ModelClientConfig,
167
+ ModelDeployResult,
151
168
  ModelExplainabilityAppSpecification,
152
169
  ModelExplainabilityBaselineConfig,
153
170
  ModelExplainabilityJobInput,
@@ -200,6 +217,34 @@ import {
200
217
  WorkerAccessConfiguration,
201
218
  WorkforceIpAddressType,
202
219
  } from "./models_2";
220
+ export interface DescribeAutoMLJobV2Response {
221
+ AutoMLJobName: string | undefined;
222
+ AutoMLJobArn: string | undefined;
223
+ AutoMLJobInputDataConfig: AutoMLJobChannel[] | undefined;
224
+ OutputDataConfig: AutoMLOutputDataConfig | undefined;
225
+ RoleArn: string | undefined;
226
+ AutoMLJobObjective?: AutoMLJobObjective | undefined;
227
+ AutoMLProblemTypeConfig?: AutoMLProblemTypeConfig | undefined;
228
+ AutoMLProblemTypeConfigName?: AutoMLProblemTypeConfigName | undefined;
229
+ CreationTime: Date | undefined;
230
+ EndTime?: Date | undefined;
231
+ LastModifiedTime: Date | undefined;
232
+ FailureReason?: string | undefined;
233
+ PartialFailureReasons?: AutoMLPartialFailureReason[] | undefined;
234
+ BestCandidate?: AutoMLCandidate | undefined;
235
+ AutoMLJobStatus: AutoMLJobStatus | undefined;
236
+ AutoMLJobSecondaryStatus: AutoMLJobSecondaryStatus | undefined;
237
+ AutoMLJobArtifacts?: AutoMLJobArtifacts | undefined;
238
+ ResolvedAttributes?: AutoMLResolvedAttributes | undefined;
239
+ ModelDeployConfig?: ModelDeployConfig | undefined;
240
+ ModelDeployResult?: ModelDeployResult | undefined;
241
+ DataSplitConfig?: AutoMLDataSplitConfig | undefined;
242
+ SecurityConfig?: AutoMLSecurityConfig | undefined;
243
+ AutoMLComputeConfig?: AutoMLComputeConfig | undefined;
244
+ }
245
+ export interface DescribeClusterRequest {
246
+ ClusterName: string | undefined;
247
+ }
203
248
  export interface DescribeClusterResponse {
204
249
  ClusterArn: string | undefined;
205
250
  ClusterName?: string | undefined;
@@ -1582,6 +1627,7 @@ export interface DescribeOptimizationJobResponse {
1582
1627
  }
1583
1628
  export interface DescribePartnerAppRequest {
1584
1629
  Arn: string | undefined;
1630
+ IncludeAvailableUpgrade?: boolean | undefined;
1585
1631
  }
1586
1632
  export interface ErrorInfo {
1587
1633
  Code?: string | undefined;
@@ -1615,6 +1661,9 @@ export interface DescribePartnerAppResponse {
1615
1661
  AuthType?: PartnerAppAuthType | undefined;
1616
1662
  EnableIamSessionBasedIdentity?: boolean | undefined;
1617
1663
  Error?: ErrorInfo | undefined;
1664
+ EnableAutoMinorVersionUpgrade?: boolean | undefined;
1665
+ CurrentVersionEolDate?: Date | undefined;
1666
+ AvailableUpgrade?: AvailableUpgrade | undefined;
1618
1667
  }
1619
1668
  export interface DescribePipelineRequest {
1620
1669
  PipelineName: string | undefined;
@@ -2620,12 +2669,3 @@ export interface GetModelPackageGroupPolicyOutput {
2620
2669
  ResourcePolicy: string | undefined;
2621
2670
  }
2622
2671
  export interface GetSagemakerServicecatalogPortfolioStatusInput {}
2623
- export declare const SagemakerServicecatalogStatus: {
2624
- readonly DISABLED: "Disabled";
2625
- readonly ENABLED: "Enabled";
2626
- };
2627
- export type SagemakerServicecatalogStatus =
2628
- (typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
2629
- export interface GetSagemakerServicecatalogPortfolioStatusOutput {
2630
- Status?: SagemakerServicecatalogStatus | undefined;
2631
- }
@@ -140,6 +140,15 @@ import {
140
140
  WarmPoolResourceStatus,
141
141
  WarmPoolStatus,
142
142
  } from "./models_3";
143
+ export declare const SagemakerServicecatalogStatus: {
144
+ readonly DISABLED: "Disabled";
145
+ readonly ENABLED: "Enabled";
146
+ };
147
+ export type SagemakerServicecatalogStatus =
148
+ (typeof SagemakerServicecatalogStatus)[keyof typeof SagemakerServicecatalogStatus];
149
+ export interface GetSagemakerServicecatalogPortfolioStatusOutput {
150
+ Status?: SagemakerServicecatalogStatus | undefined;
151
+ }
143
152
  export interface ScalingPolicyObjective {
144
153
  MinInvocationsPerMinute?: number | undefined;
145
154
  MaxInvocationsPerMinute?: number | undefined;
@@ -2259,12 +2268,3 @@ export interface TrialComponentSummary {
2259
2268
  LastModifiedTime?: Date | undefined;
2260
2269
  LastModifiedBy?: UserContext | undefined;
2261
2270
  }
2262
- export interface ListTrialComponentsResponse {
2263
- TrialComponentSummaries?: TrialComponentSummary[] | undefined;
2264
- NextToken?: string | undefined;
2265
- }
2266
- export declare const SortTrialsBy: {
2267
- readonly CREATION_TIME: "CreationTime";
2268
- readonly NAME: "Name";
2269
- };
2270
- export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
@@ -171,8 +171,17 @@ import {
171
171
  Parameter,
172
172
  ResourceType,
173
173
  SortOrder,
174
- SortTrialsBy,
174
+ TrialComponentSummary,
175
175
  } from "./models_4";
176
+ export interface ListTrialComponentsResponse {
177
+ TrialComponentSummaries?: TrialComponentSummary[] | undefined;
178
+ NextToken?: string | undefined;
179
+ }
180
+ export declare const SortTrialsBy: {
181
+ readonly CREATION_TIME: "CreationTime";
182
+ readonly NAME: "Name";
183
+ };
184
+ export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
176
185
  export interface ListTrialsRequest {
177
186
  ExperimentName?: string | undefined;
178
187
  TrialComponentName?: string | undefined;
@@ -1248,6 +1257,8 @@ export interface UpdatePartnerAppRequest {
1248
1257
  Tier?: string | undefined;
1249
1258
  ApplicationConfig?: PartnerAppConfig | undefined;
1250
1259
  EnableIamSessionBasedIdentity?: boolean | undefined;
1260
+ EnableAutoMinorVersionUpgrade?: boolean | undefined;
1261
+ AppVersion?: string | undefined;
1251
1262
  ClientToken?: string | undefined;
1252
1263
  Tags?: Tag[] | undefined;
1253
1264
  }
@@ -73,6 +73,7 @@ export declare var AutoMLSecurityConfig: StaticStructureSchema;
73
73
  export declare var AutoParameter: StaticStructureSchema;
74
74
  export declare var AutoRollbackConfig: StaticStructureSchema;
75
75
  export declare var Autotune: StaticStructureSchema;
76
+ export declare var AvailableUpgrade: StaticStructureSchema;
76
77
  export declare var BatchAddClusterNodesError: StaticStructureSchema;
77
78
  export declare var BatchAddClusterNodesRequest: StaticStructureSchema;
78
79
  export declare var BatchAddClusterNodesResponse: StaticStructureSchema;
@@ -1117,6 +1118,7 @@ export declare var RetentionPolicy: StaticStructureSchema;
1117
1118
  export declare var RetryPipelineExecutionRequest: StaticStructureSchema;
1118
1119
  export declare var RetryPipelineExecutionResponse: StaticStructureSchema;
1119
1120
  export declare var RetryStrategy: StaticStructureSchema;
1121
+ export declare var RoleGroupAssignment: StaticStructureSchema;
1120
1122
  export declare var RollingDeploymentPolicy: StaticStructureSchema;
1121
1123
  export declare var RollingUpdatePolicy: StaticStructureSchema;
1122
1124
  export declare var RSessionAppSettings: StaticStructureSchema;
@@ -1388,6 +1390,7 @@ export declare var AppImageConfigList: StaticListSchema;
1388
1390
  export declare var AppList: StaticListSchema;
1389
1391
  export declare var ArtifactSourceTypes: StaticListSchema;
1390
1392
  export declare var ArtifactSummaries: StaticListSchema;
1393
+ export declare var AssignedGroupPatternsList: number;
1391
1394
  export declare var AssociationSummaries: StaticListSchema;
1392
1395
  export declare var AssumableRoleArns: number;
1393
1396
  export declare var AsyncNotificationTopicTypeList: number;
@@ -1496,6 +1499,7 @@ export declare var FlowDefinitionSummaries: StaticListSchema;
1496
1499
  export declare var FlowDefinitionTaskKeywords: number;
1497
1500
  export declare var ForecastQuantiles: number;
1498
1501
  export declare var GroupingAttributeNames: number;
1502
+ export declare var GroupPatternsList: number;
1499
1503
  export declare var Groups: number;
1500
1504
  export declare var HiddenAppTypesList: number;
1501
1505
  export declare var HiddenInstanceTypesList: number;
@@ -1616,11 +1620,13 @@ export declare var RecommendationJobSupportedInstanceTypes: number;
1616
1620
  export declare var RecommendationJobSupportedResponseMIMETypes: number;
1617
1621
  export declare var RecommendationJobVpcSecurityGroupIds: number;
1618
1622
  export declare var RecommendationJobVpcSubnets: number;
1623
+ export declare var ReleaseNotesList: number;
1619
1624
  export declare var RenderingErrorList: StaticListSchema;
1620
1625
  export declare var ReservedCapacityOfferings: StaticListSchema;
1621
1626
  export declare var ReservedCapacitySummaries: StaticListSchema;
1622
1627
  export declare var ResourceCatalogList: StaticListSchema;
1623
1628
  export declare var ResponseMIMETypes: number;
1629
+ export declare var RoleGroupAssignmentsList: StaticListSchema;
1624
1630
  export declare var SageMakerImageVersionAliases: number;
1625
1631
  export declare var SageMakerResourceNames: number;
1626
1632
  export declare var ScalingPolicies: StaticListSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
4
- "version": "3.930.0",
4
+ "version": "3.932.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.930.0",
24
- "@aws-sdk/credential-provider-node": "3.930.0",
23
+ "@aws-sdk/core": "3.932.0",
24
+ "@aws-sdk/credential-provider-node": "3.932.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.930.0",
28
- "@aws-sdk/middleware-user-agent": "3.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.932.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.930.0",
33
+ "@aws-sdk/util-user-agent-node": "3.932.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",