@aws-sdk/client-workspaces 3.58.0 → 3.68.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/CHANGELOG.md +30 -0
- package/README.md +18 -4
- package/dist-cjs/WorkSpaces.js +45 -0
- package/dist-cjs/commands/DeleteClientBrandingCommand.js +36 -0
- package/dist-cjs/commands/DescribeClientBrandingCommand.js +36 -0
- package/dist-cjs/commands/ImportClientBrandingCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +76 -4
- package/dist-cjs/protocols/Aws_json1_1.js +327 -3
- package/dist-es/WorkSpaces.js +45 -0
- package/dist-es/commands/DeleteClientBrandingCommand.js +39 -0
- package/dist-es/commands/DescribeClientBrandingCommand.js +39 -0
- package/dist-es/commands/ImportClientBrandingCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +52 -0
- package/dist-es/protocols/Aws_json1_1.js +347 -1
- package/dist-types/WorkSpaces.d.ts +199 -146
- package/dist-types/WorkSpacesClient.d.ts +21 -4
- package/dist-types/commands/AssociateConnectionAliasCommand.d.ts +5 -5
- package/dist-types/commands/CopyWorkspaceImageCommand.d.ts +5 -9
- package/dist-types/commands/CreateConnectClientAddInCommand.d.ts +0 -1
- package/dist-types/commands/CreateConnectionAliasCommand.d.ts +3 -3
- package/dist-types/commands/CreateIpGroupCommand.d.ts +0 -1
- package/dist-types/commands/CreateUpdatedWorkspaceImageCommand.d.ts +11 -13
- package/dist-types/commands/DeleteClientBrandingCommand.d.ts +40 -0
- package/dist-types/commands/DeleteConnectionAliasCommand.d.ts +9 -11
- package/dist-types/commands/DeregisterWorkspaceDirectoryCommand.d.ts +12 -15
- package/dist-types/commands/DescribeClientBrandingCommand.d.ts +42 -0
- package/dist-types/commands/DescribeConnectionAliasPermissionsCommand.d.ts +4 -3
- package/dist-types/commands/DescribeConnectionAliasesCommand.d.ts +3 -3
- package/dist-types/commands/DescribeWorkspaceDirectoriesCommand.d.ts +1 -2
- package/dist-types/commands/DescribeWorkspaceImagePermissionsCommand.d.ts +1 -2
- package/dist-types/commands/DisassociateConnectionAliasCommand.d.ts +6 -6
- package/dist-types/commands/ImportClientBrandingCommand.d.ts +62 -0
- package/dist-types/commands/ImportWorkspaceImageCommand.d.ts +3 -4
- package/dist-types/commands/ListAvailableManagementCidrRangesCommand.d.ts +3 -4
- package/dist-types/commands/MigrateWorkspaceCommand.d.ts +11 -9
- package/dist-types/commands/ModifyWorkspacePropertiesCommand.d.ts +2 -4
- package/dist-types/commands/RebuildWorkspacesCommand.d.ts +2 -1
- package/dist-types/commands/RegisterWorkspaceDirectoryCommand.d.ts +4 -4
- package/dist-types/commands/TerminateWorkspacesCommand.d.ts +12 -17
- package/dist-types/commands/UpdateConnectionAliasPermissionCommand.d.ts +13 -11
- package/dist-types/commands/UpdateWorkspaceImagePermissionCommand.d.ts +13 -16
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +639 -151
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/WorkSpaces.d.ts +15 -0
- package/dist-types/ts3.4/WorkSpacesClient.d.ts +5 -2
- package/dist-types/ts3.4/commands/DeleteClientBrandingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeClientBrandingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ImportClientBrandingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +175 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.68.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.67.0...v3.68.0) (2022-04-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-workspaces:** Added API support that allows customers to create GPU-enabled WorkSpaces using EC2 G4dn instances. ([6c11084](https://github.com/aws/aws-sdk-js-v3/commit/6c110847bc757ecaa9c6a968c7d529bf7fa8087a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-workspaces
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.61.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.60.0...v3.61.0) (2022-03-31)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **client-workspaces:** Added APIs that allow you to customize the logo, login message, and help links in the WorkSpaces client login page. To learn more, visit https://docs.aws.amazon.com/workspaces/latest/adminguide/customize-branding.html ([f7d75a0](https://github.com/aws/aws-sdk-js-v3/commit/f7d75a0c0424a5174538a10ddc0e1d060b5bb7df))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-workspaces
|
package/README.md
CHANGED
|
@@ -9,8 +9,22 @@ AWS SDK for JavaScript WorkSpaces Client for Node.js, Browser and React Native.
|
|
|
9
9
|
|
|
10
10
|
<fullname>Amazon WorkSpaces Service</fullname>
|
|
11
11
|
|
|
12
|
-
<p>Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows
|
|
13
|
-
Amazon Linux desktops for your users
|
|
12
|
+
<p>Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows
|
|
13
|
+
or Amazon Linux desktops for your users, known as <i>WorkSpaces</i>.
|
|
14
|
+
WorkSpaces eliminates the need to procure and deploy hardware or install complex
|
|
15
|
+
software. You can quickly add or remove users as your needs change. Users can access their
|
|
16
|
+
virtual desktops from multiple devices or web browsers.</p>
|
|
17
|
+
<p>This API Reference provides detailed information about the actions, data types,
|
|
18
|
+
parameters, and errors of the WorkSpaces service. For more information about the
|
|
19
|
+
supported Amazon Web Services Regions, endpoints, and service quotas of the Amazon WorkSpaces service, see <a href="https://docs.aws.amazon.com/general/latest/gr/wsp.html">WorkSpaces endpoints and quotas</a> in the <i>Amazon Web Services
|
|
20
|
+
General Reference</i>.</p>
|
|
21
|
+
<p>You can also manage your WorkSpaces resources using the WorkSpaces
|
|
22
|
+
console, Command Line Interface (CLI), and SDKs. For more information about
|
|
23
|
+
administering WorkSpaces, see the <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/">Amazon WorkSpaces Administration Guide</a>.
|
|
24
|
+
For more information about using the Amazon WorkSpaces client application or web
|
|
25
|
+
browser to access provisioned WorkSpaces, see the <a href="https://docs.aws.amazon.com/workspaces/latest/userguide/">Amazon WorkSpaces User Guide</a>. For more
|
|
26
|
+
information about using the CLI to manage your WorkSpaces resources,
|
|
27
|
+
see the <a href="https://docs.aws.amazon.com/cli/latest/reference/workspaces/index.html">WorkSpaces section of the CLI Reference</a>.</p>
|
|
14
28
|
|
|
15
29
|
## Installing
|
|
16
30
|
|
|
@@ -118,7 +132,7 @@ but they are supported by the send operation.
|
|
|
118
132
|
```js
|
|
119
133
|
// callbacks.
|
|
120
134
|
client.send(command, (err, data) => {
|
|
121
|
-
//
|
|
135
|
+
// process err and data.
|
|
122
136
|
});
|
|
123
137
|
```
|
|
124
138
|
|
|
@@ -152,7 +166,7 @@ client
|
|
|
152
166
|
|
|
153
167
|
// callbacks.
|
|
154
168
|
client.associateConnectionAlias(params, (err, data) => {
|
|
155
|
-
//
|
|
169
|
+
// process err and data.
|
|
156
170
|
});
|
|
157
171
|
```
|
|
158
172
|
|
package/dist-cjs/WorkSpaces.js
CHANGED
|
@@ -12,6 +12,7 @@ const CreateTagsCommand_1 = require("./commands/CreateTagsCommand");
|
|
|
12
12
|
const CreateUpdatedWorkspaceImageCommand_1 = require("./commands/CreateUpdatedWorkspaceImageCommand");
|
|
13
13
|
const CreateWorkspaceBundleCommand_1 = require("./commands/CreateWorkspaceBundleCommand");
|
|
14
14
|
const CreateWorkspacesCommand_1 = require("./commands/CreateWorkspacesCommand");
|
|
15
|
+
const DeleteClientBrandingCommand_1 = require("./commands/DeleteClientBrandingCommand");
|
|
15
16
|
const DeleteConnectClientAddInCommand_1 = require("./commands/DeleteConnectClientAddInCommand");
|
|
16
17
|
const DeleteConnectionAliasCommand_1 = require("./commands/DeleteConnectionAliasCommand");
|
|
17
18
|
const DeleteIpGroupCommand_1 = require("./commands/DeleteIpGroupCommand");
|
|
@@ -21,6 +22,7 @@ const DeleteWorkspaceImageCommand_1 = require("./commands/DeleteWorkspaceImageCo
|
|
|
21
22
|
const DeregisterWorkspaceDirectoryCommand_1 = require("./commands/DeregisterWorkspaceDirectoryCommand");
|
|
22
23
|
const DescribeAccountCommand_1 = require("./commands/DescribeAccountCommand");
|
|
23
24
|
const DescribeAccountModificationsCommand_1 = require("./commands/DescribeAccountModificationsCommand");
|
|
25
|
+
const DescribeClientBrandingCommand_1 = require("./commands/DescribeClientBrandingCommand");
|
|
24
26
|
const DescribeClientPropertiesCommand_1 = require("./commands/DescribeClientPropertiesCommand");
|
|
25
27
|
const DescribeConnectClientAddInsCommand_1 = require("./commands/DescribeConnectClientAddInsCommand");
|
|
26
28
|
const DescribeConnectionAliasesCommand_1 = require("./commands/DescribeConnectionAliasesCommand");
|
|
@@ -36,6 +38,7 @@ const DescribeWorkspacesConnectionStatusCommand_1 = require("./commands/Describe
|
|
|
36
38
|
const DescribeWorkspaceSnapshotsCommand_1 = require("./commands/DescribeWorkspaceSnapshotsCommand");
|
|
37
39
|
const DisassociateConnectionAliasCommand_1 = require("./commands/DisassociateConnectionAliasCommand");
|
|
38
40
|
const DisassociateIpGroupsCommand_1 = require("./commands/DisassociateIpGroupsCommand");
|
|
41
|
+
const ImportClientBrandingCommand_1 = require("./commands/ImportClientBrandingCommand");
|
|
39
42
|
const ImportWorkspaceImageCommand_1 = require("./commands/ImportWorkspaceImageCommand");
|
|
40
43
|
const ListAvailableManagementCidrRangesCommand_1 = require("./commands/ListAvailableManagementCidrRangesCommand");
|
|
41
44
|
const MigrateWorkspaceCommand_1 = require("./commands/MigrateWorkspaceCommand");
|
|
@@ -215,6 +218,20 @@ class WorkSpaces extends WorkSpacesClient_1.WorkSpacesClient {
|
|
|
215
218
|
return this.send(command, optionsOrCb);
|
|
216
219
|
}
|
|
217
220
|
}
|
|
221
|
+
deleteClientBranding(args, optionsOrCb, cb) {
|
|
222
|
+
const command = new DeleteClientBrandingCommand_1.DeleteClientBrandingCommand(args);
|
|
223
|
+
if (typeof optionsOrCb === "function") {
|
|
224
|
+
this.send(command, optionsOrCb);
|
|
225
|
+
}
|
|
226
|
+
else if (typeof cb === "function") {
|
|
227
|
+
if (typeof optionsOrCb !== "object")
|
|
228
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
229
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
230
|
+
}
|
|
231
|
+
else {
|
|
232
|
+
return this.send(command, optionsOrCb);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
218
235
|
deleteConnectClientAddIn(args, optionsOrCb, cb) {
|
|
219
236
|
const command = new DeleteConnectClientAddInCommand_1.DeleteConnectClientAddInCommand(args);
|
|
220
237
|
if (typeof optionsOrCb === "function") {
|
|
@@ -341,6 +358,20 @@ class WorkSpaces extends WorkSpacesClient_1.WorkSpacesClient {
|
|
|
341
358
|
return this.send(command, optionsOrCb);
|
|
342
359
|
}
|
|
343
360
|
}
|
|
361
|
+
describeClientBranding(args, optionsOrCb, cb) {
|
|
362
|
+
const command = new DescribeClientBrandingCommand_1.DescribeClientBrandingCommand(args);
|
|
363
|
+
if (typeof optionsOrCb === "function") {
|
|
364
|
+
this.send(command, optionsOrCb);
|
|
365
|
+
}
|
|
366
|
+
else if (typeof cb === "function") {
|
|
367
|
+
if (typeof optionsOrCb !== "object")
|
|
368
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
369
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
370
|
+
}
|
|
371
|
+
else {
|
|
372
|
+
return this.send(command, optionsOrCb);
|
|
373
|
+
}
|
|
374
|
+
}
|
|
344
375
|
describeClientProperties(args, optionsOrCb, cb) {
|
|
345
376
|
const command = new DescribeClientPropertiesCommand_1.DescribeClientPropertiesCommand(args);
|
|
346
377
|
if (typeof optionsOrCb === "function") {
|
|
@@ -551,6 +582,20 @@ class WorkSpaces extends WorkSpacesClient_1.WorkSpacesClient {
|
|
|
551
582
|
return this.send(command, optionsOrCb);
|
|
552
583
|
}
|
|
553
584
|
}
|
|
585
|
+
importClientBranding(args, optionsOrCb, cb) {
|
|
586
|
+
const command = new ImportClientBrandingCommand_1.ImportClientBrandingCommand(args);
|
|
587
|
+
if (typeof optionsOrCb === "function") {
|
|
588
|
+
this.send(command, optionsOrCb);
|
|
589
|
+
}
|
|
590
|
+
else if (typeof cb === "function") {
|
|
591
|
+
if (typeof optionsOrCb !== "object")
|
|
592
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
593
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
594
|
+
}
|
|
595
|
+
else {
|
|
596
|
+
return this.send(command, optionsOrCb);
|
|
597
|
+
}
|
|
598
|
+
}
|
|
554
599
|
importWorkspaceImage(args, optionsOrCb, cb) {
|
|
555
600
|
const command = new ImportWorkspaceImageCommand_1.ImportWorkspaceImageCommand(args);
|
|
556
601
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteClientBrandingCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class DeleteClientBrandingCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "WorkSpacesClient";
|
|
18
|
+
const commandName = "DeleteClientBrandingCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DeleteClientBrandingRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DeleteClientBrandingResult.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1DeleteClientBrandingCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1DeleteClientBrandingCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DeleteClientBrandingCommand = DeleteClientBrandingCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeClientBrandingCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class DescribeClientBrandingCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "WorkSpacesClient";
|
|
18
|
+
const commandName = "DescribeClientBrandingCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeClientBrandingRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeClientBrandingResult.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1DescribeClientBrandingCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1DescribeClientBrandingCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DescribeClientBrandingCommand = DescribeClientBrandingCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ImportClientBrandingCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class ImportClientBrandingCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "WorkSpacesClient";
|
|
18
|
+
const commandName = "ImportClientBrandingCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ImportClientBrandingRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ImportClientBrandingResult.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_json1_1_1.serializeAws_json1_1ImportClientBrandingCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_json1_1_1.deserializeAws_json1_1ImportClientBrandingCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.ImportClientBrandingCommand = ImportClientBrandingCommand;
|
|
@@ -12,6 +12,7 @@ tslib_1.__exportStar(require("./CreateTagsCommand"), exports);
|
|
|
12
12
|
tslib_1.__exportStar(require("./CreateUpdatedWorkspaceImageCommand"), exports);
|
|
13
13
|
tslib_1.__exportStar(require("./CreateWorkspaceBundleCommand"), exports);
|
|
14
14
|
tslib_1.__exportStar(require("./CreateWorkspacesCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./DeleteClientBrandingCommand"), exports);
|
|
15
16
|
tslib_1.__exportStar(require("./DeleteConnectClientAddInCommand"), exports);
|
|
16
17
|
tslib_1.__exportStar(require("./DeleteConnectionAliasCommand"), exports);
|
|
17
18
|
tslib_1.__exportStar(require("./DeleteIpGroupCommand"), exports);
|
|
@@ -21,6 +22,7 @@ tslib_1.__exportStar(require("./DeleteWorkspaceImageCommand"), exports);
|
|
|
21
22
|
tslib_1.__exportStar(require("./DeregisterWorkspaceDirectoryCommand"), exports);
|
|
22
23
|
tslib_1.__exportStar(require("./DescribeAccountCommand"), exports);
|
|
23
24
|
tslib_1.__exportStar(require("./DescribeAccountModificationsCommand"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./DescribeClientBrandingCommand"), exports);
|
|
24
26
|
tslib_1.__exportStar(require("./DescribeClientPropertiesCommand"), exports);
|
|
25
27
|
tslib_1.__exportStar(require("./DescribeConnectClientAddInsCommand"), exports);
|
|
26
28
|
tslib_1.__exportStar(require("./DescribeConnectionAliasPermissionsCommand"), exports);
|
|
@@ -36,6 +38,7 @@ tslib_1.__exportStar(require("./DescribeWorkspacesCommand"), exports);
|
|
|
36
38
|
tslib_1.__exportStar(require("./DescribeWorkspacesConnectionStatusCommand"), exports);
|
|
37
39
|
tslib_1.__exportStar(require("./DisassociateConnectionAliasCommand"), exports);
|
|
38
40
|
tslib_1.__exportStar(require("./DisassociateIpGroupsCommand"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./ImportClientBrandingCommand"), exports);
|
|
39
42
|
tslib_1.__exportStar(require("./ImportWorkspaceImageCommand"), exports);
|
|
40
43
|
tslib_1.__exportStar(require("./ListAvailableManagementCidrRangesCommand"), exports);
|
|
41
44
|
tslib_1.__exportStar(require("./MigrateWorkspaceCommand"), exports);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.UpdateWorkspaceImagePermissionResult = exports.UpdateWorkspaceImagePermissionRequest = exports.UpdateWorkspaceBundleResult = exports.UpdateWorkspaceBundleRequest = exports.UpdateRulesOfIpGroupResult = exports.UpdateRulesOfIpGroupRequest = exports.UpdateConnectionAliasPermissionResult = exports.UpdateConnectionAliasPermissionRequest = exports.UpdateConnectClientAddInResult = exports.UpdateConnectClientAddInRequest = exports.TerminateWorkspacesResult = exports.TerminateWorkspacesRequest = exports.TerminateRequest = exports.StopWorkspacesResult = exports.StopWorkspacesRequest = exports.StopRequest = exports.StartWorkspacesResult = exports.StartWorkspacesRequest = exports.StartRequest = exports.RevokeIpRulesResult = exports.RevokeIpRulesRequest = exports.RestoreWorkspaceResult = exports.RestoreWorkspaceRequest = exports.WorkspacesDefaultRoleNotFoundException = exports.UnsupportedNetworkConfigurationException = exports.RegisterWorkspaceDirectoryResult = exports.RegisterWorkspaceDirectoryRequest = exports.RebuildWorkspacesResult = exports.RebuildWorkspacesRequest = exports.RebuildRequest = exports.RebootWorkspacesResult = exports.RebootWorkspacesRequest = exports.RebootRequest = exports.ModifyWorkspaceStateResult = exports.ModifyWorkspaceStateRequest = exports.TargetWorkspaceState = exports.UnsupportedWorkspaceConfigurationException = exports.ModifyWorkspacePropertiesResult = exports.ModifyWorkspacePropertiesRequest = void 0;
|
|
3
|
+
exports.CreateUpdatedWorkspaceImageRequest = exports.CreateTagsResult = exports.CreateTagsRequest = exports.CreateIpGroupResult = exports.CreateIpGroupRequest = exports.CreateConnectionAliasResult = exports.CreateConnectionAliasRequest = exports.ResourceCreationFailedException = exports.CreateConnectClientAddInResult = exports.CreateConnectClientAddInRequest = exports.ResourceUnavailableException = exports.ResourceAlreadyExistsException = exports.CopyWorkspaceImageResult = exports.CopyWorkspaceImageRequest = exports.Tag = exports.ConnectionState = exports.ConnectionAliasPermission = exports.ConnectionAlias = exports.ConnectionAliasState = exports.ConnectionAliasAssociation = exports.ConnectClientAddIn = exports.ClientPropertiesResult = exports.ClientProperties = exports.ReconnectEnum = exports.ClientDeviceType = exports.WorkspaceBundle = exports.UserStorage = exports.RootStorage = exports.ComputeType = exports.Compute = exports.AuthorizeIpRulesResult = exports.AuthorizeIpRulesRequest = exports.IpRuleItem = exports.AssociationStatus = exports.ResourceLimitExceededException = exports.AssociateIpGroupsResult = exports.AssociateIpGroupsRequest = exports.ResourceNotFoundException = exports.ResourceAssociatedException = exports.OperationNotSupportedException = exports.InvalidResourceStateException = exports.InvalidParameterValuesException = exports.AssociateConnectionAliasResult = exports.AssociateConnectionAliasRequest = exports.Application = exports.AccountModification = exports.DedicatedTenancyModificationStateEnum = exports.DedicatedTenancySupportResultEnum = exports.AccessPropertyValue = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.DescribeIpGroupsRequest = exports.DescribeConnectionAliasPermissionsResult = exports.DescribeConnectionAliasPermissionsRequest = exports.DescribeConnectionAliasesResult = exports.DescribeConnectionAliasesRequest = exports.DescribeConnectClientAddInsResult = exports.DescribeConnectClientAddInsRequest = exports.DescribeClientPropertiesResult = exports.DescribeClientPropertiesRequest = exports.DescribeClientBrandingResult = exports.IosClientBrandingAttributes = exports.DescribeClientBrandingRequest = exports.DescribeAccountModificationsResult = exports.DescribeAccountModificationsRequest = exports.DescribeAccountResult = exports.DescribeAccountRequest = exports.DeregisterWorkspaceDirectoryResult = exports.DeregisterWorkspaceDirectoryRequest = exports.DeleteWorkspaceImageResult = exports.DeleteWorkspaceImageRequest = exports.DeleteWorkspaceBundleResult = exports.DeleteWorkspaceBundleRequest = exports.DeleteTagsResult = exports.DeleteTagsRequest = exports.DeleteIpGroupResult = exports.DeleteIpGroupRequest = exports.DeleteConnectionAliasResult = exports.DeleteConnectionAliasRequest = exports.DeleteConnectClientAddInResult = exports.DeleteConnectClientAddInRequest = exports.DeleteClientBrandingResult = exports.DeleteClientBrandingRequest = exports.DefaultWorkspaceCreationProperties = exports.DefaultImportClientBrandingAttributes = exports.DefaultClientBrandingAttributes = exports.DedicatedTenancySupportEnum = exports.CreateWorkspacesResult = exports.Workspace = exports.WorkspaceState = exports.ModificationState = exports.ModificationStateEnum = exports.ModificationResourceEnum = exports.FailedCreateWorkspaceRequest = exports.CreateWorkspacesRequest = exports.WorkspaceRequest = exports.WorkspaceProperties = exports.RunningMode = exports.CreateWorkspaceBundleResult = exports.CreateWorkspaceBundleRequest = exports.CreateUpdatedWorkspaceImageResult = void 0;
|
|
5
|
+
exports.OperationInProgressException = exports.MigrateWorkspaceResult = exports.MigrateWorkspaceRequest = exports.ListAvailableManagementCidrRangesResult = exports.ListAvailableManagementCidrRangesRequest = exports.ImportWorkspaceImageResult = exports.ImportWorkspaceImageRequest = exports.WorkspaceImageIngestionProcess = exports.ImportClientBrandingResult = exports.ImportClientBrandingRequest = exports.IosImportClientBrandingAttributes = exports.FailedWorkspaceChangeRequest = exports.DisassociateIpGroupsResult = exports.DisassociateIpGroupsRequest = exports.DisassociateConnectionAliasResult = exports.DisassociateConnectionAliasRequest = exports.DescribeWorkspaceSnapshotsResult = exports.Snapshot = exports.DescribeWorkspaceSnapshotsRequest = exports.DescribeWorkspacesConnectionStatusResult = exports.WorkspaceConnectionStatus = exports.DescribeWorkspacesConnectionStatusRequest = exports.DescribeWorkspacesResult = exports.DescribeWorkspacesRequest = exports.DescribeWorkspaceImagesResult = exports.WorkspaceImage = exports.UpdateResult = exports.WorkspaceImageState = exports.WorkspaceImageRequiredTenancy = exports.OperatingSystem = exports.OperatingSystemType = exports.DescribeWorkspaceImagesRequest = exports.ImageType = exports.DescribeWorkspaceImagePermissionsResult = exports.ImagePermission = exports.DescribeWorkspaceImagePermissionsRequest = exports.DescribeWorkspaceDirectoriesResult = exports.WorkspaceDirectory = exports.WorkspaceAccessProperties = exports.Tenancy = exports.WorkspaceDirectoryState = exports.SelfservicePermissions = exports.WorkspaceDirectoryType = exports.DescribeWorkspaceDirectoriesRequest = exports.DescribeWorkspaceBundlesResult = exports.DescribeWorkspaceBundlesRequest = exports.DescribeTagsResult = exports.DescribeTagsRequest = exports.DescribeIpGroupsResult = exports.WorkspacesIpGroup = void 0;
|
|
6
|
+
exports.UpdateWorkspaceImagePermissionResult = exports.UpdateWorkspaceImagePermissionRequest = exports.UpdateWorkspaceBundleResult = exports.UpdateWorkspaceBundleRequest = exports.UpdateRulesOfIpGroupResult = exports.UpdateRulesOfIpGroupRequest = exports.UpdateConnectionAliasPermissionResult = exports.UpdateConnectionAliasPermissionRequest = exports.UpdateConnectClientAddInResult = exports.UpdateConnectClientAddInRequest = exports.TerminateWorkspacesResult = exports.TerminateWorkspacesRequest = exports.TerminateRequest = exports.StopWorkspacesResult = exports.StopWorkspacesRequest = exports.StopRequest = exports.StartWorkspacesResult = exports.StartWorkspacesRequest = exports.StartRequest = exports.RevokeIpRulesResult = exports.RevokeIpRulesRequest = exports.RestoreWorkspaceResult = exports.RestoreWorkspaceRequest = exports.WorkspacesDefaultRoleNotFoundException = exports.UnsupportedNetworkConfigurationException = exports.RegisterWorkspaceDirectoryResult = exports.RegisterWorkspaceDirectoryRequest = exports.RebuildWorkspacesResult = exports.RebuildWorkspacesRequest = exports.RebuildRequest = exports.RebootWorkspacesResult = exports.RebootWorkspacesRequest = exports.RebootRequest = exports.ModifyWorkspaceStateResult = exports.ModifyWorkspaceStateRequest = exports.TargetWorkspaceState = exports.UnsupportedWorkspaceConfigurationException = exports.ModifyWorkspacePropertiesResult = exports.ModifyWorkspacePropertiesRequest = exports.ModifyWorkspaceCreationPropertiesResult = exports.ModifyWorkspaceCreationPropertiesRequest = exports.WorkspaceCreationProperties = exports.ModifyWorkspaceAccessPropertiesResult = exports.ModifyWorkspaceAccessPropertiesRequest = exports.ModifySelfservicePermissionsResult = exports.ModifySelfservicePermissionsRequest = exports.ModifyClientPropertiesResult = exports.ModifyClientPropertiesRequest = exports.ModifyAccountResult = exports.ModifyAccountRequest = void 0;
|
|
7
7
|
const WorkSpacesServiceException_1 = require("./WorkSpacesServiceException");
|
|
8
8
|
class AccessDeniedException extends WorkSpacesServiceException_1.WorkSpacesServiceException {
|
|
9
9
|
constructor(opts) {
|
|
@@ -178,6 +178,8 @@ var Compute;
|
|
|
178
178
|
(function (Compute) {
|
|
179
179
|
Compute["GRAPHICS"] = "GRAPHICS";
|
|
180
180
|
Compute["GRAPHICSPRO"] = "GRAPHICSPRO";
|
|
181
|
+
Compute["GRAPHICSPRO_G4DN"] = "GRAPHICSPRO_G4DN";
|
|
182
|
+
Compute["GRAPHICS_G4DN"] = "GRAPHICS_G4DN";
|
|
181
183
|
Compute["PERFORMANCE"] = "PERFORMANCE";
|
|
182
184
|
Compute["POWER"] = "POWER";
|
|
183
185
|
Compute["POWERPRO"] = "POWERPRO";
|
|
@@ -208,6 +210,15 @@ var WorkspaceBundle;
|
|
|
208
210
|
...obj,
|
|
209
211
|
});
|
|
210
212
|
})(WorkspaceBundle = exports.WorkspaceBundle || (exports.WorkspaceBundle = {}));
|
|
213
|
+
var ClientDeviceType;
|
|
214
|
+
(function (ClientDeviceType) {
|
|
215
|
+
ClientDeviceType["DEVICE_TYPE_ANDROID"] = "DeviceTypeAndroid";
|
|
216
|
+
ClientDeviceType["DEVICE_TYPE_IOS"] = "DeviceTypeIos";
|
|
217
|
+
ClientDeviceType["DEVICE_TYPE_LINUX"] = "DeviceTypeLinux";
|
|
218
|
+
ClientDeviceType["DEVICE_TYPE_OSX"] = "DeviceTypeOsx";
|
|
219
|
+
ClientDeviceType["DEVICE_TYPE_WEB"] = "DeviceTypeWeb";
|
|
220
|
+
ClientDeviceType["DEVICE_TYPE_WINDOWS"] = "DeviceTypeWindows";
|
|
221
|
+
})(ClientDeviceType = exports.ClientDeviceType || (exports.ClientDeviceType = {}));
|
|
211
222
|
var ReconnectEnum;
|
|
212
223
|
(function (ReconnectEnum) {
|
|
213
224
|
ReconnectEnum["DISABLED"] = "DISABLED";
|
|
@@ -473,12 +484,36 @@ var DedicatedTenancySupportEnum;
|
|
|
473
484
|
(function (DedicatedTenancySupportEnum) {
|
|
474
485
|
DedicatedTenancySupportEnum["ENABLED"] = "ENABLED";
|
|
475
486
|
})(DedicatedTenancySupportEnum = exports.DedicatedTenancySupportEnum || (exports.DedicatedTenancySupportEnum = {}));
|
|
487
|
+
var DefaultClientBrandingAttributes;
|
|
488
|
+
(function (DefaultClientBrandingAttributes) {
|
|
489
|
+
DefaultClientBrandingAttributes.filterSensitiveLog = (obj) => ({
|
|
490
|
+
...obj,
|
|
491
|
+
});
|
|
492
|
+
})(DefaultClientBrandingAttributes = exports.DefaultClientBrandingAttributes || (exports.DefaultClientBrandingAttributes = {}));
|
|
493
|
+
var DefaultImportClientBrandingAttributes;
|
|
494
|
+
(function (DefaultImportClientBrandingAttributes) {
|
|
495
|
+
DefaultImportClientBrandingAttributes.filterSensitiveLog = (obj) => ({
|
|
496
|
+
...obj,
|
|
497
|
+
});
|
|
498
|
+
})(DefaultImportClientBrandingAttributes = exports.DefaultImportClientBrandingAttributes || (exports.DefaultImportClientBrandingAttributes = {}));
|
|
476
499
|
var DefaultWorkspaceCreationProperties;
|
|
477
500
|
(function (DefaultWorkspaceCreationProperties) {
|
|
478
501
|
DefaultWorkspaceCreationProperties.filterSensitiveLog = (obj) => ({
|
|
479
502
|
...obj,
|
|
480
503
|
});
|
|
481
504
|
})(DefaultWorkspaceCreationProperties = exports.DefaultWorkspaceCreationProperties || (exports.DefaultWorkspaceCreationProperties = {}));
|
|
505
|
+
var DeleteClientBrandingRequest;
|
|
506
|
+
(function (DeleteClientBrandingRequest) {
|
|
507
|
+
DeleteClientBrandingRequest.filterSensitiveLog = (obj) => ({
|
|
508
|
+
...obj,
|
|
509
|
+
});
|
|
510
|
+
})(DeleteClientBrandingRequest = exports.DeleteClientBrandingRequest || (exports.DeleteClientBrandingRequest = {}));
|
|
511
|
+
var DeleteClientBrandingResult;
|
|
512
|
+
(function (DeleteClientBrandingResult) {
|
|
513
|
+
DeleteClientBrandingResult.filterSensitiveLog = (obj) => ({
|
|
514
|
+
...obj,
|
|
515
|
+
});
|
|
516
|
+
})(DeleteClientBrandingResult = exports.DeleteClientBrandingResult || (exports.DeleteClientBrandingResult = {}));
|
|
482
517
|
var DeleteConnectClientAddInRequest;
|
|
483
518
|
(function (DeleteConnectClientAddInRequest) {
|
|
484
519
|
DeleteConnectClientAddInRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -587,6 +622,24 @@ var DescribeAccountModificationsResult;
|
|
|
587
622
|
...obj,
|
|
588
623
|
});
|
|
589
624
|
})(DescribeAccountModificationsResult = exports.DescribeAccountModificationsResult || (exports.DescribeAccountModificationsResult = {}));
|
|
625
|
+
var DescribeClientBrandingRequest;
|
|
626
|
+
(function (DescribeClientBrandingRequest) {
|
|
627
|
+
DescribeClientBrandingRequest.filterSensitiveLog = (obj) => ({
|
|
628
|
+
...obj,
|
|
629
|
+
});
|
|
630
|
+
})(DescribeClientBrandingRequest = exports.DescribeClientBrandingRequest || (exports.DescribeClientBrandingRequest = {}));
|
|
631
|
+
var IosClientBrandingAttributes;
|
|
632
|
+
(function (IosClientBrandingAttributes) {
|
|
633
|
+
IosClientBrandingAttributes.filterSensitiveLog = (obj) => ({
|
|
634
|
+
...obj,
|
|
635
|
+
});
|
|
636
|
+
})(IosClientBrandingAttributes = exports.IosClientBrandingAttributes || (exports.IosClientBrandingAttributes = {}));
|
|
637
|
+
var DescribeClientBrandingResult;
|
|
638
|
+
(function (DescribeClientBrandingResult) {
|
|
639
|
+
DescribeClientBrandingResult.filterSensitiveLog = (obj) => ({
|
|
640
|
+
...obj,
|
|
641
|
+
});
|
|
642
|
+
})(DescribeClientBrandingResult = exports.DescribeClientBrandingResult || (exports.DescribeClientBrandingResult = {}));
|
|
590
643
|
var DescribeClientPropertiesRequest;
|
|
591
644
|
(function (DescribeClientPropertiesRequest) {
|
|
592
645
|
DescribeClientPropertiesRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -872,10 +925,29 @@ var FailedWorkspaceChangeRequest;
|
|
|
872
925
|
...obj,
|
|
873
926
|
});
|
|
874
927
|
})(FailedWorkspaceChangeRequest = exports.FailedWorkspaceChangeRequest || (exports.FailedWorkspaceChangeRequest = {}));
|
|
928
|
+
var IosImportClientBrandingAttributes;
|
|
929
|
+
(function (IosImportClientBrandingAttributes) {
|
|
930
|
+
IosImportClientBrandingAttributes.filterSensitiveLog = (obj) => ({
|
|
931
|
+
...obj,
|
|
932
|
+
});
|
|
933
|
+
})(IosImportClientBrandingAttributes = exports.IosImportClientBrandingAttributes || (exports.IosImportClientBrandingAttributes = {}));
|
|
934
|
+
var ImportClientBrandingRequest;
|
|
935
|
+
(function (ImportClientBrandingRequest) {
|
|
936
|
+
ImportClientBrandingRequest.filterSensitiveLog = (obj) => ({
|
|
937
|
+
...obj,
|
|
938
|
+
});
|
|
939
|
+
})(ImportClientBrandingRequest = exports.ImportClientBrandingRequest || (exports.ImportClientBrandingRequest = {}));
|
|
940
|
+
var ImportClientBrandingResult;
|
|
941
|
+
(function (ImportClientBrandingResult) {
|
|
942
|
+
ImportClientBrandingResult.filterSensitiveLog = (obj) => ({
|
|
943
|
+
...obj,
|
|
944
|
+
});
|
|
945
|
+
})(ImportClientBrandingResult = exports.ImportClientBrandingResult || (exports.ImportClientBrandingResult = {}));
|
|
875
946
|
var WorkspaceImageIngestionProcess;
|
|
876
947
|
(function (WorkspaceImageIngestionProcess) {
|
|
877
948
|
WorkspaceImageIngestionProcess["BYOL_GRAPHICS"] = "BYOL_GRAPHICS";
|
|
878
949
|
WorkspaceImageIngestionProcess["BYOL_GRAPHICSPRO"] = "BYOL_GRAPHICSPRO";
|
|
950
|
+
WorkspaceImageIngestionProcess["BYOL_GRAPHICS_G4DN"] = "BYOL_GRAPHICS_G4DN";
|
|
879
951
|
WorkspaceImageIngestionProcess["BYOL_REGULAR"] = "BYOL_REGULAR";
|
|
880
952
|
WorkspaceImageIngestionProcess["BYOL_REGULAR_WSP"] = "BYOL_REGULAR_WSP";
|
|
881
953
|
})(WorkspaceImageIngestionProcess = exports.WorkspaceImageIngestionProcess || (exports.WorkspaceImageIngestionProcess = {}));
|