@aws-sdk/client-sagemaker 3.918.0 → 3.919.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/README.md +16 -0
  2. package/dist-cjs/index.js +71 -0
  3. package/dist-es/SageMaker.js +4 -0
  4. package/dist-es/commands/DeleteProcessingJobCommand.js +22 -0
  5. package/dist-es/commands/DeleteTrainingJobCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_3.js +1 -0
  8. package/dist-es/protocols/Aws_json1_1.js +32 -0
  9. package/dist-types/SageMaker.d.ts +14 -0
  10. package/dist-types/SageMakerClient.d.ts +4 -2
  11. package/dist-types/commands/DeleteProcessingJobCommand.d.ts +78 -0
  12. package/dist-types/commands/DeleteTrainingJobCommand.d.ts +78 -0
  13. package/dist-types/commands/DescribeClusterEventCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +2 -2
  15. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +1 -1
  16. package/dist-types/commands/GetScalingConfigurationRecommendationCommand.d.ts +1 -2
  17. package/dist-types/commands/ListTrainingJobsCommand.d.ts +2 -2
  18. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +2 -2
  19. package/dist-types/commands/ListTrialsCommand.d.ts +2 -1
  20. package/dist-types/commands/SearchCommand.d.ts +4 -4
  21. package/dist-types/commands/index.d.ts +2 -0
  22. package/dist-types/models/models_2.d.ts +21 -26
  23. package/dist-types/models/models_3.d.ts +27 -47
  24. package/dist-types/models/models_4.d.ts +47 -52
  25. package/dist-types/models/models_5.d.ts +51 -0
  26. package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
  27. package/dist-types/ts3.4/SageMaker.d.ts +34 -0
  28. package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
  29. package/dist-types/ts3.4/commands/DeleteProcessingJobCommand.d.ts +46 -0
  30. package/dist-types/ts3.4/commands/DeleteTrainingJobCommand.d.ts +46 -0
  31. package/dist-types/ts3.4/commands/DescribeClusterEventCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/GetScalingConfigurationRecommendationCommand.d.ts +4 -2
  33. package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +2 -1
  34. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  35. package/dist-types/ts3.4/models/models_2.d.ts +6 -8
  36. package/dist-types/ts3.4/models/models_3.d.ts +9 -11
  37. package/dist-types/ts3.4/models/models_4.d.ts +11 -14
  38. package/dist-types/ts3.4/models/models_5.d.ts +12 -0
  39. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
  40. package/package.json +3 -3
@@ -475,6 +475,10 @@ import {
475
475
  DeletePipelineCommandInput,
476
476
  DeletePipelineCommandOutput,
477
477
  } from "./commands/DeletePipelineCommand";
