@aws-sdk/client-sagemaker 3.717.0 → 3.723.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.
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class SageMakerClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -19,27 +19,29 @@ export const AssociationEdgeType = {
19
19
  SAME_AS: "SameAs",
20
20
  };
21
21
  export class ResourceLimitExceeded extends __BaseException {
22
+ name = "ResourceLimitExceeded";
23
+ $fault = "client";
24
+ Message;
22
25
  constructor(opts) {
23
26
  super({
24
27
  name: "ResourceLimitExceeded",
25
28
  $fault: "client",
26
29
  ...opts,
27
30
  });
28
- this.name = "ResourceLimitExceeded";
29
- this.$fault = "client";
30
31
  Object.setPrototypeOf(this, ResourceLimitExceeded.prototype);
31
32
  this.Message = opts.Message;
32
33
  }
33
34
  }
34
35
  export class ResourceNotFound extends __BaseException {
36
+ name = "ResourceNotFound";
37
+ $fault = "client";
38
+ Message;
35
39
  constructor(opts) {
36
40
  super({
37
41
  name: "ResourceNotFound",
38
42
  $fault: "client",
39
43
  ...opts,
40
44
  });
41
- this.name = "ResourceNotFound";
42
- this.$fault = "client";
43
45
  Object.setPrototypeOf(this, ResourceNotFound.prototype);
44
46
  this.Message = opts.Message;
45
47
  }
@@ -1375,14 +1377,15 @@ export const ConditionOutcome = {
1375
1377
  TRUE: "True",
1376
1378
  };
1377
1379
  export class ConflictException extends __BaseException {
1380
+ name = "ConflictException";
1381
+ $fault = "client";
1382
+ Message;
1378
1383
  constructor(opts) {
1379
1384
  super({
1380
1385
  name: "ConflictException",
1381
1386
  $fault: "client",
1382
1387
  ...opts,
1383
1388
  });
1384
- this.name = "ConflictException";
1385
- this.$fault = "client";
1386
1389
  Object.setPrototypeOf(this, ConflictException.prototype);
1387
1390
  this.Message = opts.Message;
1388
1391
  }
@@ -11,14 +11,15 @@ export const HyperParameterTuningJobObjectiveType = {
11
11
  MINIMIZE: "Minimize",
12
12
  };
13
13
  export class ResourceInUse extends __BaseException {
14
+ name = "ResourceInUse";
15
+ $fault = "client";
16
+ Message;
14
17
  constructor(opts) {
15
18
  super({
16
19
  name: "ResourceInUse",
17
20
  $fault: "client",
18
21
  ...opts,
19
22
  });
20
- this.name = "ResourceInUse";
21
- this.$fault = "client";
22
23
  Object.setPrototypeOf(this, ResourceInUse.prototype);
23
24
  this.Message = opts.Message;
24
25
  }
@@ -8160,6 +8160,7 @@ const de_AdditionalModelDataSources = (output, context) => {
8160
8160
  const de_AdditionalS3DataSource = (output, context) => {
8161
8161
  return take(output, {
8162
8162
  CompressionType: __expectString,
8163
+ ETag: __expectString,
8163
8164
  S3DataType: __expectString,
8164
8165
  S3Uri: __expectString,
8165
8166
  });
@@ -14159,6 +14160,7 @@ const de_ModelPackageContainerDefinition = (output, context) => {
14159
14160
  FrameworkVersion: __expectString,
14160
14161
  Image: __expectString,
14161
14162
  ImageDigest: __expectString,
14163
+ ModelDataETag: __expectString,
14162
14164
  ModelDataSource: (_) => de_ModelDataSource(_, context),
14163
14165
  ModelDataUrl: __expectString,
14164
14166
  ModelInput: (_) => de_ModelInput(_, context),
@@ -16007,7 +16009,9 @@ const de_S3DataSource = (output, context) => {
16007
16009
  const de_S3ModelDataSource = (output, context) => {
16008
16010
  return take(output, {
16009
16011
  CompressionType: __expectString,
16012
+ ETag: __expectString,
16010
16013
  HubAccessConfig: (_) => de_InferenceHubAccessConfig(_, context),
16014
+ ManifestEtag: __expectString,
16011
16015
  ManifestS3Uri: __expectString,
16012
16016
  ModelAccessConfig: (_) => de_ModelAccessConfig(_, context),
16013
16017
  S3DataType: __expectString,
@@ -16228,6 +16232,7 @@ const de_ShuffleConfig = (output, context) => {
16228
16232
  const de_SourceAlgorithm = (output, context) => {
16229
16233
  return take(output, {
16230
16234
  AlgorithmName: __expectString,
16235
+ ModelDataETag: __expectString,
16231
16236
  ModelDataSource: (_) => de_ModelDataSource(_, context),
16232
16237
  ModelDataUrl: __expectString,
16233
16238
  });
@@ -68,6 +68,8 @@ declare const BatchDescribeModelPackageCommand_base: {
68
68
  * // HubContentArn: "STRING_VALUE", // required
69
69
  * // },
70
70
  * // ManifestS3Uri: "STRING_VALUE",
71
+ * // ETag: "STRING_VALUE",
72
+ * // ManifestEtag: "STRING_VALUE",
71
73
  * // },
72
74
  * // },
73
75
  * // ProductId: "STRING_VALUE",
@@ -84,7 +86,9 @@ declare const BatchDescribeModelPackageCommand_base: {
84
86
  * // S3DataType: "S3Object" || "S3Prefix", // required
85
87
  * // S3Uri: "STRING_VALUE", // required
86
88
  * // CompressionType: "None" || "Gzip",
89
+ * // ETag: "STRING_VALUE",
87
90
  * // },
91
+ * // ModelDataETag: "STRING_VALUE",
88
92
  * // },
89
93
  * // ],
90
94
  * // SupportedTransformInstanceTypes: [ // TransformInstanceTypes
@@ -101,6 +101,7 @@ declare const CreateAlgorithmCommand_base: {
101
101
  * S3DataType: "S3Object" || "S3Prefix", // required
102
102
  * S3Uri: "STRING_VALUE", // required
103
103
  * CompressionType: "None" || "Gzip",
104
+ * ETag: "STRING_VALUE",
104
105
  * },
105
106
  * },
106
107
  * InferenceSpecification: { // InferenceSpecification
@@ -122,6 +123,8 @@ declare const CreateAlgorithmCommand_base: {
122
123
  * HubContentArn: "STRING_VALUE", // required
123
124
  * },
124
125
  * ManifestS3Uri: "STRING_VALUE",
126
+ * ETag: "STRING_VALUE",
127
+ * ManifestEtag: "STRING_VALUE",
125
128
  * },
126
129
  * },
127
130
  * ProductId: "STRING_VALUE",
@@ -138,7 +141,9 @@ declare const CreateAlgorithmCommand_base: {
138
141
  * S3DataType: "S3Object" || "S3Prefix", // required
139
142
  * S3Uri: "STRING_VALUE", // required
140
143
  * CompressionType: "None" || "Gzip",
144
+ * ETag: "STRING_VALUE",
141
145
  * },
146
+ * ModelDataETag: "STRING_VALUE",
142
147
  * },
143
148
  * ],
144
149
  * SupportedTransformInstanceTypes: [ // TransformInstanceTypes
@@ -75,6 +75,8 @@ declare const CreateModelCommand_base: {
75
75
  * HubContentArn: "STRING_VALUE", // required
76
76
  * },
77
77
  * ManifestS3Uri: "STRING_VALUE",
78
+ * ETag: "STRING_VALUE",
79
+ * ManifestEtag: "STRING_VALUE",
78
80
  * },
79
81
  * },
80
82
  * AdditionalModelDataSources: [ // AdditionalModelDataSources
@@ -91,6 +93,8 @@ declare const CreateModelCommand_base: {
91
93
  * HubContentArn: "STRING_VALUE", // required
92
94
  * },
93
95
  * ManifestS3Uri: "STRING_VALUE",
96
+ * ETag: "STRING_VALUE",
97
+ * ManifestEtag: "STRING_VALUE",
94
98
  * },
95
99
  * },
96
100
  * ],
@@ -127,6 +131,8 @@ declare const CreateModelCommand_base: {
127
131
  * HubContentArn: "STRING_VALUE", // required
128
132
  * },
129
133
  * ManifestS3Uri: "STRING_VALUE",
134
+ * ETag: "STRING_VALUE",
135
+ * ManifestEtag: "STRING_VALUE",
130
136
  * },
131
137
  * },
132
138
  * AdditionalModelDataSources: [
@@ -76,6 +76,8 @@ declare const CreateModelPackageCommand_base: {
76
76
  * HubContentArn: "STRING_VALUE", // required
77
77
  * },
78
78
  * ManifestS3Uri: "STRING_VALUE",
79
+ * ETag: "STRING_VALUE",
80
+ * ManifestEtag: "STRING_VALUE",
79
81
  * },
80
82
  * },
81
83
  * ProductId: "STRING_VALUE",
@@ -92,7 +94,9 @@ declare const CreateModelPackageCommand_base: {
92
94
  * S3DataType: "S3Object" || "S3Prefix", // required
93
95
  * S3Uri: "STRING_VALUE", // required
94
96
  * CompressionType: "None" || "Gzip",
97
+ * ETag: "STRING_VALUE",
95
98
  * },
99
+ * ModelDataETag: "STRING_VALUE",
96
100
  * },
97
101
  * ],
98
102
  * SupportedTransformInstanceTypes: [ // TransformInstanceTypes
@@ -162,8 +166,11 @@ declare const CreateModelPackageCommand_base: {
162
166
  * HubContentArn: "STRING_VALUE", // required
163
167
  * },
164
168
  * ManifestS3Uri: "STRING_VALUE",
169
+ * ETag: "STRING_VALUE",
170
+ * ManifestEtag: "STRING_VALUE",
165
171
  * },
166
172
  * },
173
+ * ModelDataETag: "STRING_VALUE",
167
174
  * AlgorithmName: "STRING_VALUE", // required
168
175
  * },
