@aws-sdk/client-sagemaker 3.1061.0 → 3.1063.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 (37) hide show
  1. package/dist-cjs/index.js +6 -0
  2. package/dist-cjs/schemas/schemas_0.js +80 -68
  3. package/dist-es/models/enums.js +5 -0
  4. package/dist-es/schemas/schemas_0.js +41 -29
  5. package/dist-types/commands/CreateAIBenchmarkJobCommand.d.ts +5 -0
  6. package/dist-types/commands/CreateAIRecommendationJobCommand.d.ts +5 -0
  7. package/dist-types/commands/DescribeAIBenchmarkJobCommand.d.ts +5 -0
  8. package/dist-types/commands/DescribeAIRecommendationJobCommand.d.ts +5 -0
  9. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +1 -2
  10. package/dist-types/commands/DescribeModelCardCommand.d.ts +2 -1
  11. package/dist-types/commands/DescribeModelPackageCommand.d.ts +2 -1
  12. package/dist-types/commands/GetSearchSuggestionsCommand.d.ts +1 -1
  13. package/dist-types/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
  14. package/dist-types/commands/SearchCommand.d.ts +24 -1
  15. package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +2 -1
  16. package/dist-types/commands/UpdateNotebookInstanceLifecycleConfigCommand.d.ts +1 -2
  17. package/dist-types/models/enums.d.ts +13 -0
  18. package/dist-types/models/models_0.d.ts +41 -16
  19. package/dist-types/models/models_1.d.ts +17 -17
  20. package/dist-types/models/models_2.d.ts +18 -12
  21. package/dist-types/models/models_3.d.ts +100 -48
  22. package/dist-types/models/models_4.d.ts +55 -29
  23. package/dist-types/models/models_5.d.ts +26 -1
  24. package/dist-types/schemas/schemas_0.d.ts +2 -0
  25. package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +4 -2
  26. package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/UpdateNotebookInstanceCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/UpdateNotebookInstanceLifecycleConfigCommand.d.ts +4 -2
  29. package/dist-types/ts3.4/models/enums.d.ts +6 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +9 -4
  31. package/dist-types/ts3.4/models/models_1.d.ts +4 -5
  32. package/dist-types/ts3.4/models/models_2.d.ts +5 -5
  33. package/dist-types/ts3.4/models/models_3.d.ts +22 -11
  34. package/dist-types/ts3.4/models/models_4.d.ts +17 -8
  35. package/dist-types/ts3.4/models/models_5.d.ts +7 -1
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
  37. package/package.json +5 -5
