@aws-sdk/client-workspaces 3.686.0 → 3.691.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.
|
@@ -2,7 +2,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { WorkSpacesServiceException as __BaseException } from "./WorkSpacesServiceException";
|
|
3
3
|
export interface AcceptAccountLinkInvitationRequest {
|
|
4
4
|
LinkId: string | undefined;
|
|
5
|
-
ClientToken?: string;
|
|
5
|
+
ClientToken?: string | undefined;
|
|
6
6
|
}
|
|
7
7
|
export declare const AccountLinkStatusEnum: {
|
|
8
8
|
readonly LINKED: "LINKED";
|
|
@@ -14,13 +14,13 @@ export declare const AccountLinkStatusEnum: {
|
|
|
14
14
|
export type AccountLinkStatusEnum =
|
|
15
15
|
(typeof AccountLinkStatusEnum)[keyof typeof AccountLinkStatusEnum];
|
|
16
16
|
export interface AccountLink {
|
|
17
|
-
AccountLinkId?: string;
|
|
18
|
-
AccountLinkStatus?: AccountLinkStatusEnum;
|
|
19
|
-
SourceAccountId?: string;
|
|
20
|
-
TargetAccountId?: string;
|
|
17
|
+
AccountLinkId?: string | undefined;
|
|
18
|
+
AccountLinkStatus?: AccountLinkStatusEnum | undefined;
|
|
19
|
+
SourceAccountId?: string | undefined;
|
|
20
|
+
TargetAccountId?: string | undefined;
|
|
21
21
|
}
|
|
22
22
|
export interface AcceptAccountLinkInvitationResult {
|
|
23
|
-
AccountLink?: AccountLink;
|
|
23
|
+
AccountLink?: AccountLink | undefined;
|
|
24
24
|
}
|
|
25
25
|
export declare class AccessDeniedException extends __BaseException {
|
|
26
26
|
readonly name: "AccessDeniedException";
|
|
@@ -44,7 +44,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
44
44
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
45
45
|
readonly name: "ResourceNotFoundException";
|
|
46
46
|
readonly $fault: "client";
|
|
47
|
-
ResourceId?: string;
|
|
47
|
+
ResourceId?: string | undefined;
|
|
48
48
|
constructor(
|
|
49
49
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
50
50
|
);
|
|
@@ -76,12 +76,12 @@ export declare const DedicatedTenancyModificationStateEnum: {
|
|
|
76
76
|
export type DedicatedTenancyModificationStateEnum =
|
|
77
77
|
(typeof DedicatedTenancyModificationStateEnum)[keyof typeof DedicatedTenancyModificationStateEnum];
|
|
78
78
|
export interface AccountModification {
|
|
79
|
-
ModificationState?: DedicatedTenancyModificationStateEnum;
|
|
80
|
-
DedicatedTenancySupport?: DedicatedTenancySupportResultEnum;
|
|
81
|
-
DedicatedTenancyManagementCidrRange?: string;
|
|
82
|
-
StartTime?: Date;
|
|
83
|
-
ErrorCode?: string;
|
|
84
|
-
ErrorMessage?: string;
|
|
79
|
+
ModificationState?: DedicatedTenancyModificationStateEnum | undefined;
|
|
80
|
+
DedicatedTenancySupport?: DedicatedTenancySupportResultEnum | undefined;
|
|
81
|
+
DedicatedTenancyManagementCidrRange?: string | undefined;
|
|
82
|
+
StartTime?: Date | undefined;
|
|
83
|
+
ErrorCode?: string | undefined;
|
|
84
|
+
ErrorMessage?: string | undefined;
|
|
85
85
|
}
|
|
86
86
|
export interface ActiveDirectoryConfig {
|
|
87
87
|
DomainName: string | undefined;
|
|
@@ -132,17 +132,17 @@ export declare const AssociationErrorCode: {
|
|
|
132
132
|
export type AssociationErrorCode =
|
|
133
133
|
(typeof AssociationErrorCode)[keyof typeof AssociationErrorCode];
|
|
134
134
|
export interface AssociationStateReason {
|
|
135
|
-
ErrorCode?: AssociationErrorCode;
|
|
136
|
-
ErrorMessage?: string;
|
|
135
|
+
ErrorCode?: AssociationErrorCode | undefined;
|
|
136
|
+
ErrorMessage?: string | undefined;
|
|
137
137
|
}
|
|
138
138
|
export interface ApplicationResourceAssociation {
|
|
139
|
-
ApplicationId?: string;
|
|
140
|
-
AssociatedResourceId?: string;
|
|
141
|
-
AssociatedResourceType?: ApplicationAssociatedResourceType;
|
|
142
|
-
Created?: Date;
|
|
143
|
-
LastUpdatedTime?: Date;
|
|
144
|
-
State?: AssociationState;
|
|
145
|
-
StateReason?: AssociationStateReason;
|
|
139
|
+
ApplicationId?: string | undefined;
|
|
140
|
+
AssociatedResourceId?: string | undefined;
|
|
141
|
+
AssociatedResourceType?: ApplicationAssociatedResourceType | undefined;
|
|
142
|
+
Created?: Date | undefined;
|
|
143
|
+
LastUpdatedTime?: Date | undefined;
|
|
144
|
+
State?: AssociationState | undefined;
|
|
145
|
+
StateReason?: AssociationStateReason | undefined;
|
|
146
146
|
}
|
|
147
147
|
export declare const ApplicationSettingsStatusEnum: {
|
|
148
148
|
readonly DISABLED: "DISABLED";
|
|
@@ -152,19 +152,19 @@ export type ApplicationSettingsStatusEnum =
|
|
|
152
152
|
(typeof ApplicationSettingsStatusEnum)[keyof typeof ApplicationSettingsStatusEnum];
|
|
153
153
|
export interface ApplicationSettingsRequest {
|
|
154
154
|
Status: ApplicationSettingsStatusEnum | undefined;
|
|
155
|
-
SettingsGroup?: string;
|
|
155
|
+
SettingsGroup?: string | undefined;
|
|
156
156
|
}
|
|
157
157
|
export interface ApplicationSettingsResponse {
|
|
158
158
|
Status: ApplicationSettingsStatusEnum | undefined;
|
|
159
|
-
SettingsGroup?: string;
|
|
160
|
-
S3BucketName?: string;
|
|
159
|
+
SettingsGroup?: string | undefined;
|
|
160
|
+
S3BucketName?: string | undefined;
|
|
161
161
|
}
|
|
162
162
|
export interface AssociateConnectionAliasRequest {
|
|
163
163
|
AliasId: string | undefined;
|
|
164
164
|
ResourceId: string | undefined;
|
|
165
165
|
}
|
|
166
166
|
export interface AssociateConnectionAliasResult {
|
|
167
|
-
ConnectionIdentifier?: string;
|
|
167
|
+
ConnectionIdentifier?: string | undefined;
|
|
168
168
|
}
|
|
169
169
|
export declare class InvalidParameterValuesException extends __BaseException {
|
|
170
170
|
readonly name: "InvalidParameterValuesException";
|
|
@@ -186,7 +186,7 @@ export declare class InvalidResourceStateException extends __BaseException {
|
|
|
186
186
|
export declare class OperationNotSupportedException extends __BaseException {
|
|
187
187
|
readonly name: "OperationNotSupportedException";
|
|
188
188
|
readonly $fault: "client";
|
|
189
|
-
reason?: string;
|
|
189
|
+
reason?: string | undefined;
|
|
190
190
|
constructor(
|
|
191
191
|
opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>
|
|
192
192
|
);
|
|
@@ -220,16 +220,16 @@ export declare const WorkSpaceAssociatedResourceType: {
|
|
|
220
220
|
export type WorkSpaceAssociatedResourceType =
|
|
221
221
|
(typeof WorkSpaceAssociatedResourceType)[keyof typeof WorkSpaceAssociatedResourceType];
|
|
222
222
|
export interface WorkspaceResourceAssociation {
|
|
223
|
-
AssociatedResourceId?: string;
|
|
224
|
-
AssociatedResourceType?: WorkSpaceAssociatedResourceType;
|
|
225
|
-
Created?: Date;
|
|
226
|
-
LastUpdatedTime?: Date;
|
|
227
|
-
State?: AssociationState;
|
|
228
|
-
StateReason?: AssociationStateReason;
|
|
229
|
-
WorkspaceId?: string;
|
|
223
|
+
AssociatedResourceId?: string | undefined;
|
|
224
|
+
AssociatedResourceType?: WorkSpaceAssociatedResourceType | undefined;
|
|
225
|
+
Created?: Date | undefined;
|
|
226
|
+
LastUpdatedTime?: Date | undefined;
|
|
227
|
+
State?: AssociationState | undefined;
|
|
228
|
+
StateReason?: AssociationStateReason | undefined;
|
|
229
|
+
WorkspaceId?: string | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface AssociateWorkspaceApplicationResult {
|
|
232
|
-
Association?: WorkspaceResourceAssociation;
|
|
232
|
+
Association?: WorkspaceResourceAssociation | undefined;
|
|
233
233
|
}
|
|
234
234
|
export declare class ComputeNotCompatibleException extends __BaseException {
|
|
235
235
|
readonly name: "ComputeNotCompatibleException";
|
|
@@ -268,7 +268,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
268
268
|
export declare class ResourceInUseException extends __BaseException {
|
|
269
269
|
readonly name: "ResourceInUseException";
|
|
270
270
|
readonly $fault: "client";
|
|
271
|
-
ResourceId?: string;
|
|
271
|
+
ResourceId?: string | undefined;
|
|
272
272
|
constructor(
|
|
273
273
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
274
274
|
);
|
|
@@ -288,8 +288,8 @@ export declare const AuthenticationType: {
|
|
|
288
288
|
export type AuthenticationType =
|
|
289
289
|
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
290
290
|
export interface IpRuleItem {
|
|
291
|
-
ipRule?: string;
|
|
292
|
-
ruleDesc?: string;
|
|
291
|
+
ipRule?: string | undefined;
|
|
292
|
+
ruleDesc?: string | undefined;
|
|
293
293
|
}
|
|
294
294
|
export interface AuthorizeIpRulesRequest {
|
|
295
295
|
GroupId: string | undefined;
|
|
@@ -319,7 +319,7 @@ export declare const Compute: {
|
|
|
319
319
|
};
|
|
320
320
|
export type Compute = (typeof Compute)[keyof typeof Compute];
|
|
321
321
|
export interface ComputeType {
|
|
322
|
-
Name?: Compute;
|
|
322
|
+
Name?: Compute | undefined;
|
|
323
323
|
}
|
|
324
324
|
export interface RootStorage {
|
|
325
325
|
Capacity: string | undefined;
|
|
@@ -335,27 +335,27 @@ export interface UserStorage {
|
|
|
335
335
|
Capacity: string | undefined;
|
|
336
336
|
}
|
|
337
337
|
export interface WorkspaceBundle {
|
|
338
|
-
BundleId?: string;
|
|
339
|
-
Name?: string;
|
|
340
|
-
Owner?: string;
|
|
341
|
-
Description?: string;
|
|
342
|
-
ImageId?: string;
|
|
343
|
-
RootStorage?: RootStorage;
|
|
344
|
-
UserStorage?: UserStorage;
|
|
345
|
-
ComputeType?: ComputeType;
|
|
346
|
-
LastUpdatedTime?: Date;
|
|
347
|
-
CreationTime?: Date;
|
|
348
|
-
State?: WorkspaceBundleState;
|
|
349
|
-
BundleType?: BundleType;
|
|
338
|
+
BundleId?: string | undefined;
|
|
339
|
+
Name?: string | undefined;
|
|
340
|
+
Owner?: string | undefined;
|
|
341
|
+
Description?: string | undefined;
|
|
342
|
+
ImageId?: string | undefined;
|
|
343
|
+
RootStorage?: RootStorage | undefined;
|
|
344
|
+
UserStorage?: UserStorage | undefined;
|
|
345
|
+
ComputeType?: ComputeType | undefined;
|
|
346
|
+
LastUpdatedTime?: Date | undefined;
|
|
347
|
+
CreationTime?: Date | undefined;
|
|
348
|
+
State?: WorkspaceBundleState | undefined;
|
|
349
|
+
BundleType?: BundleType | undefined;
|
|
350
350
|
}
|
|
351
351
|
export interface BundleResourceAssociation {
|
|
352
|
-
AssociatedResourceId?: string;
|
|
353
|
-
AssociatedResourceType?: BundleAssociatedResourceType;
|
|
354
|
-
BundleId?: string;
|
|
355
|
-
Created?: Date;
|
|
356
|
-
LastUpdatedTime?: Date;
|
|
357
|
-
State?: AssociationState;
|
|
358
|
-
StateReason?: AssociationStateReason;
|
|
352
|
+
AssociatedResourceId?: string | undefined;
|
|
353
|
+
AssociatedResourceType?: BundleAssociatedResourceType | undefined;
|
|
354
|
+
BundleId?: string | undefined;
|
|
355
|
+
Created?: Date | undefined;
|
|
356
|
+
LastUpdatedTime?: Date | undefined;
|
|
357
|
+
State?: AssociationState | undefined;
|
|
358
|
+
StateReason?: AssociationStateReason | undefined;
|
|
359
359
|
}
|
|
360
360
|
export interface Capacity {
|
|
361
361
|
DesiredUserSessions: number | undefined;
|
|
@@ -373,8 +373,8 @@ export declare const CertificateBasedAuthStatusEnum: {
|
|
|
373
373
|
export type CertificateBasedAuthStatusEnum =
|
|
374
374
|
(typeof CertificateBasedAuthStatusEnum)[keyof typeof CertificateBasedAuthStatusEnum];
|
|
375
375
|
export interface CertificateBasedAuthProperties {
|
|
376
|
-
Status?: CertificateBasedAuthStatusEnum;
|
|
377
|
-
CertificateAuthorityArn?: string;
|
|
376
|
+
Status?: CertificateBasedAuthStatusEnum | undefined;
|
|
377
|
+
CertificateAuthorityArn?: string | undefined;
|
|
378
378
|
}
|
|
379
379
|
export declare const ClientDeviceType: {
|
|
380
380
|
readonly DEVICE_TYPE_ANDROID: "DeviceTypeAndroid";
|
|
@@ -397,24 +397,24 @@ export declare const ReconnectEnum: {
|
|
|
397
397
|
};
|
|
398
398
|
export type ReconnectEnum = (typeof ReconnectEnum)[keyof typeof ReconnectEnum];
|
|
399
399
|
export interface ClientProperties {
|
|
400
|
-
ReconnectEnabled?: ReconnectEnum;
|
|
401
|
-
LogUploadEnabled?: LogUploadEnum;
|
|
400
|
+
ReconnectEnabled?: ReconnectEnum | undefined;
|
|
401
|
+
LogUploadEnabled?: LogUploadEnum | undefined;
|
|
402
402
|
}
|
|
403
403
|
export interface ClientPropertiesResult {
|
|
404
|
-
ResourceId?: string;
|
|
405
|
-
ClientProperties?: ClientProperties;
|
|
404
|
+
ResourceId?: string | undefined;
|
|
405
|
+
ClientProperties?: ClientProperties | undefined;
|
|
406
406
|
}
|
|
407
407
|
export interface ConnectClientAddIn {
|
|
408
|
-
AddInId?: string;
|
|
409
|
-
ResourceId?: string;
|
|
410
|
-
Name?: string;
|
|
411
|
-
URL?: string;
|
|
408
|
+
AddInId?: string | undefined;
|
|
409
|
+
ResourceId?: string | undefined;
|
|
410
|
+
Name?: string | undefined;
|
|
411
|
+
URL?: string | undefined;
|
|
412
412
|
}
|
|
413
413
|
export interface ConnectionAliasAssociation {
|
|
414
|
-
AssociationStatus?: AssociationStatus;
|
|
415
|
-
AssociatedAccountId?: string;
|
|
416
|
-
ResourceId?: string;
|
|
417
|
-
ConnectionIdentifier?: string;
|
|
414
|
+
AssociationStatus?: AssociationStatus | undefined;
|
|
415
|
+
AssociatedAccountId?: string | undefined;
|
|
416
|
+
ResourceId?: string | undefined;
|
|
417
|
+
ConnectionIdentifier?: string | undefined;
|
|
418
418
|
}
|
|
419
419
|
export declare const ConnectionAliasState: {
|
|
420
420
|
readonly CREATED: "CREATED";
|
|
@@ -424,11 +424,11 @@ export declare const ConnectionAliasState: {
|
|
|
424
424
|
export type ConnectionAliasState =
|
|
425
425
|
(typeof ConnectionAliasState)[keyof typeof ConnectionAliasState];
|
|
426
426
|
export interface ConnectionAlias {
|
|
427
|
-
ConnectionString?: string;
|
|
428
|
-
AliasId?: string;
|
|
429
|
-
State?: ConnectionAliasState;
|
|
430
|
-
OwnerAccountId?: string;
|
|
431
|
-
Associations?: ConnectionAliasAssociation[];
|
|
427
|
+
ConnectionString?: string | undefined;
|
|
428
|
+
AliasId?: string | undefined;
|
|
429
|
+
State?: ConnectionAliasState | undefined;
|
|
430
|
+
OwnerAccountId?: string | undefined;
|
|
431
|
+
Associations?: ConnectionAliasAssociation[] | undefined;
|
|
432
432
|
}
|
|
433
433
|
export interface ConnectionAliasPermission {
|
|
434
434
|
SharedAccountId: string | undefined;
|
|
@@ -443,32 +443,32 @@ export type ConnectionState =
|
|
|
443
443
|
(typeof ConnectionState)[keyof typeof ConnectionState];
|
|
444
444
|
export interface Tag {
|
|
445
445
|
Key: string | undefined;
|
|
446
|
-
Value?: string;
|
|
446
|
+
Value?: string | undefined;
|
|
447
447
|
}
|
|
448
448
|
export interface CopyWorkspaceImageRequest {
|
|
449
449
|
Name: string | undefined;
|
|
450
|
-
Description?: string;
|
|
450
|
+
Description?: string | undefined;
|
|
451
451
|
SourceImageId: string | undefined;
|
|
452
452
|
SourceRegion: string | undefined;
|
|
453
|
-
Tags?: Tag[];
|
|
453
|
+
Tags?: Tag[] | undefined;
|
|
454
454
|
}
|
|
455
455
|
export interface CopyWorkspaceImageResult {
|
|
456
|
-
ImageId?: string;
|
|
456
|
+
ImageId?: string | undefined;
|
|
457
457
|
}
|
|
458
458
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
459
459
|
readonly name: "ResourceUnavailableException";
|
|
460
460
|
readonly $fault: "client";
|
|
461
|
-
ResourceId?: string;
|
|
461
|
+
ResourceId?: string | undefined;
|
|
462
462
|
constructor(
|
|
463
463
|
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
464
464
|
);
|
|
465
465
|
}
|
|
466
466
|
export interface CreateAccountLinkInvitationRequest {
|
|
467
467
|
TargetAccountId: string | undefined;
|
|
468
|
-
ClientToken?: string;
|
|
468
|
+
ClientToken?: string | undefined;
|
|
469
469
|
}
|
|
470
470
|
export interface CreateAccountLinkInvitationResult {
|
|
471
|
-
AccountLink?: AccountLink;
|
|
471
|
+
AccountLink?: AccountLink | undefined;
|
|
472
472
|
}
|
|
473
473
|
export interface CreateConnectClientAddInRequest {
|
|
474
474
|
ResourceId: string | undefined;
|
|
@@ -476,7 +476,7 @@ export interface CreateConnectClientAddInRequest {
|
|
|
476
476
|
URL: string | undefined;
|
|
477
477
|
}
|
|
478
478
|
export interface CreateConnectClientAddInResult {
|
|
479
|
-
AddInId?: string;
|
|
479
|
+
AddInId?: string | undefined;
|
|
480
480
|
}
|
|
481
481
|
export declare class ResourceCreationFailedException extends __BaseException {
|
|
482
482
|
readonly name: "ResourceCreationFailedException";
|
|
@@ -490,19 +490,19 @@ export declare class ResourceCreationFailedException extends __BaseException {
|
|
|
490
490
|
}
|
|
491
491
|
export interface CreateConnectionAliasRequest {
|
|
492
492
|
ConnectionString: string | undefined;
|
|
493
|
-
Tags?: Tag[];
|
|
493
|
+
Tags?: Tag[] | undefined;
|
|
494
494
|
}
|
|
495
495
|
export interface CreateConnectionAliasResult {
|
|
496
|
-
AliasId?: string;
|
|
496
|
+
AliasId?: string | undefined;
|
|
497
497
|
}
|
|
498
498
|
export interface CreateIpGroupRequest {
|
|
499
499
|
GroupName: string | undefined;
|
|
500
|
-
GroupDesc?: string;
|
|
501
|
-
UserRules?: IpRuleItem[];
|
|
502
|
-
Tags?: Tag[];
|
|
500
|
+
GroupDesc?: string | undefined;
|
|
501
|
+
UserRules?: IpRuleItem[] | undefined;
|
|
502
|
+
Tags?: Tag[] | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface CreateIpGroupResult {
|
|
505
|
-
GroupId?: string;
|
|
505
|
+
GroupId?: string | undefined;
|
|
506
506
|
}
|
|
507
507
|
export declare const DataReplication: {
|
|
508
508
|
readonly NO_REPLICATION: "NO_REPLICATION";
|
|
@@ -512,19 +512,19 @@ export type DataReplication =
|
|
|
512
512
|
(typeof DataReplication)[keyof typeof DataReplication];
|
|
513
513
|
export interface StandbyWorkspace {
|
|
514
514
|
PrimaryWorkspaceId: string | undefined;
|
|
515
|
-
VolumeEncryptionKey?: string;
|
|
515
|
+
VolumeEncryptionKey?: string | undefined;
|
|
516
516
|
DirectoryId: string | undefined;
|
|
517
|
-
Tags?: Tag[];
|
|
518
|
-
DataReplication?: DataReplication;
|
|
517
|
+
Tags?: Tag[] | undefined;
|
|
518
|
+
DataReplication?: DataReplication | undefined;
|
|
519
519
|
}
|
|
520
520
|
export interface CreateStandbyWorkspacesRequest {
|
|
521
521
|
PrimaryRegion: string | undefined;
|
|
522
522
|
StandbyWorkspaces: StandbyWorkspace[] | undefined;
|
|
523
523
|
}
|
|
524
524
|
export interface FailedCreateStandbyWorkspacesRequest {
|
|
525
|
-
StandbyWorkspaceRequest?: StandbyWorkspace;
|
|
526
|
-
ErrorCode?: string;
|
|
527
|
-
ErrorMessage?: string;
|
|
525
|
+
StandbyWorkspaceRequest?: StandbyWorkspace | undefined;
|
|
526
|
+
ErrorCode?: string | undefined;
|
|
527
|
+
ErrorMessage?: string | undefined;
|
|
528
528
|
}
|
|
529
529
|
export declare const WorkspaceState: {
|
|
530
530
|
readonly ADMIN_MAINTENANCE: "ADMIN_MAINTENANCE";
|
|
@@ -548,14 +548,14 @@ export declare const WorkspaceState: {
|
|
|
548
548
|
export type WorkspaceState =
|
|
549
549
|
(typeof WorkspaceState)[keyof typeof WorkspaceState];
|
|
550
550
|
export interface PendingCreateStandbyWorkspacesRequest {
|
|
551
|
-
UserName?: string;
|
|
552
|
-
DirectoryId?: string;
|
|
553
|
-
State?: WorkspaceState;
|
|
554
|
-
WorkspaceId?: string;
|
|
551
|
+
UserName?: string | undefined;
|
|
552
|
+
DirectoryId?: string | undefined;
|
|
553
|
+
State?: WorkspaceState | undefined;
|
|
554
|
+
WorkspaceId?: string | undefined;
|
|
555
555
|
}
|
|
556
556
|
export interface CreateStandbyWorkspacesResult {
|
|
557
|
-
FailedStandbyRequests?: FailedCreateStandbyWorkspacesRequest[];
|
|
558
|
-
PendingStandbyRequests?: PendingCreateStandbyWorkspacesRequest[];
|
|
557
|
+
FailedStandbyRequests?: FailedCreateStandbyWorkspacesRequest[] | undefined;
|
|
558
|
+
PendingStandbyRequests?: PendingCreateStandbyWorkspacesRequest[] | undefined;
|
|
559
559
|
}
|
|
560
560
|
export interface CreateTagsRequest {
|
|
561
561
|
ResourceId: string | undefined;
|
|
@@ -566,10 +566,10 @@ export interface CreateUpdatedWorkspaceImageRequest {
|
|
|
566
566
|
Name: string | undefined;
|
|
567
567
|
Description: string | undefined;
|
|
568
568
|
SourceImageId: string | undefined;
|
|
569
|
-
Tags?: Tag[];
|
|
569
|
+
Tags?: Tag[] | undefined;
|
|
570
570
|
}
|
|
571
571
|
export interface CreateUpdatedWorkspaceImageResult {
|
|
572
|
-
ImageId?: string;
|
|
572
|
+
ImageId?: string | undefined;
|
|
573
573
|
}
|
|
574
574
|
export interface CreateWorkspaceBundleRequest {
|
|
575
575
|
BundleName: string | undefined;
|
|
@@ -577,17 +577,17 @@ export interface CreateWorkspaceBundleRequest {
|
|
|
577
577
|
ImageId: string | undefined;
|
|
578
578
|
ComputeType: ComputeType | undefined;
|
|
579
579
|
UserStorage: UserStorage | undefined;
|
|
580
|
-
RootStorage?: RootStorage;
|
|
581
|
-
Tags?: Tag[];
|
|
580
|
+
RootStorage?: RootStorage | undefined;
|
|
581
|
+
Tags?: Tag[] | undefined;
|
|
582
582
|
}
|
|
583
583
|
export interface CreateWorkspaceBundleResult {
|
|
584
|
-
WorkspaceBundle?: WorkspaceBundle;
|
|
584
|
+
WorkspaceBundle?: WorkspaceBundle | undefined;
|
|
585
585
|
}
|
|
586
586
|
export interface CreateWorkspaceImageRequest {
|
|
587
587
|
Name: string | undefined;
|
|
588
588
|
Description: string | undefined;
|
|
589
589
|
WorkspaceId: string | undefined;
|
|
590
|
-
Tags?: Tag[];
|
|
590
|
+
Tags?: Tag[] | undefined;
|
|
591
591
|
}
|
|
592
592
|
export declare const OperatingSystemType: {
|
|
593
593
|
readonly LINUX: "LINUX";
|
|
@@ -596,7 +596,7 @@ export declare const OperatingSystemType: {
|
|
|
596
596
|
export type OperatingSystemType =
|
|
597
597
|
(typeof OperatingSystemType)[keyof typeof OperatingSystemType];
|
|
598
598
|
export interface OperatingSystem {
|
|
599
|
-
Type?: OperatingSystemType;
|
|
599
|
+
Type?: OperatingSystemType | undefined;
|
|
600
600
|
}
|
|
601
601
|
export declare const WorkspaceImageRequiredTenancy: {
|
|
602
602
|
readonly DEDICATED: "DEDICATED";
|
|
@@ -612,14 +612,14 @@ export declare const WorkspaceImageState: {
|
|
|
612
612
|
export type WorkspaceImageState =
|
|
613
613
|
(typeof WorkspaceImageState)[keyof typeof WorkspaceImageState];
|
|
614
614
|
export interface CreateWorkspaceImageResult {
|
|
615
|
-
ImageId?: string;
|
|
616
|
-
Name?: string;
|
|
617
|
-
Description?: string;
|
|
618
|
-
OperatingSystem?: OperatingSystem;
|
|
619
|
-
State?: WorkspaceImageState;
|
|
620
|
-
RequiredTenancy?: WorkspaceImageRequiredTenancy;
|
|
621
|
-
Created?: Date;
|
|
622
|
-
OwnerAccountId?: string;
|
|
615
|
+
ImageId?: string | undefined;
|
|
616
|
+
Name?: string | undefined;
|
|
617
|
+
Description?: string | undefined;
|
|
618
|
+
OperatingSystem?: OperatingSystem | undefined;
|
|
619
|
+
State?: WorkspaceImageState | undefined;
|
|
620
|
+
RequiredTenancy?: WorkspaceImageRequiredTenancy | undefined;
|
|
621
|
+
Created?: Date | undefined;
|
|
622
|
+
OwnerAccountId?: string | undefined;
|
|
623
623
|
}
|
|
624
624
|
export declare const OperatingSystemName: {
|
|
625
625
|
readonly AMAZON_LINUX_2: "AMAZON_LINUX_2";
|
|
@@ -649,36 +649,36 @@ export declare const RunningMode: {
|
|
|
649
649
|
};
|
|
650
650
|
export type RunningMode = (typeof RunningMode)[keyof typeof RunningMode];
|
|
651
651
|
export interface WorkspaceProperties {
|
|
652
|
-
RunningMode?: RunningMode;
|
|
653
|
-
RunningModeAutoStopTimeoutInMinutes?: number;
|
|
654
|
-
RootVolumeSizeGib?: number;
|
|
655
|
-
UserVolumeSizeGib?: number;
|
|
656
|
-
ComputeTypeName?: Compute;
|
|
657
|
-
Protocols?: Protocol[];
|
|
658
|
-
OperatingSystemName?: OperatingSystemName;
|
|
652
|
+
RunningMode?: RunningMode | undefined;
|
|
653
|
+
RunningModeAutoStopTimeoutInMinutes?: number | undefined;
|
|
654
|
+
RootVolumeSizeGib?: number | undefined;
|
|
655
|
+
UserVolumeSizeGib?: number | undefined;
|
|
656
|
+
ComputeTypeName?: Compute | undefined;
|
|
657
|
+
Protocols?: Protocol[] | undefined;
|
|
658
|
+
OperatingSystemName?: OperatingSystemName | undefined;
|
|
659
659
|
}
|
|
660
660
|
export interface WorkspaceRequest {
|
|
661
661
|
DirectoryId: string | undefined;
|
|
662
662
|
UserName: string | undefined;
|
|
663
663
|
BundleId: string | undefined;
|
|
664
|
-
VolumeEncryptionKey?: string;
|
|
665
|
-
UserVolumeEncryptionEnabled?: boolean;
|
|
666
|
-
RootVolumeEncryptionEnabled?: boolean;
|
|
667
|
-
WorkspaceProperties?: WorkspaceProperties;
|
|
668
|
-
Tags?: Tag[];
|
|
669
|
-
WorkspaceName?: string;
|
|
664
|
+
VolumeEncryptionKey?: string | undefined;
|
|
665
|
+
UserVolumeEncryptionEnabled?: boolean | undefined;
|
|
666
|
+
RootVolumeEncryptionEnabled?: boolean | undefined;
|
|
667
|
+
WorkspaceProperties?: WorkspaceProperties | undefined;
|
|
668
|
+
Tags?: Tag[] | undefined;
|
|
669
|
+
WorkspaceName?: string | undefined;
|
|
670
670
|
}
|
|
671
671
|
export interface CreateWorkspacesRequest {
|
|
672
672
|
Workspaces: WorkspaceRequest[] | undefined;
|
|
673
673
|
}
|
|
674
674
|
export interface FailedCreateWorkspaceRequest {
|
|
675
|
-
WorkspaceRequest?: WorkspaceRequest;
|
|
676
|
-
ErrorCode?: string;
|
|
677
|
-
ErrorMessage?: string;
|
|
675
|
+
WorkspaceRequest?: WorkspaceRequest | undefined;
|
|
676
|
+
ErrorCode?: string | undefined;
|
|
677
|
+
ErrorMessage?: string | undefined;
|
|
678
678
|
}
|
|
679
679
|
export interface DataReplicationSettings {
|
|
680
|
-
DataReplication?: DataReplication;
|
|
681
|
-
RecoverySnapshotTime?: Date;
|
|
680
|
+
DataReplication?: DataReplication | undefined;
|
|
681
|
+
RecoverySnapshotTime?: Date | undefined;
|
|
682
682
|
}
|
|
683
683
|
export declare const ModificationResourceEnum: {
|
|
684
684
|
readonly COMPUTE_TYPE: "COMPUTE_TYPE";
|
|
@@ -694,8 +694,8 @@ export declare const ModificationStateEnum: {
|
|
|
694
694
|
export type ModificationStateEnum =
|
|
695
695
|
(typeof ModificationStateEnum)[keyof typeof ModificationStateEnum];
|
|
696
696
|
export interface ModificationState {
|
|
697
|
-
Resource?: ModificationResourceEnum;
|
|
698
|
-
State?: ModificationStateEnum;
|
|
697
|
+
Resource?: ModificationResourceEnum | undefined;
|
|
698
|
+
State?: ModificationStateEnum | undefined;
|
|
699
699
|
}
|
|
700
700
|
export declare const StandbyWorkspaceRelationshipType: {
|
|
701
701
|
readonly PRIMARY: "PRIMARY";
|
|
@@ -704,45 +704,45 @@ export declare const StandbyWorkspaceRelationshipType: {
|
|
|
704
704
|
export type StandbyWorkspaceRelationshipType =
|
|
705
705
|
(typeof StandbyWorkspaceRelationshipType)[keyof typeof StandbyWorkspaceRelationshipType];
|
|
706
706
|
export interface RelatedWorkspaceProperties {
|
|
707
|
-
WorkspaceId?: string;
|
|
708
|
-
Region?: string;
|
|
709
|
-
State?: WorkspaceState;
|
|
710
|
-
Type?: StandbyWorkspaceRelationshipType;
|
|
707
|
+
WorkspaceId?: string | undefined;
|
|
708
|
+
Region?: string | undefined;
|
|
709
|
+
State?: WorkspaceState | undefined;
|
|
710
|
+
Type?: StandbyWorkspaceRelationshipType | undefined;
|
|
711
711
|
}
|
|
712
712
|
export interface StandbyWorkspacesProperties {
|
|
713
|
-
StandbyWorkspaceId?: string;
|
|
714
|
-
DataReplication?: DataReplication;
|
|
715
|
-
RecoverySnapshotTime?: Date;
|
|
713
|
+
StandbyWorkspaceId?: string | undefined;
|
|
714
|
+
DataReplication?: DataReplication | undefined;
|
|
715
|
+
RecoverySnapshotTime?: Date | undefined;
|
|
716
716
|
}
|
|
717
717
|
export interface Workspace {
|
|
718
|
-
WorkspaceId?: string;
|
|
719
|
-
DirectoryId?: string;
|
|
720
|
-
UserName?: string;
|
|
721
|
-
IpAddress?: string;
|
|
722
|
-
State?: WorkspaceState;
|
|
723
|
-
BundleId?: string;
|
|
724
|
-
SubnetId?: string;
|
|
725
|
-
ErrorMessage?: string;
|
|
726
|
-
ErrorCode?: string;
|
|
727
|
-
ComputerName?: string;
|
|
728
|
-
VolumeEncryptionKey?: string;
|
|
729
|
-
UserVolumeEncryptionEnabled?: boolean;
|
|
730
|
-
RootVolumeEncryptionEnabled?: boolean;
|
|
731
|
-
WorkspaceName?: string;
|
|
732
|
-
WorkspaceProperties?: WorkspaceProperties;
|
|
733
|
-
ModificationStates?: ModificationState[];
|
|
734
|
-
RelatedWorkspaces?: RelatedWorkspaceProperties[];
|
|
735
|
-
DataReplicationSettings?: DataReplicationSettings;
|
|
736
|
-
StandbyWorkspacesProperties?: StandbyWorkspacesProperties[];
|
|
718
|
+
WorkspaceId?: string | undefined;
|
|
719
|
+
DirectoryId?: string | undefined;
|
|
720
|
+
UserName?: string | undefined;
|
|
721
|
+
IpAddress?: string | undefined;
|
|
722
|
+
State?: WorkspaceState | undefined;
|
|
723
|
+
BundleId?: string | undefined;
|
|
724
|
+
SubnetId?: string | undefined;
|
|
725
|
+
ErrorMessage?: string | undefined;
|
|
726
|
+
ErrorCode?: string | undefined;
|
|
727
|
+
ComputerName?: string | undefined;
|
|
728
|
+
VolumeEncryptionKey?: string | undefined;
|
|
729
|
+
UserVolumeEncryptionEnabled?: boolean | undefined;
|
|
730
|
+
RootVolumeEncryptionEnabled?: boolean | undefined;
|
|
731
|
+
WorkspaceName?: string | undefined;
|
|
732
|
+
WorkspaceProperties?: WorkspaceProperties | undefined;
|
|
733
|
+
ModificationStates?: ModificationState[] | undefined;
|
|
734
|
+
RelatedWorkspaces?: RelatedWorkspaceProperties[] | undefined;
|
|
735
|
+
DataReplicationSettings?: DataReplicationSettings | undefined;
|
|
736
|
+
StandbyWorkspacesProperties?: StandbyWorkspacesProperties[] | undefined;
|
|
737
737
|
}
|
|
738
738
|
export interface CreateWorkspacesResult {
|
|
739
|
-
FailedRequests?: FailedCreateWorkspaceRequest[];
|
|
740
|
-
PendingRequests?: Workspace[];
|
|
739
|
+
FailedRequests?: FailedCreateWorkspaceRequest[] | undefined;
|
|
740
|
+
PendingRequests?: Workspace[] | undefined;
|
|
741
741
|
}
|
|
742
742
|
export interface TimeoutSettings {
|
|
743
|
-
DisconnectTimeoutInSeconds?: number;
|
|
744
|
-
IdleDisconnectTimeoutInSeconds?: number;
|
|
745
|
-
MaxUserDurationInSeconds?: number;
|
|
743
|
+
DisconnectTimeoutInSeconds?: number | undefined;
|
|
744
|
+
IdleDisconnectTimeoutInSeconds?: number | undefined;
|
|
745
|
+
MaxUserDurationInSeconds?: number | undefined;
|
|
746
746
|
}
|
|
747
747
|
export interface CreateWorkspacesPoolRequest {
|
|
748
748
|
PoolName: string | undefined;
|
|
@@ -750,9 +750,9 @@ export interface CreateWorkspacesPoolRequest {
|
|
|
750
750
|
BundleId: string | undefined;
|
|
751
751
|
DirectoryId: string | undefined;
|
|
752
752
|
Capacity: Capacity | undefined;
|
|
753
|
-
Tags?: Tag[];
|
|
754
|
-
ApplicationSettings?: ApplicationSettingsRequest;
|
|
755
|
-
TimeoutSettings?: TimeoutSettings;
|
|
753
|
+
Tags?: Tag[] | undefined;
|
|
754
|
+
ApplicationSettings?: ApplicationSettingsRequest | undefined;
|
|
755
|
+
TimeoutSettings?: TimeoutSettings | undefined;
|
|
756
756
|
}
|
|
757
757
|
export declare const WorkspacesPoolErrorCode: {
|
|
758
758
|
readonly BUNDLE_NOT_FOUND: "BUNDLE_NOT_FOUND";
|
|
@@ -799,8 +799,8 @@ export declare const WorkspacesPoolErrorCode: {
|
|
|
799
799
|
export type WorkspacesPoolErrorCode =
|
|
800
800
|
(typeof WorkspacesPoolErrorCode)[keyof typeof WorkspacesPoolErrorCode];
|
|
801
801
|
export interface WorkspacesPoolError {
|
|
802
|
-
ErrorCode?: WorkspacesPoolErrorCode;
|
|
803
|
-
ErrorMessage?: string;
|
|
802
|
+
ErrorCode?: WorkspacesPoolErrorCode | undefined;
|
|
803
|
+
ErrorMessage?: string | undefined;
|
|
804
804
|
}
|
|
805
805
|
export declare const WorkspacesPoolState: {
|
|
806
806
|
readonly CREATING: "CREATING";
|
|
@@ -818,17 +818,17 @@ export interface WorkspacesPool {
|
|
|
818
818
|
PoolArn: string | undefined;
|
|
819
819
|
CapacityStatus: CapacityStatus | undefined;
|
|
820
820
|
PoolName: string | undefined;
|
|
821
|
-
Description?: string;
|
|
821
|
+
Description?: string | undefined;
|
|
822
822
|
State: WorkspacesPoolState | undefined;
|
|
823
823
|
CreatedAt: Date | undefined;
|
|
824
824
|
BundleId: string | undefined;
|
|
825
825
|
DirectoryId: string | undefined;
|
|
826
|
-
Errors?: WorkspacesPoolError[];
|
|
827
|
-
ApplicationSettings?: ApplicationSettingsResponse;
|
|
828
|
-
TimeoutSettings?: TimeoutSettings;
|
|
826
|
+
Errors?: WorkspacesPoolError[] | undefined;
|
|
827
|
+
ApplicationSettings?: ApplicationSettingsResponse | undefined;
|
|
828
|
+
TimeoutSettings?: TimeoutSettings | undefined;
|
|
829
829
|
}
|
|
830
830
|
export interface CreateWorkspacesPoolResult {
|
|
831
|
-
WorkspacesPool?: WorkspacesPool;
|
|
831
|
+
WorkspacesPool?: WorkspacesPool | undefined;
|
|
832
832
|
}
|
|
833
833
|
export declare const DedicatedTenancyAccountType: {
|
|
834
834
|
readonly SOURCE_ACCOUNT: "SOURCE_ACCOUNT";
|
|
@@ -842,27 +842,27 @@ export declare const DedicatedTenancySupportEnum: {
|
|
|
842
842
|
export type DedicatedTenancySupportEnum =
|
|
843
843
|
(typeof DedicatedTenancySupportEnum)[keyof typeof DedicatedTenancySupportEnum];
|
|
844
844
|
export interface DefaultClientBrandingAttributes {
|
|
845
|
-
LogoUrl?: string;
|
|
846
|
-
SupportEmail?: string;
|
|
847
|
-
SupportLink?: string;
|
|
848
|
-
ForgotPasswordLink?: string;
|
|
849
|
-
LoginMessage?: Record<string, string
|
|
845
|
+
LogoUrl?: string | undefined;
|
|
846
|
+
SupportEmail?: string | undefined;
|
|
847
|
+
SupportLink?: string | undefined;
|
|
848
|
+
ForgotPasswordLink?: string | undefined;
|
|
849
|
+
LoginMessage?: Record<string, string> | undefined;
|
|
850
850
|
}
|
|
851
851
|
export interface DefaultImportClientBrandingAttributes {
|
|
852
|
-
Logo?: Uint8Array;
|
|
853
|
-
SupportEmail?: string;
|
|
854
|
-
SupportLink?: string;
|
|
855
|
-
ForgotPasswordLink?: string;
|
|
856
|
-
LoginMessage?: Record<string, string
|
|
852
|
+
Logo?: Uint8Array | undefined;
|
|
853
|
+
SupportEmail?: string | undefined;
|
|
854
|
+
SupportLink?: string | undefined;
|
|
855
|
+
ForgotPasswordLink?: string | undefined;
|
|
856
|
+
LoginMessage?: Record<string, string> | undefined;
|
|
857
857
|
}
|
|
858
858
|
export interface DefaultWorkspaceCreationProperties {
|
|
859
|
-
EnableWorkDocs?: boolean;
|
|
860
|
-
EnableInternetAccess?: boolean;
|
|
861
|
-
DefaultOu?: string;
|
|
862
|
-
CustomSecurityGroupId?: string;
|
|
863
|
-
UserEnabledAsLocalAdministrator?: boolean;
|
|
864
|
-
EnableMaintenanceMode?: boolean;
|
|
865
|
-
InstanceIamRoleArn?: string;
|
|
859
|
+
EnableWorkDocs?: boolean | undefined;
|
|
860
|
+
EnableInternetAccess?: boolean | undefined;
|
|
861
|
+
DefaultOu?: string | undefined;
|
|
862
|
+
CustomSecurityGroupId?: string | undefined;
|
|
863
|
+
UserEnabledAsLocalAdministrator?: boolean | undefined;
|
|
864
|
+
EnableMaintenanceMode?: boolean | undefined;
|
|
865
|
+
InstanceIamRoleArn?: string | undefined;
|
|
866
866
|
}
|
|
867
867
|
export declare const DeletableCertificateBasedAuthProperty: {
|
|
868
868
|
readonly CERTIFICATE_BASED_AUTH_PROPERTIES_CERTIFICATE_AUTHORITY_ARN: "CERTIFICATE_BASED_AUTH_PROPERTIES_CERTIFICATE_AUTHORITY_ARN";
|
|
@@ -877,10 +877,10 @@ export type DeletableSamlProperty =
|
|
|
877
877
|
(typeof DeletableSamlProperty)[keyof typeof DeletableSamlProperty];
|
|
878
878
|
export interface DeleteAccountLinkInvitationRequest {
|
|
879
879
|
LinkId: string | undefined;
|
|
880
|
-
ClientToken?: string;
|
|
880
|
+
ClientToken?: string | undefined;
|
|
881
881
|
}
|
|
882
882
|
export interface DeleteAccountLinkInvitationResult {
|
|
883
|
-
AccountLink?: AccountLink;
|
|
883
|
+
AccountLink?: AccountLink | undefined;
|
|
884
884
|
}
|
|
885
885
|
export interface DeleteClientBrandingRequest {
|
|
886
886
|
ResourceId: string | undefined;
|
|
@@ -906,7 +906,7 @@ export interface DeleteTagsRequest {
|
|
|
906
906
|
}
|
|
907
907
|
export interface DeleteTagsResult {}
|
|
908
908
|
export interface DeleteWorkspaceBundleRequest {
|
|
909
|
-
BundleId?: string;
|
|
909
|
+
BundleId?: string | undefined;
|
|
910
910
|
}
|
|
911
911
|
export interface DeleteWorkspaceBundleResult {}
|
|
912
912
|
export interface DeleteWorkspaceImageRequest {
|
|
@@ -915,13 +915,13 @@ export interface DeleteWorkspaceImageRequest {
|
|
|
915
915
|
export interface DeleteWorkspaceImageResult {}
|
|
916
916
|
export interface DeployWorkspaceApplicationsRequest {
|
|
917
917
|
WorkspaceId: string | undefined;
|
|
918
|
-
Force?: boolean;
|
|
918
|
+
Force?: boolean | undefined;
|
|
919
919
|
}
|
|
920
920
|
export interface WorkSpaceApplicationDeployment {
|
|
921
|
-
Associations?: WorkspaceResourceAssociation[];
|
|
921
|
+
Associations?: WorkspaceResourceAssociation[] | undefined;
|
|
922
922
|
}
|
|
923
923
|
export interface DeployWorkspaceApplicationsResult {
|
|
924
|
-
Deployment?: WorkSpaceApplicationDeployment;
|
|
924
|
+
Deployment?: WorkSpaceApplicationDeployment | undefined;
|
|
925
925
|
}
|
|
926
926
|
export interface DeregisterWorkspaceDirectoryRequest {
|
|
927
927
|
DirectoryId: string | undefined;
|
|
@@ -929,26 +929,26 @@ export interface DeregisterWorkspaceDirectoryRequest {
|
|
|
929
929
|
export interface DeregisterWorkspaceDirectoryResult {}
|
|
930
930
|
export interface DescribeAccountRequest {}
|
|
931
931
|
export interface DescribeAccountResult {
|
|
932
|
-
DedicatedTenancySupport?: DedicatedTenancySupportResultEnum;
|
|
933
|
-
DedicatedTenancyManagementCidrRange?: string;
|
|
934
|
-
DedicatedTenancyAccountType?: DedicatedTenancyAccountType;
|
|
932
|
+
DedicatedTenancySupport?: DedicatedTenancySupportResultEnum | undefined;
|
|
933
|
+
DedicatedTenancyManagementCidrRange?: string | undefined;
|
|
934
|
+
DedicatedTenancyAccountType?: DedicatedTenancyAccountType | undefined;
|
|
935
935
|
}
|
|
936
936
|
export interface DescribeAccountModificationsRequest {
|
|
937
|
-
NextToken?: string;
|
|
937
|
+
NextToken?: string | undefined;
|
|
938
938
|
}
|
|
939
939
|
export interface DescribeAccountModificationsResult {
|
|
940
|
-
AccountModifications?: AccountModification[];
|
|
941
|
-
NextToken?: string;
|
|
940
|
+
AccountModifications?: AccountModification[] | undefined;
|
|
941
|
+
NextToken?: string | undefined;
|
|
942
942
|
}
|
|
943
943
|
export interface DescribeApplicationAssociationsRequest {
|
|
944
|
-
MaxResults?: number;
|
|
945
|
-
NextToken?: string;
|
|
944
|
+
MaxResults?: number | undefined;
|
|
945
|
+
NextToken?: string | undefined;
|
|
946
946
|
ApplicationId: string | undefined;
|
|
947
947
|
AssociatedResourceTypes: ApplicationAssociatedResourceType[] | undefined;
|
|
948
948
|
}
|
|
949
949
|
export interface DescribeApplicationAssociationsResult {
|
|
950
|
-
Associations?: ApplicationResourceAssociation[];
|
|
951
|
-
NextToken?: string;
|
|
950
|
+
Associations?: ApplicationResourceAssociation[] | undefined;
|
|
951
|
+
NextToken?: string | undefined;
|
|
952
952
|
}
|
|
953
953
|
export declare const WorkSpaceApplicationLicenseType: {
|
|
954
954
|
readonly LICENSED: "LICENSED";
|
|
@@ -957,13 +957,13 @@ export declare const WorkSpaceApplicationLicenseType: {
|
|
|
957
957
|
export type WorkSpaceApplicationLicenseType =
|
|
958
958
|
(typeof WorkSpaceApplicationLicenseType)[keyof typeof WorkSpaceApplicationLicenseType];
|
|
959
959
|
export interface DescribeApplicationsRequest {
|
|
960
|
-
ApplicationIds?: string[];
|
|
961
|
-
ComputeTypeNames?: Compute[];
|
|
962
|
-
LicenseType?: WorkSpaceApplicationLicenseType;
|
|
963
|
-
OperatingSystemNames?: OperatingSystemName[];
|
|
964
|
-
Owner?: string;
|
|
965
|
-
MaxResults?: number;
|
|
966
|
-
NextToken?: string;
|
|
960
|
+
ApplicationIds?: string[] | undefined;
|
|
961
|
+
ComputeTypeNames?: Compute[] | undefined;
|
|
962
|
+
LicenseType?: WorkSpaceApplicationLicenseType | undefined;
|
|
963
|
+
OperatingSystemNames?: OperatingSystemName[] | undefined;
|
|
964
|
+
Owner?: string | undefined;
|
|
965
|
+
MaxResults?: number | undefined;
|
|
966
|
+
NextToken?: string | undefined;
|
|
967
967
|
}
|
|
968
968
|
export declare const WorkSpaceApplicationState: {
|
|
969
969
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -974,81 +974,81 @@ export declare const WorkSpaceApplicationState: {
|
|
|
974
974
|
export type WorkSpaceApplicationState =
|
|
975
975
|
(typeof WorkSpaceApplicationState)[keyof typeof WorkSpaceApplicationState];
|
|
976
976
|
export interface WorkSpaceApplication {
|
|
977
|
-
ApplicationId?: string;
|
|
978
|
-
Created?: Date;
|
|
979
|
-
Description?: string;
|
|
980
|
-
LicenseType?: WorkSpaceApplicationLicenseType;
|
|
981
|
-
Name?: string;
|
|
982
|
-
Owner?: string;
|
|
983
|
-
State?: WorkSpaceApplicationState;
|
|
984
|
-
SupportedComputeTypeNames?: Compute[];
|
|
985
|
-
SupportedOperatingSystemNames?: OperatingSystemName[];
|
|
977
|
+
ApplicationId?: string | undefined;
|
|
978
|
+
Created?: Date | undefined;
|
|
979
|
+
Description?: string | undefined;
|
|
980
|
+
LicenseType?: WorkSpaceApplicationLicenseType | undefined;
|
|
981
|
+
Name?: string | undefined;
|
|
982
|
+
Owner?: string | undefined;
|
|
983
|
+
State?: WorkSpaceApplicationState | undefined;
|
|
984
|
+
SupportedComputeTypeNames?: Compute[] | undefined;
|
|
985
|
+
SupportedOperatingSystemNames?: OperatingSystemName[] | undefined;
|
|
986
986
|
}
|
|
987
987
|
export interface DescribeApplicationsResult {
|
|
988
|
-
Applications?: WorkSpaceApplication[];
|
|
989
|
-
NextToken?: string;
|
|
988
|
+
Applications?: WorkSpaceApplication[] | undefined;
|
|
989
|
+
NextToken?: string | undefined;
|
|
990
990
|
}
|
|
991
991
|
export interface DescribeBundleAssociationsRequest {
|
|
992
992
|
BundleId: string | undefined;
|
|
993
993
|
AssociatedResourceTypes: BundleAssociatedResourceType[] | undefined;
|
|
994
994
|
}
|
|
995
995
|
export interface DescribeBundleAssociationsResult {
|
|
996
|
-
Associations?: BundleResourceAssociation[];
|
|
996
|
+
Associations?: BundleResourceAssociation[] | undefined;
|
|
997
997
|
}
|
|
998
998
|
export interface DescribeClientBrandingRequest {
|
|
999
999
|
ResourceId: string | undefined;
|
|
1000
1000
|
}
|
|
1001
1001
|
export interface IosClientBrandingAttributes {
|
|
1002
|
-
LogoUrl?: string;
|
|
1003
|
-
Logo2xUrl?: string;
|
|
1004
|
-
Logo3xUrl?: string;
|
|
1005
|
-
SupportEmail?: string;
|
|
1006
|
-
SupportLink?: string;
|
|
1007
|
-
ForgotPasswordLink?: string;
|
|
1008
|
-
LoginMessage?: Record<string, string
|
|
1002
|
+
LogoUrl?: string | undefined;
|
|
1003
|
+
Logo2xUrl?: string | undefined;
|
|
1004
|
+
Logo3xUrl?: string | undefined;
|
|
1005
|
+
SupportEmail?: string | undefined;
|
|
1006
|
+
SupportLink?: string | undefined;
|
|
1007
|
+
ForgotPasswordLink?: string | undefined;
|
|
1008
|
+
LoginMessage?: Record<string, string> | undefined;
|
|
1009
1009
|
}
|
|
1010
1010
|
export interface DescribeClientBrandingResult {
|
|
1011
|
-
DeviceTypeWindows?: DefaultClientBrandingAttributes;
|
|
1012
|
-
DeviceTypeOsx?: DefaultClientBrandingAttributes;
|
|
1013
|
-
DeviceTypeAndroid?: DefaultClientBrandingAttributes;
|
|
1014
|
-
DeviceTypeIos?: IosClientBrandingAttributes;
|
|
1015
|
-
DeviceTypeLinux?: DefaultClientBrandingAttributes;
|
|
1016
|
-
DeviceTypeWeb?: DefaultClientBrandingAttributes;
|
|
1011
|
+
DeviceTypeWindows?: DefaultClientBrandingAttributes | undefined;
|
|
1012
|
+
DeviceTypeOsx?: DefaultClientBrandingAttributes | undefined;
|
|
1013
|
+
DeviceTypeAndroid?: DefaultClientBrandingAttributes | undefined;
|
|
1014
|
+
DeviceTypeIos?: IosClientBrandingAttributes | undefined;
|
|
1015
|
+
DeviceTypeLinux?: DefaultClientBrandingAttributes | undefined;
|
|
1016
|
+
DeviceTypeWeb?: DefaultClientBrandingAttributes | undefined;
|
|
1017
1017
|
}
|
|
1018
1018
|
export interface DescribeClientPropertiesRequest {
|
|
1019
1019
|
ResourceIds: string[] | undefined;
|
|
1020
1020
|
}
|
|
1021
1021
|
export interface DescribeClientPropertiesResult {
|
|
1022
|
-
ClientPropertiesList?: ClientPropertiesResult[];
|
|
1022
|
+
ClientPropertiesList?: ClientPropertiesResult[] | undefined;
|
|
1023
1023
|
}
|
|
1024
1024
|
export interface DescribeConnectClientAddInsRequest {
|
|
1025
1025
|
ResourceId: string | undefined;
|
|
1026
|
-
NextToken?: string;
|
|
1027
|
-
MaxResults?: number;
|
|
1026
|
+
NextToken?: string | undefined;
|
|
1027
|
+
MaxResults?: number | undefined;
|
|
1028
1028
|
}
|
|
1029
1029
|
export interface DescribeConnectClientAddInsResult {
|
|
1030
|
-
AddIns?: ConnectClientAddIn[];
|
|
1031
|
-
NextToken?: string;
|
|
1030
|
+
AddIns?: ConnectClientAddIn[] | undefined;
|
|
1031
|
+
NextToken?: string | undefined;
|
|
1032
1032
|
}
|
|
1033
1033
|
export interface DescribeConnectionAliasesRequest {
|
|
1034
|
-
AliasIds?: string[];
|
|
1035
|
-
ResourceId?: string;
|
|
1036
|
-
Limit?: number;
|
|
1037
|
-
NextToken?: string;
|
|
1034
|
+
AliasIds?: string[] | undefined;
|
|
1035
|
+
ResourceId?: string | undefined;
|
|
1036
|
+
Limit?: number | undefined;
|
|
1037
|
+
NextToken?: string | undefined;
|
|
1038
1038
|
}
|
|
1039
1039
|
export interface DescribeConnectionAliasesResult {
|
|
1040
|
-
ConnectionAliases?: ConnectionAlias[];
|
|
1041
|
-
NextToken?: string;
|
|
1040
|
+
ConnectionAliases?: ConnectionAlias[] | undefined;
|
|
1041
|
+
NextToken?: string | undefined;
|
|
1042
1042
|
}
|
|
1043
1043
|
export interface DescribeConnectionAliasPermissionsRequest {
|
|
1044
1044
|
AliasId: string | undefined;
|
|
1045
|
-
NextToken?: string;
|
|
1046
|
-
MaxResults?: number;
|
|
1045
|
+
NextToken?: string | undefined;
|
|
1046
|
+
MaxResults?: number | undefined;
|
|
1047
1047
|
}
|
|
1048
1048
|
export interface DescribeConnectionAliasPermissionsResult {
|
|
1049
|
-
AliasId?: string;
|
|
1050
|
-
ConnectionAliasPermissions?: ConnectionAliasPermission[];
|
|
1051
|
-
NextToken?: string;
|
|
1049
|
+
AliasId?: string | undefined;
|
|
1050
|
+
ConnectionAliasPermissions?: ConnectionAliasPermission[] | undefined;
|
|
1051
|
+
NextToken?: string | undefined;
|
|
1052
1052
|
}
|
|
1053
1053
|
export declare const ImageAssociatedResourceType: {
|
|
1054
1054
|
readonly APPLICATION: "APPLICATION";
|
|
@@ -1060,53 +1060,53 @@ export interface DescribeImageAssociationsRequest {
|
|
|
1060
1060
|
AssociatedResourceTypes: ImageAssociatedResourceType[] | undefined;
|
|
1061
1061
|
}
|
|
1062
1062
|
export interface ImageResourceAssociation {
|
|
1063
|
-
AssociatedResourceId?: string;
|
|
1064
|
-
AssociatedResourceType?: ImageAssociatedResourceType;
|
|
1065
|
-
Created?: Date;
|
|
1066
|
-
LastUpdatedTime?: Date;
|
|
1067
|
-
ImageId?: string;
|
|
1068
|
-
State?: AssociationState;
|
|
1069
|
-
StateReason?: AssociationStateReason;
|
|
1063
|
+
AssociatedResourceId?: string | undefined;
|
|
1064
|
+
AssociatedResourceType?: ImageAssociatedResourceType | undefined;
|
|
1065
|
+
Created?: Date | undefined;
|
|
1066
|
+
LastUpdatedTime?: Date | undefined;
|
|
1067
|
+
ImageId?: string | undefined;
|
|
1068
|
+
State?: AssociationState | undefined;
|
|
1069
|
+
StateReason?: AssociationStateReason | undefined;
|
|
1070
1070
|
}
|
|
1071
1071
|
export interface DescribeImageAssociationsResult {
|
|
1072
|
-
Associations?: ImageResourceAssociation[];
|
|
1072
|
+
Associations?: ImageResourceAssociation[] | undefined;
|
|
1073
1073
|
}
|
|
1074
1074
|
export interface DescribeIpGroupsRequest {
|
|
1075
|
-
GroupIds?: string[];
|
|
1076
|
-
NextToken?: string;
|
|
1077
|
-
MaxResults?: number;
|
|
1075
|
+
GroupIds?: string[] | undefined;
|
|
1076
|
+
NextToken?: string | undefined;
|
|
1077
|
+
MaxResults?: number | undefined;
|
|
1078
1078
|
}
|
|
1079
1079
|
export interface WorkspacesIpGroup {
|
|
1080
|
-
groupId?: string;
|
|
1081
|
-
groupName?: string;
|
|
1082
|
-
groupDesc?: string;
|
|
1083
|
-
userRules?: IpRuleItem[];
|
|
1080
|
+
groupId?: string | undefined;
|
|
1081
|
+
groupName?: string | undefined;
|
|
1082
|
+
groupDesc?: string | undefined;
|
|
1083
|
+
userRules?: IpRuleItem[] | undefined;
|
|
1084
1084
|
}
|
|
1085
1085
|
export interface DescribeIpGroupsResult {
|
|
1086
|
-
Result?: WorkspacesIpGroup[];
|
|
1087
|
-
NextToken?: string;
|
|
1086
|
+
Result?: WorkspacesIpGroup[] | undefined;
|
|
1087
|
+
NextToken?: string | undefined;
|
|
1088
1088
|
}
|
|
1089
1089
|
export interface DescribeTagsRequest {
|
|
1090
1090
|
ResourceId: string | undefined;
|
|
1091
1091
|
}
|
|
1092
1092
|
export interface DescribeTagsResult {
|
|
1093
|
-
TagList?: Tag[];
|
|
1093
|
+
TagList?: Tag[] | undefined;
|
|
1094
1094
|
}
|
|
1095
1095
|
export interface DescribeWorkspaceAssociationsRequest {
|
|
1096
1096
|
WorkspaceId: string | undefined;
|
|
1097
1097
|
AssociatedResourceTypes: WorkSpaceAssociatedResourceType[] | undefined;
|
|
1098
1098
|
}
|
|
1099
1099
|
export interface DescribeWorkspaceAssociationsResult {
|
|
1100
|
-
Associations?: WorkspaceResourceAssociation[];
|
|
1100
|
+
Associations?: WorkspaceResourceAssociation[] | undefined;
|
|
1101
1101
|
}
|
|
1102
1102
|
export interface DescribeWorkspaceBundlesRequest {
|
|
1103
|
-
BundleIds?: string[];
|
|
1104
|
-
Owner?: string;
|
|
1105
|
-
NextToken?: string;
|
|
1103
|
+
BundleIds?: string[] | undefined;
|
|
1104
|
+
Owner?: string | undefined;
|
|
1105
|
+
NextToken?: string | undefined;
|
|
1106
1106
|
}
|
|
1107
1107
|
export interface DescribeWorkspaceBundlesResult {
|
|
1108
|
-
Bundles?: WorkspaceBundle[];
|
|
1109
|
-
NextToken?: string;
|
|
1108
|
+
Bundles?: WorkspaceBundle[] | undefined;
|
|
1109
|
+
NextToken?: string | undefined;
|
|
1110
1110
|
}
|
|
1111
1111
|
export declare const DescribeWorkspaceDirectoriesFilterName: {
|
|
1112
1112
|
readonly USER_IDENTITY_TYPE: "USER_IDENTITY_TYPE";
|
|
@@ -1119,11 +1119,11 @@ export interface DescribeWorkspaceDirectoriesFilter {
|
|
|
1119
1119
|
Values: string[] | undefined;
|
|
1120
1120
|
}
|
|
1121
1121
|
export interface DescribeWorkspaceDirectoriesRequest {
|
|
1122
|
-
DirectoryIds?: string[];
|
|
1123
|
-
WorkspaceDirectoryNames?: string[];
|
|
1124
|
-
Limit?: number;
|
|
1125
|
-
NextToken?: string;
|
|
1126
|
-
Filters?: DescribeWorkspaceDirectoriesFilter[];
|
|
1122
|
+
DirectoryIds?: string[] | undefined;
|
|
1123
|
+
WorkspaceDirectoryNames?: string[] | undefined;
|
|
1124
|
+
Limit?: number | undefined;
|
|
1125
|
+
NextToken?: string | undefined;
|
|
1126
|
+
Filters?: DescribeWorkspaceDirectoriesFilter[] | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
export declare const WorkspaceDirectoryType: {
|
|
1129
1129
|
readonly AD_CONNECTOR: "AD_CONNECTOR";
|
|
@@ -1134,12 +1134,12 @@ export declare const WorkspaceDirectoryType: {
|
|
|
1134
1134
|
export type WorkspaceDirectoryType =
|
|
1135
1135
|
(typeof WorkspaceDirectoryType)[keyof typeof WorkspaceDirectoryType];
|
|
1136
1136
|
export interface IDCConfig {
|
|
1137
|
-
InstanceArn?: string;
|
|
1138
|
-
ApplicationArn?: string;
|
|
1137
|
+
InstanceArn?: string | undefined;
|
|
1138
|
+
ApplicationArn?: string | undefined;
|
|
1139
1139
|
}
|
|
1140
1140
|
export interface MicrosoftEntraConfig {
|
|
1141
|
-
TenantId?: string;
|
|
1142
|
-
ApplicationConfigSecretArn?: string;
|
|
1141
|
+
TenantId?: string | undefined;
|
|
1142
|
+
ApplicationConfigSecretArn?: string | undefined;
|
|
1143
1143
|
}
|
|
1144
1144
|
export declare const SamlStatusEnum: {
|
|
1145
1145
|
readonly DISABLED: "DISABLED";
|
|
@@ -1149,16 +1149,16 @@ export declare const SamlStatusEnum: {
|
|
|
1149
1149
|
export type SamlStatusEnum =
|
|
1150
1150
|
(typeof SamlStatusEnum)[keyof typeof SamlStatusEnum];
|
|
1151
1151
|
export interface SamlProperties {
|
|
1152
|
-
Status?: SamlStatusEnum;
|
|
1153
|
-
UserAccessUrl?: string;
|
|
1154
|
-
RelayStateParameterName?: string;
|
|
1152
|
+
Status?: SamlStatusEnum | undefined;
|
|
1153
|
+
UserAccessUrl?: string | undefined;
|
|
1154
|
+
RelayStateParameterName?: string | undefined;
|
|
1155
1155
|
}
|
|
1156
1156
|
export interface SelfservicePermissions {
|
|
1157
|
-
RestartWorkspace?: ReconnectEnum;
|
|
1158
|
-
IncreaseVolumeSize?: ReconnectEnum;
|
|
1159
|
-
ChangeComputeType?: ReconnectEnum;
|
|
1160
|
-
SwitchRunningMode?: ReconnectEnum;
|
|
1161
|
-
RebuildWorkspace?: ReconnectEnum;
|
|
1157
|
+
RestartWorkspace?: ReconnectEnum | undefined;
|
|
1158
|
+
IncreaseVolumeSize?: ReconnectEnum | undefined;
|
|
1159
|
+
ChangeComputeType?: ReconnectEnum | undefined;
|
|
1160
|
+
SwitchRunningMode?: ReconnectEnum | undefined;
|
|
1161
|
+
RebuildWorkspace?: ReconnectEnum | undefined;
|
|
1162
1162
|
}
|
|
1163
1163
|
export declare const WorkspaceDirectoryState: {
|
|
1164
1164
|
readonly DEREGISTERED: "DEREGISTERED";
|
|
@@ -1207,12 +1207,14 @@ export type UserSettingPermissionEnum =
|
|
|
1207
1207
|
export interface UserSetting {
|
|
1208
1208
|
Action: UserSettingActionEnum | undefined;
|
|
1209
1209
|
Permission: UserSettingPermissionEnum | undefined;
|
|
1210
|
-
MaximumLength?: number;
|
|
1210
|
+
MaximumLength?: number | undefined;
|
|
1211
1211
|
}
|
|
1212
1212
|
export interface StreamingProperties {
|
|
1213
|
-
StreamingExperiencePreferredProtocol?:
|
|
1214
|
-
|
|
1215
|
-
|
|
1213
|
+
StreamingExperiencePreferredProtocol?:
|
|
1214
|
+
| StreamingExperiencePreferredProtocolEnum
|
|
1215
|
+
| undefined;
|
|
1216
|
+
UserSettings?: UserSetting[] | undefined;
|
|
1217
|
+
StorageConnectors?: StorageConnector[] | undefined;
|
|
1216
1218
|
}
|
|
1217
1219
|
export declare const Tenancy: {
|
|
1218
1220
|
readonly DEDICATED: "DEDICATED";
|
|
@@ -1227,14 +1229,14 @@ export declare const UserIdentityType: {
|
|
|
1227
1229
|
export type UserIdentityType =
|
|
1228
1230
|
(typeof UserIdentityType)[keyof typeof UserIdentityType];
|
|
1229
1231
|
export interface WorkspaceAccessProperties {
|
|
1230
|
-
DeviceTypeWindows?: AccessPropertyValue;
|
|
1231
|
-
DeviceTypeOsx?: AccessPropertyValue;
|
|
1232
|
-
DeviceTypeWeb?: AccessPropertyValue;
|
|
1233
|
-
DeviceTypeIos?: AccessPropertyValue;
|
|
1234
|
-
DeviceTypeAndroid?: AccessPropertyValue;
|
|
1235
|
-
DeviceTypeChromeOs?: AccessPropertyValue;
|
|
1236
|
-
DeviceTypeZeroClient?: AccessPropertyValue;
|
|
1237
|
-
DeviceTypeLinux?: AccessPropertyValue;
|
|
1232
|
+
DeviceTypeWindows?: AccessPropertyValue | undefined;
|
|
1233
|
+
DeviceTypeOsx?: AccessPropertyValue | undefined;
|
|
1234
|
+
DeviceTypeWeb?: AccessPropertyValue | undefined;
|
|
1235
|
+
DeviceTypeIos?: AccessPropertyValue | undefined;
|
|
1236
|
+
DeviceTypeAndroid?: AccessPropertyValue | undefined;
|
|
1237
|
+
DeviceTypeChromeOs?: AccessPropertyValue | undefined;
|
|
1238
|
+
DeviceTypeZeroClient?: AccessPropertyValue | undefined;
|
|
1239
|
+
DeviceTypeLinux?: AccessPropertyValue | undefined;
|
|
1238
1240
|
}
|
|
1239
1241
|
export declare const WorkspaceType: {
|
|
1240
1242
|
readonly PERSONAL: "PERSONAL";
|
|
@@ -1242,50 +1244,50 @@ export declare const WorkspaceType: {
|
|
|
1242
1244
|
};
|
|
1243
1245
|
export type WorkspaceType = (typeof WorkspaceType)[keyof typeof WorkspaceType];
|
|
1244
1246
|
export interface WorkspaceDirectory {
|
|
1245
|
-
DirectoryId?: string;
|
|
1246
|
-
Alias?: string;
|
|
1247
|
-
DirectoryName?: string;
|
|
1248
|
-
RegistrationCode?: string;
|
|
1249
|
-
SubnetIds?: string[];
|
|
1250
|
-
DnsIpAddresses?: string[];
|
|
1251
|
-
CustomerUserName?: string;
|
|
1252
|
-
IamRoleId?: string;
|
|
1253
|
-
DirectoryType?: WorkspaceDirectoryType;
|
|
1254
|
-
WorkspaceSecurityGroupId?: string;
|
|
1255
|
-
State?: WorkspaceDirectoryState;
|
|
1256
|
-
WorkspaceCreationProperties?: DefaultWorkspaceCreationProperties;
|
|
1257
|
-
ipGroupIds?: string[];
|
|
1258
|
-
WorkspaceAccessProperties?: WorkspaceAccessProperties;
|
|
1259
|
-
Tenancy?: Tenancy;
|
|
1260
|
-
SelfservicePermissions?: SelfservicePermissions;
|
|
1261
|
-
SamlProperties?: SamlProperties;
|
|
1262
|
-
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
1263
|
-
MicrosoftEntraConfig?: MicrosoftEntraConfig;
|
|
1264
|
-
WorkspaceDirectoryName?: string;
|
|
1265
|
-
WorkspaceDirectoryDescription?: string;
|
|
1266
|
-
UserIdentityType?: UserIdentityType;
|
|
1267
|
-
WorkspaceType?: WorkspaceType;
|
|
1268
|
-
IDCConfig?: IDCConfig;
|
|
1269
|
-
ActiveDirectoryConfig?: ActiveDirectoryConfig;
|
|
1270
|
-
StreamingProperties?: StreamingProperties;
|
|
1271
|
-
ErrorMessage?: string;
|
|
1247
|
+
DirectoryId?: string | undefined;
|
|
1248
|
+
Alias?: string | undefined;
|
|
1249
|
+
DirectoryName?: string | undefined;
|
|
1250
|
+
RegistrationCode?: string | undefined;
|
|
1251
|
+
SubnetIds?: string[] | undefined;
|
|
1252
|
+
DnsIpAddresses?: string[] | undefined;
|
|
1253
|
+
CustomerUserName?: string | undefined;
|
|
1254
|
+
IamRoleId?: string | undefined;
|
|
1255
|
+
DirectoryType?: WorkspaceDirectoryType | undefined;
|
|
1256
|
+
WorkspaceSecurityGroupId?: string | undefined;
|
|
1257
|
+
State?: WorkspaceDirectoryState | undefined;
|
|
1258
|
+
WorkspaceCreationProperties?: DefaultWorkspaceCreationProperties | undefined;
|
|
1259
|
+
ipGroupIds?: string[] | undefined;
|
|
1260
|
+
WorkspaceAccessProperties?: WorkspaceAccessProperties | undefined;
|
|
1261
|
+
Tenancy?: Tenancy | undefined;
|
|
1262
|
+
SelfservicePermissions?: SelfservicePermissions | undefined;
|
|
1263
|
+
SamlProperties?: SamlProperties | undefined;
|
|
1264
|
+
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
1265
|
+
MicrosoftEntraConfig?: MicrosoftEntraConfig | undefined;
|
|
1266
|
+
WorkspaceDirectoryName?: string | undefined;
|
|
1267
|
+
WorkspaceDirectoryDescription?: string | undefined;
|
|
1268
|
+
UserIdentityType?: UserIdentityType | undefined;
|
|
1269
|
+
WorkspaceType?: WorkspaceType | undefined;
|
|
1270
|
+
IDCConfig?: IDCConfig | undefined;
|
|
1271
|
+
ActiveDirectoryConfig?: ActiveDirectoryConfig | undefined;
|
|
1272
|
+
StreamingProperties?: StreamingProperties | undefined;
|
|
1273
|
+
ErrorMessage?: string | undefined;
|
|
1272
1274
|
}
|
|
1273
1275
|
export interface DescribeWorkspaceDirectoriesResult {
|
|
1274
|
-
Directories?: WorkspaceDirectory[];
|
|
1275
|
-
NextToken?: string;
|
|
1276
|
+
Directories?: WorkspaceDirectory[] | undefined;
|
|
1277
|
+
NextToken?: string | undefined;
|
|
1276
1278
|
}
|
|
1277
1279
|
export interface DescribeWorkspaceImagePermissionsRequest {
|
|
1278
1280
|
ImageId: string | undefined;
|
|
1279
|
-
NextToken?: string;
|
|
1280
|
-
MaxResults?: number;
|
|
1281
|
+
NextToken?: string | undefined;
|
|
1282
|
+
MaxResults?: number | undefined;
|
|
1281
1283
|
}
|
|
1282
1284
|
export interface ImagePermission {
|
|
1283
|
-
SharedAccountId?: string;
|
|
1285
|
+
SharedAccountId?: string | undefined;
|
|
1284
1286
|
}
|
|
1285
1287
|
export interface DescribeWorkspaceImagePermissionsResult {
|
|
1286
|
-
ImageId?: string;
|
|
1287
|
-
ImagePermissions?: ImagePermission[];
|
|
1288
|
-
NextToken?: string;
|
|
1288
|
+
ImageId?: string | undefined;
|
|
1289
|
+
ImagePermissions?: ImagePermission[] | undefined;
|
|
1290
|
+
NextToken?: string | undefined;
|
|
1289
1291
|
}
|
|
1290
1292
|
export declare const ImageType: {
|
|
1291
1293
|
readonly OWNED: "OWNED";
|
|
@@ -1293,10 +1295,10 @@ export declare const ImageType: {
|
|
|
1293
1295
|
};
|
|
1294
1296
|
export type ImageType = (typeof ImageType)[keyof typeof ImageType];
|
|
1295
1297
|
export interface DescribeWorkspaceImagesRequest {
|
|
1296
|
-
ImageIds?: string[];
|
|
1297
|
-
ImageType?: ImageType;
|
|
1298
|
-
NextToken?: string;
|
|
1299
|
-
MaxResults?: number;
|
|
1298
|
+
ImageIds?: string[] | undefined;
|
|
1299
|
+
ImageType?: ImageType | undefined;
|
|
1300
|
+
NextToken?: string | undefined;
|
|
1301
|
+
MaxResults?: number | undefined;
|
|
1300
1302
|
}
|
|
1301
1303
|
export declare const WorkspaceImageErrorDetailCode: {
|
|
1302
1304
|
readonly ADDITIONAL_DRIVES_ATTACHED: "AdditionalDrivesAttached";
|
|
@@ -1332,67 +1334,67 @@ export declare const WorkspaceImageErrorDetailCode: {
|
|
|
1332
1334
|
export type WorkspaceImageErrorDetailCode =
|
|
1333
1335
|
(typeof WorkspaceImageErrorDetailCode)[keyof typeof WorkspaceImageErrorDetailCode];
|
|
1334
1336
|
export interface ErrorDetails {
|
|
1335
|
-
ErrorCode?: WorkspaceImageErrorDetailCode;
|
|
1336
|
-
ErrorMessage?: string;
|
|
1337
|
+
ErrorCode?: WorkspaceImageErrorDetailCode | undefined;
|
|
1338
|
+
ErrorMessage?: string | undefined;
|
|
1337
1339
|
}
|
|
1338
1340
|
export interface UpdateResult {
|
|
1339
|
-
UpdateAvailable?: boolean;
|
|
1340
|
-
Description?: string;
|
|
1341
|
+
UpdateAvailable?: boolean | undefined;
|
|
1342
|
+
Description?: string | undefined;
|
|
1341
1343
|
}
|
|
1342
1344
|
export interface WorkspaceImage {
|
|
1343
|
-
ImageId?: string;
|
|
1344
|
-
Name?: string;
|
|
1345
|
-
Description?: string;
|
|
1346
|
-
OperatingSystem?: OperatingSystem;
|
|
1347
|
-
State?: WorkspaceImageState;
|
|
1348
|
-
RequiredTenancy?: WorkspaceImageRequiredTenancy;
|
|
1349
|
-
ErrorCode?: string;
|
|
1350
|
-
ErrorMessage?: string;
|
|
1351
|
-
Created?: Date;
|
|
1352
|
-
OwnerAccountId?: string;
|
|
1353
|
-
Updates?: UpdateResult;
|
|
1354
|
-
ErrorDetails?: ErrorDetails[];
|
|
1345
|
+
ImageId?: string | undefined;
|
|
1346
|
+
Name?: string | undefined;
|
|
1347
|
+
Description?: string | undefined;
|
|
1348
|
+
OperatingSystem?: OperatingSystem | undefined;
|
|
1349
|
+
State?: WorkspaceImageState | undefined;
|
|
1350
|
+
RequiredTenancy?: WorkspaceImageRequiredTenancy | undefined;
|
|
1351
|
+
ErrorCode?: string | undefined;
|
|
1352
|
+
ErrorMessage?: string | undefined;
|
|
1353
|
+
Created?: Date | undefined;
|
|
1354
|
+
OwnerAccountId?: string | undefined;
|
|
1355
|
+
Updates?: UpdateResult | undefined;
|
|
1356
|
+
ErrorDetails?: ErrorDetails[] | undefined;
|
|
1355
1357
|
}
|
|
1356
1358
|
export interface DescribeWorkspaceImagesResult {
|
|
1357
|
-
Images?: WorkspaceImage[];
|
|
1358
|
-
NextToken?: string;
|
|
1359
|
+
Images?: WorkspaceImage[] | undefined;
|
|
1360
|
+
NextToken?: string | undefined;
|
|
1359
1361
|
}
|
|
1360
1362
|
export interface DescribeWorkspacesRequest {
|
|
1361
|
-
WorkspaceIds?: string[];
|
|
1362
|
-
DirectoryId?: string;
|
|
1363
|
-
UserName?: string;
|
|
1364
|
-
BundleId?: string;
|
|
1365
|
-
Limit?: number;
|
|
1366
|
-
NextToken?: string;
|
|
1367
|
-
WorkspaceName?: string;
|
|
1363
|
+
WorkspaceIds?: string[] | undefined;
|
|
1364
|
+
DirectoryId?: string | undefined;
|
|
1365
|
+
UserName?: string | undefined;
|
|
1366
|
+
BundleId?: string | undefined;
|
|
1367
|
+
Limit?: number | undefined;
|
|
1368
|
+
NextToken?: string | undefined;
|
|
1369
|
+
WorkspaceName?: string | undefined;
|
|
1368
1370
|
}
|
|
1369
1371
|
export interface DescribeWorkspacesResult {
|
|
1370
|
-
Workspaces?: Workspace[];
|
|
1371
|
-
NextToken?: string;
|
|
1372
|
+
Workspaces?: Workspace[] | undefined;
|
|
1373
|
+
NextToken?: string | undefined;
|
|
1372
1374
|
}
|
|
1373
1375
|
export interface DescribeWorkspacesConnectionStatusRequest {
|
|
1374
|
-
WorkspaceIds?: string[];
|
|
1375
|
-
NextToken?: string;
|
|
1376
|
+
WorkspaceIds?: string[] | undefined;
|
|
1377
|
+
NextToken?: string | undefined;
|
|
1376
1378
|
}
|
|
1377
1379
|
export interface WorkspaceConnectionStatus {
|
|
1378
|
-
WorkspaceId?: string;
|
|
1379
|
-
ConnectionState?: ConnectionState;
|
|
1380
|
-
ConnectionStateCheckTimestamp?: Date;
|
|
1381
|
-
LastKnownUserConnectionTimestamp?: Date;
|
|
1380
|
+
WorkspaceId?: string | undefined;
|
|
1381
|
+
ConnectionState?: ConnectionState | undefined;
|
|
1382
|
+
ConnectionStateCheckTimestamp?: Date | undefined;
|
|
1383
|
+
LastKnownUserConnectionTimestamp?: Date | undefined;
|
|
1382
1384
|
}
|
|
1383
1385
|
export interface DescribeWorkspacesConnectionStatusResult {
|
|
1384
|
-
WorkspacesConnectionStatus?: WorkspaceConnectionStatus[];
|
|
1385
|
-
NextToken?: string;
|
|
1386
|
+
WorkspacesConnectionStatus?: WorkspaceConnectionStatus[] | undefined;
|
|
1387
|
+
NextToken?: string | undefined;
|
|
1386
1388
|
}
|
|
1387
1389
|
export interface DescribeWorkspaceSnapshotsRequest {
|
|
1388
1390
|
WorkspaceId: string | undefined;
|
|
1389
1391
|
}
|
|
1390
1392
|
export interface Snapshot {
|
|
1391
|
-
SnapshotTime?: Date;
|
|
1393
|
+
SnapshotTime?: Date | undefined;
|
|
1392
1394
|
}
|
|
1393
1395
|
export interface DescribeWorkspaceSnapshotsResult {
|
|
1394
|
-
RebuildSnapshots?: Snapshot[];
|
|
1395
|
-
RestoreSnapshots?: Snapshot[];
|
|
1396
|
+
RebuildSnapshots?: Snapshot[] | undefined;
|
|
1397
|
+
RestoreSnapshots?: Snapshot[] | undefined;
|
|
1396
1398
|
}
|
|
1397
1399
|
export declare const DescribeWorkspacesPoolsFilterName: {
|
|
1398
1400
|
readonly POOLNAME: "PoolName";
|
|
@@ -1413,20 +1415,20 @@ export interface DescribeWorkspacesPoolsFilter {
|
|
|
1413
1415
|
Operator: DescribeWorkspacesPoolsFilterOperator | undefined;
|
|
1414
1416
|
}
|
|
1415
1417
|
export interface DescribeWorkspacesPoolsRequest {
|
|
1416
|
-
PoolIds?: string[];
|
|
1417
|
-
Filters?: DescribeWorkspacesPoolsFilter[];
|
|
1418
|
-
Limit?: number;
|
|
1419
|
-
NextToken?: string;
|
|
1418
|
+
PoolIds?: string[] | undefined;
|
|
1419
|
+
Filters?: DescribeWorkspacesPoolsFilter[] | undefined;
|
|
1420
|
+
Limit?: number | undefined;
|
|
1421
|
+
NextToken?: string | undefined;
|
|
1420
1422
|
}
|
|
1421
1423
|
export interface DescribeWorkspacesPoolsResult {
|
|
1422
|
-
WorkspacesPools?: WorkspacesPool[];
|
|
1423
|
-
NextToken?: string;
|
|
1424
|
+
WorkspacesPools?: WorkspacesPool[] | undefined;
|
|
1425
|
+
NextToken?: string | undefined;
|
|
1424
1426
|
}
|
|
1425
1427
|
export interface DescribeWorkspacesPoolSessionsRequest {
|
|
1426
1428
|
PoolId: string | undefined;
|
|
1427
|
-
UserId?: string;
|
|
1428
|
-
Limit?: number;
|
|
1429
|
-
NextToken?: string;
|
|
1429
|
+
UserId?: string | undefined;
|
|
1430
|
+
Limit?: number | undefined;
|
|
1431
|
+
NextToken?: string | undefined;
|
|
1430
1432
|
}
|
|
1431
1433
|
export declare const SessionConnectionState: {
|
|
1432
1434
|
readonly CONNECTED: "CONNECTED";
|
|
@@ -1435,23 +1437,23 @@ export declare const SessionConnectionState: {
|
|
|
1435
1437
|
export type SessionConnectionState =
|
|
1436
1438
|
(typeof SessionConnectionState)[keyof typeof SessionConnectionState];
|
|
1437
1439
|
export interface NetworkAccessConfiguration {
|
|
1438
|
-
EniPrivateIpAddress?: string;
|
|
1439
|
-
EniId?: string;
|
|
1440
|
+
EniPrivateIpAddress?: string | undefined;
|
|
1441
|
+
EniId?: string | undefined;
|
|
1440
1442
|
}
|
|
1441
1443
|
export interface WorkspacesPoolSession {
|
|
1442
|
-
AuthenticationType?: AuthenticationType;
|
|
1443
|
-
ConnectionState?: SessionConnectionState;
|
|
1444
|
+
AuthenticationType?: AuthenticationType | undefined;
|
|
1445
|
+
ConnectionState?: SessionConnectionState | undefined;
|
|
1444
1446
|
SessionId: string | undefined;
|
|
1445
|
-
InstanceId?: string;
|
|
1447
|
+
InstanceId?: string | undefined;
|
|
1446
1448
|
PoolId: string | undefined;
|
|
1447
|
-
ExpirationTime?: Date;
|
|
1448
|
-
NetworkAccessConfiguration?: NetworkAccessConfiguration;
|
|
1449
|
-
StartTime?: Date;
|
|
1449
|
+
ExpirationTime?: Date | undefined;
|
|
1450
|
+
NetworkAccessConfiguration?: NetworkAccessConfiguration | undefined;
|
|
1451
|
+
StartTime?: Date | undefined;
|
|
1450
1452
|
UserId: string | undefined;
|
|
1451
1453
|
}
|
|
1452
1454
|
export interface DescribeWorkspacesPoolSessionsResult {
|
|
1453
|
-
Sessions?: WorkspacesPoolSession[];
|
|
1454
|
-
NextToken?: string;
|
|
1455
|
+
Sessions?: WorkspacesPoolSession[] | undefined;
|
|
1456
|
+
NextToken?: string | undefined;
|
|
1455
1457
|
}
|
|
1456
1458
|
export interface DisassociateConnectionAliasRequest {
|
|
1457
1459
|
AliasId: string | undefined;
|
|
@@ -1467,45 +1469,45 @@ export interface DisassociateWorkspaceApplicationRequest {
|
|
|
1467
1469
|
ApplicationId: string | undefined;
|
|
1468
1470
|
}
|
|
1469
1471
|
export interface DisassociateWorkspaceApplicationResult {
|
|
1470
|
-
Association?: WorkspaceResourceAssociation;
|
|
1472
|
+
Association?: WorkspaceResourceAssociation | undefined;
|
|
1471
1473
|
}
|
|
1472
1474
|
export interface FailedWorkspaceChangeRequest {
|
|
1473
|
-
WorkspaceId?: string;
|
|
1474
|
-
ErrorCode?: string;
|
|
1475
|
-
ErrorMessage?: string;
|
|
1475
|
+
WorkspaceId?: string | undefined;
|
|
1476
|
+
ErrorCode?: string | undefined;
|
|
1477
|
+
ErrorMessage?: string | undefined;
|
|
1476
1478
|
}
|
|
1477
1479
|
export interface GetAccountLinkRequest {
|
|
1478
|
-
LinkId?: string;
|
|
1479
|
-
LinkedAccountId?: string;
|
|
1480
|
+
LinkId?: string | undefined;
|
|
1481
|
+
LinkedAccountId?: string | undefined;
|
|
1480
1482
|
}
|
|
1481
1483
|
export interface GetAccountLinkResult {
|
|
1482
|
-
AccountLink?: AccountLink;
|
|
1484
|
+
AccountLink?: AccountLink | undefined;
|
|
1483
1485
|
}
|
|
1484
1486
|
export interface IosImportClientBrandingAttributes {
|
|
1485
|
-
Logo?: Uint8Array;
|
|
1486
|
-
Logo2x?: Uint8Array;
|
|
1487
|
-
Logo3x?: Uint8Array;
|
|
1488
|
-
SupportEmail?: string;
|
|
1489
|
-
SupportLink?: string;
|
|
1490
|
-
ForgotPasswordLink?: string;
|
|
1491
|
-
LoginMessage?: Record<string, string
|
|
1487
|
+
Logo?: Uint8Array | undefined;
|
|
1488
|
+
Logo2x?: Uint8Array | undefined;
|
|
1489
|
+
Logo3x?: Uint8Array | undefined;
|
|
1490
|
+
SupportEmail?: string | undefined;
|
|
1491
|
+
SupportLink?: string | undefined;
|
|
1492
|
+
ForgotPasswordLink?: string | undefined;
|
|
1493
|
+
LoginMessage?: Record<string, string> | undefined;
|
|
1492
1494
|
}
|
|
1493
1495
|
export interface ImportClientBrandingRequest {
|
|
1494
1496
|
ResourceId: string | undefined;
|
|
1495
|
-
DeviceTypeWindows?: DefaultImportClientBrandingAttributes;
|
|
1496
|
-
DeviceTypeOsx?: DefaultImportClientBrandingAttributes;
|
|
1497
|
-
DeviceTypeAndroid?: DefaultImportClientBrandingAttributes;
|
|
1498
|
-
DeviceTypeIos?: IosImportClientBrandingAttributes;
|
|
1499
|
-
DeviceTypeLinux?: DefaultImportClientBrandingAttributes;
|
|
1500
|
-
DeviceTypeWeb?: DefaultImportClientBrandingAttributes;
|
|
1497
|
+
DeviceTypeWindows?: DefaultImportClientBrandingAttributes | undefined;
|
|
1498
|
+
DeviceTypeOsx?: DefaultImportClientBrandingAttributes | undefined;
|
|
1499
|
+
DeviceTypeAndroid?: DefaultImportClientBrandingAttributes | undefined;
|
|
1500
|
+
DeviceTypeIos?: IosImportClientBrandingAttributes | undefined;
|
|
1501
|
+
DeviceTypeLinux?: DefaultImportClientBrandingAttributes | undefined;
|
|
1502
|
+
DeviceTypeWeb?: DefaultImportClientBrandingAttributes | undefined;
|
|
1501
1503
|
}
|
|
1502
1504
|
export interface ImportClientBrandingResult {
|
|
1503
|
-
DeviceTypeWindows?: DefaultClientBrandingAttributes;
|
|
1504
|
-
DeviceTypeOsx?: DefaultClientBrandingAttributes;
|
|
1505
|
-
DeviceTypeAndroid?: DefaultClientBrandingAttributes;
|
|
1506
|
-
DeviceTypeIos?: IosClientBrandingAttributes;
|
|
1507
|
-
DeviceTypeLinux?: DefaultClientBrandingAttributes;
|
|
1508
|
-
DeviceTypeWeb?: DefaultClientBrandingAttributes;
|
|
1505
|
+
DeviceTypeWindows?: DefaultClientBrandingAttributes | undefined;
|
|
1506
|
+
DeviceTypeOsx?: DefaultClientBrandingAttributes | undefined;
|
|
1507
|
+
DeviceTypeAndroid?: DefaultClientBrandingAttributes | undefined;
|
|
1508
|
+
DeviceTypeIos?: IosClientBrandingAttributes | undefined;
|
|
1509
|
+
DeviceTypeLinux?: DefaultClientBrandingAttributes | undefined;
|
|
1510
|
+
DeviceTypeWeb?: DefaultClientBrandingAttributes | undefined;
|
|
1509
1511
|
}
|
|
1510
1512
|
export declare const WorkspaceImageIngestionProcess: {
|
|
1511
1513
|
readonly BYOL_GRAPHICS: "BYOL_GRAPHICS";
|
|
@@ -1524,37 +1526,37 @@ export interface ImportWorkspaceImageRequest {
|
|
|
1524
1526
|
IngestionProcess: WorkspaceImageIngestionProcess | undefined;
|
|
1525
1527
|
ImageName: string | undefined;
|
|
1526
1528
|
ImageDescription: string | undefined;
|
|
1527
|
-
Tags?: Tag[];
|
|
1528
|
-
Applications?: Application[];
|
|
1529
|
+
Tags?: Tag[] | undefined;
|
|
1530
|
+
Applications?: Application[] | undefined;
|
|
1529
1531
|
}
|
|
1530
1532
|
export interface ImportWorkspaceImageResult {
|
|
1531
|
-
ImageId?: string;
|
|
1533
|
+
ImageId?: string | undefined;
|
|
1532
1534
|
}
|
|
1533
1535
|
export interface ListAccountLinksRequest {
|
|
1534
|
-
LinkStatusFilter?: AccountLinkStatusEnum[];
|
|
1535
|
-
NextToken?: string;
|
|
1536
|
-
MaxResults?: number;
|
|
1536
|
+
LinkStatusFilter?: AccountLinkStatusEnum[] | undefined;
|
|
1537
|
+
NextToken?: string | undefined;
|
|
1538
|
+
MaxResults?: number | undefined;
|
|
1537
1539
|
}
|
|
1538
1540
|
export interface ListAccountLinksResult {
|
|
1539
|
-
AccountLinks?: AccountLink[];
|
|
1540
|
-
NextToken?: string;
|
|
1541
|
+
AccountLinks?: AccountLink[] | undefined;
|
|
1542
|
+
NextToken?: string | undefined;
|
|
1541
1543
|
}
|
|
1542
1544
|
export interface ListAvailableManagementCidrRangesRequest {
|
|
1543
1545
|
ManagementCidrRangeConstraint: string | undefined;
|
|
1544
|
-
MaxResults?: number;
|
|
1545
|
-
NextToken?: string;
|
|
1546
|
+
MaxResults?: number | undefined;
|
|
1547
|
+
NextToken?: string | undefined;
|
|
1546
1548
|
}
|
|
1547
1549
|
export interface ListAvailableManagementCidrRangesResult {
|
|
1548
|
-
ManagementCidrRanges?: string[];
|
|
1549
|
-
NextToken?: string;
|
|
1550
|
+
ManagementCidrRanges?: string[] | undefined;
|
|
1551
|
+
NextToken?: string | undefined;
|
|
1550
1552
|
}
|
|
1551
1553
|
export interface MigrateWorkspaceRequest {
|
|
1552
1554
|
SourceWorkspaceId: string | undefined;
|
|
1553
1555
|
BundleId: string | undefined;
|
|
1554
1556
|
}
|
|
1555
1557
|
export interface MigrateWorkspaceResult {
|
|
1556
|
-
SourceWorkspaceId?: string;
|
|
1557
|
-
TargetWorkspaceId?: string;
|
|
1558
|
+
SourceWorkspaceId?: string | undefined;
|
|
1559
|
+
TargetWorkspaceId?: string | undefined;
|
|
1558
1560
|
}
|
|
1559
1561
|
export declare class OperationInProgressException extends __BaseException {
|
|
1560
1562
|
readonly name: "OperationInProgressException";
|
|
@@ -1564,14 +1566,14 @@ export declare class OperationInProgressException extends __BaseException {
|
|
|
1564
1566
|
);
|
|
1565
1567
|
}
|
|
1566
1568
|
export interface ModifyAccountRequest {
|
|
1567
|
-
DedicatedTenancySupport?: DedicatedTenancySupportEnum;
|
|
1568
|
-
DedicatedTenancyManagementCidrRange?: string;
|
|
1569
|
+
DedicatedTenancySupport?: DedicatedTenancySupportEnum | undefined;
|
|
1570
|
+
DedicatedTenancyManagementCidrRange?: string | undefined;
|
|
1569
1571
|
}
|
|
1570
1572
|
export interface ModifyAccountResult {}
|
|
1571
1573
|
export interface ModifyCertificateBasedAuthPropertiesRequest {
|
|
1572
1574
|
ResourceId: string | undefined;
|
|
1573
|
-
CertificateBasedAuthProperties?: CertificateBasedAuthProperties;
|
|
1574
|
-
PropertiesToDelete?: DeletableCertificateBasedAuthProperty[];
|
|
1575
|
+
CertificateBasedAuthProperties?: CertificateBasedAuthProperties | undefined;
|
|
1576
|
+
PropertiesToDelete?: DeletableCertificateBasedAuthProperty[] | undefined;
|
|
1575
1577
|
}
|
|
1576
1578
|
export interface ModifyCertificateBasedAuthPropertiesResult {}
|
|
1577
1579
|
export interface ModifyClientPropertiesRequest {
|
|
@@ -1581,8 +1583,8 @@ export interface ModifyClientPropertiesRequest {
|
|
|
1581
1583
|
export interface ModifyClientPropertiesResult {}
|
|
1582
1584
|
export interface ModifySamlPropertiesRequest {
|
|
1583
1585
|
ResourceId: string | undefined;
|
|
1584
|
-
SamlProperties?: SamlProperties;
|
|
1585
|
-
PropertiesToDelete?: DeletableSamlProperty[];
|
|
1586
|
+
SamlProperties?: SamlProperties | undefined;
|
|
1587
|
+
PropertiesToDelete?: DeletableSamlProperty[] | undefined;
|
|
1586
1588
|
}
|
|
1587
1589
|
export interface ModifySamlPropertiesResult {}
|
|
1588
1590
|
export interface ModifySelfservicePermissionsRequest {
|
|
@@ -1592,7 +1594,7 @@ export interface ModifySelfservicePermissionsRequest {
|
|
|
1592
1594
|
export interface ModifySelfservicePermissionsResult {}
|
|
1593
1595
|
export interface ModifyStreamingPropertiesRequest {
|
|
1594
1596
|
ResourceId: string | undefined;
|
|
1595
|
-
StreamingProperties?: StreamingProperties;
|
|
1597
|
+
StreamingProperties?: StreamingProperties | undefined;
|
|
1596
1598
|
}
|
|
1597
1599
|
export interface ModifyStreamingPropertiesResult {}
|
|
1598
1600
|
export interface ModifyWorkspaceAccessPropertiesRequest {
|
|
@@ -1601,13 +1603,13 @@ export interface ModifyWorkspaceAccessPropertiesRequest {
|
|
|
1601
1603
|
}
|
|
1602
1604
|
export interface ModifyWorkspaceAccessPropertiesResult {}
|
|
1603
1605
|
export interface WorkspaceCreationProperties {
|
|
1604
|
-
EnableWorkDocs?: boolean;
|
|
1605
|
-
EnableInternetAccess?: boolean;
|
|
1606
|
-
DefaultOu?: string;
|
|
1607
|
-
CustomSecurityGroupId?: string;
|
|
1608
|
-
UserEnabledAsLocalAdministrator?: boolean;
|
|
1609
|
-
EnableMaintenanceMode?: boolean;
|
|
1610
|
-
InstanceIamRoleArn?: string;
|
|
1606
|
+
EnableWorkDocs?: boolean | undefined;
|
|
1607
|
+
EnableInternetAccess?: boolean | undefined;
|
|
1608
|
+
DefaultOu?: string | undefined;
|
|
1609
|
+
CustomSecurityGroupId?: string | undefined;
|
|
1610
|
+
UserEnabledAsLocalAdministrator?: boolean | undefined;
|
|
1611
|
+
EnableMaintenanceMode?: boolean | undefined;
|
|
1612
|
+
InstanceIamRoleArn?: string | undefined;
|
|
1611
1613
|
}
|
|
1612
1614
|
export interface ModifyWorkspaceCreationPropertiesRequest {
|
|
1613
1615
|
ResourceId: string | undefined;
|
|
@@ -1616,8 +1618,8 @@ export interface ModifyWorkspaceCreationPropertiesRequest {
|
|
|
1616
1618
|
export interface ModifyWorkspaceCreationPropertiesResult {}
|
|
1617
1619
|
export interface ModifyWorkspacePropertiesRequest {
|
|
1618
1620
|
WorkspaceId: string | undefined;
|
|
1619
|
-
WorkspaceProperties?: WorkspaceProperties;
|
|
1620
|
-
DataReplication?: DataReplication;
|
|
1621
|
+
WorkspaceProperties?: WorkspaceProperties | undefined;
|
|
1622
|
+
DataReplication?: DataReplication | undefined;
|
|
1621
1623
|
}
|
|
1622
1624
|
export interface ModifyWorkspacePropertiesResult {}
|
|
1623
1625
|
export declare class UnsupportedWorkspaceConfigurationException extends __BaseException {
|
|
@@ -1648,7 +1650,7 @@ export interface RebootWorkspacesRequest {
|
|
|
1648
1650
|
RebootWorkspaceRequests: RebootRequest[] | undefined;
|
|
1649
1651
|
}
|
|
1650
1652
|
export interface RebootWorkspacesResult {
|
|
1651
|
-
FailedRequests?: FailedWorkspaceChangeRequest[];
|
|
1653
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
1652
1654
|
}
|
|
1653
1655
|
export interface RebuildRequest {
|
|
1654
1656
|
WorkspaceId: string | undefined;
|
|
@@ -1657,26 +1659,26 @@ export interface RebuildWorkspacesRequest {
|
|
|
1657
1659
|
RebuildWorkspaceRequests: RebuildRequest[] | undefined;
|
|
1658
1660
|
}
|
|
1659
1661
|
export interface RebuildWorkspacesResult {
|
|
1660
|
-
FailedRequests?: FailedWorkspaceChangeRequest[];
|
|
1662
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
1661
1663
|
}
|
|
1662
1664
|
export interface RegisterWorkspaceDirectoryRequest {
|
|
1663
|
-
DirectoryId?: string;
|
|
1664
|
-
SubnetIds?: string[];
|
|
1665
|
-
EnableWorkDocs?: boolean;
|
|
1666
|
-
EnableSelfService?: boolean;
|
|
1667
|
-
Tenancy?: Tenancy;
|
|
1668
|
-
Tags?: Tag[];
|
|
1669
|
-
WorkspaceDirectoryName?: string;
|
|
1670
|
-
WorkspaceDirectoryDescription?: string;
|
|
1671
|
-
UserIdentityType?: UserIdentityType;
|
|
1672
|
-
IdcInstanceArn?: string;
|
|
1673
|
-
MicrosoftEntraConfig?: MicrosoftEntraConfig;
|
|
1674
|
-
WorkspaceType?: WorkspaceType;
|
|
1675
|
-
ActiveDirectoryConfig?: ActiveDirectoryConfig;
|
|
1665
|
+
DirectoryId?: string | undefined;
|
|
1666
|
+
SubnetIds?: string[] | undefined;
|
|
1667
|
+
EnableWorkDocs?: boolean | undefined;
|
|
1668
|
+
EnableSelfService?: boolean | undefined;
|
|
1669
|
+
Tenancy?: Tenancy | undefined;
|
|
1670
|
+
Tags?: Tag[] | undefined;
|
|
1671
|
+
WorkspaceDirectoryName?: string | undefined;
|
|
1672
|
+
WorkspaceDirectoryDescription?: string | undefined;
|
|
1673
|
+
UserIdentityType?: UserIdentityType | undefined;
|
|
1674
|
+
IdcInstanceArn?: string | undefined;
|
|
1675
|
+
MicrosoftEntraConfig?: MicrosoftEntraConfig | undefined;
|
|
1676
|
+
WorkspaceType?: WorkspaceType | undefined;
|
|
1677
|
+
ActiveDirectoryConfig?: ActiveDirectoryConfig | undefined;
|
|
1676
1678
|
}
|
|
1677
1679
|
export interface RegisterWorkspaceDirectoryResult {
|
|
1678
|
-
DirectoryId?: string;
|
|
1679
|
-
State?: WorkspaceDirectoryState;
|
|
1680
|
+
DirectoryId?: string | undefined;
|
|
1681
|
+
State?: WorkspaceDirectoryState | undefined;
|
|
1680
1682
|
}
|
|
1681
1683
|
export declare class UnsupportedNetworkConfigurationException extends __BaseException {
|
|
1682
1684
|
readonly name: "UnsupportedNetworkConfigurationException";
|
|
@@ -1700,8 +1702,8 @@ export declare class WorkspacesDefaultRoleNotFoundException extends __BaseExcept
|
|
|
1700
1702
|
}
|
|
1701
1703
|
export interface RejectAccountLinkInvitationRequest {
|
|
1702
1704
|
LinkId: string | undefined;
|
|
1703
|
-
ClientToken?: string;
|
|
1705
|
+
ClientToken?: string | undefined;
|
|
1704
1706
|
}
|
|
1705
1707
|
export interface RejectAccountLinkInvitationResult {
|
|
1706
|
-
AccountLink?: AccountLink;
|
|
1708
|
+
AccountLink?: AccountLink | undefined;
|
|
1707
1709
|
}
|