@aws-sdk/client-workspaces 3.639.0 → 3.641.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.
@@ -28,8 +28,8 @@ declare const StartWorkspacesCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Starts the specified WorkSpaces.</p>
31
- * <p>You cannot start a WorkSpace unless it has a running mode of <code>AutoStop</code> and a
32
- * state of <code>STOPPED</code>.</p>
31
+ * <p>You cannot start a WorkSpace unless it has a running mode of <code>AutoStop</code> or
32
+ * <code>Manual</code> and a state of <code>STOPPED</code>.</p>
33
33
  * @example
34
34
  * Use a bare-bones client and the command you need to make an API call.
35
35
  * ```javascript
@@ -27,10 +27,10 @@ declare const StopWorkspacesCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p> Stops the specified WorkSpaces.</p>
31
- * <p>You cannot stop a WorkSpace unless it has a running mode of <code>AutoStop</code> and a
32
- * state of <code>AVAILABLE</code>, <code>IMPAIRED</code>, <code>UNHEALTHY</code>, or
33
- * <code>ERROR</code>.</p>
30
+ * <p>Stops the specified WorkSpaces.</p>
31
+ * <p>You cannot stop a WorkSpace unless it has a running mode of <code>AutoStop</code> or
32
+ * <code>Manual</code> and a state of <code>AVAILABLE</code>, <code>IMPAIRED</code>,
33
+ * <code>UNHEALTHY</code>, or <code>ERROR</code>.</p>
34
34
  * @example
35
35
  * Use a bare-bones client and the command you need to make an API call.
36
36
  * ```javascript
@@ -1968,6 +1968,13 @@ export interface WorkspaceRequest {
1968
1968
  Tags?: Tag[];
1969
1969
  /**
1970
1970
  * <p>The name of the user-decoupled WorkSpace.</p>
1971
+ * <note>
1972
+ * <p>
1973
+ * <code>WorkspaceName</code> is required if <code>UserName</code> is
1974
+ * <code>[UNDEFINED]</code> for user-decoupled WorkSpaces.
1975
+ * <code>WorkspaceName</code> is not applicable if <code>UserName</code> is specified
1976
+ * for user-assigned WorkSpaces.</p>
1977
+ * </note>
1971
1978
  * @public
1972
1979
  */
1973
1980
  WorkspaceName?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces",
3
3
  "description": "AWS SDK for JavaScript Workspaces Client for Node.js, Browser and React Native",
4
- "version": "3.639.0",
4
+ "version": "3.641.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-workspaces",