@aws-sdk/client-sagemaker 3.752.0 → 3.753.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.
@@ -69,6 +69,9 @@ declare const UpdateClusterCommand_base: {
69
69
  * },
70
70
  * ],
71
71
  * NodeRecovery: "Automatic" || "None",
72
+ * InstanceGroupsToDelete: [ // ClusterInstanceGroupsToDelete
73
+ * "STRING_VALUE",
74
+ * ],
72
75
  * };
73
76
  * const command = new UpdateClusterCommand(input);
74
77
  * const response = await client.send(command);
@@ -102,6 +102,12 @@ export interface UpdateClusterRequest {
102
102
  * @public
103
103
  */
104
104
  NodeRecovery?: ClusterNodeRecovery | undefined;
105
+ /**
106
+ * <p>Specify the names of the instance groups to delete.
107
+ * Use a single <code>,</code> as the separator between multiple names.</p>
108
+ * @public
109
+ */
110
+ InstanceGroupsToDelete?: string[] | undefined;
105
111
  }
106
112
  /**
107
113
  * @public
@@ -108,6 +108,7 @@ export interface UpdateClusterRequest {
108
108
  ClusterName: string | undefined;
109
109
  InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
110
110
  NodeRecovery?: ClusterNodeRecovery | undefined;
111
+ InstanceGroupsToDelete?: string[] | undefined;
111
112
  }
112
113
  export interface UpdateClusterResponse {
113
114
  ClusterArn: string | undefined;
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.752.0",
4
+ "version": "3.753.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",