@aws-sdk/client-sagemaker 3.753.0 → 3.758.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 (69) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +134 -11
  3. package/dist-es/SageMaker.js +4 -0
  4. package/dist-es/commands/UpdateHubContentCommand.js +22 -0
  5. package/dist-es/commands/UpdateHubContentReferenceCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_2.js +1 -4
  8. package/dist-es/models/models_3.js +8 -5
  9. package/dist-es/models/models_4.js +5 -0
  10. package/dist-es/protocols/Aws_json1_1.js +80 -0
  11. package/dist-types/SageMaker.d.ts +14 -0
  12. package/dist-types/SageMakerClient.d.ts +4 -2
  13. package/dist-types/commands/CreateAlgorithmCommand.d.ts +6 -0
  14. package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +12 -0
  15. package/dist-types/commands/CreateModelPackageCommand.d.ts +5 -5
  16. package/dist-types/commands/CreateMonitoringScheduleCommand.d.ts +2 -1
  17. package/dist-types/commands/CreateTrainingJobCommand.d.ts +6 -0
  18. package/dist-types/commands/DeleteModelPackageCommand.d.ts +3 -2
  19. package/dist-types/commands/DescribeAlgorithmCommand.d.ts +6 -0
  20. package/dist-types/commands/DescribeHubContentCommand.d.ts +2 -1
  21. package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +12 -0
  22. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +21 -0
  23. package/dist-types/commands/DescribeModelPackageCommand.d.ts +3 -4
  24. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +6 -0
  25. package/dist-types/commands/GetModelPackageGroupPolicyCommand.d.ts +2 -2
  26. package/dist-types/commands/ImportHubContentCommand.d.ts +1 -0
  27. package/dist-types/commands/ListDataQualityJobDefinitionsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListDeviceFleetsCommand.d.ts +1 -2
  29. package/dist-types/commands/ListHubContentVersionsCommand.d.ts +1 -1
  30. package/dist-types/commands/ListHubContentsCommand.d.ts +1 -1
  31. package/dist-types/commands/PutModelPackageGroupPolicyCommand.d.ts +2 -1
  32. package/dist-types/commands/SearchCommand.d.ts +17 -15
  33. package/dist-types/commands/StopPipelineExecutionCommand.d.ts +2 -1
  34. package/dist-types/commands/StopProcessingJobCommand.d.ts +1 -1
  35. package/dist-types/commands/StopTrainingJobCommand.d.ts +1 -1
  36. package/dist-types/commands/StopTransformJobCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateActionCommand.d.ts +1 -2
  38. package/dist-types/commands/UpdateHubContentCommand.d.ts +123 -0
  39. package/dist-types/commands/UpdateHubContentReferenceCommand.d.ts +94 -0
  40. package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +21 -0
  41. package/dist-types/commands/index.d.ts +2 -0
  42. package/dist-types/models/models_0.d.ts +79 -51
  43. package/dist-types/models/models_1.d.ts +112 -112
  44. package/dist-types/models/models_2.d.ts +18 -14
  45. package/dist-types/models/models_3.d.ts +165 -193
  46. package/dist-types/models/models_4.d.ts +252 -122
  47. package/dist-types/models/models_5.d.ts +207 -21
  48. package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
  49. package/dist-types/ts3.4/SageMaker.d.ts +34 -0
  50. package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
  51. package/dist-types/ts3.4/commands/CreateMonitoringScheduleCommand.d.ts +2 -4
  52. package/dist-types/ts3.4/commands/ListDataQualityJobDefinitionsCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/ListDeviceFleetsCommand.d.ts +4 -2
  54. package/dist-types/ts3.4/commands/StopPipelineExecutionCommand.d.ts +2 -4
  55. package/dist-types/ts3.4/commands/StopProcessingJobCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/StopTrainingJobCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/StopTransformJobCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/UpdateActionCommand.d.ts +1 -2
  59. package/dist-types/ts3.4/commands/UpdateHubContentCommand.d.ts +50 -0
  60. package/dist-types/ts3.4/commands/UpdateHubContentReferenceCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +5 -4
  63. package/dist-types/ts3.4/models/models_1.d.ts +4 -4
  64. package/dist-types/ts3.4/models/models_2.d.ts +5 -6
  65. package/dist-types/ts3.4/models/models_3.d.ts +29 -39
  66. package/dist-types/ts3.4/models/models_4.d.ts +38 -21
  67. package/dist-types/ts3.4/models/models_5.d.ts +49 -0
  68. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
  69. package/package.json +12 -12
