@aws-sdk/client-workspaces 3.637.0 → 3.639.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/dist-cjs/index.js +8 -0
- package/dist-es/models/models_0.js +6 -0
- package/dist-types/commands/DescribeWorkspaceDirectoriesCommand.d.ts +18 -2
- package/dist-types/commands/RegisterWorkspaceDirectoryCommand.d.ts +6 -1
- package/dist-types/commands/RestoreWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/RevokeIpRulesCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +87 -35
- package/dist-types/models/models_1.d.ts +35 -0
- package/dist-types/ts3.4/commands/RestoreWorkspaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeIpRulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +25 -9
- package/dist-types/ts3.4/models/models_1.d.ts +9 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -91,6 +91,7 @@ __export(src_exports, {
|
|
|
91
91
|
DescribeWorkspaceAssociationsCommand: () => DescribeWorkspaceAssociationsCommand,
|
|
92
92
|
DescribeWorkspaceBundlesCommand: () => DescribeWorkspaceBundlesCommand,
|
|
93
93
|
DescribeWorkspaceDirectoriesCommand: () => DescribeWorkspaceDirectoriesCommand,
|
|
94
|
+
DescribeWorkspaceDirectoriesFilterName: () => DescribeWorkspaceDirectoriesFilterName,
|
|
94
95
|
DescribeWorkspaceImagePermissionsCommand: () => DescribeWorkspaceImagePermissionsCommand,
|
|
95
96
|
DescribeWorkspaceImagesCommand: () => DescribeWorkspaceImagesCommand,
|
|
96
97
|
DescribeWorkspaceSnapshotsCommand: () => DescribeWorkspaceSnapshotsCommand,
|
|
@@ -946,8 +947,13 @@ var WorkSpaceApplicationState = {
|
|
|
946
947
|
var ImageAssociatedResourceType = {
|
|
947
948
|
APPLICATION: "APPLICATION"
|
|
948
949
|
};
|
|
950
|
+
var DescribeWorkspaceDirectoriesFilterName = {
|
|
951
|
+
USER_IDENTITY_TYPE: "USER_IDENTITY_TYPE",
|
|
952
|
+
WORKSPACE_TYPE: "WORKSPACE_TYPE"
|
|
953
|
+
};
|
|
949
954
|
var WorkspaceDirectoryType = {
|
|
950
955
|
AD_CONNECTOR: "AD_CONNECTOR",
|
|
956
|
+
AWS_IAM_IDENTITY_CENTER: "AWS_IAM_IDENTITY_CENTER",
|
|
951
957
|
CUSTOMER_MANAGED: "CUSTOMER_MANAGED",
|
|
952
958
|
SIMPLE_AD: "SIMPLE_AD"
|
|
953
959
|
};
|
|
@@ -990,6 +996,7 @@ var Tenancy = {
|
|
|
990
996
|
};
|
|
991
997
|
var UserIdentityType = {
|
|
992
998
|
AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE",
|
|
999
|
+
AWS_IAM_IDENTITY_CENTER: "AWS_IAM_IDENTITY_CENTER",
|
|
993
1000
|
CUSTOMER_MANAGED: "CUSTOMER_MANAGED"
|
|
994
1001
|
};
|
|
995
1002
|
var WorkspaceType = {
|
|
@@ -5217,6 +5224,7 @@ var paginateListAccountLinks = (0, import_core.createPaginator)(WorkSpacesClient
|
|
|
5217
5224
|
WorkSpaceApplicationLicenseType,
|
|
5218
5225
|
WorkSpaceApplicationState,
|
|
5219
5226
|
ImageAssociatedResourceType,
|
|
5227
|
+
DescribeWorkspaceDirectoriesFilterName,
|
|
5220
5228
|
WorkspaceDirectoryType,
|
|
5221
5229
|
SamlStatusEnum,
|
|
5222
5230
|
WorkspaceDirectoryState,
|
|
@@ -486,8 +486,13 @@ export const WorkSpaceApplicationState = {
|
|
|
486
486
|
export const ImageAssociatedResourceType = {
|
|
487
487
|
APPLICATION: "APPLICATION",
|
|
488
488
|
};
|
|
489
|
+
export const DescribeWorkspaceDirectoriesFilterName = {
|
|
490
|
+
USER_IDENTITY_TYPE: "USER_IDENTITY_TYPE",
|
|
491
|
+
WORKSPACE_TYPE: "WORKSPACE_TYPE",
|
|
492
|
+
};
|
|
489
493
|
export const WorkspaceDirectoryType = {
|
|
490
494
|
AD_CONNECTOR: "AD_CONNECTOR",
|
|
495
|
+
AWS_IAM_IDENTITY_CENTER: "AWS_IAM_IDENTITY_CENTER",
|
|
491
496
|
CUSTOMER_MANAGED: "CUSTOMER_MANAGED",
|
|
492
497
|
SIMPLE_AD: "SIMPLE_AD",
|
|
493
498
|
};
|
|
@@ -530,6 +535,7 @@ export const Tenancy = {
|
|
|
530
535
|
};
|
|
531
536
|
export const UserIdentityType = {
|
|
532
537
|
AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE",
|
|
538
|
+
AWS_IAM_IDENTITY_CENTER: "AWS_IAM_IDENTITY_CENTER",
|
|
533
539
|
CUSTOMER_MANAGED: "CUSTOMER_MANAGED",
|
|
534
540
|
};
|
|
535
541
|
export const WorkspaceType = {
|
|
@@ -43,6 +43,14 @@ declare const DescribeWorkspaceDirectoriesCommand_base: {
|
|
|
43
43
|
* ],
|
|
44
44
|
* Limit: Number("int"),
|
|
45
45
|
* NextToken: "STRING_VALUE",
|
|
46
|
+
* Filters: [ // DescribeWorkspaceDirectoriesFilterList
|
|
47
|
+
* { // DescribeWorkspaceDirectoriesFilter
|
|
48
|
+
* Name: "USER_IDENTITY_TYPE" || "WORKSPACE_TYPE", // required
|
|
49
|
+
* Values: [ // DescribeWorkspaceDirectoriesFilterValues // required
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
46
54
|
* };
|
|
47
55
|
* const command = new DescribeWorkspaceDirectoriesCommand(input);
|
|
48
56
|
* const response = await client.send(command);
|
|
@@ -61,7 +69,7 @@ declare const DescribeWorkspaceDirectoriesCommand_base: {
|
|
|
61
69
|
* // ],
|
|
62
70
|
* // CustomerUserName: "STRING_VALUE",
|
|
63
71
|
* // IamRoleId: "STRING_VALUE",
|
|
64
|
-
* // DirectoryType: "SIMPLE_AD" || "AD_CONNECTOR" || "CUSTOMER_MANAGED",
|
|
72
|
+
* // DirectoryType: "SIMPLE_AD" || "AD_CONNECTOR" || "CUSTOMER_MANAGED" || "AWS_IAM_IDENTITY_CENTER",
|
|
65
73
|
* // WorkspaceSecurityGroupId: "STRING_VALUE",
|
|
66
74
|
* // State: "REGISTERING" || "REGISTERED" || "DEREGISTERING" || "DEREGISTERED" || "ERROR",
|
|
67
75
|
* // WorkspaceCreationProperties: { // DefaultWorkspaceCreationProperties
|
|
@@ -103,10 +111,18 @@ declare const DescribeWorkspaceDirectoriesCommand_base: {
|
|
|
103
111
|
* // Status: "DISABLED" || "ENABLED",
|
|
104
112
|
* // CertificateAuthorityArn: "STRING_VALUE",
|
|
105
113
|
* // },
|
|
114
|
+
* // MicrosoftEntraConfig: { // MicrosoftEntraConfig
|
|
115
|
+
* // TenantId: "STRING_VALUE",
|
|
116
|
+
* // ApplicationConfigSecretArn: "STRING_VALUE",
|
|
117
|
+
* // },
|
|
106
118
|
* // WorkspaceDirectoryName: "STRING_VALUE",
|
|
107
119
|
* // WorkspaceDirectoryDescription: "STRING_VALUE",
|
|
108
|
-
* // UserIdentityType: "CUSTOMER_MANAGED" || "AWS_DIRECTORY_SERVICE",
|
|
120
|
+
* // UserIdentityType: "CUSTOMER_MANAGED" || "AWS_DIRECTORY_SERVICE" || "AWS_IAM_IDENTITY_CENTER",
|
|
109
121
|
* // WorkspaceType: "PERSONAL" || "POOLS",
|
|
122
|
+
* // IDCConfig: { // IDCConfig
|
|
123
|
+
* // InstanceArn: "STRING_VALUE",
|
|
124
|
+
* // ApplicationArn: "STRING_VALUE",
|
|
125
|
+
* // },
|
|
110
126
|
* // ActiveDirectoryConfig: { // ActiveDirectoryConfig
|
|
111
127
|
* // DomainName: "STRING_VALUE", // required
|
|
112
128
|
* // ServiceAccountSecretArn: "STRING_VALUE", // required
|
|
@@ -54,7 +54,12 @@ declare const RegisterWorkspaceDirectoryCommand_base: {
|
|
|
54
54
|
* ],
|
|
55
55
|
* WorkspaceDirectoryName: "STRING_VALUE",
|
|
56
56
|
* WorkspaceDirectoryDescription: "STRING_VALUE",
|
|
57
|
-
* UserIdentityType: "CUSTOMER_MANAGED" || "AWS_DIRECTORY_SERVICE",
|
|
57
|
+
* UserIdentityType: "CUSTOMER_MANAGED" || "AWS_DIRECTORY_SERVICE" || "AWS_IAM_IDENTITY_CENTER",
|
|
58
|
+
* IdcInstanceArn: "STRING_VALUE",
|
|
59
|
+
* MicrosoftEntraConfig: { // MicrosoftEntraConfig
|
|
60
|
+
* TenantId: "STRING_VALUE",
|
|
61
|
+
* ApplicationConfigSecretArn: "STRING_VALUE",
|
|
62
|
+
* },
|
|
58
63
|
* WorkspaceType: "PERSONAL" || "POOLS",
|
|
59
64
|
* ActiveDirectoryConfig: { // ActiveDirectoryConfig
|
|
60
65
|
* DomainName: "STRING_VALUE", // required
|
|
@@ -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 { RestoreWorkspaceRequest, RestoreWorkspaceResult } from "../models/
|
|
3
|
+
import { RestoreWorkspaceRequest, RestoreWorkspaceResult } from "../models/models_1";
|
|
4
4
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -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 { RevokeIpRulesRequest, RevokeIpRulesResult } from "../models/
|
|
3
|
+
import { RevokeIpRulesRequest, RevokeIpRulesResult } from "../models/models_1";
|
|
4
4
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -3747,6 +3747,34 @@ export interface DescribeWorkspaceBundlesResult {
|
|
|
3747
3747
|
*/
|
|
3748
3748
|
NextToken?: string;
|
|
3749
3749
|
}
|
|
3750
|
+
/**
|
|
3751
|
+
* @public
|
|
3752
|
+
* @enum
|
|
3753
|
+
*/
|
|
3754
|
+
export declare const DescribeWorkspaceDirectoriesFilterName: {
|
|
3755
|
+
readonly USER_IDENTITY_TYPE: "USER_IDENTITY_TYPE";
|
|
3756
|
+
readonly WORKSPACE_TYPE: "WORKSPACE_TYPE";
|
|
3757
|
+
};
|
|
3758
|
+
/**
|
|
3759
|
+
* @public
|
|
3760
|
+
*/
|
|
3761
|
+
export type DescribeWorkspaceDirectoriesFilterName = (typeof DescribeWorkspaceDirectoriesFilterName)[keyof typeof DescribeWorkspaceDirectoriesFilterName];
|
|
3762
|
+
/**
|
|
3763
|
+
* <p>Describes the filter conditions for the WorkSpaces to return.</p>
|
|
3764
|
+
* @public
|
|
3765
|
+
*/
|
|
3766
|
+
export interface DescribeWorkspaceDirectoriesFilter {
|
|
3767
|
+
/**
|
|
3768
|
+
* <p>The name of the WorkSpaces to filter.</p>
|
|
3769
|
+
* @public
|
|
3770
|
+
*/
|
|
3771
|
+
Name: DescribeWorkspaceDirectoriesFilterName | undefined;
|
|
3772
|
+
/**
|
|
3773
|
+
* <p>The values for filtering WorkSpaces</p>
|
|
3774
|
+
* @public
|
|
3775
|
+
*/
|
|
3776
|
+
Values: string[] | undefined;
|
|
3777
|
+
}
|
|
3750
3778
|
/**
|
|
3751
3779
|
* @public
|
|
3752
3780
|
*/
|
|
@@ -3773,6 +3801,11 @@ export interface DescribeWorkspaceDirectoriesRequest {
|
|
|
3773
3801
|
* @public
|
|
3774
3802
|
*/
|
|
3775
3803
|
NextToken?: string;
|
|
3804
|
+
/**
|
|
3805
|
+
* <p>The filter condition for the WorkSpaces.</p>
|
|
3806
|
+
* @public
|
|
3807
|
+
*/
|
|
3808
|
+
Filters?: DescribeWorkspaceDirectoriesFilter[];
|
|
3776
3809
|
}
|
|
3777
3810
|
/**
|
|
3778
3811
|
* @public
|
|
@@ -3780,6 +3813,7 @@ export interface DescribeWorkspaceDirectoriesRequest {
|
|
|
3780
3813
|
*/
|
|
3781
3814
|
export declare const WorkspaceDirectoryType: {
|
|
3782
3815
|
readonly AD_CONNECTOR: "AD_CONNECTOR";
|
|
3816
|
+
readonly AWS_IAM_IDENTITY_CENTER: "AWS_IAM_IDENTITY_CENTER";
|
|
3783
3817
|
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
3784
3818
|
readonly SIMPLE_AD: "SIMPLE_AD";
|
|
3785
3819
|
};
|
|
@@ -3787,6 +3821,38 @@ export declare const WorkspaceDirectoryType: {
|
|
|
3787
3821
|
* @public
|
|
3788
3822
|
*/
|
|
3789
3823
|
export type WorkspaceDirectoryType = (typeof WorkspaceDirectoryType)[keyof typeof WorkspaceDirectoryType];
|
|
3824
|
+
/**
|
|
3825
|
+
* <p>Specifies the configurations of the identity center.</p>
|
|
3826
|
+
* @public
|
|
3827
|
+
*/
|
|
3828
|
+
export interface IDCConfig {
|
|
3829
|
+
/**
|
|
3830
|
+
* <p>The Amazon Resource Name (ARN) of the identity center instance.</p>
|
|
3831
|
+
* @public
|
|
3832
|
+
*/
|
|
3833
|
+
InstanceArn?: string;
|
|
3834
|
+
/**
|
|
3835
|
+
* <p>The Amazon Resource Name (ARN) of the application.</p>
|
|
3836
|
+
* @public
|
|
3837
|
+
*/
|
|
3838
|
+
ApplicationArn?: string;
|
|
3839
|
+
}
|
|
3840
|
+
/**
|
|
3841
|
+
* <p>Specifies the configurations of the Microsoft Entra.</p>
|
|
3842
|
+
* @public
|
|
3843
|
+
*/
|
|
3844
|
+
export interface MicrosoftEntraConfig {
|
|
3845
|
+
/**
|
|
3846
|
+
* <p>The identifier of the tenant.</p>
|
|
3847
|
+
* @public
|
|
3848
|
+
*/
|
|
3849
|
+
TenantId?: string;
|
|
3850
|
+
/**
|
|
3851
|
+
* <p>The Amazon Resource Name (ARN) of the application config.</p>
|
|
3852
|
+
* @public
|
|
3853
|
+
*/
|
|
3854
|
+
ApplicationConfigSecretArn?: string;
|
|
3855
|
+
}
|
|
3790
3856
|
/**
|
|
3791
3857
|
* @public
|
|
3792
3858
|
* @enum
|
|
@@ -4028,6 +4094,7 @@ export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
|
|
|
4028
4094
|
*/
|
|
4029
4095
|
export declare const UserIdentityType: {
|
|
4030
4096
|
readonly AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE";
|
|
4097
|
+
readonly AWS_IAM_IDENTITY_CENTER: "AWS_IAM_IDENTITY_CENTER";
|
|
4031
4098
|
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
4032
4099
|
};
|
|
4033
4100
|
/**
|
|
@@ -4201,6 +4268,11 @@ export interface WorkspaceDirectory {
|
|
|
4201
4268
|
* @public
|
|
4202
4269
|
*/
|
|
4203
4270
|
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
4271
|
+
/**
|
|
4272
|
+
* <p>Specifies details about Microsoft Entra configurations.</p>
|
|
4273
|
+
* @public
|
|
4274
|
+
*/
|
|
4275
|
+
MicrosoftEntraConfig?: MicrosoftEntraConfig;
|
|
4204
4276
|
/**
|
|
4205
4277
|
* <p>The name fo the WorkSpace directory.</p>
|
|
4206
4278
|
* @public
|
|
@@ -4221,6 +4293,11 @@ export interface WorkspaceDirectory {
|
|
|
4221
4293
|
* @public
|
|
4222
4294
|
*/
|
|
4223
4295
|
WorkspaceType?: WorkspaceType;
|
|
4296
|
+
/**
|
|
4297
|
+
* <p>Specifies details about identity center configurations.</p>
|
|
4298
|
+
* @public
|
|
4299
|
+
*/
|
|
4300
|
+
IDCConfig?: IDCConfig;
|
|
4224
4301
|
/**
|
|
4225
4302
|
* <p>Information about the Active Directory config.</p>
|
|
4226
4303
|
* @public
|
|
@@ -5822,6 +5899,16 @@ export interface RegisterWorkspaceDirectoryRequest {
|
|
|
5822
5899
|
* @public
|
|
5823
5900
|
*/
|
|
5824
5901
|
UserIdentityType?: UserIdentityType;
|
|
5902
|
+
/**
|
|
5903
|
+
* <p>The Amazon Resource Name (ARN) of the identity center instance.</p>
|
|
5904
|
+
* @public
|
|
5905
|
+
*/
|
|
5906
|
+
IdcInstanceArn?: string;
|
|
5907
|
+
/**
|
|
5908
|
+
* <p>The details about Microsoft Entra config.</p>
|
|
5909
|
+
* @public
|
|
5910
|
+
*/
|
|
5911
|
+
MicrosoftEntraConfig?: MicrosoftEntraConfig;
|
|
5825
5912
|
/**
|
|
5826
5913
|
* <p>Indicates whether the directory's WorkSpace type is personal or pools.</p>
|
|
5827
5914
|
* @public
|
|
@@ -5901,38 +5988,3 @@ export interface RejectAccountLinkInvitationResult {
|
|
|
5901
5988
|
*/
|
|
5902
5989
|
AccountLink?: AccountLink;
|
|
5903
5990
|
}
|
|
5904
|
-
/**
|
|
5905
|
-
* @public
|
|
5906
|
-
*/
|
|
5907
|
-
export interface RestoreWorkspaceRequest {
|
|
5908
|
-
/**
|
|
5909
|
-
* <p>The identifier of the WorkSpace.</p>
|
|
5910
|
-
* @public
|
|
5911
|
-
*/
|
|
5912
|
-
WorkspaceId: string | undefined;
|
|
5913
|
-
}
|
|
5914
|
-
/**
|
|
5915
|
-
* @public
|
|
5916
|
-
*/
|
|
5917
|
-
export interface RestoreWorkspaceResult {
|
|
5918
|
-
}
|
|
5919
|
-
/**
|
|
5920
|
-
* @public
|
|
5921
|
-
*/
|
|
5922
|
-
export interface RevokeIpRulesRequest {
|
|
5923
|
-
/**
|
|
5924
|
-
* <p>The identifier of the group.</p>
|
|
5925
|
-
* @public
|
|
5926
|
-
*/
|
|
5927
|
-
GroupId: string | undefined;
|
|
5928
|
-
/**
|
|
5929
|
-
* <p>The rules to remove from the group.</p>
|
|
5930
|
-
* @public
|
|
5931
|
-
*/
|
|
5932
|
-
UserRules: string[] | undefined;
|
|
5933
|
-
}
|
|
5934
|
-
/**
|
|
5935
|
-
* @public
|
|
5936
|
-
*/
|
|
5937
|
-
export interface RevokeIpRulesResult {
|
|
5938
|
-
}
|
|
@@ -1,4 +1,39 @@
|
|
|
1
1
|
import { ApplicationSettingsRequest, Capacity, ConnectionAliasPermission, FailedWorkspaceChangeRequest, IpRuleItem, TimeoutSettings, WorkspacesPool } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RestoreWorkspaceRequest {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The identifier of the WorkSpace.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
WorkspaceId: string | undefined;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export interface RestoreWorkspaceResult {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface RevokeIpRulesRequest {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The identifier of the group.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
GroupId: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The rules to remove from the group.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
UserRules: string[] | undefined;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export interface RevokeIpRulesResult {
|
|
36
|
+
}
|
|
2
37
|
/**
|
|
3
38
|
* <p>Information used to start a WorkSpace.</p>
|
|
4
39
|
* @public
|
|
@@ -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 { RevokeIpRulesRequest, RevokeIpRulesResult } from "../models/
|
|
3
|
+
import { RevokeIpRulesRequest, RevokeIpRulesResult } from "../models/models_1";
|
|
4
4
|
import {
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
@@ -1108,19 +1108,39 @@ export interface DescribeWorkspaceBundlesResult {
|
|
|
1108
1108
|
Bundles?: WorkspaceBundle[];
|
|
1109
1109
|
NextToken?: string;
|
|
1110
1110
|
}
|
|
1111
|
+
export declare const DescribeWorkspaceDirectoriesFilterName: {
|
|
1112
|
+
readonly USER_IDENTITY_TYPE: "USER_IDENTITY_TYPE";
|
|
1113
|
+
readonly WORKSPACE_TYPE: "WORKSPACE_TYPE";
|
|
1114
|
+
};
|
|
1115
|
+
export type DescribeWorkspaceDirectoriesFilterName =
|
|
1116
|
+
(typeof DescribeWorkspaceDirectoriesFilterName)[keyof typeof DescribeWorkspaceDirectoriesFilterName];
|
|
1117
|
+
export interface DescribeWorkspaceDirectoriesFilter {
|
|
1118
|
+
Name: DescribeWorkspaceDirectoriesFilterName | undefined;
|
|
1119
|
+
Values: string[] | undefined;
|
|
1120
|
+
}
|
|
1111
1121
|
export interface DescribeWorkspaceDirectoriesRequest {
|
|
1112
1122
|
DirectoryIds?: string[];
|
|
1113
1123
|
WorkspaceDirectoryNames?: string[];
|
|
1114
1124
|
Limit?: number;
|
|
1115
1125
|
NextToken?: string;
|
|
1126
|
+
Filters?: DescribeWorkspaceDirectoriesFilter[];
|
|
1116
1127
|
}
|
|
1117
1128
|
export declare const WorkspaceDirectoryType: {
|
|
1118
1129
|
readonly AD_CONNECTOR: "AD_CONNECTOR";
|
|
1130
|
+
readonly AWS_IAM_IDENTITY_CENTER: "AWS_IAM_IDENTITY_CENTER";
|
|
1119
1131
|
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
1120
1132
|
readonly SIMPLE_AD: "SIMPLE_AD";
|
|
1121
1133
|
};
|
|
1122
1134
|
export type WorkspaceDirectoryType =
|
|
1123
1135
|
(typeof WorkspaceDirectoryType)[keyof typeof WorkspaceDirectoryType];
|
|
1136
|
+
export interface IDCConfig {
|
|
1137
|
+
InstanceArn?: string;
|
|
1138
|
+
ApplicationArn?: string;
|
|
1139
|
+
}
|
|
1140
|
+
export interface MicrosoftEntraConfig {
|
|
1141
|
+
TenantId?: string;
|
|
1142
|
+
ApplicationConfigSecretArn?: string;
|
|
1143
|
+
}
|
|
1124
1144
|
export declare const SamlStatusEnum: {
|
|
1125
1145
|
readonly DISABLED: "DISABLED";
|
|
1126
1146
|
readonly ENABLED: "ENABLED";
|
|
@@ -1201,6 +1221,7 @@ export declare const Tenancy: {
|
|
|
1201
1221
|
export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
|
|
1202
1222
|
export declare const UserIdentityType: {
|
|
1203
1223
|
readonly AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE";
|
|
1224
|
+
readonly AWS_IAM_IDENTITY_CENTER: "AWS_IAM_IDENTITY_CENTER";
|
|
1204
1225
|
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
1205
1226
|
};
|
|
1206
1227
|
export type UserIdentityType =
|
|
@@ -1239,10 +1260,12 @@ export interface WorkspaceDirectory {
|
|
|
1239
1260
|
SelfservicePermissions?: SelfservicePermissions;
|
|
1240
1261
|
SamlProperties?: SamlProperties;
|
|
1241
1262
|
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
1263
|
+
MicrosoftEntraConfig?: MicrosoftEntraConfig;
|
|
1242
1264
|
WorkspaceDirectoryName?: string;
|
|
1243
1265
|
WorkspaceDirectoryDescription?: string;
|
|
1244
1266
|
UserIdentityType?: UserIdentityType;
|
|
1245
1267
|
WorkspaceType?: WorkspaceType;
|
|
1268
|
+
IDCConfig?: IDCConfig;
|
|
1246
1269
|
ActiveDirectoryConfig?: ActiveDirectoryConfig;
|
|
1247
1270
|
StreamingProperties?: StreamingProperties;
|
|
1248
1271
|
ErrorMessage?: string;
|
|
@@ -1643,6 +1666,8 @@ export interface RegisterWorkspaceDirectoryRequest {
|
|
|
1643
1666
|
WorkspaceDirectoryName?: string;
|
|
1644
1667
|
WorkspaceDirectoryDescription?: string;
|
|
1645
1668
|
UserIdentityType?: UserIdentityType;
|
|
1669
|
+
IdcInstanceArn?: string;
|
|
1670
|
+
MicrosoftEntraConfig?: MicrosoftEntraConfig;
|
|
1646
1671
|
WorkspaceType?: WorkspaceType;
|
|
1647
1672
|
ActiveDirectoryConfig?: ActiveDirectoryConfig;
|
|
1648
1673
|
}
|
|
@@ -1677,12 +1702,3 @@ export interface RejectAccountLinkInvitationRequest {
|
|
|
1677
1702
|
export interface RejectAccountLinkInvitationResult {
|
|
1678
1703
|
AccountLink?: AccountLink;
|
|
1679
1704
|
}
|
|
1680
|
-
export interface RestoreWorkspaceRequest {
|
|
1681
|
-
WorkspaceId: string | undefined;
|
|
1682
|
-
}
|
|
1683
|
-
export interface RestoreWorkspaceResult {}
|
|
1684
|
-
export interface RevokeIpRulesRequest {
|
|
1685
|
-
GroupId: string | undefined;
|
|
1686
|
-
UserRules: string[] | undefined;
|
|
1687
|
-
}
|
|
1688
|
-
export interface RevokeIpRulesResult {}
|
|
@@ -7,6 +7,15 @@ import {
|
|
|
7
7
|
TimeoutSettings,
|
|
8
8
|
WorkspacesPool,
|
|
9
9
|
} from "./models_0";
|
|
10
|
+
export interface RestoreWorkspaceRequest {
|
|
11
|
+
WorkspaceId: string | undefined;
|
|
12
|
+
}
|
|
13
|
+
export interface RestoreWorkspaceResult {}
|
|
14
|
+
export interface RevokeIpRulesRequest {
|
|
15
|
+
GroupId: string | undefined;
|
|
16
|
+
UserRules: string[] | undefined;
|
|
17
|
+
}
|
|
18
|
+
export interface RevokeIpRulesResult {}
|
|
10
19
|
export interface StartRequest {
|
|
11
20
|
WorkspaceId?: string;
|
|
12
21
|
}
|
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.639.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",
|