169
176
  * ],
@@ -276,6 +283,8 @@ declare const CreateModelPackageCommand_base: {
276
283
  * HubContentArn: "STRING_VALUE", // required
277
284
  * },
278
285
  * ManifestS3Uri: "STRING_VALUE",
286
+ * ETag: "STRING_VALUE",
287
+ * ManifestEtag: "STRING_VALUE",
279
288
  * },
280
289
  * },
281
290
  * ProductId: "STRING_VALUE",
@@ -292,7 +301,9 @@ declare const CreateModelPackageCommand_base: {
292
301
  * S3DataType: "S3Object" || "S3Prefix", // required
293
302
  * S3Uri: "STRING_VALUE", // required
294
303
  * CompressionType: "None" || "Gzip",
304
+ * ETag: "STRING_VALUE",
295
305
  * },
306
+ * ModelDataETag: "STRING_VALUE",
296
307
  * },
297
308
  * ],
298
309
  * SupportedTransformInstanceTypes: [
@@ -108,6 +108,7 @@ declare const DescribeAlgorithmCommand_base: {
108
108
  * // S3DataType: "S3Object" || "S3Prefix", // required
109
109
  * // S3Uri: "STRING_VALUE", // required
110
110
  * // CompressionType: "None" || "Gzip",
111
+ * // ETag: "STRING_VALUE",
111
112
  * // },
112
113
  * // },
113
114
  * // InferenceSpecification: { // InferenceSpecification
@@ -129,6 +130,8 @@ declare const DescribeAlgorithmCommand_base: {
129
130
  * // HubContentArn: "STRING_VALUE", // required
130
131
  * // },
131
132
  * // ManifestS3Uri: "STRING_VALUE",
133
+ * // ETag: "STRING_VALUE",
134
+ * // ManifestEtag: "STRING_VALUE",
132
135
  * // },
133
136
  * // },
134
137
  * // ProductId: "STRING_VALUE",
@@ -145,7 +148,9 @@ declare const DescribeAlgorithmCommand_base: {
145
148
  * // S3DataType: "S3Object" || "S3Prefix", // required
146
149
  * // S3Uri: "STRING_VALUE", // required
147
150
  * // CompressionType: "None" || "Gzip",
151
+ * // ETag: "STRING_VALUE",
148
152
  * // },
153
+ * // ModelDataETag: "STRING_VALUE",
149
154
  * // },
150
155
  * // ],
151
156
  * // SupportedTransformInstanceTypes: [ // TransformInstanceTypes
@@ -65,6 +65,8 @@ declare const DescribeModelCommand_base: {
65
65
  * // HubContentArn: "STRING_VALUE", // required
66
66
  * // },
67
67
  * // ManifestS3Uri: "STRING_VALUE",
68
+ * // ETag: "STRING_VALUE",
69
+ * // ManifestEtag: "STRING_VALUE",
68
70
  * // },
69
71
  * // },
70
72
  * // AdditionalModelDataSources: [ // AdditionalModelDataSources
@@ -81,6 +83,8 @@ declare const DescribeModelCommand_base: {
81
83
  * // HubContentArn: "STRING_VALUE", // required
82
84
  * // },
83
85
  * // ManifestS3Uri: "STRING_VALUE",
86
+ * // ETag: "STRING_VALUE",
87
+ * // ManifestEtag: "STRING_VALUE",
84
88
  * // },
85
89
  * // },
86
90
  * // ],
@@ -117,6 +121,8 @@ declare const DescribeModelCommand_base: {
117
121
  * // HubContentArn: "STRING_VALUE", // required
118
122
  * // },
119
123
  * // ManifestS3Uri: "STRING_VALUE",
124
+ * // ETag: "STRING_VALUE",
125
+ * // ManifestEtag: "STRING_VALUE",
120
126
  * // },
121
127
  * // },
122
128
  * // AdditionalModelDataSources: [
@@ -73,6 +73,8 @@ declare const DescribeModelPackageCommand_base: {
73
73
  * // HubContentArn: "STRING_VALUE", // required
74
74
  * // },
75
75
  * // ManifestS3Uri: "STRING_VALUE",
76
+ * // ETag: "STRING_VALUE",
77
+ * // ManifestEtag: "STRING_VALUE",
76
78
  * // },
77
79
  * // },
78
80
  * // ProductId: "STRING_VALUE",
@@ -89,7 +91,9 @@ declare const DescribeModelPackageCommand_base: {
89
91
  * // S3DataType: "S3Object" || "S3Prefix", // required
90
92
  * // S3Uri: "STRING_VALUE", // required
91
93
  * // CompressionType: "None" || "Gzip",
94
+ * // ETag: "STRING_VALUE",
92
95
  * // },
96
+ * // ModelDataETag: "STRING_VALUE",
93
97
  * // },
94
98
  * // ],
95
99
  * // SupportedTransformInstanceTypes: [ // TransformInstanceTypes
@@ -121,8 +125,11 @@ declare const DescribeModelPackageCommand_base: {
121
125
  * // HubContentArn: "STRING_VALUE", // required
122
126
  * // },
123
127
  * // ManifestS3Uri: "STRING_VALUE",
128
+ * // ETag: "STRING_VALUE",
129
+ * // ManifestEtag: "STRING_VALUE",
124
130
  * // },
125
131
  * // },
132
+ * // ModelDataETag: "STRING_VALUE",
126
133
  * // AlgorithmName: "STRING_VALUE", // required
127
134
  * // },
128
135
  * // ],
@@ -305,6 +312,8 @@ declare const DescribeModelPackageCommand_base: {
305
312
  * // HubContentArn: "STRING_VALUE", // required
306
313
  * // },
307
314
  * // ManifestS3Uri: "STRING_VALUE",
315
+ * // ETag: "STRING_VALUE",
316
+ * // ManifestEtag: "STRING_VALUE",
308
317
  * // },
309
318
  * // },
310
319
  * // ProductId: "STRING_VALUE",
@@ -321,7 +330,9 @@ declare const DescribeModelPackageCommand_base: {
321
330
  * // S3DataType: "S3Object" || "S3Prefix", // required
322
331
  * // S3Uri: "STRING_VALUE", // required
323
332
  * // CompressionType: "None" || "Gzip",
333
+ * // ETag: "STRING_VALUE",
324
334
  * // },
335
+ * // ModelDataETag: "STRING_VALUE",
325
336
  * // },
326
337
  * // ],
327
338
  * // SupportedTransformInstanceTypes: [
@@ -1102,6 +1102,8 @@ declare const SearchCommand_base: {
1102
1102
  * // HubContentArn: "STRING_VALUE", // required
1103
1103
  * // },
1104
1104
  * // ManifestS3Uri: "STRING_VALUE",
1105
+ * // ETag: "STRING_VALUE",
1106
+ * // ManifestEtag: "STRING_VALUE",
1105
1107
  * // },
1106
1108
  * // },
1107
1109
  * // ProductId: "STRING_VALUE",
@@ -1118,7 +1120,9 @@ declare const SearchCommand_base: {
1118
1120
  * // S3DataType: "S3Object" || "S3Prefix", // required
1119
1121
  * // S3Uri: "STRING_VALUE", // required
1120
1122
  * // CompressionType: "None" || "Gzip",
1123
+ * // ETag: "STRING_VALUE",
1121
1124
  * // },
1125
+ * // ModelDataETag: "STRING_VALUE",
1122
1126
  * // },
1123
1127
  * // ],
1124
1128
  * // SupportedTransformInstanceTypes: [ // TransformInstanceTypes
@@ -1150,8 +1154,11 @@ declare const SearchCommand_base: {
1150
1154
  * // HubContentArn: "STRING_VALUE", // required
1151
1155
  * // },
1152
1156
  * // ManifestS3Uri: "STRING_VALUE",
1157
+ * // ETag: "STRING_VALUE",
1158
+ * // ManifestEtag: "STRING_VALUE",
1153
1159
  * // },
1154
1160
  * // },
1161
+ * // ModelDataETag: "STRING_VALUE",
1155
1162
  * // AlgorithmName: "STRING_VALUE", // required
1156
1163
  * // },
1157
1164
  * // ],
@@ -1286,6 +1293,8 @@ declare const SearchCommand_base: {
1286
1293
  * // HubContentArn: "STRING_VALUE", // required
1287
1294
  * // },
1288
1295
  * // ManifestS3Uri: "STRING_VALUE",
1296
+ * // ETag: "STRING_VALUE",
1297
+ * // ManifestEtag: "STRING_VALUE",
1289
1298
  * // },
1290
1299
  * // },
1291
1300
  * // ProductId: "STRING_VALUE",
@@ -1302,7 +1311,9 @@ declare const SearchCommand_base: {
1302
1311
  * // S3DataType: "S3Object" || "S3Prefix", // required
1303
1312
  * // S3Uri: "STRING_VALUE", // required
1304
1313
  * // CompressionType: "None" || "Gzip",
1314
+ * // ETag: "STRING_VALUE",
1305
1315
  * // },
1316
+ * // ModelDataETag: "STRING_VALUE",
1306
1317
  * // },
1307
1318
  * // ],
1308
1319
  * // SupportedTransformInstanceTypes: [
@@ -1855,6 +1866,8 @@ declare const SearchCommand_base: {
1855
1866
  * // HubContentArn: "STRING_VALUE", // required
1856
1867
  * // },
1857
1868
  * // ManifestS3Uri: "STRING_VALUE",
1869
+ * // ETag: "STRING_VALUE",
1870
+ * // ManifestEtag: "STRING_VALUE",
1858
1871
  * // },
1859
1872
  * // },
1860
1873
  * // ],
@@ -1892,6 +1905,8 @@ declare const SearchCommand_base: {
1892
1905
  * // HubContentArn: "STRING_VALUE", // required
1893
1906
  * // },
1894
1907
  * // ManifestS3Uri: "STRING_VALUE",
1908
+ * // ETag: "STRING_VALUE",
1909
+ * // ManifestEtag: "STRING_VALUE",
1895
1910
  * // },
1896
1911
  * // },
1897
1912
  * // ],
@@ -66,6 +66,8 @@ declare const UpdateModelPackageCommand_base: {
66
66
  * HubContentArn: "STRING_VALUE", // required
67
67
  * },
68
68
  * ManifestS3Uri: "STRING_VALUE",
69
+ * ETag: "STRING_VALUE",
70
+ * ManifestEtag: "STRING_VALUE",
69
71
  * },
70
72
  * },
71
73
  * ProductId: "STRING_VALUE",
@@ -82,7 +84,9 @@ declare const UpdateModelPackageCommand_base: {
82
84
  * S3DataType: "S3Object" || "S3Prefix", // required
83
85
  * S3Uri: "STRING_VALUE", // required
84
86
  * CompressionType: "None" || "Gzip",
87
+ * ETag: "STRING_VALUE",
85
88
  * },
89
+ * ModelDataETag: "STRING_VALUE",
86
90
  * },
87
91
  * ],
88
92
  * SupportedTransformInstanceTypes: [ // TransformInstanceTypes
@@ -118,6 +122,8 @@ declare const UpdateModelPackageCommand_base: {
118
122
  * HubContentArn: "STRING_VALUE", // required
119
123
  * },
120
124
  * ManifestS3Uri: "STRING_VALUE",
125
+ * ETag: "STRING_VALUE",
126
+ * ManifestEtag: "STRING_VALUE",
121
127
  * },
122
128
  * },
123
129
  * ProductId: "STRING_VALUE",
@@ -134,7 +140,9 @@ declare const UpdateModelPackageCommand_base: {
134
140
  * S3DataType: "S3Object" || "S3Prefix", // required
135
141
  * S3Uri: "STRING_VALUE", // required
136
142
  * CompressionType: "None" || "Gzip",
143
+ * ETag: "STRING_VALUE",
137
144
  * },
145
+ * ModelDataETag: "STRING_VALUE",
138
146
  * },
139
147
  * ],
140
148
  * SupportedTransformInstanceTypes: [
@@ -238,6 +238,11 @@ export interface AdditionalS3DataSource {
238
238
  * @public
239
239
  */
240
240
  CompressionType?: CompressionType | undefined;
241
+ /**
242
+ * <p>The ETag associated with S3 URI.</p>
243
+ * @public
244
+ */
245
+ ETag?: string | undefined;
241
246
  }
242
247
  /**
243
248
  * @public
@@ -412,6 +417,16 @@ export interface S3ModelDataSource {
412
417
  * @public
413
418
  */
414
419
  ManifestS3Uri?: string | undefined;
420
+ /**
421
+ * <p>The ETag associated with S3 URI.</p>
422
+ * @public
423
+ */
424
+ ETag?: string | undefined;
425
+ /**
426
+ * <p>The ETag associated with Manifest S3URI.</p>
427
+ * @public
428
+ */
429
+ ManifestEtag?: string | undefined;
415
430
  }
416
431
  /**
417
432
  * <p>Specifies the location of ML model data to deploy. If specified, you must specify one
@@ -518,6 +533,11 @@ export interface ModelPackageContainerDefinition {
518
533
  * @public
519
534
  */
520
535
  AdditionalS3DataSource?: AdditionalS3DataSource | undefined;
536
+ /**
537
+ * <p>The ETag associated with Model Data URL.</p>
538
+ * @public
539
+ */
540
+ ModelDataETag?: string | undefined;
521
541
  }
522
542
  /**
523
543
  * @public
@@ -11109,6 +11109,11 @@ export interface SourceAlgorithm {
11109
11109
  * @public
11110
11110
  */
11111
11111
  ModelDataSource?: ModelDataSource | undefined;
11112
+ /**
11113
+ * <p>The ETag associated with Model Data URL.</p>
11114
+ * @public
11115
+ */
11116
+ ModelDataETag?: string | undefined;
11112
11117
  /**
11113
11118
  * <p>The name of an algorithm that was used to create the model package. The algorithm must
11114
11119
  * be either an algorithm resource in your SageMaker account or an algorithm in Amazon Web Services Marketplace that you are subscribed to.</p>
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
22
22
  region: string | import("@smithy/types").Provider<any>;
23
23
  profile?: string | undefined;
24
24
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
26
  maxAttempts: number | import("@smithy/types").Provider<number>;
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
32
  userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
- endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
36
  logger?: import("@smithy/types").Logger | undefined;
37
37
  }) => import("@smithy/types").EndpointV2;
@@ -77,6 +77,7 @@ export interface AdditionalS3DataSource {
77
77
  S3DataType: AdditionalS3DataSourceDataType | undefined;
78
78
  S3Uri: string | undefined;
79
79
  CompressionType?: CompressionType | undefined;
80
+ ETag?: string | undefined;
80
81
  }
81
82
  export declare const ModelCompressionType: {
82
83
  readonly Gzip: "Gzip";
@@ -103,6 +104,8 @@ export interface S3ModelDataSource {
103
104
  ModelAccessConfig?: ModelAccessConfig | undefined;
104
105
  HubAccessConfig?: InferenceHubAccessConfig | undefined;
105
106
  ManifestS3Uri?: string | undefined;
107
+ ETag?: string | undefined;
108
+ ManifestEtag?: string | undefined;
106
109
  }
107
110
  export interface ModelDataSource {
108
111
  S3DataSource?: S3ModelDataSource | undefined;
@@ -123,6 +126,7 @@ export interface ModelPackageContainerDefinition {
123
126
  FrameworkVersion?: string | undefined;
124
127
  NearestModelName?: string | undefined;
125
128
  AdditionalS3DataSource?: AdditionalS3DataSource | undefined;
129
+ ModelDataETag?: string | undefined;
126
130
  }
127
131
  export declare const ProductionVariantInstanceType: {
128
132
  readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
@@ -1941,6 +1941,7 @@ export type SkipModelValidation =
1941
1941
  export interface SourceAlgorithm {
1942
1942
  ModelDataUrl?: string | undefined;
1943
1943
  ModelDataSource?: ModelDataSource | undefined;
1944
+ ModelDataETag?: string | undefined;
1944
1945
  AlgorithmName: string | undefined;
1945
1946
  }
1946
1947
  export interface SourceAlgorithmSpecification {
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- input: any
11
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
14
  defaultUserAgentProvider: (
13
15
  config?:
14
16
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- init?:
11
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
12
- | undefined
13
- ) => import("@smithy/types").MemoizedProvider<
14
- import("@smithy/types").AwsCredentialIdentity
15
- >;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ init?:
13
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ | undefined
15
+ ) => import("@smithy/types").MemoizedProvider<
16
+ import("@smithy/types").AwsCredentialIdentity
17
+ >);
16
18
  defaultUserAgentProvider: (
17
19
  config?:
18
20
  | import("@aws-sdk/util-user-agent-node").PreviouslyResolved