@@ -121,6 +121,9 @@ import {
121
121
  TrainingSpecification,
122
122
  UserSettings,
123
123
  } from "./models_1";
124
+ export interface CreateMonitoringScheduleResponse {
125
+ MonitoringScheduleArn: string | undefined;
126
+ }
124
127
  export declare const NotebookInstanceAcceleratorType: {
125
128
  readonly ML_EIA1_LARGE: "ml.eia1.large";
126
129
  readonly ML_EIA1_MEDIUM: "ml.eia1.medium";
@@ -1915,6 +1918,7 @@ export type HubContentStatus =
1915
1918
  (typeof HubContentStatus)[keyof typeof HubContentStatus];
1916
1919
  export declare const HubContentSupportStatus: {
1917
1920
  readonly DEPRECATED: "Deprecated";
1921
+ readonly RESTRICTED: "Restricted";
1918
1922
  readonly SUPPORTED: "Supported";
1919
1923
  };
1920
1924
  export type HubContentSupportStatus =
@@ -1939,16 +1943,11 @@ export interface DescribeHubContentResponse {
1939
1943
  HubContentStatus: HubContentStatus | undefined;
1940
1944
  FailureReason?: string | undefined;
1941
1945
  CreationTime: Date | undefined;
1946
+ LastModifiedTime?: Date | undefined;
1942
1947
  }
1943
1948
  export interface DescribeHumanTaskUiRequest {
1944
1949
  HumanTaskUiName: string | undefined;
1945
1950
  }
1946
- export declare const HumanTaskUiStatus: {
1947
- readonly ACTIVE: "Active";
1948
- readonly DELETING: "Deleting";
1949
- };
1950
- export type HumanTaskUiStatus =
1951
- (typeof HumanTaskUiStatus)[keyof typeof HumanTaskUiStatus];
1952
1951
  export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
1953
1952
  export declare const CreateWorkforceRequestFilterSensitiveLog: (
1954
1953
  obj: CreateWorkforceRequest
@@ -19,6 +19,7 @@ import {
19
19
  AutoMLJobSummary,
20
20
  AutoMLSortBy,
21
21
  AutoMLSortOrder,
22
+ AutoRollbackConfig,
22
23
  Autotune,
23
24
  BatchDataCaptureConfig,
24
25
  BatchStrategy,
@@ -147,7 +148,6 @@ import {
147
148
  HubContentSupportStatus,
148
149
  HubContentType,
149
150
  HubStatus,
150
- HumanTaskUiStatus,
151
151
  InfraCheckConfig,
152
152
  InstanceMetadataServiceConfiguration,
153
153
  LastUpdateStatus,
@@ -190,6 +190,12 @@ import {
190
190
  TrialComponentStatus,
191
191
  WorkerAccessConfiguration,
192
192
  } from "./models_2";
193
+ export declare const HumanTaskUiStatus: {
194
+ readonly ACTIVE: "Active";
195
+ readonly DELETING: "Deleting";
196
+ };
197
+ export type HumanTaskUiStatus =
198
+ (typeof HumanTaskUiStatus)[keyof typeof HumanTaskUiStatus];
193
199
  export interface UiTemplateInfo {
194
200
  Url?: string | undefined;
195
201
  ContentSha256?: string | undefined;
@@ -354,6 +360,26 @@ export declare const InferenceComponentStatus: {
354
360
  };
355
361
  export type InferenceComponentStatus =
356
362
  (typeof InferenceComponentStatus)[keyof typeof InferenceComponentStatus];
363
+ export declare const InferenceComponentCapacitySizeType: {
364
+ readonly CAPACITY_PERCENT: "CAPACITY_PERCENT";
365
+ readonly COPY_COUNT: "COPY_COUNT";
366
+ };
367
+ export type InferenceComponentCapacitySizeType =
368
+ (typeof InferenceComponentCapacitySizeType)[keyof typeof InferenceComponentCapacitySizeType];
369
+ export interface InferenceComponentCapacitySize {
370
+ Type: InferenceComponentCapacitySizeType | undefined;
371
+ Value: number | undefined;
372
+ }
373
+ export interface InferenceComponentRollingUpdatePolicy {
374
+ MaximumBatchSize: InferenceComponentCapacitySize | undefined;
375
+ WaitIntervalInSeconds: number | undefined;
376
+ MaximumExecutionTimeoutInSeconds?: number | undefined;
377
+ RollbackMaximumBatchSize?: InferenceComponentCapacitySize | undefined;
378
+ }
379
+ export interface InferenceComponentDeploymentConfig {
380
+ RollingUpdatePolicy: InferenceComponentRollingUpdatePolicy | undefined;
381
+ AutoRollbackConfiguration?: AutoRollbackConfig | undefined;
382
+ }
357
383
  export interface InferenceComponentRuntimeConfigSummary {
358
384
  DesiredCopyCount?: number | undefined;
359
385
  CurrentCopyCount?: number | undefined;
@@ -384,6 +410,7 @@ export interface DescribeInferenceComponentOutput {
384
410
  CreationTime: Date | undefined;
385
411
  LastModifiedTime: Date | undefined;
386
412
  InferenceComponentStatus?: InferenceComponentStatus | undefined;
413
+ LastDeploymentConfig?: InferenceComponentDeploymentConfig | undefined;
387
414
  }
388
415
  export interface DescribeInferenceExperimentRequest {
389
416
  Name: string | undefined;
@@ -2121,6 +2148,7 @@ export interface ImportHubContentRequest {
2121
2148
  HubContentDescription?: string | undefined;
2122
2149
  HubContentMarkdown?: string | undefined;
2123
2150
  HubContentDocument: string | undefined;
2151
+ SupportStatus?: HubContentSupportStatus | undefined;
2124
2152
  HubContentSearchKeywords?: string[] | undefined;
2125
2153
  Tags?: Tag[] | undefined;
2126
2154
  }
@@ -2529,44 +2557,6 @@ export declare const MonitoringJobDefinitionSortKey: {
2529
2557
  };
2530
2558
  export type MonitoringJobDefinitionSortKey =
2531
2559
  (typeof MonitoringJobDefinitionSortKey)[keyof typeof MonitoringJobDefinitionSortKey];
2532
- export interface ListDataQualityJobDefinitionsRequest {
2533
- EndpointName?: string | undefined;
2534
- SortBy?: MonitoringJobDefinitionSortKey | undefined;
2535
- SortOrder?: SortOrder | undefined;
2536
- NextToken?: string | undefined;
2537
- MaxResults?: number | undefined;
2538
- NameContains?: string | undefined;
2539
- CreationTimeBefore?: Date | undefined;
2540
- CreationTimeAfter?: Date | undefined;
2541
- }
2542
- export interface MonitoringJobDefinitionSummary {
2543
- MonitoringJobDefinitionName: string | undefined;
2544
- MonitoringJobDefinitionArn: string | undefined;
2545
- CreationTime: Date | undefined;
2546
- EndpointName: string | undefined;
2547
- }
2548
- export interface ListDataQualityJobDefinitionsResponse {
2549
- JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
2550
- NextToken?: string | undefined;
2551
- }
2552
- export declare const ListDeviceFleetsSortBy: {
2553
- readonly CreationTime: "CREATION_TIME";
2554
- readonly LastModifiedTime: "LAST_MODIFIED_TIME";
2555
- readonly Name: "NAME";
2556
- };
2557
- export type ListDeviceFleetsSortBy =
2558
- (typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
2559
- export interface ListDeviceFleetsRequest {
2560
- NextToken?: string | undefined;
2561
- MaxResults?: number | undefined;
2562
- CreationTimeAfter?: Date | undefined;
2563
- CreationTimeBefore?: Date | undefined;
2564
- LastModifiedTimeAfter?: Date | undefined;
2565
- LastModifiedTimeBefore?: Date | undefined;
2566
- NameContains?: string | undefined;
2567
- SortBy?: ListDeviceFleetsSortBy | undefined;
2568
- SortOrder?: SortOrder | undefined;
2569
- }
2570
2560
  export declare const DescribeModelCardResponseFilterSensitiveLog: (
2571
2561
  obj: DescribeModelCardResponse
2572
2562
  ) => any;
@@ -1,5 +1,4 @@
1
1
  import {
2
- ActionStatus,
3
2
  AdditionalInferenceSpecificationDefinition,
4
3
  AlgorithmSpecification,
5
4
  AppSpecification,
@@ -150,7 +149,6 @@ import {
150
149
  ModelPackageStatusDetails,
151
150
  MonitoringExecutionSummary,
152
151
  MonitoringJobDefinitionSortKey,
153
- MonitoringJobDefinitionSummary,
154
152
  NotebookInstanceStatus,
155
153
  OptimizationJobStatus,
156
154
  PartnerAppStatus,
@@ -185,6 +183,44 @@ import {
185
183
  Workforce,
186
184
  Workteam,
187
185
  } from "./models_3";
186
+ export interface ListDataQualityJobDefinitionsRequest {
187
+ EndpointName?: string | undefined;
188
+ SortBy?: MonitoringJobDefinitionSortKey | undefined;
189
+ SortOrder?: SortOrder | undefined;
190
+ NextToken?: string | undefined;
191
+ MaxResults?: number | undefined;
192
+ NameContains?: string | undefined;
193
+ CreationTimeBefore?: Date | undefined;
194
+ CreationTimeAfter?: Date | undefined;
195
+ }
196
+ export interface MonitoringJobDefinitionSummary {
197
+ MonitoringJobDefinitionName: string | undefined;
198
+ MonitoringJobDefinitionArn: string | undefined;
199
+ CreationTime: Date | undefined;
200
+ EndpointName: string | undefined;
201
+ }
202
+ export interface ListDataQualityJobDefinitionsResponse {
203
+ JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
204
+ NextToken?: string | undefined;
205
+ }
206
+ export declare const ListDeviceFleetsSortBy: {
207
+ readonly CreationTime: "CREATION_TIME";
208
+ readonly LastModifiedTime: "LAST_MODIFIED_TIME";
209
+ readonly Name: "NAME";
210
+ };
211
+ export type ListDeviceFleetsSortBy =
212
+ (typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
213
+ export interface ListDeviceFleetsRequest {
214
+ NextToken?: string | undefined;
215
+ MaxResults?: number | undefined;
216
+ CreationTimeAfter?: Date | undefined;
217
+ CreationTimeBefore?: Date | undefined;
218
+ LastModifiedTimeAfter?: Date | undefined;
219
+ LastModifiedTimeBefore?: Date | undefined;
220
+ NameContains?: string | undefined;
221
+ SortBy?: ListDeviceFleetsSortBy | undefined;
222
+ SortOrder?: SortOrder | undefined;
223
+ }
188
224
  export interface ListDeviceFleetsResponse {
189
225
  DeviceFleetSummaries: DeviceFleetSummary[] | undefined;
190
226
  NextToken?: string | undefined;
@@ -2264,25 +2300,6 @@ export interface StopPipelineExecutionRequest {
2264
2300
  PipelineExecutionArn: string | undefined;
2265
2301
  ClientRequestToken?: string | undefined;
2266
2302
  }
2267
- export interface StopPipelineExecutionResponse {
2268
- PipelineExecutionArn?: string | undefined;
2269
- }
2270
- export interface StopProcessingJobRequest {
2271
- ProcessingJobName: string | undefined;
2272
- }
2273
- export interface StopTrainingJobRequest {
2274
- TrainingJobName: string | undefined;
2275
- }
2276
- export interface StopTransformJobRequest {
2277
- TransformJobName: string | undefined;
2278
- }
2279
- export interface UpdateActionRequest {
2280
- ActionName: string | undefined;
2281
- Description?: string | undefined;
2282
- Status?: ActionStatus | undefined;
2283
- Properties?: Record<string, string> | undefined;
2284
- PropertiesToRemove?: string[] | undefined;
2285
- }
2286
2303
  export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
2287
2304
  export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
2288
2305
  export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
@@ -1,4 +1,5 @@
1
1
  import {
2
+ ActionStatus,
2
3
  ActivationState,
3
4
  AdditionalInferenceSpecificationDefinition,
4
5
  AppNetworkAccessType,
@@ -43,6 +44,8 @@ import {
43
44
  import {
44
45
  CrossAccountFilterOption,
45
46
  FeatureParameter,
47
+ HubContentSupportStatus,
48
+ HubContentType,
46
49
  InstanceMetadataServiceConfiguration,
47
50
  MemberDefinition,
48
51
  NotebookInstanceAcceleratorType,
@@ -70,6 +73,7 @@ import {
70
73
  DomainSettingsForUpdate,
71
74
  Filter,
72
75
  GitConfigForUpdate,
76
+ InferenceComponentDeploymentConfig,
73
77
  ResourceType,
74
78
  Workforce,
75
79
  Workteam,
@@ -83,6 +87,25 @@ import {
83
87
  SearchSortOrder,
84
88
  VisibilityConditions,
85
89
  } from "./models_4";
90
+ export interface StopPipelineExecutionResponse {
91
+ PipelineExecutionArn?: string | undefined;
92
+ }
93
+ export interface StopProcessingJobRequest {
94
+ ProcessingJobName: string | undefined;
95
+ }
96
+ export interface StopTrainingJobRequest {
97
+ TrainingJobName: string | undefined;
98
+ }
99
+ export interface StopTransformJobRequest {
100
+ TransformJobName: string | undefined;
101
+ }
102
+ export interface UpdateActionRequest {
103
+ ActionName: string | undefined;
104
+ Description?: string | undefined;
105
+ Status?: ActionStatus | undefined;
106
+ Properties?: Record<string, string> | undefined;
107
+ PropertiesToRemove?: string[] | undefined;
108
+ }
86
109
  export interface UpdateActionResponse {
87
110
  ActionArn?: string | undefined;
88
111
  }
@@ -247,6 +270,31 @@ export interface UpdateHubRequest {
247
270
  export interface UpdateHubResponse {
248
271
  HubArn: string | undefined;
249
272
  }
273
+ export interface UpdateHubContentRequest {
274
+ HubName: string | undefined;
275
+ HubContentName: string | undefined;
276
+ HubContentType: HubContentType | undefined;
277
+ HubContentVersion: string | undefined;
278
+ HubContentDisplayName?: string | undefined;
279
+ HubContentDescription?: string | undefined;
280
+ HubContentMarkdown?: string | undefined;
281
+ HubContentSearchKeywords?: string[] | undefined;
282
+ SupportStatus?: HubContentSupportStatus | undefined;
283
+ }
284
+ export interface UpdateHubContentResponse {
285
+ HubArn: string | undefined;
286
+ HubContentArn: string | undefined;
287
+ }
288
+ export interface UpdateHubContentReferenceRequest {
289
+ HubName: string | undefined;
290
+ HubContentName: string | undefined;
291
+ HubContentType: HubContentType | undefined;
292
+ MinVersion?: string | undefined;
293
+ }
294
+ export interface UpdateHubContentReferenceResponse {
295
+ HubArn: string | undefined;
296
+ HubContentArn: string | undefined;
297
+ }
250
298
  export interface UpdateImageRequest {
251
299
  DeleteProperties?: string[] | undefined;
252
300
  Description?: string | undefined;
@@ -278,6 +326,7 @@ export interface UpdateInferenceComponentInput {
278
326
  InferenceComponentName: string | undefined;
279
327
  Specification?: InferenceComponentSpecification | undefined;
280
328
  RuntimeConfig?: InferenceComponentRuntimeConfig | undefined;
329
+ DeploymentConfig?: InferenceComponentDeploymentConfig | undefined;
281
330
  }
282
331
  export interface UpdateInferenceComponentOutput {
283
332
  InferenceComponentArn: string | undefined;
@@ -1335,6 +1335,14 @@ import {
1335
1335
  UpdateHubCommandInput,
1336
1336
  UpdateHubCommandOutput,
1337
1337
  } from "../commands/UpdateHubCommand";
1338
+ import {
1339
+ UpdateHubContentCommandInput,
1340
+ UpdateHubContentCommandOutput,
1341
+ } from "../commands/UpdateHubContentCommand";
1342
+ import {
1343
+ UpdateHubContentReferenceCommandInput,
1344
+ UpdateHubContentReferenceCommandOutput,
1345
+ } from "../commands/UpdateHubContentReferenceCommand";
1338
1346
  import {
1339
1347
  UpdateImageCommandInput,
1340
1348
  UpdateImageCommandOutput,
@@ -2759,6 +2767,14 @@ export declare const se_UpdateHubCommand: (
2759
2767
  input: UpdateHubCommandInput,
2760
2768
  context: __SerdeContext
2761
2769
  ) => Promise<__HttpRequest>;
2770
+ export declare const se_UpdateHubContentCommand: (
2771
+ input: UpdateHubContentCommandInput,
2772
+ context: __SerdeContext
2773
+ ) => Promise<__HttpRequest>;
2774
+ export declare const se_UpdateHubContentReferenceCommand: (
2775
+ input: UpdateHubContentReferenceCommandInput,
2776
+ context: __SerdeContext
2777
+ ) => Promise<__HttpRequest>;
2762
2778
  export declare const se_UpdateImageCommand: (
2763
2779
  input: UpdateImageCommandInput,
2764
2780
  context: __SerdeContext
@@ -4183,6 +4199,14 @@ export declare const de_UpdateHubCommand: (
4183
4199
  output: __HttpResponse,
4184
4200
  context: __SerdeContext
4185
4201
  ) => Promise<UpdateHubCommandOutput>;
4202
+ export declare const de_UpdateHubContentCommand: (
4203
+ output: __HttpResponse,
4204
+ context: __SerdeContext
4205
+ ) => Promise<UpdateHubContentCommandOutput>;
4206
+ export declare const de_UpdateHubContentReferenceCommand: (
4207
+ output: __HttpResponse,
4208
+ context: __SerdeContext
4209
+ ) => Promise<UpdateHubContentReferenceCommandOutput>;
4186
4210
  export declare const de_UpdateImageCommand: (
4187
4211
  output: __HttpResponse,
4188
4212
  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.753.0",
4
+ "version": "3.758.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,38 +20,38 @@
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.750.0",
24
- "@aws-sdk/credential-provider-node": "3.750.0",
23
+ "@aws-sdk/core": "3.758.0",
24
+ "@aws-sdk/credential-provider-node": "3.758.0",
25
25
  "@aws-sdk/middleware-host-header": "3.734.0",
26
26
  "@aws-sdk/middleware-logger": "3.734.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.734.0",
28
- "@aws-sdk/middleware-user-agent": "3.750.0",
28
+ "@aws-sdk/middleware-user-agent": "3.758.0",
29
29
  "@aws-sdk/region-config-resolver": "3.734.0",
30
30
  "@aws-sdk/types": "3.734.0",
31
31
  "@aws-sdk/util-endpoints": "3.743.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.750.0",
33
+ "@aws-sdk/util-user-agent-node": "3.758.0",
34
34
  "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.4",
35
+ "@smithy/core": "^3.1.5",
36
36
  "@smithy/fetch-http-handler": "^5.0.1",
37
37
  "@smithy/hash-node": "^4.0.1",
38
38
  "@smithy/invalid-dependency": "^4.0.1",
39
39
  "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.5",
41
- "@smithy/middleware-retry": "^4.0.6",
40
+ "@smithy/middleware-endpoint": "^4.0.6",
41
+ "@smithy/middleware-retry": "^4.0.7",
42
42
  "@smithy/middleware-serde": "^4.0.2",
43
43
  "@smithy/middleware-stack": "^4.0.1",
44
44
  "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.3",
46
46
  "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.5",
47
+ "@smithy/smithy-client": "^4.1.6",
48
48
  "@smithy/types": "^4.1.0",
49
49
  "@smithy/url-parser": "^4.0.1",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.6",
54
- "@smithy/util-defaults-mode-node": "^4.0.6",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.7",
54
+ "@smithy/util-defaults-mode-node": "^4.0.7",
55
55
  "@smithy/util-endpoints": "^3.0.1",
56
56
  "@smithy/util-middleware": "^4.0.1",
57
57
  "@smithy/util-retry": "^4.0.1",