@aws-sdk/client-sagemaker 3.758.0 → 3.771.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 (42) hide show
  1. package/dist-cjs/endpoint/ruleset.js +3 -3
  2. package/dist-cjs/index.js +1741 -1708
  3. package/dist-es/endpoint/ruleset.js +3 -3
  4. package/dist-es/models/models_1.js +33 -0
  5. package/dist-es/pagination/ListClusterNodesPaginator.js +4 -0
  6. package/dist-es/pagination/ListClustersPaginator.js +4 -0
  7. package/dist-es/pagination/index.js +2 -0
  8. package/dist-es/protocols/Aws_json1_1.js +1 -0
  9. package/dist-types/commands/CreateDataQualityJobDefinitionCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateDomainCommand.d.ts +1 -0
  11. package/dist-types/commands/CreateModelBiasJobDefinitionCommand.d.ts +1 -1
  12. package/dist-types/commands/CreateModelExplainabilityJobDefinitionCommand.d.ts +1 -1
  13. package/dist-types/commands/CreateModelQualityJobDefinitionCommand.d.ts +1 -1
  14. package/dist-types/commands/CreateMonitoringScheduleCommand.d.ts +1 -1
  15. package/dist-types/commands/CreateProcessingJobCommand.d.ts +1 -1
  16. package/dist-types/commands/CreateTrainingJobCommand.d.ts +2 -2
  17. package/dist-types/commands/DescribeDataQualityJobDefinitionCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeModelBiasJobDefinitionCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeModelExplainabilityJobDefinitionCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeModelQualityJobDefinitionCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeMonitoringScheduleCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeProcessingJobCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +2 -2
  24. package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -1
  25. package/dist-types/commands/ListClustersCommand.d.ts +1 -1
  26. package/dist-types/commands/SearchCommand.d.ts +5 -5
  27. package/dist-types/commands/UpdateMonitoringScheduleCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
  29. package/dist-types/models/models_0.d.ts +2 -2
  30. package/dist-types/models/models_1.d.ts +52 -2
  31. package/dist-types/models/models_2.d.ts +79 -71
  32. package/dist-types/models/models_3.d.ts +6 -6
  33. package/dist-types/models/models_4.d.ts +12 -10
  34. package/dist-types/pagination/ListClusterNodesPaginator.d.ts +7 -0
  35. package/dist-types/pagination/ListClustersPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +2 -0
  37. package/dist-types/ts3.4/models/models_1.d.ts +34 -0
  38. package/dist-types/ts3.4/models/models_3.d.ts +2 -2
  39. package/dist-types/ts3.4/pagination/ListClusterNodesPaginator.d.ts +11 -0
  40. package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  42. package/package.json +1 -1
@@ -2432,7 +2432,7 @@ export interface ListClusterNodesRequest {
2432
2432
  SortOrder?: SortOrder | undefined;
2433
2433
  }
2434
2434
  export interface ListClusterNodesResponse {
2435
- NextToken: string | undefined;
2435
+ NextToken?: string | undefined;
2436
2436
  ClusterNodeSummaries: ClusterNodeSummary[] | undefined;
2437
2437
  }
2438
2438
  export interface ListClustersRequest {
@@ -2446,7 +2446,7 @@ export interface ListClustersRequest {
2446
2446
  TrainingPlanArn?: string | undefined;
2447
2447
  }
2448
2448
  export interface ListClustersResponse {
2449
- NextToken: string | undefined;
2449
+ NextToken?: string | undefined;
2450
2450
  ClusterSummaries: ClusterSummary[] | undefined;
2451
2451
  }
2452
2452
  export declare const SortClusterSchedulerConfigBy: {
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListClusterNodesCommandInput,
4
+ ListClusterNodesCommandOutput,
5
+ } from "../commands/ListClusterNodesCommand";
6
+ import { SageMakerPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListClusterNodes: (
8
+ config: SageMakerPaginationConfiguration,
9
+ input: ListClusterNodesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListClusterNodesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListClustersCommandInput,
4
+ ListClustersCommandOutput,
5
+ } from "../commands/ListClustersCommand";
6
+ import { SageMakerPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListClusters: (
8
+ config: SageMakerPaginationConfiguration,
9
+ input: ListClustersCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListClustersCommandOutput>;
@@ -8,7 +8,9 @@ export * from "./ListArtifactsPaginator";
8
8
  export * from "./ListAssociationsPaginator";
9
9
  export * from "./ListAutoMLJobsPaginator";
10
10
  export * from "./ListCandidatesForAutoMLJobPaginator";
11
+ export * from "./ListClusterNodesPaginator";
11
12
  export * from "./ListClusterSchedulerConfigsPaginator";
13
+ export * from "./ListClustersPaginator";
12
14
  export * from "./ListCodeRepositoriesPaginator";
13
15
  export * from "./ListCompilationJobsPaginator";
14
16
  export * from "./ListComputeQuotasPaginator";
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.758.0",
4
+ "version": "3.771.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",