478
+ import {
479
+ DeleteProcessingJobCommandInput,
480
+ DeleteProcessingJobCommandOutput,
481
+ } from "./commands/DeleteProcessingJobCommand";
478
482
  import {
479
483
  DeleteProjectCommandInput,
480
484
  DeleteProjectCommandOutput,
@@ -491,6 +495,10 @@ import {
491
495
  DeleteTagsCommandInput,
492
496
  DeleteTagsCommandOutput,
493
497
  } from "./commands/DeleteTagsCommand";
498
+ import {
499
+ DeleteTrainingJobCommandInput,
500
+ DeleteTrainingJobCommandOutput,
501
+ } from "./commands/DeleteTrainingJobCommand";
494
502
  import {
495
503
  DeleteTrialCommandInput,
496
504
  DeleteTrialCommandOutput,
@@ -3068,6 +3076,19 @@ export interface SageMaker {
3068
3076
  options: __HttpHandlerOptions,
3069
3077
  cb: (err: any, data?: DeletePipelineCommandOutput) => void
3070
3078
  ): void;
3079
+ deleteProcessingJob(
3080
+ args: DeleteProcessingJobCommandInput,
3081
+ options?: __HttpHandlerOptions
3082
+ ): Promise<DeleteProcessingJobCommandOutput>;
3083
+ deleteProcessingJob(
3084
+ args: DeleteProcessingJobCommandInput,
3085
+ cb: (err: any, data?: DeleteProcessingJobCommandOutput) => void
3086
+ ): void;
3087
+ deleteProcessingJob(
3088
+ args: DeleteProcessingJobCommandInput,
3089
+ options: __HttpHandlerOptions,
3090
+ cb: (err: any, data?: DeleteProcessingJobCommandOutput) => void
3091
+ ): void;
3071
3092
  deleteProject(
3072
3093
  args: DeleteProjectCommandInput,
3073
3094
  options?: __HttpHandlerOptions
@@ -3120,6 +3141,19 @@ export interface SageMaker {
3120
3141
  options: __HttpHandlerOptions,
3121
3142
  cb: (err: any, data?: DeleteTagsCommandOutput) => void
3122
3143
  ): void;
3144
+ deleteTrainingJob(
3145
+ args: DeleteTrainingJobCommandInput,
3146
+ options?: __HttpHandlerOptions
3147
+ ): Promise<DeleteTrainingJobCommandOutput>;
3148
+ deleteTrainingJob(
3149
+ args: DeleteTrainingJobCommandInput,
3150
+ cb: (err: any, data?: DeleteTrainingJobCommandOutput) => void
3151
+ ): void;
3152
+ deleteTrainingJob(
3153
+ args: DeleteTrainingJobCommandInput,
3154
+ options: __HttpHandlerOptions,
3155
+ cb: (err: any, data?: DeleteTrainingJobCommandOutput) => void
3156
+ ): void;
3123
3157
  deleteTrial(
3124
3158
  args: DeleteTrialCommandInput,
3125
3159
  options?: __HttpHandlerOptions
@@ -521,6 +521,10 @@ import {
521
521
  DeletePipelineCommandInput,
522
522
  DeletePipelineCommandOutput,
523
523
  } from "./commands/DeletePipelineCommand";
524
+ import {
525
+ DeleteProcessingJobCommandInput,
526
+ DeleteProcessingJobCommandOutput,
527
+ } from "./commands/DeleteProcessingJobCommand";
524
528
  import {
525
529
  DeleteProjectCommandInput,
526
530
  DeleteProjectCommandOutput,
@@ -537,6 +541,10 @@ import {
537
541
  DeleteTagsCommandInput,
538
542
  DeleteTagsCommandOutput,
539
543
  } from "./commands/DeleteTagsCommand";
544
+ import {
545
+ DeleteTrainingJobCommandInput,
546
+ DeleteTrainingJobCommandOutput,
547
+ } from "./commands/DeleteTrainingJobCommand";
540
548
  import {
541
549
  DeleteTrialCommandInput,
542
550
  DeleteTrialCommandOutput,
@@ -1648,10 +1656,12 @@ export type ServiceInputTypes =
1648
1656
  | DeleteOptimizationJobCommandInput
1649
1657
  | DeletePartnerAppCommandInput
1650
1658
  | DeletePipelineCommandInput
1659
+ | DeleteProcessingJobCommandInput
1651
1660
  | DeleteProjectCommandInput
1652
1661
  | DeleteSpaceCommandInput
1653
1662
  | DeleteStudioLifecycleConfigCommandInput
1654
1663
  | DeleteTagsCommandInput
1664
+ | DeleteTrainingJobCommandInput
1655
1665
  | DeleteTrialCommandInput
1656
1666
  | DeleteTrialComponentCommandInput
1657
1667
  | DeleteUserProfileCommandInput
@@ -2018,10 +2028,12 @@ export type ServiceOutputTypes =
2018
2028
  | DeleteOptimizationJobCommandOutput
2019
2029
  | DeletePartnerAppCommandOutput
2020
2030
  | DeletePipelineCommandOutput
2031
+ | DeleteProcessingJobCommandOutput
2021
2032
  | DeleteProjectCommandOutput
2022
2033
  | DeleteSpaceCommandOutput
2023
2034
  | DeleteStudioLifecycleConfigCommandOutput
2024
2035
  | DeleteTagsCommandOutput
2036
+ | DeleteTrainingJobCommandOutput
2025
2037
  | DeleteTrialCommandOutput
2026
2038
  | DeleteTrialComponentCommandOutput
2027
2039
  | DeleteUserProfileCommandOutput
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteProcessingJobRequest } from "../models/models_2";
4
+ import {
5
+ SageMakerClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SageMakerClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteProcessingJobCommandInput
12
+ extends DeleteProcessingJobRequest {}
13
+ export interface DeleteProcessingJobCommandOutput extends __MetadataBearer {}
14
+ declare const DeleteProcessingJobCommand_base: {
15
+ new (
16
+ input: DeleteProcessingJobCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteProcessingJobCommandInput,
19
+ DeleteProcessingJobCommandOutput,
20
+ SageMakerClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ input: DeleteProcessingJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteProcessingJobCommandInput,
28
+ DeleteProcessingJobCommandOutput,
29
+ SageMakerClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeleteProcessingJobCommand extends DeleteProcessingJobCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: DeleteProcessingJobRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: DeleteProcessingJobCommandInput;
43
+ output: DeleteProcessingJobCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteTrainingJobRequest } from "../models/models_2";
4
+ import {
5
+ SageMakerClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SageMakerClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteTrainingJobCommandInput
12
+ extends DeleteTrainingJobRequest {}
13
+ export interface DeleteTrainingJobCommandOutput extends __MetadataBearer {}
14
+ declare const DeleteTrainingJobCommand_base: {
15
+ new (
16
+ input: DeleteTrainingJobCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteTrainingJobCommandInput,
19
+ DeleteTrainingJobCommandOutput,
20
+ SageMakerClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ input: DeleteTrainingJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteTrainingJobCommandInput,
28
+ DeleteTrainingJobCommandOutput,
29
+ SageMakerClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeleteTrainingJobCommand extends DeleteTrainingJobCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: DeleteTrainingJobRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: DeleteTrainingJobCommandInput;
43
+ output: DeleteTrainingJobCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeClusterEventRequest,
5
5
  DescribeClusterEventResponse,
6
- } from "../models/models_2";
6
+ } from "../models/models_3";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,7 +1,9 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetScalingConfigurationRecommendationRequest } from "../models/models_3";
4
- import { GetScalingConfigurationRecommendationResponse } from "../models/models_4";
3
+ import {
4
+ GetScalingConfigurationRecommendationRequest,
5
+ GetScalingConfigurationRecommendationResponse,
6
+ } from "../models/models_4";
5
7
  import {
6
8
  SageMakerClientResolvedConfig,
7
9
  ServiceInputTypes,
@@ -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 { ListTrialsRequest, ListTrialsResponse } from "../models/models_4";
3
+ import { ListTrialsRequest } from "../models/models_4";
4
+ import { ListTrialsResponse } from "../models/models_5";
4
5
  import {
5
6
  SageMakerClientResolvedConfig,
6
7
  ServiceInputTypes,
@@ -117,10 +117,12 @@ export * from "./DeleteNotebookInstanceLifecycleConfigCommand";
117
117
  export * from "./DeleteOptimizationJobCommand";
118
118
  export * from "./DeletePartnerAppCommand";
119
119
  export * from "./DeletePipelineCommand";
120
+ export * from "./DeleteProcessingJobCommand";
120
121
  export * from "./DeleteProjectCommand";
121
122
  export * from "./DeleteSpaceCommand";
122
123
  export * from "./DeleteStudioLifecycleConfigCommand";
123
124
  export * from "./DeleteTagsCommand";
125
+ export * from "./DeleteTrainingJobCommand";
124
126
  export * from "./DeleteTrialCommand";
125
127
  export * from "./DeleteTrialComponentCommand";
126
128
  export * from "./DeleteUserProfileCommand";
@@ -37,7 +37,6 @@ import {
37
37
  Channel,
38
38
  CheckpointConfig,
39
39
  ClusterAutoScalingConfigOutput,
40
- ClusterEventDetail,
41
40
  ClusterInstanceGroupDetails,
42
41
  ClusterNodeProvisioningMode,
43
42
  ClusterNodeRecovery,
@@ -1511,6 +1510,9 @@ export interface DeletePipelineRequest {
1511
1510
  export interface DeletePipelineResponse {
1512
1511
  PipelineArn?: string | undefined;
1513
1512
  }
1513
+ export interface DeleteProcessingJobRequest {
1514
+ ProcessingJobName: string | undefined;
1515
+ }
1514
1516
  export interface DeleteProjectInput {
1515
1517
  ProjectName: string | undefined;
1516
1518
  }
@@ -1526,6 +1528,9 @@ export interface DeleteTagsInput {
1526
1528
  TagKeys: string[] | undefined;
1527
1529
  }
1528
1530
  export interface DeleteTagsOutput {}
1531
+ export interface DeleteTrainingJobRequest {
1532
+ TrainingJobName: string | undefined;
1533
+ }
1529
1534
  export interface DeleteTrialRequest {
1530
1535
  TrialName: string | undefined;
1531
1536
  }
@@ -1777,13 +1782,6 @@ export interface DescribeClusterResponse {
1777
1782
  ClusterRole?: string | undefined;
1778
1783
  AutoScaling?: ClusterAutoScalingConfigOutput | undefined;
1779
1784
  }
1780
- export interface DescribeClusterEventRequest {
1781
- EventId: string | undefined;
1782
- ClusterName: string | undefined;
1783
- }
1784
- export interface DescribeClusterEventResponse {
1785
- EventDetails?: ClusterEventDetail | undefined;
1786
- }
1787
1785
  export declare const CreateModelCardRequestFilterSensitiveLog: (
1788
1786
  obj: CreateModelCardRequest
1789
1787
  ) => any;
@@ -18,6 +18,7 @@ import {
18
18
  CfnTemplateProviderDetail,
19
19
  Channel,
20
20
  CheckpointConfig,
21
+ ClusterEventDetail,
21
22
  ClusterNodeDetails,
22
23
  InferenceSpecification,
23
24
  ModelApprovalStatus,
@@ -191,6 +192,13 @@ import {
191
192
  WorkerAccessConfiguration,
192
193
  WorkforceIpAddressType,
193
194
  } from "./models_2";
195
+ export interface DescribeClusterEventRequest {
196
+ EventId: string | undefined;
197
+ ClusterName: string | undefined;
198
+ }
199
+ export interface DescribeClusterEventResponse {
200
+ EventDetails?: ClusterEventDetail | undefined;
201
+ }
194
202
  export interface DescribeClusterNodeRequest {
195
203
  ClusterName: string | undefined;
196
204
  NodeId?: string | undefined;
@@ -780,6 +788,7 @@ export interface FinalHyperParameterTuningJobObjectiveMetric {
780
788
  }
781
789
  export declare const TrainingJobStatus: {
782
790
  readonly COMPLETED: "Completed";
791
+ readonly DELETING: "Deleting";
783
792
  readonly FAILED: "Failed";
784
793
  readonly IN_PROGRESS: "InProgress";
785
794
  readonly STOPPED: "Stopped";
@@ -2600,17 +2609,6 @@ export interface ScalingPolicyObjective {
2600
2609
  MinInvocationsPerMinute?: number | undefined;
2601
2610
  MaxInvocationsPerMinute?: number | undefined;
2602
2611
  }
2603
- export interface GetScalingConfigurationRecommendationRequest {
2604
- InferenceRecommendationsJobName: string | undefined;
2605
- RecommendationId?: string | undefined;
2606
- EndpointName?: string | undefined;
2607
- TargetCpuUtilizationPerCore?: number | undefined;
2608
- ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
2609
- }
2610
- export interface ScalingPolicyMetric {
2611
- InvocationsPerInstance?: number | undefined;
2612
- ModelLatency?: number | undefined;
2613
- }
2614
2612
  export declare const DescribeModelCardResponseFilterSensitiveLog: (
2615
2613
  obj: DescribeModelCardResponse
2616
2614
  ) => any;
@@ -127,7 +127,6 @@ import {
127
127
  RecommendationMetrics,
128
128
  ReservedCapacitySummary,
129
129
  SageMakerResourceName,
130
- ScalingPolicyMetric,
131
130
  ScalingPolicyObjective,
132
131
  ScheduleStatus,
133
132
  SecondaryStatus,
@@ -139,10 +138,20 @@ import {
139
138
  TrainingPlanStatus,
140
139
  TransformJobStatus,
141
140
  TrialComponentSource,
142
- TrialSource,
143
141
  WarmPoolResourceStatus,
144
142
  WarmPoolStatus,
145
143
  } from "./models_3";
144
+ export interface GetScalingConfigurationRecommendationRequest {
145
+ InferenceRecommendationsJobName: string | undefined;
146
+ RecommendationId?: string | undefined;
147
+ EndpointName?: string | undefined;
148
+ TargetCpuUtilizationPerCore?: number | undefined;
149
+ ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
150
+ }
151
+ export interface ScalingPolicyMetric {
152
+ InvocationsPerInstance?: number | undefined;
153
+ ModelLatency?: number | undefined;
154
+ }
146
155
  export interface GetScalingConfigurationRecommendationResponse {
147
156
  InferenceRecommendationsJobName?: string | undefined;
148
157
  RecommendationId?: string | undefined;
@@ -2266,15 +2275,3 @@ export interface ListTrialsRequest {
2266
2275
  MaxResults?: number | undefined;
2267
2276
  NextToken?: string | undefined;
2268
2277
  }
2269
- export interface TrialSummary {
2270
- TrialArn?: string | undefined;
2271
- TrialName?: string | undefined;
2272
- DisplayName?: string | undefined;
2273
- TrialSource?: TrialSource | undefined;
2274
- CreationTime?: Date | undefined;
2275
- LastModifiedTime?: Date | undefined;
2276
- }
2277
- export interface ListTrialsResponse {
2278
- TrialSummaries?: TrialSummary[] | undefined;
2279
- NextToken?: string | undefined;
2280
- }
@@ -171,6 +171,18 @@ import {
171
171
  ResourceType,
172
172
  SortOrder,
173
173
  } from "./models_4";
174
+ export interface TrialSummary {
175
+ TrialArn?: string | undefined;
176
+ TrialName?: string | undefined;
177
+ DisplayName?: string | undefined;
178
+ TrialSource?: TrialSource | undefined;
179
+ CreationTime?: Date | undefined;
180
+ LastModifiedTime?: Date | undefined;
181
+ }
182
+ export interface ListTrialsResponse {
183
+ TrialSummaries?: TrialSummary[] | undefined;
184
+ NextToken?: string | undefined;
185
+ }
174
186
  export interface ListUltraServersByReservedCapacityRequest {
175
187
  ReservedCapacityArn: string | undefined;
176
188
  MaxResults?: number | undefined;
@@ -479,6 +479,10 @@ import {
479
479
  DeletePipelineCommandInput,
480
480
  DeletePipelineCommandOutput,
481
481
  } from "../commands/DeletePipelineCommand";
482
+ import {
483
+ DeleteProcessingJobCommandInput,
484
+ DeleteProcessingJobCommandOutput,
485
+ } from "../commands/DeleteProcessingJobCommand";
482
486
  import {
483
487
  DeleteProjectCommandInput,
484
488
  DeleteProjectCommandOutput,
@@ -495,6 +499,10 @@ import {
495
499
  DeleteTagsCommandInput,
496
500
  DeleteTagsCommandOutput,
497
501
  } from "../commands/DeleteTagsCommand";
502
+ import {
503
+ DeleteTrainingJobCommandInput,
504
+ DeleteTrainingJobCommandOutput,
505
+ } from "../commands/DeleteTrainingJobCommand";
498
506
  import {
499
507
  DeleteTrialCommandInput,
500
508
  DeleteTrialCommandOutput,
@@ -1955,6 +1963,10 @@ export declare const se_DeletePipelineCommand: (
1955
1963
  input: DeletePipelineCommandInput,
1956
1964
  context: __SerdeContext
1957
1965
  ) => Promise<__HttpRequest>;
1966
+ export declare const se_DeleteProcessingJobCommand: (
1967
+ input: DeleteProcessingJobCommandInput,
1968
+ context: __SerdeContext
1969
+ ) => Promise<__HttpRequest>;
1958
1970
  export declare const se_DeleteProjectCommand: (
1959
1971
  input: DeleteProjectCommandInput,
1960
1972
  context: __SerdeContext
@@ -1971,6 +1983,10 @@ export declare const se_DeleteTagsCommand: (
1971
1983
  input: DeleteTagsCommandInput,
1972
1984
  context: __SerdeContext
1973
1985
  ) => Promise<__HttpRequest>;
1986
+ export declare const se_DeleteTrainingJobCommand: (
1987
+ input: DeleteTrainingJobCommandInput,
1988
+ context: __SerdeContext
1989
+ ) => Promise<__HttpRequest>;
1974
1990
  export declare const se_DeleteTrialCommand: (
1975
1991
  input: DeleteTrialCommandInput,
1976
1992
  context: __SerdeContext
@@ -3431,6 +3447,10 @@ export declare const de_DeletePipelineCommand: (
3431
3447
  output: __HttpResponse,
3432
3448
  context: __SerdeContext
3433
3449
  ) => Promise<DeletePipelineCommandOutput>;
3450
+ export declare const de_DeleteProcessingJobCommand: (
3451
+ output: __HttpResponse,
3452
+ context: __SerdeContext
3453
+ ) => Promise<DeleteProcessingJobCommandOutput>;
3434
3454
  export declare const de_DeleteProjectCommand: (
3435
3455
  output: __HttpResponse,
3436
3456
  context: __SerdeContext
@@ -3447,6 +3467,10 @@ export declare const de_DeleteTagsCommand: (
3447
3467
  output: __HttpResponse,
3448
3468
  context: __SerdeContext
3449
3469
  ) => Promise<DeleteTagsCommandOutput>;
3470
+ export declare const de_DeleteTrainingJobCommand: (
3471
+ output: __HttpResponse,
3472
+ context: __SerdeContext
3473
+ ) => Promise<DeleteTrainingJobCommandOutput>;
3450
3474
  export declare const de_DeleteTrialCommand: (
3451
3475
  output: __HttpResponse,
3452
3476
  context: __SerdeContext
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.918.0",
4
+ "version": "3.919.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",
@@ -21,10 +21,10 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.916.0",
24
- "@aws-sdk/credential-provider-node": "3.918.0",
24
+ "@aws-sdk/credential-provider-node": "3.919.0",
25
25
  "@aws-sdk/middleware-host-header": "3.914.0",
26
26
  "@aws-sdk/middleware-logger": "3.914.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.914.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.919.0",
28
28
  "@aws-sdk/middleware-user-agent": "3.916.0",
29
29
  "@aws-sdk/region-config-resolver": "3.914.0",
30
30
  "@aws-sdk/types": "3.914.0",