Skip to content

Commit 4017e73

Browse files
author
awstools
committed
feat(client-workspaces): Remove parameter EnableWorkDocs from WorkSpacesServiceModel due to end of support of Amazon WorkDocs service.
1 parent a1b3464 commit 4017e73

File tree

6 files changed

+0
-54
lines changed

6 files changed

+0
-54
lines changed

clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ export interface DescribeWorkspaceDirectoriesCommandOutput
7979
* // WorkspaceSecurityGroupId: "STRING_VALUE",
8080
* // State: "REGISTERING" || "REGISTERED" || "DEREGISTERING" || "DEREGISTERED" || "ERROR",
8181
* // WorkspaceCreationProperties: { // DefaultWorkspaceCreationProperties
82-
* // EnableWorkDocs: true || false,
8382
* // EnableInternetAccess: true || false,
8483
* // DefaultOu: "STRING_VALUE",
8584
* // CustomSecurityGroupId: "STRING_VALUE",

clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export interface ModifyWorkspaceCreationPropertiesCommandOutput
4343
* const input = { // ModifyWorkspaceCreationPropertiesRequest
4444
* ResourceId: "STRING_VALUE", // required
4545
* WorkspaceCreationProperties: { // WorkspaceCreationProperties
46-
* EnableWorkDocs: true || false,
4746
* EnableInternetAccess: true || false,
4847
* DefaultOu: "STRING_VALUE",
4948
* CustomSecurityGroupId: "STRING_VALUE",

clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ export interface RegisterWorkspaceDirectoryCommandOutput extends RegisterWorkspa
4444
* SubnetIds: [ // SubnetIds
4545
* "STRING_VALUE",
4646
* ],
47-
* EnableWorkDocs: true || false,
4847
* EnableSelfService: true || false,
4948
* Tenancy: "DEDICATED" || "SHARED",
5049
* Tags: [ // TagList

clients/client-workspaces/src/models/models_0.ts

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3305,12 +3305,6 @@ export interface DefaultImportClientBrandingAttributes {
33053305
* @public
33063306
*/
33073307
export interface DefaultWorkspaceCreationProperties {
3308-
/**
3309-
* <p>Specifies whether the directory is enabled for Amazon WorkDocs.</p>
3310-
* @public
3311-
*/
3312-
EnableWorkDocs?: boolean | undefined;
3313-
33143308
/**
33153309
* <p>Specifies whether to automatically assign an Elastic public IP address to WorkSpaces in
33163310
* this directory by default. If enabled, the Elastic public IP address allows outbound
@@ -6689,24 +6683,6 @@ export interface ModifyWorkspaceAccessPropertiesResult {}
66896683
* @public
66906684
*/
66916685
export interface WorkspaceCreationProperties {
6692-
/**
6693-
* <p>Indicates whether Amazon WorkDocs is enabled for your WorkSpaces.</p>
6694-
* <note>
6695-
* <p>If WorkDocs is already enabled for a WorkSpaces directory and you disable it, new
6696-
* WorkSpaces launched in the directory will not have WorkDocs enabled. However, WorkDocs
6697-
* remains enabled for any existing WorkSpaces, unless you either disable users' access to
6698-
* WorkDocs or you delete the WorkDocs site. To disable users' access to WorkDocs, see
6699-
* <a href="https://docs.aws.amazon.com/workdocs/latest/adminguide/inactive-user.html">Disabling Users</a> in the <i>Amazon WorkDocs Administration
6700-
* Guide</i>. To delete a WorkDocs site, see <a href="https://docs.aws.amazon.com/workdocs/latest/adminguide/manage-sites.html">Deleting a Site</a> in the
6701-
* <i>Amazon WorkDocs Administration Guide</i>.</p>
6702-
* <p>If you enable WorkDocs on a directory that already has existing WorkSpaces, the
6703-
* existing WorkSpaces and any new WorkSpaces that are launched in the directory will have
6704-
* WorkDocs enabled.</p>
6705-
* </note>
6706-
* @public
6707-
*/
6708-
EnableWorkDocs?: boolean | undefined;
6709-
67106686
/**
67116687
* <p>Indicates whether internet access is enabled for your WorkSpaces.</p>
67126688
* @public

clients/client-workspaces/src/models/models_1.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,6 @@ export interface RegisterWorkspaceDirectoryRequest {
7979
*/
8080
SubnetIds?: string[] | undefined;
8181

82-
/**
83-
* <p>Indicates whether Amazon WorkDocs is enabled or disabled. If you have enabled this
84-
* parameter and WorkDocs is not available in the Region, you will receive an
85-
* OperationNotSupportedException error. Set <code>EnableWorkDocs</code> to disabled, and try
86-
* again.</p>
87-
* @public
88-
*/
89-
EnableWorkDocs?: boolean | undefined;
90-
9182
/**
9283
* <p>Indicates whether self-service capabilities are enabled or disabled.</p>
9384
* @public

codegen/sdk-codegen/aws-models/workspaces.json

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2923,12 +2923,6 @@
29232923
"com.amazonaws.workspaces#DefaultWorkspaceCreationProperties": {
29242924
"type": "structure",
29252925
"members": {
2926-
"EnableWorkDocs": {
2927-
"target": "com.amazonaws.workspaces#BooleanObject",
2928-
"traits": {
2929-
"smithy.api#documentation": "<p>Specifies whether the directory is enabled for Amazon WorkDocs.</p>"
2930-
}
2931-
},
29322926
"EnableInternetAccess": {
29332927
"target": "com.amazonaws.workspaces#BooleanObject",
29342928
"traits": {
@@ -7933,12 +7927,6 @@
79337927
"smithy.api#documentation": "<p>The identifiers of the subnets for your virtual private cloud (VPC). Make sure that the\n subnets are in supported Availability Zones. The subnets must also be in separate\n Availability Zones. If these conditions are not met, you will receive an\n OperationNotSupportedException error.</p>"
79347928
}
79357929
},
7936-
"EnableWorkDocs": {
7937-
"target": "com.amazonaws.workspaces#BooleanObject",
7938-
"traits": {
7939-
"smithy.api#documentation": "<p>Indicates whether Amazon WorkDocs is enabled or disabled. If you have enabled this\n parameter and WorkDocs is not available in the Region, you will receive an\n OperationNotSupportedException error. Set <code>EnableWorkDocs</code> to disabled, and try\n again.</p>"
7940-
}
7941-
},
79427930
"EnableSelfService": {
79437931
"target": "com.amazonaws.workspaces#BooleanObject",
79447932
"traits": {
@@ -10471,12 +10459,6 @@
1047110459
"com.amazonaws.workspaces#WorkspaceCreationProperties": {
1047210460
"type": "structure",
1047310461
"members": {
10474-
"EnableWorkDocs": {
10475-
"target": "com.amazonaws.workspaces#BooleanObject",
10476-
"traits": {
10477-
"smithy.api#documentation": "<p>Indicates whether Amazon WorkDocs is enabled for your WorkSpaces.</p>\n <note>\n <p>If WorkDocs is already enabled for a WorkSpaces directory and you disable it, new\n WorkSpaces launched in the directory will not have WorkDocs enabled. However, WorkDocs\n remains enabled for any existing WorkSpaces, unless you either disable users' access to\n WorkDocs or you delete the WorkDocs site. To disable users' access to WorkDocs, see\n <a href=\"https://docs.aws.amazon.com/workdocs/latest/adminguide/inactive-user.html\">Disabling Users</a> in the <i>Amazon WorkDocs Administration\n Guide</i>. To delete a WorkDocs site, see <a href=\"https://docs.aws.amazon.com/workdocs/latest/adminguide/manage-sites.html\">Deleting a Site</a> in the\n <i>Amazon WorkDocs Administration Guide</i>.</p>\n <p>If you enable WorkDocs on a directory that already has existing WorkSpaces, the\n existing WorkSpaces and any new WorkSpaces that are launched in the directory will have\n WorkDocs enabled.</p>\n </note>"
10478-
}
10479-
},
1048010462
"EnableInternetAccess": {
1048110463
"target": "com.amazonaws.workspaces#BooleanObject",
1048210464
"traits": {

0 commit comments

Comments
 (0)