@@ -49,6 +49,7 @@ import {
49
49
  ImageVersionSortBy,
50
50
  ImageVersionSortOrder,
51
51
  ImageVersionStatus,
52
+ IncludedData,
52
53
  InferenceComponentCapacitySizeType,
53
54
  InferenceComponentSortKey,
54
55
  InferenceComponentStatus,
@@ -296,6 +297,9 @@ import {
296
297
  TrialComponentStatus,
297
298
  WorkerAccessConfiguration,
298
299
  } from "./models_2";
300
+ export interface DescribeInferenceComponentInput {
301
+ InferenceComponentName: string | undefined;
302
+ }
299
303
  export interface InferenceComponentCapacitySize {
300
304
  Type: InferenceComponentCapacitySizeType | undefined;
301
305
  Value: number | undefined;
@@ -607,6 +611,7 @@ export interface DescribeModelBiasJobDefinitionResponse {
607
611
  export interface DescribeModelCardRequest {
608
612
  ModelCardName: string | undefined;
609
613
  ModelCardVersion?: number | undefined;
614
+ IncludedData?: IncludedData | undefined;
610
615
  }
611
616
  export interface DescribeModelCardResponse {
612
617
  ModelCardArn: string | undefined;
@@ -661,6 +666,7 @@ export interface DescribeModelExplainabilityJobDefinitionResponse {
661
666
  }
662
667
  export interface DescribeModelPackageInput {
663
668
  ModelPackageName: string | undefined;
669
+ IncludedData?: IncludedData | undefined;
664
670
  }
665
671
  export interface ModelPackageStatusItem {
666
672
  Name: string | undefined;
@@ -1900,6 +1906,22 @@ export interface InferenceRecommendationsJobStep {
1900
1906
  Status: RecommendationJobStatus | undefined;
1901
1907
  InferenceBenchmark?: RecommendationJobInferenceBenchmark | undefined;
1902
1908
  }
1909
+ export interface Job {
1910
+ JobName?: string | undefined;
1911
+ JobArn?: string | undefined;
1912
+ RoleArn?: string | undefined;
1913
+ JobCategory?: JobCategory | undefined;
1914
+ JobConfigSchemaVersion?: string | undefined;
1915
+ JobConfigDocument?: string | undefined;
1916
+ CreationTime?: Date | undefined;
1917
+ LastModifiedTime?: Date | undefined;
1918
+ EndTime?: Date | undefined;
1919
+ JobStatus?: JobStatus | undefined;
1920
+ SecondaryStatus?: JobSecondaryStatus | undefined;
1921
+ SecondaryStatusTransitions?: JobSecondaryStatusTransition[] | undefined;
1922
+ FailureReason?: string | undefined;
1923
+ Tags?: Tag[] | undefined;
1924
+ }
1903
1925
  export interface JobConfigSchemaVersionSummary {
1904
1926
  JobConfigSchemaVersion: string | undefined;
1905
1927
  }
@@ -2561,14 +2583,3 @@ export interface ListInferenceRecommendationsJobsResponse {
2561
2583
  InferenceRecommendationsJobs: InferenceRecommendationsJob[] | undefined;
2562
2584
  NextToken?: string | undefined;
2563
2585
  }
2564
- export interface ListInferenceRecommendationsJobStepsRequest {
2565
- JobName: string | undefined;
2566
- Status?: RecommendationJobStatus | undefined;
2567
- StepType?: RecommendationStepType | undefined;
2568
- MaxResults?: number | undefined;
2569
- NextToken?: string | undefined;
2570
- }
2571
- export interface ListInferenceRecommendationsJobStepsResponse {
2572
- Steps?: InferenceRecommendationsJobStep[] | undefined;
2573
- NextToken?: string | undefined;
2574
- }
@@ -72,6 +72,8 @@ import {
72
72
  ProjectSortBy,
73
73
  ProjectSortOrder,
74
74
  ProjectStatus,
75
+ RecommendationJobStatus,
76
+ RecommendationStepType,
75
77
  Relation,
76
78
  ReservedCapacityInstanceType,
77
79
  ReservedCapacityType,
@@ -139,7 +141,6 @@ import {
139
141
  ClusterTieredStorageConfig,
140
142
  CodeEditorAppImageConfig,
141
143
  ComputeQuotaConfig,
142
- ComputeQuotaTarget,
143
144
  DeploymentConfiguration,
144
145
  InferenceSpecification,
145
146
  JupyterLabAppImageConfig,
@@ -156,6 +157,7 @@ import {
156
157
  VpcConfig,
157
158
  } from "./models_0";
158
159
  import {
160
+ ComputeQuotaTarget,
159
161
  ConditionStepMetadata,
160
162
  ContainerDefinition,
161
163
  DefaultSpaceSettings,
@@ -180,7 +182,6 @@ import {
180
182
  ModelVariantConfig,
181
183
  MonitoringScheduleConfig,
182
184
  NetworkConfig,
183
- NotebookInstanceLifecycleHook,
184
185
  RetryStrategy,
185
186
  SchedulerConfig,
186
187
  ShadowModeConfig,
@@ -234,6 +235,8 @@ import {
234
235
  HyperParameterTuningJobSearchEntity,
235
236
  InferenceComponentDeploymentConfig,
236
237
  InferenceComponentMetadata,
238
+ InferenceRecommendationsJobStep,
239
+ Job,
237
240
  JobConfigSchemaVersionSummary,
238
241
  JobStepMetadata,
239
242
  JobSummary,
@@ -260,6 +263,17 @@ import {
260
263
  Workforce,
261
264
  Workteam,
262
265
  } from "./models_3";
266
+ export interface ListInferenceRecommendationsJobStepsRequest {
267
+ JobName: string | undefined;
268
+ Status?: RecommendationJobStatus | undefined;
269
+ StepType?: RecommendationStepType | undefined;
270
+ MaxResults?: number | undefined;
271
+ NextToken?: string | undefined;
272
+ }
273
+ export interface ListInferenceRecommendationsJobStepsResponse {
274
+ Steps?: InferenceRecommendationsJobStep[] | undefined;
275
+ NextToken?: string | undefined;
276
+ }
263
277
  export interface ListJobsRequest {
264
278
  JobCategory: JobCategory | undefined;
265
279
  NextToken?: string | undefined;
@@ -1742,6 +1756,7 @@ export interface SearchRecord {
1742
1756
  HyperParameterTuningJob?: HyperParameterTuningJobSearchEntity | undefined;
1743
1757
  ModelCard?: ModelCard | undefined;
1744
1758
  Model?: ModelDashboardModel | undefined;
1759
+ Job?: Job | undefined;
1745
1760
  }
1746
1761
  export interface TotalHits {
1747
1762
  Value?: number | undefined;
@@ -2289,9 +2304,3 @@ export interface UpdateNotebookInstanceInput {
2289
2304
  | InstanceMetadataServiceConfiguration
2290
2305
  | undefined;
2291
2306
  }
2292
- export interface UpdateNotebookInstanceOutput {}
2293
- export interface UpdateNotebookInstanceLifecycleConfigInput {
2294
- NotebookInstanceLifecycleConfigName: string | undefined;
2295
- OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
2296
- OnStart?: NotebookInstanceLifecycleHook[] | undefined;
2297
- }
@@ -6,7 +6,7 @@ import {
6
6
  WorkforceIpAddressType,
7
7
  } from "./enums";
8
8
  import { CfnUpdateTemplateProvider, Tag } from "./models_0";
9
- import { UserSettings } from "./models_1";
9
+ import { NotebookInstanceLifecycleHook, UserSettings } from "./models_1";
10
10
  import {
11
11
  MemberDefinition,
12
12
  NotificationConfiguration,
@@ -33,6 +33,12 @@ import {
33
33
  ResourceConfigForUpdate,
34
34
  VisibilityConditions,
35
35
  } from "./models_4";
36
+ export interface UpdateNotebookInstanceOutput {}
37
+ export interface UpdateNotebookInstanceLifecycleConfigInput {
38
+ NotebookInstanceLifecycleConfigName: string | undefined;
39
+ OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
40
+ OnStart?: NotebookInstanceLifecycleHook[] | undefined;
41
+ }
36
42
  export interface UpdateNotebookInstanceLifecycleConfigOutput {}
37
43
  export interface UpdatePartnerAppRequest {
38
44
  Arn: string | undefined;
@@ -32,6 +32,7 @@ export declare var AIBenchmarkOutputConfig$: StaticStructureSchema;
32
32
  export declare var AIBenchmarkOutputResult$: StaticStructureSchema;
33
33
  export declare var AICapacityReservationConfig$: StaticStructureSchema;
34
34
  export declare var AICloudWatchLogs$: StaticStructureSchema;
35
+ export declare var AIMlflowConfig$: StaticStructureSchema;
35
36
  export declare var AIModelSourceS3$: StaticStructureSchema;
36
37
  export declare var AIRecommendation$: StaticStructureSchema;
37
38
  export declare var AIRecommendationComputeSpec$: StaticStructureSchema;
@@ -815,6 +816,7 @@ export declare var InstancePoolSummary$: StaticStructureSchema;
815
816
  export declare var InstanceRequirementsEniConfiguration$: StaticStructureSchema;
816
817
  export declare var IntegerParameterRange$: StaticStructureSchema;
817
818
  export declare var IntegerParameterRangeSpecification$: StaticStructureSchema;
819
+ export declare var Job$: StaticStructureSchema;
818
820
  export declare var JobConfigSchemaVersionSummary$: StaticStructureSchema;
819
821
  export declare var JobSecondaryStatusTransition$: StaticStructureSchema;
820
822
  export declare var JobStepMetadata$: StaticStructureSchema;
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.1061.0",
4
+ "version": "3.1063.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
@@ -27,9 +27,9 @@
27
27
  "dependencies": {
28
28
  "@aws-crypto/sha256-browser": "5.2.0",
29
29
  "@aws-crypto/sha256-js": "5.2.0",
30
- "@aws-sdk/core": "^3.974.17",
31
- "@aws-sdk/credential-provider-node": "^3.972.50",
32
- "@aws-sdk/types": "^3.973.10",
30
+ "@aws-sdk/core": "^3.974.18",
31
+ "@aws-sdk/credential-provider-node": "^3.972.52",
32
+ "@aws-sdk/types": "^3.973.11",
33
33
  "@smithy/core": "^3.24.6",
34
34
  "@smithy/fetch-http-handler": "^5.4.6",
35
35
  "@smithy/node-http-handler": "^4.7.6",
@@ -61,7 +61,7 @@
61
61
  ],
62
62
  "author": {
63
63
  "name": "AWS SDK for JavaScript Team",
64
- "url": "https://aws.amazon.com/javascript/"
64
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
65
65
  },
66
66
  "license": "Apache-2.0",
67
67
  "browser": {