@aws-sdk/client-sagemaker 3.758.0 → 3.760.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.
package/dist-cjs/index.js
CHANGED
|
@@ -12748,6 +12748,7 @@ var de_CreateDataQualityJobDefinitionResponse = /* @__PURE__ */ __name((output,
|
|
|
12748
12748
|
var de_CreateDomainResponse = /* @__PURE__ */ __name((output, context) => {
|
|
12749
12749
|
return (0, import_smithy_client.take)(output, {
|
|
12750
12750
|
DomainArn: import_smithy_client.expectString,
|
|
12751
|
+
DomainId: import_smithy_client.expectString,
|
|
12751
12752
|
Url: import_smithy_client.expectString
|
|
12752
12753
|
});
|
|
12753
12754
|
}, "de_CreateDomainResponse");
|
|
@@ -9659,6 +9659,7 @@ const de_CreateDataQualityJobDefinitionResponse = (output, context) => {
|
|
|
9659
9659
|
const de_CreateDomainResponse = (output, context) => {
|
|
9660
9660
|
return take(output, {
|
|
9661
9661
|
DomainArn: __expectString,
|
|
9662
|
+
DomainId: __expectString,
|
|
9662
9663
|
Url: __expectString,
|
|
9663
9664
|
});
|
|
9664
9665
|
};
|
|
@@ -2755,6 +2755,18 @@ export interface KernelGatewayAppSettings {
|
|
|
2755
2755
|
/**
|
|
2756
2756
|
* <p>A list of custom SageMaker AI images that are configured to run as a KernelGateway
|
|
2757
2757
|
* app.</p>
|
|
2758
|
+
* <p>The maximum number of custom images are as follows.</p>
|
|
2759
|
+
* <ul>
|
|
2760
|
+
* <li>
|
|
2761
|
+
* <p>On a domain level: 200</p>
|
|
2762
|
+
* </li>
|
|
2763
|
+
* <li>
|
|
2764
|
+
* <p>On a space level: 5</p>
|
|
2765
|
+
* </li>
|
|
2766
|
+
* <li>
|
|
2767
|
+
* <p>On a user profile level: 5</p>
|
|
2768
|
+
* </li>
|
|
2769
|
+
* </ul>
|
|
2758
2770
|
* @public
|
|
2759
2771
|
*/
|
|
2760
2772
|
CustomImages?: CustomImage[] | undefined;
|
|
@@ -3419,6 +3431,11 @@ export interface CreateDomainResponse {
|
|
|
3419
3431
|
* @public
|
|
3420
3432
|
*/
|
|
3421
3433
|
DomainArn?: string | undefined;
|
|
3434
|
+
/**
|
|
3435
|
+
* <p>The ID of the created domain.</p>
|
|
3436
|
+
* @public
|
|
3437
|
+
*/
|
|
3438
|
+
DomainId?: string | undefined;
|
|
3422
3439
|
/**
|
|
3423
3440
|
* <p>The URL to the created domain.</p>
|
|
3424
3441
|
* @public
|
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.
|
|
4
|
+
"version": "3.760.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",
|