@aws-sdk/client-workspaces 3.758.0 → 3.763.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/README.md +8 -0
- package/dist-cjs/index.js +43 -0
- package/dist-es/WorkSpaces.js +2 -0
- package/dist-es/commands/ModifyEndpointEncryptionModeCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +19 -0
- package/dist-types/WorkSpaces.d.ts +7 -0
- package/dist-types/WorkSpacesClient.d.ts +3 -2
- package/dist-types/commands/CopyWorkspaceImageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkspaceDirectoriesCommand.d.ts +2 -0
- package/dist-types/commands/ModifyEndpointEncryptionModeCommand.d.ts +80 -0
- package/dist-types/commands/ModifyWorkspaceAccessPropertiesCommand.d.ts +1 -0
- package/dist-types/commands/RebuildWorkspacesCommand.d.ts +1 -1
- package/dist-types/commands/TerminateWorkspacesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspaceImagePermissionCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +46 -32
- package/dist-types/models/models_1.d.ts +31 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/WorkSpaces.d.ts +17 -0
- package/dist-types/ts3.4/WorkSpacesClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ModifyEndpointEncryptionModeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RebuildWorkspacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -9
- package/dist-types/ts3.4/models/models_1.d.ts +9 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -715,6 +715,14 @@ ModifyClientProperties
|
|
|
715
715
|
|
|
716
716
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/workspaces/command/ModifyClientPropertiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-workspaces/Interface/ModifyClientPropertiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-workspaces/Interface/ModifyClientPropertiesCommandOutput/)
|
|
717
717
|
|
|
718
|
+
</details>
|
|
719
|
+
<details>
|
|
720
|
+
<summary>
|
|
721
|
+
ModifyEndpointEncryptionMode
|
|
722
|
+
</summary>
|
|
723
|
+
|
|
724
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/workspaces/command/ModifyEndpointEncryptionModeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-workspaces/Interface/ModifyEndpointEncryptionModeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-workspaces/Interface/ModifyEndpointEncryptionModeCommandOutput/)
|
|
725
|
+
|
|
718
726
|
</details>
|
|
719
727
|
<details>
|
|
720
728
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -108,6 +108,7 @@ __export(src_exports, {
|
|
|
108
108
|
DisassociateConnectionAliasCommand: () => DisassociateConnectionAliasCommand,
|
|
109
109
|
DisassociateIpGroupsCommand: () => DisassociateIpGroupsCommand,
|
|
110
110
|
DisassociateWorkspaceApplicationCommand: () => DisassociateWorkspaceApplicationCommand,
|
|
111
|
+
EndpointEncryptionMode: () => EndpointEncryptionMode,
|
|
111
112
|
GetAccountLinkCommand: () => GetAccountLinkCommand,
|
|
112
113
|
ImageAssociatedResourceType: () => ImageAssociatedResourceType,
|
|
113
114
|
ImageType: () => ImageType,
|
|
@@ -126,6 +127,7 @@ __export(src_exports, {
|
|
|
126
127
|
ModifyAccountCommand: () => ModifyAccountCommand,
|
|
127
128
|
ModifyCertificateBasedAuthPropertiesCommand: () => ModifyCertificateBasedAuthPropertiesCommand,
|
|
128
129
|
ModifyClientPropertiesCommand: () => ModifyClientPropertiesCommand,
|
|
130
|
+
ModifyEndpointEncryptionModeCommand: () => ModifyEndpointEncryptionModeCommand,
|
|
129
131
|
ModifySamlPropertiesCommand: () => ModifySamlPropertiesCommand,
|
|
130
132
|
ModifySelfservicePermissionsCommand: () => ModifySelfservicePermissionsCommand,
|
|
131
133
|
ModifyStreamingPropertiesCommand: () => ModifyStreamingPropertiesCommand,
|
|
@@ -1026,6 +1028,10 @@ var WorkspaceDirectoryType = {
|
|
|
1026
1028
|
CUSTOMER_MANAGED: "CUSTOMER_MANAGED",
|
|
1027
1029
|
SIMPLE_AD: "SIMPLE_AD"
|
|
1028
1030
|
};
|
|
1031
|
+
var EndpointEncryptionMode = {
|
|
1032
|
+
FIPS_VALIDATED: "FIPS_VALIDATED",
|
|
1033
|
+
STANDARD_TLS: "STANDARD_TLS"
|
|
1034
|
+
};
|
|
1029
1035
|
var SamlStatusEnum = {
|
|
1030
1036
|
DISABLED: "DISABLED",
|
|
1031
1037
|
ENABLED: "ENABLED",
|
|
@@ -1598,6 +1604,12 @@ var se_ModifyClientPropertiesCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1598
1604
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1599
1605
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1600
1606
|
}, "se_ModifyClientPropertiesCommand");
|
|
1607
|
+
var se_ModifyEndpointEncryptionModeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1608
|
+
const headers = sharedHeaders("ModifyEndpointEncryptionMode");
|
|
1609
|
+
let body;
|
|
1610
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1611
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1612
|
+
}, "se_ModifyEndpointEncryptionModeCommand");
|
|
1601
1613
|
var se_ModifySamlPropertiesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1602
1614
|
const headers = sharedHeaders("ModifySamlProperties");
|
|
1603
1615
|
let body;
|
|
@@ -2560,6 +2572,19 @@ var de_ModifyClientPropertiesCommand = /* @__PURE__ */ __name(async (output, con
|
|
|
2560
2572
|
};
|
|
2561
2573
|
return response;
|
|
2562
2574
|
}, "de_ModifyClientPropertiesCommand");
|
|
2575
|
+
var de_ModifyEndpointEncryptionModeCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2576
|
+
if (output.statusCode >= 300) {
|
|
2577
|
+
return de_CommandError(output, context);
|
|
2578
|
+
}
|
|
2579
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
2580
|
+
let contents = {};
|
|
2581
|
+
contents = (0, import_smithy_client._json)(data);
|
|
2582
|
+
const response = {
|
|
2583
|
+
$metadata: deserializeMetadata(output),
|
|
2584
|
+
...contents
|
|
2585
|
+
};
|
|
2586
|
+
return response;
|
|
2587
|
+
}, "de_ModifyEndpointEncryptionModeCommand");
|
|
2563
2588
|
var de_ModifySamlPropertiesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
2564
2589
|
if (output.statusCode >= 300) {
|
|
2565
2590
|
return de_CommandError(output, context);
|
|
@@ -4558,6 +4583,21 @@ var ModifyClientPropertiesCommand = class extends import_smithy_client.Command.c
|
|
|
4558
4583
|
}
|
|
4559
4584
|
};
|
|
4560
4585
|
|
|
4586
|
+
// src/commands/ModifyEndpointEncryptionModeCommand.ts
|
|
4587
|
+
|
|
4588
|
+
|
|
4589
|
+
|
|
4590
|
+
var ModifyEndpointEncryptionModeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4591
|
+
return [
|
|
4592
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4593
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4594
|
+
];
|
|
4595
|
+
}).s("WorkspacesService", "ModifyEndpointEncryptionMode", {}).n("WorkSpacesClient", "ModifyEndpointEncryptionModeCommand").f(void 0, void 0).ser(se_ModifyEndpointEncryptionModeCommand).de(de_ModifyEndpointEncryptionModeCommand).build() {
|
|
4596
|
+
static {
|
|
4597
|
+
__name(this, "ModifyEndpointEncryptionModeCommand");
|
|
4598
|
+
}
|
|
4599
|
+
};
|
|
4600
|
+
|
|
4561
4601
|
// src/commands/ModifySamlPropertiesCommand.ts
|
|
4562
4602
|
|
|
4563
4603
|
|
|
@@ -5012,6 +5052,7 @@ var commands = {
|
|
|
5012
5052
|
ModifyAccountCommand,
|
|
5013
5053
|
ModifyCertificateBasedAuthPropertiesCommand,
|
|
5014
5054
|
ModifyClientPropertiesCommand,
|
|
5055
|
+
ModifyEndpointEncryptionModeCommand,
|
|
5015
5056
|
ModifySamlPropertiesCommand,
|
|
5016
5057
|
ModifySelfservicePermissionsCommand,
|
|
5017
5058
|
ModifyStreamingPropertiesCommand,
|
|
@@ -5139,6 +5180,7 @@ var paginateListAccountLinks = (0, import_core.createPaginator)(WorkSpacesClient
|
|
|
5139
5180
|
ModifyAccountCommand,
|
|
5140
5181
|
ModifyCertificateBasedAuthPropertiesCommand,
|
|
5141
5182
|
ModifyClientPropertiesCommand,
|
|
5183
|
+
ModifyEndpointEncryptionModeCommand,
|
|
5142
5184
|
ModifySamlPropertiesCommand,
|
|
5143
5185
|
ModifySelfservicePermissionsCommand,
|
|
5144
5186
|
ModifyStreamingPropertiesCommand,
|
|
@@ -5237,6 +5279,7 @@ var paginateListAccountLinks = (0, import_core.createPaginator)(WorkSpacesClient
|
|
|
5237
5279
|
ImageAssociatedResourceType,
|
|
5238
5280
|
DescribeWorkspaceDirectoriesFilterName,
|
|
5239
5281
|
WorkspaceDirectoryType,
|
|
5282
|
+
EndpointEncryptionMode,
|
|
5240
5283
|
SamlStatusEnum,
|
|
5241
5284
|
WorkspaceDirectoryState,
|
|
5242
5285
|
StorageConnectorTypeEnum,
|
package/dist-es/WorkSpaces.js
CHANGED
|
@@ -61,6 +61,7 @@ import { MigrateWorkspaceCommand, } from "./commands/MigrateWorkspaceCommand";
|
|
|
61
61
|
import { ModifyAccountCommand, } from "./commands/ModifyAccountCommand";
|
|
62
62
|
import { ModifyCertificateBasedAuthPropertiesCommand, } from "./commands/ModifyCertificateBasedAuthPropertiesCommand";
|
|
63
63
|
import { ModifyClientPropertiesCommand, } from "./commands/ModifyClientPropertiesCommand";
|
|
64
|
+
import { ModifyEndpointEncryptionModeCommand, } from "./commands/ModifyEndpointEncryptionModeCommand";
|
|
64
65
|
import { ModifySamlPropertiesCommand, } from "./commands/ModifySamlPropertiesCommand";
|
|
65
66
|
import { ModifySelfservicePermissionsCommand, } from "./commands/ModifySelfservicePermissionsCommand";
|
|
66
67
|
import { ModifyStreamingPropertiesCommand, } from "./commands/ModifyStreamingPropertiesCommand";
|
|
@@ -151,6 +152,7 @@ const commands = {
|
|
|
151
152
|
ModifyAccountCommand,
|
|
152
153
|
ModifyCertificateBasedAuthPropertiesCommand,
|
|
153
154
|
ModifyClientPropertiesCommand,
|
|
155
|
+
ModifyEndpointEncryptionModeCommand,
|
|
154
156
|
ModifySamlPropertiesCommand,
|
|
155
157
|
ModifySelfservicePermissionsCommand,
|
|
156
158
|
ModifyStreamingPropertiesCommand,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ModifyEndpointEncryptionModeCommand, se_ModifyEndpointEncryptionModeCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ModifyEndpointEncryptionModeCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("WorkspacesService", "ModifyEndpointEncryptionMode", {})
|
|
17
|
+
.n("WorkSpacesClient", "ModifyEndpointEncryptionModeCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ModifyEndpointEncryptionModeCommand)
|
|
20
|
+
.de(de_ModifyEndpointEncryptionModeCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -60,6 +60,7 @@ export * from "./MigrateWorkspaceCommand";
|
|
|
60
60
|
export * from "./ModifyAccountCommand";
|
|
61
61
|
export * from "./ModifyCertificateBasedAuthPropertiesCommand";
|
|
62
62
|
export * from "./ModifyClientPropertiesCommand";
|
|
63
|
+
export * from "./ModifyEndpointEncryptionModeCommand";
|
|
63
64
|
export * from "./ModifySamlPropertiesCommand";
|
|
64
65
|
export * from "./ModifySelfservicePermissionsCommand";
|
|
65
66
|
export * from "./ModifyStreamingPropertiesCommand";
|
|
@@ -521,6 +521,10 @@ export const WorkspaceDirectoryType = {
|
|
|
521
521
|
CUSTOMER_MANAGED: "CUSTOMER_MANAGED",
|
|
522
522
|
SIMPLE_AD: "SIMPLE_AD",
|
|
523
523
|
};
|
|
524
|
+
export const EndpointEncryptionMode = {
|
|
525
|
+
FIPS_VALIDATED: "FIPS_VALIDATED",
|
|
526
|
+
STANDARD_TLS: "STANDARD_TLS",
|
|
527
|
+
};
|
|
524
528
|
export const SamlStatusEnum = {
|
|
525
529
|
DISABLED: "DISABLED",
|
|
526
530
|
ENABLED: "ENABLED",
|
|
@@ -376,6 +376,12 @@ export const se_ModifyClientPropertiesCommand = async (input, context) => {
|
|
|
376
376
|
body = JSON.stringify(_json(input));
|
|
377
377
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
378
378
|
};
|
|
379
|
+
export const se_ModifyEndpointEncryptionModeCommand = async (input, context) => {
|
|
380
|
+
const headers = sharedHeaders("ModifyEndpointEncryptionMode");
|
|
381
|
+
let body;
|
|
382
|
+
body = JSON.stringify(_json(input));
|
|
383
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
384
|
+
};
|
|
379
385
|
export const se_ModifySamlPropertiesCommand = async (input, context) => {
|
|
380
386
|
const headers = sharedHeaders("ModifySamlProperties");
|
|
381
387
|
let body;
|
|
@@ -1338,6 +1344,19 @@ export const de_ModifyClientPropertiesCommand = async (output, context) => {
|
|
|
1338
1344
|
};
|
|
1339
1345
|
return response;
|
|
1340
1346
|
};
|
|
1347
|
+
export const de_ModifyEndpointEncryptionModeCommand = async (output, context) => {
|
|
1348
|
+
if (output.statusCode >= 300) {
|
|
1349
|
+
return de_CommandError(output, context);
|
|
1350
|
+
}
|
|
1351
|
+
const data = await parseBody(output.body, context);
|
|
1352
|
+
let contents = {};
|
|
1353
|
+
contents = _json(data);
|
|
1354
|
+
const response = {
|
|
1355
|
+
$metadata: deserializeMetadata(output),
|
|
1356
|
+
...contents,
|
|
1357
|
+
};
|
|
1358
|
+
return response;
|
|
1359
|
+
};
|
|
1341
1360
|
export const de_ModifySamlPropertiesCommand = async (output, context) => {
|
|
1342
1361
|
if (output.statusCode >= 300) {
|
|
1343
1362
|
return de_CommandError(output, context);
|
|
@@ -61,6 +61,7 @@ import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "./c
|
|
|
61
61
|
import { ModifyAccountCommandInput, ModifyAccountCommandOutput } from "./commands/ModifyAccountCommand";
|
|
62
62
|
import { ModifyCertificateBasedAuthPropertiesCommandInput, ModifyCertificateBasedAuthPropertiesCommandOutput } from "./commands/ModifyCertificateBasedAuthPropertiesCommand";
|
|
63
63
|
import { ModifyClientPropertiesCommandInput, ModifyClientPropertiesCommandOutput } from "./commands/ModifyClientPropertiesCommand";
|
|
64
|
+
import { ModifyEndpointEncryptionModeCommandInput, ModifyEndpointEncryptionModeCommandOutput } from "./commands/ModifyEndpointEncryptionModeCommand";
|
|
64
65
|
import { ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput } from "./commands/ModifySamlPropertiesCommand";
|
|
65
66
|
import { ModifySelfservicePermissionsCommandInput, ModifySelfservicePermissionsCommandOutput } from "./commands/ModifySelfservicePermissionsCommand";
|
|
66
67
|
import { ModifyStreamingPropertiesCommandInput, ModifyStreamingPropertiesCommandOutput } from "./commands/ModifyStreamingPropertiesCommand";
|
|
@@ -476,6 +477,12 @@ export interface WorkSpaces {
|
|
|
476
477
|
modifyClientProperties(args: ModifyClientPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClientPropertiesCommandOutput>;
|
|
477
478
|
modifyClientProperties(args: ModifyClientPropertiesCommandInput, cb: (err: any, data?: ModifyClientPropertiesCommandOutput) => void): void;
|
|
478
479
|
modifyClientProperties(args: ModifyClientPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClientPropertiesCommandOutput) => void): void;
|
|
480
|
+
/**
|
|
481
|
+
* @see {@link ModifyEndpointEncryptionModeCommand}
|
|
482
|
+
*/
|
|
483
|
+
modifyEndpointEncryptionMode(args: ModifyEndpointEncryptionModeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyEndpointEncryptionModeCommandOutput>;
|
|
484
|
+
modifyEndpointEncryptionMode(args: ModifyEndpointEncryptionModeCommandInput, cb: (err: any, data?: ModifyEndpointEncryptionModeCommandOutput) => void): void;
|
|
485
|
+
modifyEndpointEncryptionMode(args: ModifyEndpointEncryptionModeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyEndpointEncryptionModeCommandOutput) => void): void;
|
|
479
486
|
/**
|
|
480
487
|
* @see {@link ModifySamlPropertiesCommand}
|
|
481
488
|
*/
|
|
@@ -69,6 +69,7 @@ import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "./c
|
|
|
69
69
|
import { ModifyAccountCommandInput, ModifyAccountCommandOutput } from "./commands/ModifyAccountCommand";
|
|
70
70
|
import { ModifyCertificateBasedAuthPropertiesCommandInput, ModifyCertificateBasedAuthPropertiesCommandOutput } from "./commands/ModifyCertificateBasedAuthPropertiesCommand";
|
|
71
71
|
import { ModifyClientPropertiesCommandInput, ModifyClientPropertiesCommandOutput } from "./commands/ModifyClientPropertiesCommand";
|
|
72
|
+
import { ModifyEndpointEncryptionModeCommandInput, ModifyEndpointEncryptionModeCommandOutput } from "./commands/ModifyEndpointEncryptionModeCommand";
|
|
72
73
|
import { ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput } from "./commands/ModifySamlPropertiesCommand";
|
|
73
74
|
import { ModifySelfservicePermissionsCommandInput, ModifySelfservicePermissionsCommandOutput } from "./commands/ModifySelfservicePermissionsCommand";
|
|
74
75
|
import { ModifyStreamingPropertiesCommandInput, ModifyStreamingPropertiesCommandOutput } from "./commands/ModifyStreamingPropertiesCommand";
|
|
@@ -101,11 +102,11 @@ export { __Client };
|
|
|
101
102
|
/**
|
|
102
103
|
* @public
|
|
103
104
|
*/
|
|
104
|
-
export type ServiceInputTypes = AcceptAccountLinkInvitationCommandInput | AssociateConnectionAliasCommandInput | AssociateIpGroupsCommandInput | AssociateWorkspaceApplicationCommandInput | AuthorizeIpRulesCommandInput | CopyWorkspaceImageCommandInput | CreateAccountLinkInvitationCommandInput | CreateConnectClientAddInCommandInput | CreateConnectionAliasCommandInput | CreateIpGroupCommandInput | CreateStandbyWorkspacesCommandInput | CreateTagsCommandInput | CreateUpdatedWorkspaceImageCommandInput | CreateWorkspaceBundleCommandInput | CreateWorkspaceImageCommandInput | CreateWorkspacesCommandInput | CreateWorkspacesPoolCommandInput | DeleteAccountLinkInvitationCommandInput | DeleteClientBrandingCommandInput | DeleteConnectClientAddInCommandInput | DeleteConnectionAliasCommandInput | DeleteIpGroupCommandInput | DeleteTagsCommandInput | DeleteWorkspaceBundleCommandInput | DeleteWorkspaceImageCommandInput | DeployWorkspaceApplicationsCommandInput | DeregisterWorkspaceDirectoryCommandInput | DescribeAccountCommandInput | DescribeAccountModificationsCommandInput | DescribeApplicationAssociationsCommandInput | DescribeApplicationsCommandInput | DescribeBundleAssociationsCommandInput | DescribeClientBrandingCommandInput | DescribeClientPropertiesCommandInput | DescribeConnectClientAddInsCommandInput | DescribeConnectionAliasPermissionsCommandInput | DescribeConnectionAliasesCommandInput | DescribeImageAssociationsCommandInput | DescribeIpGroupsCommandInput | DescribeTagsCommandInput | DescribeWorkspaceAssociationsCommandInput | DescribeWorkspaceBundlesCommandInput | DescribeWorkspaceDirectoriesCommandInput | DescribeWorkspaceImagePermissionsCommandInput | DescribeWorkspaceImagesCommandInput | DescribeWorkspaceSnapshotsCommandInput | DescribeWorkspacesCommandInput | DescribeWorkspacesConnectionStatusCommandInput | DescribeWorkspacesPoolSessionsCommandInput | DescribeWorkspacesPoolsCommandInput | DisassociateConnectionAliasCommandInput | DisassociateIpGroupsCommandInput | DisassociateWorkspaceApplicationCommandInput | GetAccountLinkCommandInput | ImportClientBrandingCommandInput | ImportWorkspaceImageCommandInput | ListAccountLinksCommandInput | ListAvailableManagementCidrRangesCommandInput | MigrateWorkspaceCommandInput | ModifyAccountCommandInput | ModifyCertificateBasedAuthPropertiesCommandInput | ModifyClientPropertiesCommandInput | ModifySamlPropertiesCommandInput | ModifySelfservicePermissionsCommandInput | ModifyStreamingPropertiesCommandInput | ModifyWorkspaceAccessPropertiesCommandInput | ModifyWorkspaceCreationPropertiesCommandInput | ModifyWorkspacePropertiesCommandInput | ModifyWorkspaceStateCommandInput | RebootWorkspacesCommandInput | RebuildWorkspacesCommandInput | RegisterWorkspaceDirectoryCommandInput | RejectAccountLinkInvitationCommandInput | RestoreWorkspaceCommandInput | RevokeIpRulesCommandInput | StartWorkspacesCommandInput | StartWorkspacesPoolCommandInput | StopWorkspacesCommandInput | StopWorkspacesPoolCommandInput | TerminateWorkspacesCommandInput | TerminateWorkspacesPoolCommandInput | TerminateWorkspacesPoolSessionCommandInput | UpdateConnectClientAddInCommandInput | UpdateConnectionAliasPermissionCommandInput | UpdateRulesOfIpGroupCommandInput | UpdateWorkspaceBundleCommandInput | UpdateWorkspaceImagePermissionCommandInput | UpdateWorkspacesPoolCommandInput;
|
|
105
|
+
export type ServiceInputTypes = AcceptAccountLinkInvitationCommandInput | AssociateConnectionAliasCommandInput | AssociateIpGroupsCommandInput | AssociateWorkspaceApplicationCommandInput | AuthorizeIpRulesCommandInput | CopyWorkspaceImageCommandInput | CreateAccountLinkInvitationCommandInput | CreateConnectClientAddInCommandInput | CreateConnectionAliasCommandInput | CreateIpGroupCommandInput | CreateStandbyWorkspacesCommandInput | CreateTagsCommandInput | CreateUpdatedWorkspaceImageCommandInput | CreateWorkspaceBundleCommandInput | CreateWorkspaceImageCommandInput | CreateWorkspacesCommandInput | CreateWorkspacesPoolCommandInput | DeleteAccountLinkInvitationCommandInput | DeleteClientBrandingCommandInput | DeleteConnectClientAddInCommandInput | DeleteConnectionAliasCommandInput | DeleteIpGroupCommandInput | DeleteTagsCommandInput | DeleteWorkspaceBundleCommandInput | DeleteWorkspaceImageCommandInput | DeployWorkspaceApplicationsCommandInput | DeregisterWorkspaceDirectoryCommandInput | DescribeAccountCommandInput | DescribeAccountModificationsCommandInput | DescribeApplicationAssociationsCommandInput | DescribeApplicationsCommandInput | DescribeBundleAssociationsCommandInput | DescribeClientBrandingCommandInput | DescribeClientPropertiesCommandInput | DescribeConnectClientAddInsCommandInput | DescribeConnectionAliasPermissionsCommandInput | DescribeConnectionAliasesCommandInput | DescribeImageAssociationsCommandInput | DescribeIpGroupsCommandInput | DescribeTagsCommandInput | DescribeWorkspaceAssociationsCommandInput | DescribeWorkspaceBundlesCommandInput | DescribeWorkspaceDirectoriesCommandInput | DescribeWorkspaceImagePermissionsCommandInput | DescribeWorkspaceImagesCommandInput | DescribeWorkspaceSnapshotsCommandInput | DescribeWorkspacesCommandInput | DescribeWorkspacesConnectionStatusCommandInput | DescribeWorkspacesPoolSessionsCommandInput | DescribeWorkspacesPoolsCommandInput | DisassociateConnectionAliasCommandInput | DisassociateIpGroupsCommandInput | DisassociateWorkspaceApplicationCommandInput | GetAccountLinkCommandInput | ImportClientBrandingCommandInput | ImportWorkspaceImageCommandInput | ListAccountLinksCommandInput | ListAvailableManagementCidrRangesCommandInput | MigrateWorkspaceCommandInput | ModifyAccountCommandInput | ModifyCertificateBasedAuthPropertiesCommandInput | ModifyClientPropertiesCommandInput | ModifyEndpointEncryptionModeCommandInput | ModifySamlPropertiesCommandInput | ModifySelfservicePermissionsCommandInput | ModifyStreamingPropertiesCommandInput | ModifyWorkspaceAccessPropertiesCommandInput | ModifyWorkspaceCreationPropertiesCommandInput | ModifyWorkspacePropertiesCommandInput | ModifyWorkspaceStateCommandInput | RebootWorkspacesCommandInput | RebuildWorkspacesCommandInput | RegisterWorkspaceDirectoryCommandInput | RejectAccountLinkInvitationCommandInput | RestoreWorkspaceCommandInput | RevokeIpRulesCommandInput | StartWorkspacesCommandInput | StartWorkspacesPoolCommandInput | StopWorkspacesCommandInput | StopWorkspacesPoolCommandInput | TerminateWorkspacesCommandInput | TerminateWorkspacesPoolCommandInput | TerminateWorkspacesPoolSessionCommandInput | UpdateConnectClientAddInCommandInput | UpdateConnectionAliasPermissionCommandInput | UpdateRulesOfIpGroupCommandInput | UpdateWorkspaceBundleCommandInput | UpdateWorkspaceImagePermissionCommandInput | UpdateWorkspacesPoolCommandInput;
|
|
105
106
|
/**
|
|
106
107
|
* @public
|
|
107
108
|
*/
|
|
108
|
-
export type ServiceOutputTypes = AcceptAccountLinkInvitationCommandOutput | AssociateConnectionAliasCommandOutput | AssociateIpGroupsCommandOutput | AssociateWorkspaceApplicationCommandOutput | AuthorizeIpRulesCommandOutput | CopyWorkspaceImageCommandOutput | CreateAccountLinkInvitationCommandOutput | CreateConnectClientAddInCommandOutput | CreateConnectionAliasCommandOutput | CreateIpGroupCommandOutput | CreateStandbyWorkspacesCommandOutput | CreateTagsCommandOutput | CreateUpdatedWorkspaceImageCommandOutput | CreateWorkspaceBundleCommandOutput | CreateWorkspaceImageCommandOutput | CreateWorkspacesCommandOutput | CreateWorkspacesPoolCommandOutput | DeleteAccountLinkInvitationCommandOutput | DeleteClientBrandingCommandOutput | DeleteConnectClientAddInCommandOutput | DeleteConnectionAliasCommandOutput | DeleteIpGroupCommandOutput | DeleteTagsCommandOutput | DeleteWorkspaceBundleCommandOutput | DeleteWorkspaceImageCommandOutput | DeployWorkspaceApplicationsCommandOutput | DeregisterWorkspaceDirectoryCommandOutput | DescribeAccountCommandOutput | DescribeAccountModificationsCommandOutput | DescribeApplicationAssociationsCommandOutput | DescribeApplicationsCommandOutput | DescribeBundleAssociationsCommandOutput | DescribeClientBrandingCommandOutput | DescribeClientPropertiesCommandOutput | DescribeConnectClientAddInsCommandOutput | DescribeConnectionAliasPermissionsCommandOutput | DescribeConnectionAliasesCommandOutput | DescribeImageAssociationsCommandOutput | DescribeIpGroupsCommandOutput | DescribeTagsCommandOutput | DescribeWorkspaceAssociationsCommandOutput | DescribeWorkspaceBundlesCommandOutput | DescribeWorkspaceDirectoriesCommandOutput | DescribeWorkspaceImagePermissionsCommandOutput | DescribeWorkspaceImagesCommandOutput | DescribeWorkspaceSnapshotsCommandOutput | DescribeWorkspacesCommandOutput | DescribeWorkspacesConnectionStatusCommandOutput | DescribeWorkspacesPoolSessionsCommandOutput | DescribeWorkspacesPoolsCommandOutput | DisassociateConnectionAliasCommandOutput | DisassociateIpGroupsCommandOutput | DisassociateWorkspaceApplicationCommandOutput | GetAccountLinkCommandOutput | ImportClientBrandingCommandOutput | ImportWorkspaceImageCommandOutput | ListAccountLinksCommandOutput | ListAvailableManagementCidrRangesCommandOutput | MigrateWorkspaceCommandOutput | ModifyAccountCommandOutput | ModifyCertificateBasedAuthPropertiesCommandOutput | ModifyClientPropertiesCommandOutput | ModifySamlPropertiesCommandOutput | ModifySelfservicePermissionsCommandOutput | ModifyStreamingPropertiesCommandOutput | ModifyWorkspaceAccessPropertiesCommandOutput | ModifyWorkspaceCreationPropertiesCommandOutput | ModifyWorkspacePropertiesCommandOutput | ModifyWorkspaceStateCommandOutput | RebootWorkspacesCommandOutput | RebuildWorkspacesCommandOutput | RegisterWorkspaceDirectoryCommandOutput | RejectAccountLinkInvitationCommandOutput | RestoreWorkspaceCommandOutput | RevokeIpRulesCommandOutput | StartWorkspacesCommandOutput | StartWorkspacesPoolCommandOutput | StopWorkspacesCommandOutput | StopWorkspacesPoolCommandOutput | TerminateWorkspacesCommandOutput | TerminateWorkspacesPoolCommandOutput | TerminateWorkspacesPoolSessionCommandOutput | UpdateConnectClientAddInCommandOutput | UpdateConnectionAliasPermissionCommandOutput | UpdateRulesOfIpGroupCommandOutput | UpdateWorkspaceBundleCommandOutput | UpdateWorkspaceImagePermissionCommandOutput | UpdateWorkspacesPoolCommandOutput;
|
|
109
|
+
export type ServiceOutputTypes = AcceptAccountLinkInvitationCommandOutput | AssociateConnectionAliasCommandOutput | AssociateIpGroupsCommandOutput | AssociateWorkspaceApplicationCommandOutput | AuthorizeIpRulesCommandOutput | CopyWorkspaceImageCommandOutput | CreateAccountLinkInvitationCommandOutput | CreateConnectClientAddInCommandOutput | CreateConnectionAliasCommandOutput | CreateIpGroupCommandOutput | CreateStandbyWorkspacesCommandOutput | CreateTagsCommandOutput | CreateUpdatedWorkspaceImageCommandOutput | CreateWorkspaceBundleCommandOutput | CreateWorkspaceImageCommandOutput | CreateWorkspacesCommandOutput | CreateWorkspacesPoolCommandOutput | DeleteAccountLinkInvitationCommandOutput | DeleteClientBrandingCommandOutput | DeleteConnectClientAddInCommandOutput | DeleteConnectionAliasCommandOutput | DeleteIpGroupCommandOutput | DeleteTagsCommandOutput | DeleteWorkspaceBundleCommandOutput | DeleteWorkspaceImageCommandOutput | DeployWorkspaceApplicationsCommandOutput | DeregisterWorkspaceDirectoryCommandOutput | DescribeAccountCommandOutput | DescribeAccountModificationsCommandOutput | DescribeApplicationAssociationsCommandOutput | DescribeApplicationsCommandOutput | DescribeBundleAssociationsCommandOutput | DescribeClientBrandingCommandOutput | DescribeClientPropertiesCommandOutput | DescribeConnectClientAddInsCommandOutput | DescribeConnectionAliasPermissionsCommandOutput | DescribeConnectionAliasesCommandOutput | DescribeImageAssociationsCommandOutput | DescribeIpGroupsCommandOutput | DescribeTagsCommandOutput | DescribeWorkspaceAssociationsCommandOutput | DescribeWorkspaceBundlesCommandOutput | DescribeWorkspaceDirectoriesCommandOutput | DescribeWorkspaceImagePermissionsCommandOutput | DescribeWorkspaceImagesCommandOutput | DescribeWorkspaceSnapshotsCommandOutput | DescribeWorkspacesCommandOutput | DescribeWorkspacesConnectionStatusCommandOutput | DescribeWorkspacesPoolSessionsCommandOutput | DescribeWorkspacesPoolsCommandOutput | DisassociateConnectionAliasCommandOutput | DisassociateIpGroupsCommandOutput | DisassociateWorkspaceApplicationCommandOutput | GetAccountLinkCommandOutput | ImportClientBrandingCommandOutput | ImportWorkspaceImageCommandOutput | ListAccountLinksCommandOutput | ListAvailableManagementCidrRangesCommandOutput | MigrateWorkspaceCommandOutput | ModifyAccountCommandOutput | ModifyCertificateBasedAuthPropertiesCommandOutput | ModifyClientPropertiesCommandOutput | ModifyEndpointEncryptionModeCommandOutput | ModifySamlPropertiesCommandOutput | ModifySelfservicePermissionsCommandOutput | ModifyStreamingPropertiesCommandOutput | ModifyWorkspaceAccessPropertiesCommandOutput | ModifyWorkspaceCreationPropertiesCommandOutput | ModifyWorkspacePropertiesCommandOutput | ModifyWorkspaceStateCommandOutput | RebootWorkspacesCommandOutput | RebuildWorkspacesCommandOutput | RegisterWorkspaceDirectoryCommandOutput | RejectAccountLinkInvitationCommandOutput | RestoreWorkspaceCommandOutput | RevokeIpRulesCommandOutput | StartWorkspacesCommandOutput | StartWorkspacesPoolCommandOutput | StopWorkspacesCommandOutput | StopWorkspacesPoolCommandOutput | TerminateWorkspacesCommandOutput | TerminateWorkspacesPoolCommandOutput | TerminateWorkspacesPoolSessionCommandOutput | UpdateConnectClientAddInCommandOutput | UpdateConnectionAliasPermissionCommandOutput | UpdateRulesOfIpGroupCommandOutput | UpdateWorkspaceBundleCommandOutput | UpdateWorkspaceImagePermissionCommandOutput | UpdateWorkspacesPoolCommandOutput;
|
|
109
110
|
/**
|
|
110
111
|
* @public
|
|
111
112
|
*/
|
|
@@ -31,7 +31,7 @@ declare const CopyWorkspaceImageCommand_base: {
|
|
|
31
31
|
* information about copying images, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/copy-custom-image.html"> Copy a Custom WorkSpaces
|
|
32
32
|
* Image</a>.</p>
|
|
33
33
|
* <p>In the China (Ningxia) Region, you can copy images only within the same Region.</p>
|
|
34
|
-
* <p>In Amazon Web Services GovCloud (US), to copy images to and from other Regions, contact Amazon Web
|
|
34
|
+
* <p>In Amazon Web Services GovCloud (US), to copy images to and from other Regions, contact Amazon Web ServicesSupport.</p>
|
|
35
35
|
* <important>
|
|
36
36
|
* <p>Before copying a shared image, be sure to verify that it has been shared from the
|
|
37
37
|
* correct Amazon Web Services account. To determine if an image has been shared and to see
|
|
@@ -93,6 +93,7 @@ declare const DescribeWorkspaceDirectoriesCommand_base: {
|
|
|
93
93
|
* // DeviceTypeChromeOs: "ALLOW" || "DENY",
|
|
94
94
|
* // DeviceTypeZeroClient: "ALLOW" || "DENY",
|
|
95
95
|
* // DeviceTypeLinux: "ALLOW" || "DENY",
|
|
96
|
+
* // DeviceTypeWorkSpacesThinClient: "ALLOW" || "DENY",
|
|
96
97
|
* // },
|
|
97
98
|
* // Tenancy: "DEDICATED" || "SHARED",
|
|
98
99
|
* // SelfservicePermissions: { // SelfservicePermissions
|
|
@@ -111,6 +112,7 @@ declare const DescribeWorkspaceDirectoriesCommand_base: {
|
|
|
111
112
|
* // Status: "DISABLED" || "ENABLED",
|
|
112
113
|
* // CertificateAuthorityArn: "STRING_VALUE",
|
|
113
114
|
* // },
|
|
115
|
+
* // EndpointEncryptionMode: "STANDARD_TLS" || "FIPS_VALIDATED",
|
|
114
116
|
* // MicrosoftEntraConfig: { // MicrosoftEntraConfig
|
|
115
117
|
* // TenantId: "STRING_VALUE",
|
|
116
118
|
* // ApplicationConfigSecretArn: "STRING_VALUE",
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ModifyEndpointEncryptionModeRequest, ModifyEndpointEncryptionModeResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ModifyEndpointEncryptionModeCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ModifyEndpointEncryptionModeCommandInput extends ModifyEndpointEncryptionModeRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ModifyEndpointEncryptionModeCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ModifyEndpointEncryptionModeCommandOutput extends ModifyEndpointEncryptionModeResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ModifyEndpointEncryptionModeCommand_base: {
|
|
25
|
+
new (input: ModifyEndpointEncryptionModeCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyEndpointEncryptionModeCommandInput, ModifyEndpointEncryptionModeCommandOutput, WorkSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ModifyEndpointEncryptionModeCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyEndpointEncryptionModeCommandInput, ModifyEndpointEncryptionModeCommandOutput, WorkSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Modifies the endpoint encryption mode that allows you to configure the specified
|
|
31
|
+
* directory between Standard TLS and FIPS 140-2 validated mode. </p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { WorkSpacesClient, ModifyEndpointEncryptionModeCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
36
|
+
* // const { WorkSpacesClient, ModifyEndpointEncryptionModeCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
37
|
+
* const client = new WorkSpacesClient(config);
|
|
38
|
+
* const input = { // ModifyEndpointEncryptionModeRequest
|
|
39
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
40
|
+
* EndpointEncryptionMode: "STANDARD_TLS" || "FIPS_VALIDATED", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new ModifyEndpointEncryptionModeCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param ModifyEndpointEncryptionModeCommandInput - {@link ModifyEndpointEncryptionModeCommandInput}
|
|
49
|
+
* @returns {@link ModifyEndpointEncryptionModeCommandOutput}
|
|
50
|
+
* @see {@link ModifyEndpointEncryptionModeCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link ModifyEndpointEncryptionModeCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link WorkSpacesClientResolvedConfig | config} for WorkSpacesClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>The user is not authorized to access a resource.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link OperationNotSupportedException} (client fault)
|
|
58
|
+
* <p>This operation is not supported.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
|
+
* <p>The resource could not be found.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link WorkSpacesServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from WorkSpaces service.</p>
|
|
65
|
+
*
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class ModifyEndpointEncryptionModeCommand extends ModifyEndpointEncryptionModeCommand_base {
|
|
69
|
+
/** @internal type navigation helper, not in runtime. */
|
|
70
|
+
protected static __types: {
|
|
71
|
+
api: {
|
|
72
|
+
input: ModifyEndpointEncryptionModeRequest;
|
|
73
|
+
output: {};
|
|
74
|
+
};
|
|
75
|
+
sdk: {
|
|
76
|
+
input: ModifyEndpointEncryptionModeCommandInput;
|
|
77
|
+
output: ModifyEndpointEncryptionModeCommandOutput;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
}
|
|
@@ -47,6 +47,7 @@ declare const ModifyWorkspaceAccessPropertiesCommand_base: {
|
|
|
47
47
|
* DeviceTypeChromeOs: "ALLOW" || "DENY",
|
|
48
48
|
* DeviceTypeZeroClient: "ALLOW" || "DENY",
|
|
49
49
|
* DeviceTypeLinux: "ALLOW" || "DENY",
|
|
50
|
+
* DeviceTypeWorkSpacesThinClient: "ALLOW" || "DENY",
|
|
50
51
|
* },
|
|
51
52
|
* };
|
|
52
53
|
* const command = new ModifyWorkspaceAccessPropertiesCommand(input);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { RebuildWorkspacesRequest, RebuildWorkspacesResult } from "../models/
|
|
3
|
+
import { RebuildWorkspacesRequest, RebuildWorkspacesResult } from "../models/models_1";
|
|
4
4
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -30,7 +30,7 @@ declare const TerminateWorkspacesCommand_base: {
|
|
|
30
30
|
* <p>Terminates the specified WorkSpaces.</p>
|
|
31
31
|
* <important>
|
|
32
32
|
* <p>Terminating a WorkSpace is a permanent action and cannot be undone. The user's data
|
|
33
|
-
* is destroyed. If you need to archive any user data, contact Amazon Web
|
|
33
|
+
* is destroyed. If you need to archive any user data, contact Amazon Web ServicesSupport before
|
|
34
34
|
* terminating the WorkSpace.</p>
|
|
35
35
|
* </important>
|
|
36
36
|
* <p>You can terminate a WorkSpace that is in any state except <code>SUSPENDED</code>.</p>
|
|
@@ -34,7 +34,7 @@ declare const UpdateWorkspaceImagePermissionCommand_base: {
|
|
|
34
34
|
* <p>After an image has been shared, the recipient account can copy the image to other
|
|
35
35
|
* Regions as needed.</p>
|
|
36
36
|
* <p>In the China (Ningxia) Region, you can copy images only within the same Region.</p>
|
|
37
|
-
* <p>In Amazon Web Services GovCloud (US), to copy images to and from other Regions, contact Amazon Web
|
|
37
|
+
* <p>In Amazon Web Services GovCloud (US), to copy images to and from other Regions, contact Amazon Web ServicesSupport.</p>
|
|
38
38
|
* <p>For more information about sharing images, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/share-custom-image.html"> Share or Unshare a Custom
|
|
39
39
|
* WorkSpaces Image</a>.</p>
|
|
40
40
|
* <note>
|
|
@@ -46,7 +46,7 @@ declare const UpdateWorkspaceImagePermissionCommand_base: {
|
|
|
46
46
|
* <li>
|
|
47
47
|
* <p>Sharing Bring Your Own License (BYOL) images across Amazon Web Services accounts
|
|
48
48
|
* isn't supported at this time in Amazon Web Services GovCloud (US). To share BYOL images
|
|
49
|
-
* across accounts in Amazon Web Services GovCloud (US), contact Amazon Web
|
|
49
|
+
* across accounts in Amazon Web Services GovCloud (US), contact Amazon Web ServicesSupport.</p>
|
|
50
50
|
* </li>
|
|
51
51
|
* </ul>
|
|
52
52
|
* </note>
|
|
@@ -60,6 +60,7 @@ export * from "./MigrateWorkspaceCommand";
|
|
|
60
60
|
export * from "./ModifyAccountCommand";
|
|
61
61
|
export * from "./ModifyCertificateBasedAuthPropertiesCommand";
|
|
62
62
|
export * from "./ModifyClientPropertiesCommand";
|
|
63
|
+
export * from "./ModifyEndpointEncryptionModeCommand";
|
|
63
64
|
export * from "./ModifySamlPropertiesCommand";
|
|
64
65
|
export * from "./ModifySelfservicePermissionsCommand";
|
|
65
66
|
export * from "./ModifyStreamingPropertiesCommand";
|
|
@@ -3904,6 +3904,18 @@ export declare const WorkspaceDirectoryType: {
|
|
|
3904
3904
|
* @public
|
|
3905
3905
|
*/
|
|
3906
3906
|
export type WorkspaceDirectoryType = (typeof WorkspaceDirectoryType)[keyof typeof WorkspaceDirectoryType];
|
|
3907
|
+
/**
|
|
3908
|
+
* @public
|
|
3909
|
+
* @enum
|
|
3910
|
+
*/
|
|
3911
|
+
export declare const EndpointEncryptionMode: {
|
|
3912
|
+
readonly FIPS_VALIDATED: "FIPS_VALIDATED";
|
|
3913
|
+
readonly STANDARD_TLS: "STANDARD_TLS";
|
|
3914
|
+
};
|
|
3915
|
+
/**
|
|
3916
|
+
* @public
|
|
3917
|
+
*/
|
|
3918
|
+
export type EndpointEncryptionMode = (typeof EndpointEncryptionMode)[keyof typeof EndpointEncryptionMode];
|
|
3907
3919
|
/**
|
|
3908
3920
|
* <p>Specifies the configurations of the identity center.</p>
|
|
3909
3921
|
* @public
|
|
@@ -4253,6 +4265,11 @@ export interface WorkspaceAccessProperties {
|
|
|
4253
4265
|
* @public
|
|
4254
4266
|
*/
|
|
4255
4267
|
DeviceTypeLinux?: AccessPropertyValue | undefined;
|
|
4268
|
+
/**
|
|
4269
|
+
* <p>Indicates whether users can access their WorkSpaces through a WorkSpaces Thin Client.</p>
|
|
4270
|
+
* @public
|
|
4271
|
+
*/
|
|
4272
|
+
DeviceTypeWorkSpacesThinClient?: AccessPropertyValue | undefined;
|
|
4256
4273
|
}
|
|
4257
4274
|
/**
|
|
4258
4275
|
* @public
|
|
@@ -4372,6 +4389,12 @@ export interface WorkspaceDirectory {
|
|
|
4372
4389
|
* @public
|
|
4373
4390
|
*/
|
|
4374
4391
|
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
4392
|
+
/**
|
|
4393
|
+
* <p>Endpoint encryption mode that allows you to configure the specified directory between
|
|
4394
|
+
* Standard TLS and FIPS 140-2 validated mode.</p>
|
|
4395
|
+
* @public
|
|
4396
|
+
*/
|
|
4397
|
+
EndpointEncryptionMode?: EndpointEncryptionMode | undefined;
|
|
4375
4398
|
/**
|
|
4376
4399
|
* <p>Specifies details about Microsoft Entra configurations.</p>
|
|
4377
4400
|
* @public
|
|
@@ -4976,7 +4999,8 @@ export interface DescribeWorkspacesPoolSessionsRequest {
|
|
|
4976
4999
|
*/
|
|
4977
5000
|
UserId?: string | undefined;
|
|
4978
5001
|
/**
|
|
4979
|
-
* <p>The maximum
|
|
5002
|
+
* <p>The maximum size of each page of results. The default value is 20 and the maximum value
|
|
5003
|
+
* is 50.</p>
|
|
4980
5004
|
* @public
|
|
4981
5005
|
*/
|
|
4982
5006
|
Limit?: number | undefined;
|
|
@@ -5634,6 +5658,27 @@ export interface ModifyClientPropertiesRequest {
|
|
|
5634
5658
|
*/
|
|
5635
5659
|
export interface ModifyClientPropertiesResult {
|
|
5636
5660
|
}
|
|
5661
|
+
/**
|
|
5662
|
+
* @public
|
|
5663
|
+
*/
|
|
5664
|
+
export interface ModifyEndpointEncryptionModeRequest {
|
|
5665
|
+
/**
|
|
5666
|
+
* <p> The identifier of the directory.</p>
|
|
5667
|
+
* @public
|
|
5668
|
+
*/
|
|
5669
|
+
DirectoryId: string | undefined;
|
|
5670
|
+
/**
|
|
5671
|
+
* <p>The encryption mode used for endpoint connections when streaming to WorkSpaces Personal
|
|
5672
|
+
* or WorkSpace Pools.</p>
|
|
5673
|
+
* @public
|
|
5674
|
+
*/
|
|
5675
|
+
EndpointEncryptionMode: EndpointEncryptionMode | undefined;
|
|
5676
|
+
}
|
|
5677
|
+
/**
|
|
5678
|
+
* @public
|
|
5679
|
+
*/
|
|
5680
|
+
export interface ModifyEndpointEncryptionModeResponse {
|
|
5681
|
+
}
|
|
5637
5682
|
/**
|
|
5638
5683
|
* @public
|
|
5639
5684
|
*/
|
|
@@ -5927,34 +5972,3 @@ export interface RebootWorkspacesResult {
|
|
|
5927
5972
|
*/
|
|
5928
5973
|
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
5929
5974
|
}
|
|
5930
|
-
/**
|
|
5931
|
-
* <p>Describes the information used to rebuild a WorkSpace.</p>
|
|
5932
|
-
* @public
|
|
5933
|
-
*/
|
|
5934
|
-
export interface RebuildRequest {
|
|
5935
|
-
/**
|
|
5936
|
-
* <p>The identifier of the WorkSpace.</p>
|
|
5937
|
-
* @public
|
|
5938
|
-
*/
|
|
5939
|
-
WorkspaceId: string | undefined;
|
|
5940
|
-
}
|
|
5941
|
-
/**
|
|
5942
|
-
* @public
|
|
5943
|
-
*/
|
|
5944
|
-
export interface RebuildWorkspacesRequest {
|
|
5945
|
-
/**
|
|
5946
|
-
* <p>The WorkSpace to rebuild. You can specify a single WorkSpace.</p>
|
|
5947
|
-
* @public
|
|
5948
|
-
*/
|
|
5949
|
-
RebuildWorkspaceRequests: RebuildRequest[] | undefined;
|
|
5950
|
-
}
|
|
5951
|
-
/**
|
|
5952
|
-
* @public
|
|
5953
|
-
*/
|
|
5954
|
-
export interface RebuildWorkspacesResult {
|
|
5955
|
-
/**
|
|
5956
|
-
* <p>Information about the WorkSpace that could not be rebuilt.</p>
|
|
5957
|
-
* @public
|
|
5958
|
-
*/
|
|
5959
|
-
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
5960
|
-
}
|
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountLink, ActiveDirectoryConfig, ApplicationSettingsRequest, Capacity, ConnectionAliasPermission, FailedWorkspaceChangeRequest, IpRuleItem, MicrosoftEntraConfig, Tag, Tenancy, TimeoutSettings, UserIdentityType, WorkspaceDirectoryState, WorkspacesPool, WorkspaceType } from "./models_0";
|
|
3
3
|
import { WorkSpacesServiceException as __BaseException } from "./WorkSpacesServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Describes the information used to rebuild a WorkSpace.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface RebuildRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The identifier of the WorkSpace.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
WorkspaceId: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export interface RebuildWorkspacesRequest {
|
|
19
|
+
/**
|
|
20
|
+
* <p>The WorkSpace to rebuild. You can specify a single WorkSpace.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
RebuildWorkspaceRequests: RebuildRequest[] | undefined;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export interface RebuildWorkspacesResult {
|
|
29
|
+
/**
|
|
30
|
+
* <p>Information about the WorkSpace that could not be rebuilt.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
34
|
+
}
|
|
4
35
|
/**
|
|
5
36
|
* @public
|
|
6
37
|
*/
|
|
@@ -62,6 +62,7 @@ import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "../
|
|
|
62
62
|
import { ModifyAccountCommandInput, ModifyAccountCommandOutput } from "../commands/ModifyAccountCommand";
|
|
63
63
|
import { ModifyCertificateBasedAuthPropertiesCommandInput, ModifyCertificateBasedAuthPropertiesCommandOutput } from "../commands/ModifyCertificateBasedAuthPropertiesCommand";
|
|
64
64
|
import { ModifyClientPropertiesCommandInput, ModifyClientPropertiesCommandOutput } from "../commands/ModifyClientPropertiesCommand";
|
|
65
|
+
import { ModifyEndpointEncryptionModeCommandInput, ModifyEndpointEncryptionModeCommandOutput } from "../commands/ModifyEndpointEncryptionModeCommand";
|
|
65
66
|
import { ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput } from "../commands/ModifySamlPropertiesCommand";
|
|
66
67
|
import { ModifySelfservicePermissionsCommandInput, ModifySelfservicePermissionsCommandOutput } from "../commands/ModifySelfservicePermissionsCommand";
|
|
67
68
|
import { ModifyStreamingPropertiesCommandInput, ModifyStreamingPropertiesCommandOutput } from "../commands/ModifyStreamingPropertiesCommand";
|
|
@@ -336,6 +337,10 @@ export declare const se_ModifyCertificateBasedAuthPropertiesCommand: (input: Mod
|
|
|
336
337
|
* serializeAws_json1_1ModifyClientPropertiesCommand
|
|
337
338
|
*/
|
|
338
339
|
export declare const se_ModifyClientPropertiesCommand: (input: ModifyClientPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
340
|
+
/**
|
|
341
|
+
* serializeAws_json1_1ModifyEndpointEncryptionModeCommand
|
|
342
|
+
*/
|
|
343
|
+
export declare const se_ModifyEndpointEncryptionModeCommand: (input: ModifyEndpointEncryptionModeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
339
344
|
/**
|
|
340
345
|
* serializeAws_json1_1ModifySamlPropertiesCommand
|
|
341
346
|
*/
|
|
@@ -688,6 +693,10 @@ export declare const de_ModifyCertificateBasedAuthPropertiesCommand: (output: __
|
|
|
688
693
|
* deserializeAws_json1_1ModifyClientPropertiesCommand
|
|
689
694
|
*/
|
|
690
695
|
export declare const de_ModifyClientPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyClientPropertiesCommandOutput>;
|
|
696
|
+
/**
|
|
697
|
+
* deserializeAws_json1_1ModifyEndpointEncryptionModeCommand
|
|
698
|
+
*/
|
|
699
|
+
export declare const de_ModifyEndpointEncryptionModeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyEndpointEncryptionModeCommandOutput>;
|
|
691
700
|
/**
|
|
692
701
|
* deserializeAws_json1_1ModifySamlPropertiesCommand
|
|
693
702
|
*/
|
|
@@ -247,6 +247,10 @@ import {
|
|
|
247
247
|
ModifyClientPropertiesCommandInput,
|
|
248
248
|
ModifyClientPropertiesCommandOutput,
|
|
249
249
|
} from "./commands/ModifyClientPropertiesCommand";
|
|
250
|
+
import {
|
|
251
|
+
ModifyEndpointEncryptionModeCommandInput,
|
|
252
|
+
ModifyEndpointEncryptionModeCommandOutput,
|
|
253
|
+
} from "./commands/ModifyEndpointEncryptionModeCommand";
|
|
250
254
|
import {
|
|
251
255
|
ModifySamlPropertiesCommandInput,
|
|
252
256
|
ModifySamlPropertiesCommandOutput,
|
|
@@ -1204,6 +1208,19 @@ export interface WorkSpaces {
|
|
|
1204
1208
|
options: __HttpHandlerOptions,
|
|
1205
1209
|
cb: (err: any, data?: ModifyClientPropertiesCommandOutput) => void
|
|
1206
1210
|
): void;
|
|
1211
|
+
modifyEndpointEncryptionMode(
|
|
1212
|
+
args: ModifyEndpointEncryptionModeCommandInput,
|
|
1213
|
+
options?: __HttpHandlerOptions
|
|
1214
|
+
): Promise<ModifyEndpointEncryptionModeCommandOutput>;
|
|
1215
|
+
modifyEndpointEncryptionMode(
|
|
1216
|
+
args: ModifyEndpointEncryptionModeCommandInput,
|
|
1217
|
+
cb: (err: any, data?: ModifyEndpointEncryptionModeCommandOutput) => void
|
|
1218
|
+
): void;
|
|
1219
|
+
modifyEndpointEncryptionMode(
|
|
1220
|
+
args: ModifyEndpointEncryptionModeCommandInput,
|
|
1221
|
+
options: __HttpHandlerOptions,
|
|
1222
|
+
cb: (err: any, data?: ModifyEndpointEncryptionModeCommandOutput) => void
|
|
1223
|
+
): void;
|
|
1207
1224
|
modifySamlProperties(
|
|
1208
1225
|
args: ModifySamlPropertiesCommandInput,
|
|
1209
1226
|
options?: __HttpHandlerOptions
|
|
@@ -293,6 +293,10 @@ import {
|
|
|
293
293
|
ModifyClientPropertiesCommandInput,
|
|
294
294
|
ModifyClientPropertiesCommandOutput,
|
|
295
295
|
} from "./commands/ModifyClientPropertiesCommand";
|
|
296
|
+
import {
|
|
297
|
+
ModifyEndpointEncryptionModeCommandInput,
|
|
298
|
+
ModifyEndpointEncryptionModeCommandOutput,
|
|
299
|
+
} from "./commands/ModifyEndpointEncryptionModeCommand";
|
|
296
300
|
import {
|
|
297
301
|
ModifySamlPropertiesCommandInput,
|
|
298
302
|
ModifySamlPropertiesCommandOutput,
|
|
@@ -467,6 +471,7 @@ export type ServiceInputTypes =
|
|
|
467
471
|
| ModifyAccountCommandInput
|
|
468
472
|
| ModifyCertificateBasedAuthPropertiesCommandInput
|
|
469
473
|
| ModifyClientPropertiesCommandInput
|
|
474
|
+
| ModifyEndpointEncryptionModeCommandInput
|
|
470
475
|
| ModifySamlPropertiesCommandInput
|
|
471
476
|
| ModifySelfservicePermissionsCommandInput
|
|
472
477
|
| ModifyStreamingPropertiesCommandInput
|
|
@@ -556,6 +561,7 @@ export type ServiceOutputTypes =
|
|
|
556
561
|
| ModifyAccountCommandOutput
|
|
557
562
|
| ModifyCertificateBasedAuthPropertiesCommandOutput
|
|
558
563
|
| ModifyClientPropertiesCommandOutput
|
|
564
|
+
| ModifyEndpointEncryptionModeCommandOutput
|
|
559
565
|
| ModifySamlPropertiesCommandOutput
|
|
560
566
|
| ModifySelfservicePermissionsCommandOutput
|
|
561
567
|
| ModifyStreamingPropertiesCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ModifyEndpointEncryptionModeRequest,
|
|
5
|
+
ModifyEndpointEncryptionModeResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkSpacesClientResolvedConfig,
|
|
11
|
+
} from "../WorkSpacesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ModifyEndpointEncryptionModeCommandInput
|
|
15
|
+
extends ModifyEndpointEncryptionModeRequest {}
|
|
16
|
+
export interface ModifyEndpointEncryptionModeCommandOutput
|
|
17
|
+
extends ModifyEndpointEncryptionModeResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ModifyEndpointEncryptionModeCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ModifyEndpointEncryptionModeCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ModifyEndpointEncryptionModeCommandInput,
|
|
24
|
+
ModifyEndpointEncryptionModeCommandOutput,
|
|
25
|
+
WorkSpacesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ModifyEndpointEncryptionModeCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ModifyEndpointEncryptionModeCommandInput,
|
|
33
|
+
ModifyEndpointEncryptionModeCommandOutput,
|
|
34
|
+
WorkSpacesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ModifyEndpointEncryptionModeCommand extends ModifyEndpointEncryptionModeCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ModifyEndpointEncryptionModeRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ModifyEndpointEncryptionModeCommandInput;
|
|
48
|
+
output: ModifyEndpointEncryptionModeCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -60,6 +60,7 @@ export * from "./MigrateWorkspaceCommand";
|
|
|
60
60
|
export * from "./ModifyAccountCommand";
|
|
61
61
|
export * from "./ModifyCertificateBasedAuthPropertiesCommand";
|
|
62
62
|
export * from "./ModifyClientPropertiesCommand";
|
|
63
|
+
export * from "./ModifyEndpointEncryptionModeCommand";
|
|
63
64
|
export * from "./ModifySamlPropertiesCommand";
|
|
64
65
|
export * from "./ModifySelfservicePermissionsCommand";
|
|
65
66
|
export * from "./ModifyStreamingPropertiesCommand";
|
|
@@ -1167,6 +1167,12 @@ export declare const WorkspaceDirectoryType: {
|
|
|
1167
1167
|
};
|
|
1168
1168
|
export type WorkspaceDirectoryType =
|
|
1169
1169
|
(typeof WorkspaceDirectoryType)[keyof typeof WorkspaceDirectoryType];
|
|
1170
|
+
export declare const EndpointEncryptionMode: {
|
|
1171
|
+
readonly FIPS_VALIDATED: "FIPS_VALIDATED";
|
|
1172
|
+
readonly STANDARD_TLS: "STANDARD_TLS";
|
|
1173
|
+
};
|
|
1174
|
+
export type EndpointEncryptionMode =
|
|
1175
|
+
(typeof EndpointEncryptionMode)[keyof typeof EndpointEncryptionMode];
|
|
1170
1176
|
export interface IDCConfig {
|
|
1171
1177
|
InstanceArn?: string | undefined;
|
|
1172
1178
|
ApplicationArn?: string | undefined;
|
|
@@ -1276,6 +1282,7 @@ export interface WorkspaceAccessProperties {
|
|
|
1276
1282
|
DeviceTypeChromeOs?: AccessPropertyValue | undefined;
|
|
1277
1283
|
DeviceTypeZeroClient?: AccessPropertyValue | undefined;
|
|
1278
1284
|
DeviceTypeLinux?: AccessPropertyValue | undefined;
|
|
1285
|
+
DeviceTypeWorkSpacesThinClient?: AccessPropertyValue | undefined;
|
|
1279
1286
|
}
|
|
1280
1287
|
export declare const WorkspaceType: {
|
|
1281
1288
|
readonly PERSONAL: "PERSONAL";
|
|
@@ -1301,6 +1308,7 @@ export interface WorkspaceDirectory {
|
|
|
1301
1308
|
SelfservicePermissions?: SelfservicePermissions | undefined;
|
|
1302
1309
|
SamlProperties?: SamlProperties | undefined;
|
|
1303
1310
|
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
1311
|
+
EndpointEncryptionMode?: EndpointEncryptionMode | undefined;
|
|
1304
1312
|
MicrosoftEntraConfig?: MicrosoftEntraConfig | undefined;
|
|
1305
1313
|
WorkspaceDirectoryName?: string | undefined;
|
|
1306
1314
|
WorkspaceDirectoryDescription?: string | undefined;
|
|
@@ -1636,6 +1644,11 @@ export interface ModifyClientPropertiesRequest {
|
|
|
1636
1644
|
ClientProperties: ClientProperties | undefined;
|
|
1637
1645
|
}
|
|
1638
1646
|
export interface ModifyClientPropertiesResult {}
|
|
1647
|
+
export interface ModifyEndpointEncryptionModeRequest {
|
|
1648
|
+
DirectoryId: string | undefined;
|
|
1649
|
+
EndpointEncryptionMode: EndpointEncryptionMode | undefined;
|
|
1650
|
+
}
|
|
1651
|
+
export interface ModifyEndpointEncryptionModeResponse {}
|
|
1639
1652
|
export interface ModifySamlPropertiesRequest {
|
|
1640
1653
|
ResourceId: string | undefined;
|
|
1641
1654
|
SamlProperties?: SamlProperties | undefined;
|
|
@@ -1707,12 +1720,3 @@ export interface RebootWorkspacesRequest {
|
|
|
1707
1720
|
export interface RebootWorkspacesResult {
|
|
1708
1721
|
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
1709
1722
|
}
|
|
1710
|
-
export interface RebuildRequest {
|
|
1711
|
-
WorkspaceId: string | undefined;
|
|
1712
|
-
}
|
|
1713
|
-
export interface RebuildWorkspacesRequest {
|
|
1714
|
-
RebuildWorkspaceRequests: RebuildRequest[] | undefined;
|
|
1715
|
-
}
|
|
1716
|
-
export interface RebuildWorkspacesResult {
|
|
1717
|
-
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
1718
|
-
}
|
|
@@ -17,6 +17,15 @@ import {
|
|
|
17
17
|
WorkspaceType,
|
|
18
18
|
} from "./models_0";
|
|
19
19
|
import { WorkSpacesServiceException as __BaseException } from "./WorkSpacesServiceException";
|
|
20
|
+
export interface RebuildRequest {
|
|
21
|
+
WorkspaceId: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
export interface RebuildWorkspacesRequest {
|
|
24
|
+
RebuildWorkspaceRequests: RebuildRequest[] | undefined;
|
|
25
|
+
}
|
|
26
|
+
export interface RebuildWorkspacesResult {
|
|
27
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
28
|
+
}
|
|
20
29
|
export interface RegisterWorkspaceDirectoryRequest {
|
|
21
30
|
DirectoryId?: string | undefined;
|
|
22
31
|
SubnetIds?: string[] | undefined;
|
|
@@ -251,6 +251,10 @@ import {
|
|
|
251
251
|
ModifyClientPropertiesCommandInput,
|
|
252
252
|
ModifyClientPropertiesCommandOutput,
|
|
253
253
|
} from "../commands/ModifyClientPropertiesCommand";
|
|
254
|
+
import {
|
|
255
|
+
ModifyEndpointEncryptionModeCommandInput,
|
|
256
|
+
ModifyEndpointEncryptionModeCommandOutput,
|
|
257
|
+
} from "../commands/ModifyEndpointEncryptionModeCommand";
|
|
254
258
|
import {
|
|
255
259
|
ModifySamlPropertiesCommandInput,
|
|
256
260
|
ModifySamlPropertiesCommandOutput,
|
|
@@ -603,6 +607,10 @@ export declare const se_ModifyClientPropertiesCommand: (
|
|
|
603
607
|
input: ModifyClientPropertiesCommandInput,
|
|
604
608
|
context: __SerdeContext
|
|
605
609
|
) => Promise<__HttpRequest>;
|
|
610
|
+
export declare const se_ModifyEndpointEncryptionModeCommand: (
|
|
611
|
+
input: ModifyEndpointEncryptionModeCommandInput,
|
|
612
|
+
context: __SerdeContext
|
|
613
|
+
) => Promise<__HttpRequest>;
|
|
606
614
|
export declare const se_ModifySamlPropertiesCommand: (
|
|
607
615
|
input: ModifySamlPropertiesCommandInput,
|
|
608
616
|
context: __SerdeContext
|
|
@@ -955,6 +963,10 @@ export declare const de_ModifyClientPropertiesCommand: (
|
|
|
955
963
|
output: __HttpResponse,
|
|
956
964
|
context: __SerdeContext
|
|
957
965
|
) => Promise<ModifyClientPropertiesCommandOutput>;
|
|
966
|
+
export declare const de_ModifyEndpointEncryptionModeCommand: (
|
|
967
|
+
output: __HttpResponse,
|
|
968
|
+
context: __SerdeContext
|
|
969
|
+
) => Promise<ModifyEndpointEncryptionModeCommandOutput>;
|
|
958
970
|
export declare const de_ModifySamlPropertiesCommand: (
|
|
959
971
|
output: __HttpResponse,
|
|
960
972
|
context: __SerdeContext
|
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.
|
|
4
|
+
"version": "3.763.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",
|