@aws-sdk/client-workspaces 3.609.0 → 3.610.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.
@@ -44,10 +44,10 @@ declare const CreateWorkspaceBundleCommand_base: {
44
44
  * Name: "VALUE" || "STANDARD" || "PERFORMANCE" || "POWER" || "GRAPHICS" || "POWERPRO" || "GRAPHICSPRO" || "GRAPHICS_G4DN" || "GRAPHICSPRO_G4DN",
45
45
  * },
46
46
  * UserStorage: { // UserStorage
47
- * Capacity: "STRING_VALUE",
47
+ * Capacity: "STRING_VALUE", // required
48
48
  * },
49
49
  * RootStorage: { // RootStorage
50
- * Capacity: "STRING_VALUE",
50
+ * Capacity: "STRING_VALUE", // required
51
51
  * },
52
52
  * Tags: [ // TagList
53
53
  * { // Tag
@@ -66,10 +66,10 @@ declare const CreateWorkspaceBundleCommand_base: {
66
66
  * // Description: "STRING_VALUE",
67
67
  * // ImageId: "STRING_VALUE",
68
68
  * // RootStorage: { // RootStorage
69
- * // Capacity: "STRING_VALUE",
69
+ * // Capacity: "STRING_VALUE", // required
70
70
  * // },
71
71
  * // UserStorage: { // UserStorage
72
- * // Capacity: "STRING_VALUE",
72
+ * // Capacity: "STRING_VALUE", // required
73
73
  * // },
74
74
  * // ComputeType: { // ComputeType
75
75
  * // Name: "VALUE" || "STANDARD" || "PERFORMANCE" || "POWER" || "GRAPHICS" || "POWERPRO" || "GRAPHICSPRO" || "GRAPHICS_G4DN" || "GRAPHICSPRO_G4DN",
@@ -53,10 +53,10 @@ declare const DescribeWorkspaceBundlesCommand_base: {
53
53
  * // Description: "STRING_VALUE",
54
54
  * // ImageId: "STRING_VALUE",
55
55
  * // RootStorage: { // RootStorage
56
- * // Capacity: "STRING_VALUE",
56
+ * // Capacity: "STRING_VALUE", // required
57
57
  * // },
58
58
  * // UserStorage: { // UserStorage
59
- * // Capacity: "STRING_VALUE",
59
+ * // Capacity: "STRING_VALUE", // required
60
60
  * // },
61
61
  * // ComputeType: { // ComputeType
62
62
  * // Name: "VALUE" || "STANDARD" || "PERFORMANCE" || "POWER" || "GRAPHICS" || "POWERPRO" || "GRAPHICSPRO" || "GRAPHICS_G4DN" || "GRAPHICSPRO_G4DN",
@@ -782,7 +782,7 @@ export interface RootStorage {
782
782
  * <p>The size of the root volume.</p>
783
783
  * @public
784
784
  */
785
- Capacity?: string;
785
+ Capacity: string | undefined;
786
786
  }
787
787
  /**
788
788
  * @public
@@ -806,7 +806,7 @@ export interface UserStorage {
806
806
  * <p>The size of the user volume.</p>
807
807
  * @public
808
808
  */
809
- Capacity?: string;
809
+ Capacity: string | undefined;
810
810
  }
811
811
  /**
812
812
  * <p>Describes a WorkSpace bundle.</p>
@@ -322,7 +322,7 @@ export interface ComputeType {
322
322
  Name?: Compute;
323
323
  }
324
324
  export interface RootStorage {
325
- Capacity?: string;
325
+ Capacity: string | undefined;
326
326
  }
327
327
  export declare const WorkspaceBundleState: {
328
328
  readonly AVAILABLE: "AVAILABLE";
@@ -332,7 +332,7 @@ export declare const WorkspaceBundleState: {
332
332
  export type WorkspaceBundleState =
333
333
  (typeof WorkspaceBundleState)[keyof typeof WorkspaceBundleState];
334
334
  export interface UserStorage {
335
- Capacity?: string;
335
+ Capacity: string | undefined;
336
336
  }
337
337
  export interface WorkspaceBundle {
338
338
  BundleId?: 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.609.0",
4
+ "version": "3.610.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",