@aws-sdk/client-workspaces 3.46.0 → 3.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -0
- package/dist-cjs/WorkSpaces.js +60 -0
- package/dist-cjs/commands/CreateConnectClientAddInCommand.js +36 -0
- package/dist-cjs/commands/DeleteConnectClientAddInCommand.js +36 -0
- package/dist-cjs/commands/DescribeConnectClientAddInsCommand.js +36 -0
- package/dist-cjs/commands/UpdateConnectClientAddInCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoints.js +0 -12
- package/dist-cjs/models/models_0.js +54 -84
- package/dist-cjs/protocols/Aws_json1_1.js +376 -3
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +10 -2
- package/dist-es/WorkSpaces.js +60 -0
- package/dist-es/commands/CreateConnectClientAddInCommand.js +39 -0
- package/dist-es/commands/DeleteConnectClientAddInCommand.js +39 -0
- package/dist-es/commands/DescribeConnectClientAddInsCommand.js +39 -0
- package/dist-es/commands/UpdateConnectClientAddInCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoints.js +0 -12
- package/dist-es/models/models_0.js +36 -56
- package/dist-es/protocols/Aws_json1_1.js +397 -0
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -4
- package/dist-types/WorkSpaces.d.ts +33 -0
- package/dist-types/WorkSpacesClient.d.ts +11 -3
- package/dist-types/commands/CreateConnectClientAddInCommand.d.ts +38 -0
- package/dist-types/commands/DeleteConnectClientAddInCommand.d.ts +36 -0
- package/dist-types/commands/DescribeConnectClientAddInsCommand.d.ts +35 -0
- package/dist-types/commands/UpdateConnectClientAddInCommand.d.ts +36 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +157 -88
- package/dist-types/protocols/Aws_json1_1.d.ts +12 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/WorkSpaces.d.ts +20 -0
- package/dist-types/ts3.4/WorkSpacesClient.d.ts +9 -3
- package/dist-types/ts3.4/commands/CreateConnectClientAddInCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteConnectClientAddInCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeConnectClientAddInsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateConnectClientAddInCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +97 -60
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +35 -35
|
@@ -7,12 +7,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
7
7
|
$fault: "client";
|
|
8
8
|
message?: string;
|
|
9
9
|
}
|
|
10
|
-
export declare namespace AccessDeniedException {
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
15
|
-
}
|
|
16
10
|
export declare enum AccessPropertyValue {
|
|
17
11
|
ALLOW = "ALLOW",
|
|
18
12
|
DENY = "DENY"
|
|
@@ -108,12 +102,6 @@ export interface InvalidParameterValuesException extends __SmithyException, $Met
|
|
|
108
102
|
*/
|
|
109
103
|
message?: string;
|
|
110
104
|
}
|
|
111
|
-
export declare namespace InvalidParameterValuesException {
|
|
112
|
-
/**
|
|
113
|
-
* @internal
|
|
114
|
-
*/
|
|
115
|
-
const filterSensitiveLog: (obj: InvalidParameterValuesException) => any;
|
|
116
|
-
}
|
|
117
105
|
/**
|
|
118
106
|
* <p>The state of the resource is not valid for this operation.</p>
|
|
119
107
|
*/
|
|
@@ -122,12 +110,6 @@ export interface InvalidResourceStateException extends __SmithyException, $Metad
|
|
|
122
110
|
$fault: "client";
|
|
123
111
|
message?: string;
|
|
124
112
|
}
|
|
125
|
-
export declare namespace InvalidResourceStateException {
|
|
126
|
-
/**
|
|
127
|
-
* @internal
|
|
128
|
-
*/
|
|
129
|
-
const filterSensitiveLog: (obj: InvalidResourceStateException) => any;
|
|
130
|
-
}
|
|
131
113
|
/**
|
|
132
114
|
* <p>This operation is not supported.</p>
|
|
133
115
|
*/
|
|
@@ -136,12 +118,6 @@ export interface OperationNotSupportedException extends __SmithyException, $Meta
|
|
|
136
118
|
$fault: "client";
|
|
137
119
|
message?: string;
|
|
138
120
|
}
|
|
139
|
-
export declare namespace OperationNotSupportedException {
|
|
140
|
-
/**
|
|
141
|
-
* @internal
|
|
142
|
-
*/
|
|
143
|
-
const filterSensitiveLog: (obj: OperationNotSupportedException) => any;
|
|
144
|
-
}
|
|
145
121
|
/**
|
|
146
122
|
* <p>The resource is associated with a directory.</p>
|
|
147
123
|
*/
|
|
@@ -150,12 +126,6 @@ export interface ResourceAssociatedException extends __SmithyException, $Metadat
|
|
|
150
126
|
$fault: "client";
|
|
151
127
|
message?: string;
|
|
152
128
|
}
|
|
153
|
-
export declare namespace ResourceAssociatedException {
|
|
154
|
-
/**
|
|
155
|
-
* @internal
|
|
156
|
-
*/
|
|
157
|
-
const filterSensitiveLog: (obj: ResourceAssociatedException) => any;
|
|
158
|
-
}
|
|
159
129
|
/**
|
|
160
130
|
* <p>The resource could not be found.</p>
|
|
161
131
|
*/
|
|
@@ -171,12 +141,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
171
141
|
*/
|
|
172
142
|
ResourceId?: string;
|
|
173
143
|
}
|
|
174
|
-
export declare namespace ResourceNotFoundException {
|
|
175
|
-
/**
|
|
176
|
-
* @internal
|
|
177
|
-
*/
|
|
178
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
179
|
-
}
|
|
180
144
|
export interface AssociateIpGroupsRequest {
|
|
181
145
|
/**
|
|
182
146
|
* <p>The identifier of the directory.</p>
|
|
@@ -212,12 +176,6 @@ export interface ResourceLimitExceededException extends __SmithyException, $Meta
|
|
|
212
176
|
*/
|
|
213
177
|
message?: string;
|
|
214
178
|
}
|
|
215
|
-
export declare namespace ResourceLimitExceededException {
|
|
216
|
-
/**
|
|
217
|
-
* @internal
|
|
218
|
-
*/
|
|
219
|
-
const filterSensitiveLog: (obj: ResourceLimitExceededException) => any;
|
|
220
|
-
}
|
|
221
179
|
export declare enum AssociationStatus {
|
|
222
180
|
ASSOCIATED_WITH_OWNER_ACCOUNT = "ASSOCIATED_WITH_OWNER_ACCOUNT",
|
|
223
181
|
ASSOCIATED_WITH_SHARED_ACCOUNT = "ASSOCIATED_WITH_SHARED_ACCOUNT",
|
|
@@ -415,6 +373,33 @@ export declare namespace ClientPropertiesResult {
|
|
|
415
373
|
*/
|
|
416
374
|
const filterSensitiveLog: (obj: ClientPropertiesResult) => any;
|
|
417
375
|
}
|
|
376
|
+
/**
|
|
377
|
+
* <p>Describes an Amazon Connect client add-in.</p>
|
|
378
|
+
*/
|
|
379
|
+
export interface ConnectClientAddIn {
|
|
380
|
+
/**
|
|
381
|
+
* <p>The client add-in identifier.</p>
|
|
382
|
+
*/
|
|
383
|
+
AddInId?: string;
|
|
384
|
+
/**
|
|
385
|
+
* <p>The directory identifier for which the client add-in is configured.</p>
|
|
386
|
+
*/
|
|
387
|
+
ResourceId?: string;
|
|
388
|
+
/**
|
|
389
|
+
* <p>The name of the client add in.</p>
|
|
390
|
+
*/
|
|
391
|
+
Name?: string;
|
|
392
|
+
/**
|
|
393
|
+
* <p>The endpoint URL of the client add-in.</p>
|
|
394
|
+
*/
|
|
395
|
+
URL?: string;
|
|
396
|
+
}
|
|
397
|
+
export declare namespace ConnectClientAddIn {
|
|
398
|
+
/**
|
|
399
|
+
* @internal
|
|
400
|
+
*/
|
|
401
|
+
const filterSensitiveLog: (obj: ConnectClientAddIn) => any;
|
|
402
|
+
}
|
|
418
403
|
/**
|
|
419
404
|
* <p>Describes a connection alias association that is used for cross-Region redirection. For more information, see
|
|
420
405
|
* <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/cross-region-redirection.html">
|
|
@@ -577,12 +562,6 @@ export interface ResourceAlreadyExistsException extends __SmithyException, $Meta
|
|
|
577
562
|
$fault: "client";
|
|
578
563
|
message?: string;
|
|
579
564
|
}
|
|
580
|
-
export declare namespace ResourceAlreadyExistsException {
|
|
581
|
-
/**
|
|
582
|
-
* @internal
|
|
583
|
-
*/
|
|
584
|
-
const filterSensitiveLog: (obj: ResourceAlreadyExistsException) => any;
|
|
585
|
-
}
|
|
586
565
|
/**
|
|
587
566
|
* <p>The specified resource is not available.</p>
|
|
588
567
|
*/
|
|
@@ -598,11 +577,45 @@ export interface ResourceUnavailableException extends __SmithyException, $Metada
|
|
|
598
577
|
*/
|
|
599
578
|
ResourceId?: string;
|
|
600
579
|
}
|
|
601
|
-
export
|
|
580
|
+
export interface CreateConnectClientAddInRequest {
|
|
581
|
+
/**
|
|
582
|
+
* <p>The directory identifier for which to configure the client add-in.</p>
|
|
583
|
+
*/
|
|
584
|
+
ResourceId: string | undefined;
|
|
585
|
+
/**
|
|
586
|
+
* <p>The name of the client add-in.</p>
|
|
587
|
+
*/
|
|
588
|
+
Name: string | undefined;
|
|
589
|
+
/**
|
|
590
|
+
* <p>The endpoint URL of the Amazon Connect client add-in.</p>
|
|
591
|
+
*/
|
|
592
|
+
URL: string | undefined;
|
|
593
|
+
}
|
|
594
|
+
export declare namespace CreateConnectClientAddInRequest {
|
|
602
595
|
/**
|
|
603
596
|
* @internal
|
|
604
597
|
*/
|
|
605
|
-
const filterSensitiveLog: (obj:
|
|
598
|
+
const filterSensitiveLog: (obj: CreateConnectClientAddInRequest) => any;
|
|
599
|
+
}
|
|
600
|
+
export interface CreateConnectClientAddInResult {
|
|
601
|
+
/**
|
|
602
|
+
* <p>The client add-in identifier.</p>
|
|
603
|
+
*/
|
|
604
|
+
AddInId?: string;
|
|
605
|
+
}
|
|
606
|
+
export declare namespace CreateConnectClientAddInResult {
|
|
607
|
+
/**
|
|
608
|
+
* @internal
|
|
609
|
+
*/
|
|
610
|
+
const filterSensitiveLog: (obj: CreateConnectClientAddInResult) => any;
|
|
611
|
+
}
|
|
612
|
+
/**
|
|
613
|
+
* <p>The resource could not be created.</p>
|
|
614
|
+
*/
|
|
615
|
+
export interface ResourceCreationFailedException extends __SmithyException, $MetadataBearer {
|
|
616
|
+
name: "ResourceCreationFailedException";
|
|
617
|
+
$fault: "client";
|
|
618
|
+
message?: string;
|
|
606
619
|
}
|
|
607
620
|
export interface CreateConnectionAliasRequest {
|
|
608
621
|
/**
|
|
@@ -674,20 +687,6 @@ export declare namespace CreateIpGroupResult {
|
|
|
674
687
|
*/
|
|
675
688
|
const filterSensitiveLog: (obj: CreateIpGroupResult) => any;
|
|
676
689
|
}
|
|
677
|
-
/**
|
|
678
|
-
* <p>The resource could not be created.</p>
|
|
679
|
-
*/
|
|
680
|
-
export interface ResourceCreationFailedException extends __SmithyException, $MetadataBearer {
|
|
681
|
-
name: "ResourceCreationFailedException";
|
|
682
|
-
$fault: "client";
|
|
683
|
-
message?: string;
|
|
684
|
-
}
|
|
685
|
-
export declare namespace ResourceCreationFailedException {
|
|
686
|
-
/**
|
|
687
|
-
* @internal
|
|
688
|
-
*/
|
|
689
|
-
const filterSensitiveLog: (obj: ResourceCreationFailedException) => any;
|
|
690
|
-
}
|
|
691
690
|
export interface CreateTagsRequest {
|
|
692
691
|
/**
|
|
693
692
|
* <p>The identifier of the WorkSpaces resource. The supported resource types are WorkSpaces,
|
|
@@ -1128,6 +1127,30 @@ export declare namespace DefaultWorkspaceCreationProperties {
|
|
|
1128
1127
|
*/
|
|
1129
1128
|
const filterSensitiveLog: (obj: DefaultWorkspaceCreationProperties) => any;
|
|
1130
1129
|
}
|
|
1130
|
+
export interface DeleteConnectClientAddInRequest {
|
|
1131
|
+
/**
|
|
1132
|
+
* <p>The identifier of the client add-in to delete.</p>
|
|
1133
|
+
*/
|
|
1134
|
+
AddInId: string | undefined;
|
|
1135
|
+
/**
|
|
1136
|
+
* <p>The directory identifier for which the client add-in is configured.</p>
|
|
1137
|
+
*/
|
|
1138
|
+
ResourceId: string | undefined;
|
|
1139
|
+
}
|
|
1140
|
+
export declare namespace DeleteConnectClientAddInRequest {
|
|
1141
|
+
/**
|
|
1142
|
+
* @internal
|
|
1143
|
+
*/
|
|
1144
|
+
const filterSensitiveLog: (obj: DeleteConnectClientAddInRequest) => any;
|
|
1145
|
+
}
|
|
1146
|
+
export interface DeleteConnectClientAddInResult {
|
|
1147
|
+
}
|
|
1148
|
+
export declare namespace DeleteConnectClientAddInResult {
|
|
1149
|
+
/**
|
|
1150
|
+
* @internal
|
|
1151
|
+
*/
|
|
1152
|
+
const filterSensitiveLog: (obj: DeleteConnectClientAddInResult) => any;
|
|
1153
|
+
}
|
|
1131
1154
|
export interface DeleteConnectionAliasRequest {
|
|
1132
1155
|
/**
|
|
1133
1156
|
* <p>The identifier of the connection alias to delete.</p>
|
|
@@ -1337,6 +1360,44 @@ export declare namespace DescribeClientPropertiesResult {
|
|
|
1337
1360
|
*/
|
|
1338
1361
|
const filterSensitiveLog: (obj: DescribeClientPropertiesResult) => any;
|
|
1339
1362
|
}
|
|
1363
|
+
export interface DescribeConnectClientAddInsRequest {
|
|
1364
|
+
/**
|
|
1365
|
+
* <p>The directory identifier for which the client add-in is configured.</p>
|
|
1366
|
+
*/
|
|
1367
|
+
ResourceId: string | undefined;
|
|
1368
|
+
/**
|
|
1369
|
+
* <p>If you received a <code>NextToken</code> from a previous call that was paginated,
|
|
1370
|
+
* provide this token to receive the next set of results.</p>
|
|
1371
|
+
*/
|
|
1372
|
+
NextToken?: string;
|
|
1373
|
+
/**
|
|
1374
|
+
* <p>The maximum number of items to return.</p>
|
|
1375
|
+
*/
|
|
1376
|
+
MaxResults?: number;
|
|
1377
|
+
}
|
|
1378
|
+
export declare namespace DescribeConnectClientAddInsRequest {
|
|
1379
|
+
/**
|
|
1380
|
+
* @internal
|
|
1381
|
+
*/
|
|
1382
|
+
const filterSensitiveLog: (obj: DescribeConnectClientAddInsRequest) => any;
|
|
1383
|
+
}
|
|
1384
|
+
export interface DescribeConnectClientAddInsResult {
|
|
1385
|
+
/**
|
|
1386
|
+
* <p>Information about client add-ins.</p>
|
|
1387
|
+
*/
|
|
1388
|
+
AddIns?: ConnectClientAddIn[];
|
|
1389
|
+
/**
|
|
1390
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
1391
|
+
* no more results to return. </p>
|
|
1392
|
+
*/
|
|
1393
|
+
NextToken?: string;
|
|
1394
|
+
}
|
|
1395
|
+
export declare namespace DescribeConnectClientAddInsResult {
|
|
1396
|
+
/**
|
|
1397
|
+
* @internal
|
|
1398
|
+
*/
|
|
1399
|
+
const filterSensitiveLog: (obj: DescribeConnectClientAddInsResult) => any;
|
|
1400
|
+
}
|
|
1340
1401
|
export interface DescribeConnectionAliasesRequest {
|
|
1341
1402
|
/**
|
|
1342
1403
|
* <p>The identifiers of the connection aliases to describe.</p>
|
|
@@ -2356,12 +2417,6 @@ export interface OperationInProgressException extends __SmithyException, $Metada
|
|
|
2356
2417
|
$fault: "client";
|
|
2357
2418
|
message?: string;
|
|
2358
2419
|
}
|
|
2359
|
-
export declare namespace OperationInProgressException {
|
|
2360
|
-
/**
|
|
2361
|
-
* @internal
|
|
2362
|
-
*/
|
|
2363
|
-
const filterSensitiveLog: (obj: OperationInProgressException) => any;
|
|
2364
|
-
}
|
|
2365
2420
|
export interface ModifyAccountRequest {
|
|
2366
2421
|
/**
|
|
2367
2422
|
* <p>The status of BYOL.</p>
|
|
@@ -2589,12 +2644,6 @@ export interface UnsupportedWorkspaceConfigurationException extends __SmithyExce
|
|
|
2589
2644
|
$fault: "client";
|
|
2590
2645
|
message?: string;
|
|
2591
2646
|
}
|
|
2592
|
-
export declare namespace UnsupportedWorkspaceConfigurationException {
|
|
2593
|
-
/**
|
|
2594
|
-
* @internal
|
|
2595
|
-
*/
|
|
2596
|
-
const filterSensitiveLog: (obj: UnsupportedWorkspaceConfigurationException) => any;
|
|
2597
|
-
}
|
|
2598
2647
|
export declare enum TargetWorkspaceState {
|
|
2599
2648
|
ADMIN_MAINTENANCE = "ADMIN_MAINTENANCE",
|
|
2600
2649
|
AVAILABLE = "AVAILABLE"
|
|
@@ -2764,12 +2813,6 @@ export interface UnsupportedNetworkConfigurationException extends __SmithyExcept
|
|
|
2764
2813
|
$fault: "client";
|
|
2765
2814
|
message?: string;
|
|
2766
2815
|
}
|
|
2767
|
-
export declare namespace UnsupportedNetworkConfigurationException {
|
|
2768
|
-
/**
|
|
2769
|
-
* @internal
|
|
2770
|
-
*/
|
|
2771
|
-
const filterSensitiveLog: (obj: UnsupportedNetworkConfigurationException) => any;
|
|
2772
|
-
}
|
|
2773
2816
|
/**
|
|
2774
2817
|
* <p>The workspaces_DefaultRole role could not be found. If this is the first time you are registering a directory, you
|
|
2775
2818
|
* will need to create the workspaces_DefaultRole role before you can register a directory. For more information, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/workspaces-access-control.html#create-default-role">Creating the workspaces_DefaultRole Role</a>.</p>
|
|
@@ -2779,12 +2822,6 @@ export interface WorkspacesDefaultRoleNotFoundException extends __SmithyExceptio
|
|
|
2779
2822
|
$fault: "client";
|
|
2780
2823
|
message?: string;
|
|
2781
2824
|
}
|
|
2782
|
-
export declare namespace WorkspacesDefaultRoleNotFoundException {
|
|
2783
|
-
/**
|
|
2784
|
-
* @internal
|
|
2785
|
-
*/
|
|
2786
|
-
const filterSensitiveLog: (obj: WorkspacesDefaultRoleNotFoundException) => any;
|
|
2787
|
-
}
|
|
2788
2825
|
export interface RestoreWorkspaceRequest {
|
|
2789
2826
|
/**
|
|
2790
2827
|
* <p>The identifier of the WorkSpace.</p>
|
|
@@ -2946,6 +2983,38 @@ export declare namespace TerminateWorkspacesResult {
|
|
|
2946
2983
|
*/
|
|
2947
2984
|
const filterSensitiveLog: (obj: TerminateWorkspacesResult) => any;
|
|
2948
2985
|
}
|
|
2986
|
+
export interface UpdateConnectClientAddInRequest {
|
|
2987
|
+
/**
|
|
2988
|
+
* <p>The identifier of the client add-in to update.</p>
|
|
2989
|
+
*/
|
|
2990
|
+
AddInId: string | undefined;
|
|
2991
|
+
/**
|
|
2992
|
+
* <p>The directory identifier for which the client add-in is configured.</p>
|
|
2993
|
+
*/
|
|
2994
|
+
ResourceId: string | undefined;
|
|
2995
|
+
/**
|
|
2996
|
+
* <p>The name of the client add-in.</p>
|
|
2997
|
+
*/
|
|
2998
|
+
Name?: string;
|
|
2999
|
+
/**
|
|
3000
|
+
* <p>The endpoint URL of the Amazon Connect client add-in.</p>
|
|
3001
|
+
*/
|
|
3002
|
+
URL?: string;
|
|
3003
|
+
}
|
|
3004
|
+
export declare namespace UpdateConnectClientAddInRequest {
|
|
3005
|
+
/**
|
|
3006
|
+
* @internal
|
|
3007
|
+
*/
|
|
3008
|
+
const filterSensitiveLog: (obj: UpdateConnectClientAddInRequest) => any;
|
|
3009
|
+
}
|
|
3010
|
+
export interface UpdateConnectClientAddInResult {
|
|
3011
|
+
}
|
|
3012
|
+
export declare namespace UpdateConnectClientAddInResult {
|
|
3013
|
+
/**
|
|
3014
|
+
* @internal
|
|
3015
|
+
*/
|
|
3016
|
+
const filterSensitiveLog: (obj: UpdateConnectClientAddInResult) => any;
|
|
3017
|
+
}
|
|
2949
3018
|
export interface UpdateConnectionAliasPermissionRequest {
|
|
2950
3019
|
/**
|
|
2951
3020
|
* <p>The identifier of the connection alias that you want to update permissions for.</p>
|
|
@@ -4,12 +4,14 @@ import { AssociateConnectionAliasCommandInput, AssociateConnectionAliasCommandOu
|
|
|
4
4
|
import { AssociateIpGroupsCommandInput, AssociateIpGroupsCommandOutput } from "../commands/AssociateIpGroupsCommand";
|
|
5
5
|
import { AuthorizeIpRulesCommandInput, AuthorizeIpRulesCommandOutput } from "../commands/AuthorizeIpRulesCommand";
|
|
6
6
|
import { CopyWorkspaceImageCommandInput, CopyWorkspaceImageCommandOutput } from "../commands/CopyWorkspaceImageCommand";
|
|
7
|
+
import { CreateConnectClientAddInCommandInput, CreateConnectClientAddInCommandOutput } from "../commands/CreateConnectClientAddInCommand";
|
|
7
8
|
import { CreateConnectionAliasCommandInput, CreateConnectionAliasCommandOutput } from "../commands/CreateConnectionAliasCommand";
|
|
8
9
|
import { CreateIpGroupCommandInput, CreateIpGroupCommandOutput } from "../commands/CreateIpGroupCommand";
|
|
9
10
|
import { CreateTagsCommandInput, CreateTagsCommandOutput } from "../commands/CreateTagsCommand";
|
|
10
11
|
import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "../commands/CreateUpdatedWorkspaceImageCommand";
|
|
11
12
|
import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "../commands/CreateWorkspaceBundleCommand";
|
|
12
13
|
import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "../commands/CreateWorkspacesCommand";
|
|
14
|
+
import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "../commands/DeleteConnectClientAddInCommand";
|
|
13
15
|
import { DeleteConnectionAliasCommandInput, DeleteConnectionAliasCommandOutput } from "../commands/DeleteConnectionAliasCommand";
|
|
14
16
|
import { DeleteIpGroupCommandInput, DeleteIpGroupCommandOutput } from "../commands/DeleteIpGroupCommand";
|
|
15
17
|
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "../commands/DeleteTagsCommand";
|
|
@@ -19,6 +21,7 @@ import { DeregisterWorkspaceDirectoryCommandInput, DeregisterWorkspaceDirectoryC
|
|
|
19
21
|
import { DescribeAccountCommandInput, DescribeAccountCommandOutput } from "../commands/DescribeAccountCommand";
|
|
20
22
|
import { DescribeAccountModificationsCommandInput, DescribeAccountModificationsCommandOutput } from "../commands/DescribeAccountModificationsCommand";
|
|
21
23
|
import { DescribeClientPropertiesCommandInput, DescribeClientPropertiesCommandOutput } from "../commands/DescribeClientPropertiesCommand";
|
|
24
|
+
import { DescribeConnectClientAddInsCommandInput, DescribeConnectClientAddInsCommandOutput } from "../commands/DescribeConnectClientAddInsCommand";
|
|
22
25
|
import { DescribeConnectionAliasesCommandInput, DescribeConnectionAliasesCommandOutput } from "../commands/DescribeConnectionAliasesCommand";
|
|
23
26
|
import { DescribeConnectionAliasPermissionsCommandInput, DescribeConnectionAliasPermissionsCommandOutput } from "../commands/DescribeConnectionAliasPermissionsCommand";
|
|
24
27
|
import { DescribeIpGroupsCommandInput, DescribeIpGroupsCommandOutput } from "../commands/DescribeIpGroupsCommand";
|
|
@@ -50,6 +53,7 @@ import { RevokeIpRulesCommandInput, RevokeIpRulesCommandOutput } from "../comman
|
|
|
50
53
|
import { StartWorkspacesCommandInput, StartWorkspacesCommandOutput } from "../commands/StartWorkspacesCommand";
|
|
51
54
|
import { StopWorkspacesCommandInput, StopWorkspacesCommandOutput } from "../commands/StopWorkspacesCommand";
|
|
52
55
|
import { TerminateWorkspacesCommandInput, TerminateWorkspacesCommandOutput } from "../commands/TerminateWorkspacesCommand";
|
|
56
|
+
import { UpdateConnectClientAddInCommandInput, UpdateConnectClientAddInCommandOutput } from "../commands/UpdateConnectClientAddInCommand";
|
|
53
57
|
import { UpdateConnectionAliasPermissionCommandInput, UpdateConnectionAliasPermissionCommandOutput } from "../commands/UpdateConnectionAliasPermissionCommand";
|
|
54
58
|
import { UpdateRulesOfIpGroupCommandInput, UpdateRulesOfIpGroupCommandOutput } from "../commands/UpdateRulesOfIpGroupCommand";
|
|
55
59
|
import { UpdateWorkspaceBundleCommandInput, UpdateWorkspaceBundleCommandOutput } from "../commands/UpdateWorkspaceBundleCommand";
|
|
@@ -58,12 +62,14 @@ export declare const serializeAws_json1_1AssociateConnectionAliasCommand: (input
|
|
|
58
62
|
export declare const serializeAws_json1_1AssociateIpGroupsCommand: (input: AssociateIpGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
63
|
export declare const serializeAws_json1_1AuthorizeIpRulesCommand: (input: AuthorizeIpRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
64
|
export declare const serializeAws_json1_1CopyWorkspaceImageCommand: (input: CopyWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
+
export declare const serializeAws_json1_1CreateConnectClientAddInCommand: (input: CreateConnectClientAddInCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
66
|
export declare const serializeAws_json1_1CreateConnectionAliasCommand: (input: CreateConnectionAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
67
|
export declare const serializeAws_json1_1CreateIpGroupCommand: (input: CreateIpGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
68
|
export declare const serializeAws_json1_1CreateTagsCommand: (input: CreateTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
69
|
export declare const serializeAws_json1_1CreateUpdatedWorkspaceImageCommand: (input: CreateUpdatedWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
70
|
export declare const serializeAws_json1_1CreateWorkspaceBundleCommand: (input: CreateWorkspaceBundleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
71
|
export declare const serializeAws_json1_1CreateWorkspacesCommand: (input: CreateWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
+
export declare const serializeAws_json1_1DeleteConnectClientAddInCommand: (input: DeleteConnectClientAddInCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
73
|
export declare const serializeAws_json1_1DeleteConnectionAliasCommand: (input: DeleteConnectionAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
74
|
export declare const serializeAws_json1_1DeleteIpGroupCommand: (input: DeleteIpGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
75
|
export declare const serializeAws_json1_1DeleteTagsCommand: (input: DeleteTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -73,6 +79,7 @@ export declare const serializeAws_json1_1DeregisterWorkspaceDirectoryCommand: (i
|
|
|
73
79
|
export declare const serializeAws_json1_1DescribeAccountCommand: (input: DescribeAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
80
|
export declare const serializeAws_json1_1DescribeAccountModificationsCommand: (input: DescribeAccountModificationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
81
|
export declare const serializeAws_json1_1DescribeClientPropertiesCommand: (input: DescribeClientPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_json1_1DescribeConnectClientAddInsCommand: (input: DescribeConnectClientAddInsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
83
|
export declare const serializeAws_json1_1DescribeConnectionAliasesCommand: (input: DescribeConnectionAliasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
84
|
export declare const serializeAws_json1_1DescribeConnectionAliasPermissionsCommand: (input: DescribeConnectionAliasPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
85
|
export declare const serializeAws_json1_1DescribeIpGroupsCommand: (input: DescribeIpGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -104,6 +111,7 @@ export declare const serializeAws_json1_1RevokeIpRulesCommand: (input: RevokeIpR
|
|
|
104
111
|
export declare const serializeAws_json1_1StartWorkspacesCommand: (input: StartWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
112
|
export declare const serializeAws_json1_1StopWorkspacesCommand: (input: StopWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
113
|
export declare const serializeAws_json1_1TerminateWorkspacesCommand: (input: TerminateWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1UpdateConnectClientAddInCommand: (input: UpdateConnectClientAddInCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
115
|
export declare const serializeAws_json1_1UpdateConnectionAliasPermissionCommand: (input: UpdateConnectionAliasPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
116
|
export declare const serializeAws_json1_1UpdateRulesOfIpGroupCommand: (input: UpdateRulesOfIpGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
117
|
export declare const serializeAws_json1_1UpdateWorkspaceBundleCommand: (input: UpdateWorkspaceBundleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -112,12 +120,14 @@ export declare const deserializeAws_json1_1AssociateConnectionAliasCommand: (out
|
|
|
112
120
|
export declare const deserializeAws_json1_1AssociateIpGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateIpGroupsCommandOutput>;
|
|
113
121
|
export declare const deserializeAws_json1_1AuthorizeIpRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AuthorizeIpRulesCommandOutput>;
|
|
114
122
|
export declare const deserializeAws_json1_1CopyWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CopyWorkspaceImageCommandOutput>;
|
|
123
|
+
export declare const deserializeAws_json1_1CreateConnectClientAddInCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConnectClientAddInCommandOutput>;
|
|
115
124
|
export declare const deserializeAws_json1_1CreateConnectionAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConnectionAliasCommandOutput>;
|
|
116
125
|
export declare const deserializeAws_json1_1CreateIpGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIpGroupCommandOutput>;
|
|
117
126
|
export declare const deserializeAws_json1_1CreateTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTagsCommandOutput>;
|
|
118
127
|
export declare const deserializeAws_json1_1CreateUpdatedWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUpdatedWorkspaceImageCommandOutput>;
|
|
119
128
|
export declare const deserializeAws_json1_1CreateWorkspaceBundleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceBundleCommandOutput>;
|
|
120
129
|
export declare const deserializeAws_json1_1CreateWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspacesCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_json1_1DeleteConnectClientAddInCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectClientAddInCommandOutput>;
|
|
121
131
|
export declare const deserializeAws_json1_1DeleteConnectionAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionAliasCommandOutput>;
|
|
122
132
|
export declare const deserializeAws_json1_1DeleteIpGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIpGroupCommandOutput>;
|
|
123
133
|
export declare const deserializeAws_json1_1DeleteTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTagsCommandOutput>;
|
|
@@ -127,6 +137,7 @@ export declare const deserializeAws_json1_1DeregisterWorkspaceDirectoryCommand:
|
|
|
127
137
|
export declare const deserializeAws_json1_1DescribeAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountCommandOutput>;
|
|
128
138
|
export declare const deserializeAws_json1_1DescribeAccountModificationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountModificationsCommandOutput>;
|
|
129
139
|
export declare const deserializeAws_json1_1DescribeClientPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClientPropertiesCommandOutput>;
|
|
140
|
+
export declare const deserializeAws_json1_1DescribeConnectClientAddInsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectClientAddInsCommandOutput>;
|
|
130
141
|
export declare const deserializeAws_json1_1DescribeConnectionAliasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectionAliasesCommandOutput>;
|
|
131
142
|
export declare const deserializeAws_json1_1DescribeConnectionAliasPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectionAliasPermissionsCommandOutput>;
|
|
132
143
|
export declare const deserializeAws_json1_1DescribeIpGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeIpGroupsCommandOutput>;
|
|
@@ -158,6 +169,7 @@ export declare const deserializeAws_json1_1RevokeIpRulesCommand: (output: __Http
|
|
|
158
169
|
export declare const deserializeAws_json1_1StartWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartWorkspacesCommandOutput>;
|
|
159
170
|
export declare const deserializeAws_json1_1StopWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopWorkspacesCommandOutput>;
|
|
160
171
|
export declare const deserializeAws_json1_1TerminateWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TerminateWorkspacesCommandOutput>;
|
|
172
|
+
export declare const deserializeAws_json1_1UpdateConnectClientAddInCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectClientAddInCommandOutput>;
|
|
161
173
|
export declare const deserializeAws_json1_1UpdateConnectionAliasPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectionAliasPermissionCommandOutput>;
|
|
162
174
|
export declare const deserializeAws_json1_1UpdateRulesOfIpGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRulesOfIpGroupCommandOutput>;
|
|
163
175
|
export declare const deserializeAws_json1_1UpdateWorkspaceBundleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkspaceBundleCommandOutput>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { WorkSpacesClientConfig } from "./WorkSpacesClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { WorkSpacesClientConfig } from "./WorkSpacesClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -3,12 +3,14 @@ import { AssociateConnectionAliasCommandInput, AssociateConnectionAliasCommandOu
|
|
|
3
3
|
import { AssociateIpGroupsCommandInput, AssociateIpGroupsCommandOutput } from "./commands/AssociateIpGroupsCommand";
|
|
4
4
|
import { AuthorizeIpRulesCommandInput, AuthorizeIpRulesCommandOutput } from "./commands/AuthorizeIpRulesCommand";
|
|
5
5
|
import { CopyWorkspaceImageCommandInput, CopyWorkspaceImageCommandOutput } from "./commands/CopyWorkspaceImageCommand";
|
|
6
|
+
import { CreateConnectClientAddInCommandInput, CreateConnectClientAddInCommandOutput } from "./commands/CreateConnectClientAddInCommand";
|
|
6
7
|
import { CreateConnectionAliasCommandInput, CreateConnectionAliasCommandOutput } from "./commands/CreateConnectionAliasCommand";
|
|
7
8
|
import { CreateIpGroupCommandInput, CreateIpGroupCommandOutput } from "./commands/CreateIpGroupCommand";
|
|
8
9
|
import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/CreateTagsCommand";
|
|
9
10
|
import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "./commands/CreateUpdatedWorkspaceImageCommand";
|
|
10
11
|
import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "./commands/CreateWorkspaceBundleCommand";
|
|
11
12
|
import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "./commands/CreateWorkspacesCommand";
|
|
13
|
+
import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "./commands/DeleteConnectClientAddInCommand";
|
|
12
14
|
import { DeleteConnectionAliasCommandInput, DeleteConnectionAliasCommandOutput } from "./commands/DeleteConnectionAliasCommand";
|
|
13
15
|
import { DeleteIpGroupCommandInput, DeleteIpGroupCommandOutput } from "./commands/DeleteIpGroupCommand";
|
|
14
16
|
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
@@ -18,6 +20,7 @@ import { DeregisterWorkspaceDirectoryCommandInput, DeregisterWorkspaceDirectoryC
|
|
|
18
20
|
import { DescribeAccountCommandInput, DescribeAccountCommandOutput } from "./commands/DescribeAccountCommand";
|
|
19
21
|
import { DescribeAccountModificationsCommandInput, DescribeAccountModificationsCommandOutput } from "./commands/DescribeAccountModificationsCommand";
|
|
20
22
|
import { DescribeClientPropertiesCommandInput, DescribeClientPropertiesCommandOutput } from "./commands/DescribeClientPropertiesCommand";
|
|
23
|
+
import { DescribeConnectClientAddInsCommandInput, DescribeConnectClientAddInsCommandOutput } from "./commands/DescribeConnectClientAddInsCommand";
|
|
21
24
|
import { DescribeConnectionAliasesCommandInput, DescribeConnectionAliasesCommandOutput } from "./commands/DescribeConnectionAliasesCommand";
|
|
22
25
|
import { DescribeConnectionAliasPermissionsCommandInput, DescribeConnectionAliasPermissionsCommandOutput } from "./commands/DescribeConnectionAliasPermissionsCommand";
|
|
23
26
|
import { DescribeIpGroupsCommandInput, DescribeIpGroupsCommandOutput } from "./commands/DescribeIpGroupsCommand";
|
|
@@ -49,6 +52,7 @@ import { RevokeIpRulesCommandInput, RevokeIpRulesCommandOutput } from "./command
|
|
|
49
52
|
import { StartWorkspacesCommandInput, StartWorkspacesCommandOutput } from "./commands/StartWorkspacesCommand";
|
|
50
53
|
import { StopWorkspacesCommandInput, StopWorkspacesCommandOutput } from "./commands/StopWorkspacesCommand";
|
|
51
54
|
import { TerminateWorkspacesCommandInput, TerminateWorkspacesCommandOutput } from "./commands/TerminateWorkspacesCommand";
|
|
55
|
+
import { UpdateConnectClientAddInCommandInput, UpdateConnectClientAddInCommandOutput } from "./commands/UpdateConnectClientAddInCommand";
|
|
52
56
|
import { UpdateConnectionAliasPermissionCommandInput, UpdateConnectionAliasPermissionCommandOutput } from "./commands/UpdateConnectionAliasPermissionCommand";
|
|
53
57
|
import { UpdateRulesOfIpGroupCommandInput, UpdateRulesOfIpGroupCommandOutput } from "./commands/UpdateRulesOfIpGroupCommand";
|
|
54
58
|
import { UpdateWorkspaceBundleCommandInput, UpdateWorkspaceBundleCommandOutput } from "./commands/UpdateWorkspaceBundleCommand";
|
|
@@ -73,6 +77,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
|
|
|
73
77
|
copyWorkspaceImage(args: CopyWorkspaceImageCommandInput, cb: (err: any, data?: CopyWorkspaceImageCommandOutput) => void): void;
|
|
74
78
|
copyWorkspaceImage(args: CopyWorkspaceImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyWorkspaceImageCommandOutput) => void): void;
|
|
75
79
|
|
|
80
|
+
createConnectClientAddIn(args: CreateConnectClientAddInCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectClientAddInCommandOutput>;
|
|
81
|
+
createConnectClientAddIn(args: CreateConnectClientAddInCommandInput, cb: (err: any, data?: CreateConnectClientAddInCommandOutput) => void): void;
|
|
82
|
+
createConnectClientAddIn(args: CreateConnectClientAddInCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectClientAddInCommandOutput) => void): void;
|
|
83
|
+
|
|
76
84
|
createConnectionAlias(args: CreateConnectionAliasCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectionAliasCommandOutput>;
|
|
77
85
|
createConnectionAlias(args: CreateConnectionAliasCommandInput, cb: (err: any, data?: CreateConnectionAliasCommandOutput) => void): void;
|
|
78
86
|
createConnectionAlias(args: CreateConnectionAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectionAliasCommandOutput) => void): void;
|
|
@@ -97,6 +105,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
|
|
|
97
105
|
createWorkspaces(args: CreateWorkspacesCommandInput, cb: (err: any, data?: CreateWorkspacesCommandOutput) => void): void;
|
|
98
106
|
createWorkspaces(args: CreateWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspacesCommandOutput) => void): void;
|
|
99
107
|
|
|
108
|
+
deleteConnectClientAddIn(args: DeleteConnectClientAddInCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectClientAddInCommandOutput>;
|
|
109
|
+
deleteConnectClientAddIn(args: DeleteConnectClientAddInCommandInput, cb: (err: any, data?: DeleteConnectClientAddInCommandOutput) => void): void;
|
|
110
|
+
deleteConnectClientAddIn(args: DeleteConnectClientAddInCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectClientAddInCommandOutput) => void): void;
|
|
111
|
+
|
|
100
112
|
deleteConnectionAlias(args: DeleteConnectionAliasCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectionAliasCommandOutput>;
|
|
101
113
|
deleteConnectionAlias(args: DeleteConnectionAliasCommandInput, cb: (err: any, data?: DeleteConnectionAliasCommandOutput) => void): void;
|
|
102
114
|
deleteConnectionAlias(args: DeleteConnectionAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionAliasCommandOutput) => void): void;
|
|
@@ -133,6 +145,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
|
|
|
133
145
|
describeClientProperties(args: DescribeClientPropertiesCommandInput, cb: (err: any, data?: DescribeClientPropertiesCommandOutput) => void): void;
|
|
134
146
|
describeClientProperties(args: DescribeClientPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientPropertiesCommandOutput) => void): void;
|
|
135
147
|
|
|
148
|
+
describeConnectClientAddIns(args: DescribeConnectClientAddInsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectClientAddInsCommandOutput>;
|
|
149
|
+
describeConnectClientAddIns(args: DescribeConnectClientAddInsCommandInput, cb: (err: any, data?: DescribeConnectClientAddInsCommandOutput) => void): void;
|
|
150
|
+
describeConnectClientAddIns(args: DescribeConnectClientAddInsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectClientAddInsCommandOutput) => void): void;
|
|
151
|
+
|
|
136
152
|
describeConnectionAliases(args: DescribeConnectionAliasesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectionAliasesCommandOutput>;
|
|
137
153
|
describeConnectionAliases(args: DescribeConnectionAliasesCommandInput, cb: (err: any, data?: DescribeConnectionAliasesCommandOutput) => void): void;
|
|
138
154
|
describeConnectionAliases(args: DescribeConnectionAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectionAliasesCommandOutput) => void): void;
|
|
@@ -257,6 +273,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
|
|
|
257
273
|
terminateWorkspaces(args: TerminateWorkspacesCommandInput, cb: (err: any, data?: TerminateWorkspacesCommandOutput) => void): void;
|
|
258
274
|
terminateWorkspaces(args: TerminateWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateWorkspacesCommandOutput) => void): void;
|
|
259
275
|
|
|
276
|
+
updateConnectClientAddIn(args: UpdateConnectClientAddInCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectClientAddInCommandOutput>;
|
|
277
|
+
updateConnectClientAddIn(args: UpdateConnectClientAddInCommandInput, cb: (err: any, data?: UpdateConnectClientAddInCommandOutput) => void): void;
|
|
278
|
+
updateConnectClientAddIn(args: UpdateConnectClientAddInCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectClientAddInCommandOutput) => void): void;
|
|
279
|
+
|
|
260
280
|
updateConnectionAliasPermission(args: UpdateConnectionAliasPermissionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectionAliasPermissionCommandOutput>;
|
|
261
281
|
updateConnectionAliasPermission(args: UpdateConnectionAliasPermissionCommandInput, cb: (err: any, data?: UpdateConnectionAliasPermissionCommandOutput) => void): void;
|
|
262
282
|
updateConnectionAliasPermission(args: UpdateConnectionAliasPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectionAliasPermissionCommandOutput) => void): void;
|