@aws-sdk/client-workspaces-web 3.341.0 → 3.343.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.
Files changed (63) hide show
  1. package/README.md +56 -0
  2. package/dist-cjs/WorkSpacesWeb.js +14 -0
  3. package/dist-cjs/commands/AssociateIpAccessSettingsCommand.js +46 -0
  4. package/dist-cjs/commands/CreateIpAccessSettingsCommand.js +47 -0
  5. package/dist-cjs/commands/DeleteIpAccessSettingsCommand.js +46 -0
  6. package/dist-cjs/commands/DisassociateIpAccessSettingsCommand.js +46 -0
  7. package/dist-cjs/commands/GetIpAccessSettingsCommand.js +47 -0
  8. package/dist-cjs/commands/ListIpAccessSettingsCommand.js +47 -0
  9. package/dist-cjs/commands/UpdateIpAccessSettingsCommand.js +47 -0
  10. package/dist-cjs/commands/index.js +7 -0
  11. package/dist-cjs/endpoint/ruleset.js +3 -3
  12. package/dist-cjs/models/models_0.js +52 -1
  13. package/dist-cjs/pagination/ListIpAccessSettingsPaginator.js +29 -0
  14. package/dist-cjs/pagination/index.js +1 -0
  15. package/dist-cjs/protocols/Aws_restJson1.js +498 -3
  16. package/dist-es/WorkSpacesWeb.js +14 -0
  17. package/dist-es/commands/AssociateIpAccessSettingsCommand.js +42 -0
  18. package/dist-es/commands/CreateIpAccessSettingsCommand.js +43 -0
  19. package/dist-es/commands/DeleteIpAccessSettingsCommand.js +42 -0
  20. package/dist-es/commands/DisassociateIpAccessSettingsCommand.js +42 -0
  21. package/dist-es/commands/GetIpAccessSettingsCommand.js +43 -0
  22. package/dist-es/commands/ListIpAccessSettingsCommand.js +43 -0
  23. package/dist-es/commands/UpdateIpAccessSettingsCommand.js +43 -0
  24. package/dist-es/commands/index.js +7 -0
  25. package/dist-es/endpoint/ruleset.js +3 -3
  26. package/dist-es/models/models_0.js +43 -0
  27. package/dist-es/pagination/ListIpAccessSettingsPaginator.js +25 -0
  28. package/dist-es/pagination/index.js +1 -0
  29. package/dist-es/protocols/Aws_restJson1.js +481 -0
  30. package/dist-types/WorkSpacesWeb.d.ts +49 -0
  31. package/dist-types/WorkSpacesWebClient.d.ts +9 -2
  32. package/dist-types/commands/AssociateIpAccessSettingsCommand.d.ts +93 -0
  33. package/dist-types/commands/CreateIpAccessSettingsCommand.d.ts +109 -0
  34. package/dist-types/commands/DeleteIpAccessSettingsCommand.d.ts +86 -0
  35. package/dist-types/commands/DisassociateIpAccessSettingsCommand.d.ts +86 -0
  36. package/dist-types/commands/GetIpAccessSettingsCommand.d.ts +102 -0
  37. package/dist-types/commands/GetPortalCommand.d.ts +1 -0
  38. package/dist-types/commands/ListIpAccessSettingsCommand.d.ts +94 -0
  39. package/dist-types/commands/ListPortalsCommand.d.ts +1 -0
  40. package/dist-types/commands/UpdateIpAccessSettingsCommand.d.ts +111 -0
  41. package/dist-types/commands/UpdatePortalCommand.d.ts +4 -0
  42. package/dist-types/commands/index.d.ts +7 -0
  43. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  44. package/dist-types/models/models_0.d.ts +290 -0
  45. package/dist-types/pagination/ListIpAccessSettingsPaginator.d.ts +7 -0
  46. package/dist-types/pagination/index.d.ts +1 -0
  47. package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
  48. package/dist-types/ts3.4/WorkSpacesWeb.d.ts +119 -0
  49. package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +42 -0
  50. package/dist-types/ts3.4/commands/AssociateIpAccessSettingsCommand.d.ts +42 -0
  51. package/dist-types/ts3.4/commands/CreateIpAccessSettingsCommand.d.ts +42 -0
  52. package/dist-types/ts3.4/commands/DeleteIpAccessSettingsCommand.d.ts +42 -0
  53. package/dist-types/ts3.4/commands/DisassociateIpAccessSettingsCommand.d.ts +42 -0
  54. package/dist-types/ts3.4/commands/GetIpAccessSettingsCommand.d.ts +39 -0
  55. package/dist-types/ts3.4/commands/ListIpAccessSettingsCommand.d.ts +42 -0
  56. package/dist-types/ts3.4/commands/UpdateIpAccessSettingsCommand.d.ts +42 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  58. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  59. package/dist-types/ts3.4/models/models_0.d.ts +94 -0
  60. package/dist-types/ts3.4/pagination/ListIpAccessSettingsPaginator.d.ts +11 -0
  61. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  62. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
  63. package/package.json +28 -28
@@ -1,10 +1,12 @@
1
1
  export * from "./AssociateBrowserSettingsCommand";
2
+ export * from "./AssociateIpAccessSettingsCommand";
2
3
  export * from "./AssociateNetworkSettingsCommand";
3
4
  export * from "./AssociateTrustStoreCommand";
4
5
  export * from "./AssociateUserAccessLoggingSettingsCommand";
5
6
  export * from "./AssociateUserSettingsCommand";
6
7
  export * from "./CreateBrowserSettingsCommand";
7
8
  export * from "./CreateIdentityProviderCommand";
9
+ export * from "./CreateIpAccessSettingsCommand";
8
10
  export * from "./CreateNetworkSettingsCommand";
9
11
  export * from "./CreatePortalCommand";
10
12
  export * from "./CreateTrustStoreCommand";
@@ -12,18 +14,21 @@ export * from "./CreateUserAccessLoggingSettingsCommand";
12
14
  export * from "./CreateUserSettingsCommand";
13
15
  export * from "./DeleteBrowserSettingsCommand";
14
16
  export * from "./DeleteIdentityProviderCommand";
17
+ export * from "./DeleteIpAccessSettingsCommand";
15
18
  export * from "./DeleteNetworkSettingsCommand";
16
19
  export * from "./DeletePortalCommand";
17
20
  export * from "./DeleteTrustStoreCommand";
18
21
  export * from "./DeleteUserAccessLoggingSettingsCommand";
19
22
  export * from "./DeleteUserSettingsCommand";
20
23
  export * from "./DisassociateBrowserSettingsCommand";
24
+ export * from "./DisassociateIpAccessSettingsCommand";
21
25
  export * from "./DisassociateNetworkSettingsCommand";
22
26
  export * from "./DisassociateTrustStoreCommand";
23
27
  export * from "./DisassociateUserAccessLoggingSettingsCommand";
24
28
  export * from "./DisassociateUserSettingsCommand";
25
29
  export * from "./GetBrowserSettingsCommand";
26
30
  export * from "./GetIdentityProviderCommand";
31
+ export * from "./GetIpAccessSettingsCommand";
27
32
  export * from "./GetNetworkSettingsCommand";
28
33
  export * from "./GetPortalCommand";
29
34
  export * from "./GetPortalServiceProviderMetadataCommand";
@@ -33,6 +38,7 @@ export * from "./GetUserAccessLoggingSettingsCommand";
33
38
  export * from "./GetUserSettingsCommand";
34
39
  export * from "./ListBrowserSettingsCommand";
35
40
  export * from "./ListIdentityProvidersCommand";
41
+ export * from "./ListIpAccessSettingsCommand";
36
42
  export * from "./ListNetworkSettingsCommand";
37
43
  export * from "./ListPortalsCommand";
38
44
  export * from "./ListTagsForResourceCommand";
@@ -44,6 +50,7 @@ export * from "./TagResourceCommand";
44
50
  export * from "./UntagResourceCommand";
45
51
  export * from "./UpdateBrowserSettingsCommand";
46
52
  export * from "./UpdateIdentityProviderCommand";
53
+ export * from "./UpdateIpAccessSettingsCommand";
47
54
  export * from "./UpdateNetworkSettingsCommand";
48
55
  export * from "./UpdatePortalCommand";
49
56
  export * from "./UpdateTrustStoreCommand";
@@ -25,7 +25,7 @@ export declare const resolveClientEndpointParameters: <T>(
25
25
  defaultSigningName: string;
26
26
  };
27
27
  export interface EndpointParameters extends __EndpointParameters {
28
- Region: string;
28
+ Region?: string;
29
29
  UseDualStack?: boolean;
30
30
  UseFIPS?: boolean;
31
31
  Endpoint?: string;
@@ -70,6 +70,14 @@ export declare class ValidationException extends __BaseException {
70
70
  opts: __ExceptionOptionType<ValidationException, __BaseException>
71
71
  );
72
72
  }
73
+ export interface AssociateIpAccessSettingsRequest {
74
+ portalArn: string | undefined;
75
+ ipAccessSettingsArn: string | undefined;
76
+ }
77
+ export interface AssociateIpAccessSettingsResponse {
78
+ portalArn: string | undefined;
79
+ ipAccessSettingsArn: string | undefined;
80
+ }
73
81
  export interface AssociateNetworkSettingsRequest {
74
82
  portalArn: string | undefined;
75
83
  networkSettingsArn: string | undefined;
@@ -153,6 +161,22 @@ export interface CreateIdentityProviderRequest {
153
161
  export interface CreateIdentityProviderResponse {
154
162
  identityProviderArn: string | undefined;
155
163
  }
164
+ export interface IpRule {
165
+ ipRange: string | undefined;
166
+ description?: string;
167
+ }
168
+ export interface CreateIpAccessSettingsRequest {
169
+ displayName?: string;
170
+ description?: string;
171
+ tags?: Tag[];
172
+ customerManagedKey?: string;
173
+ additionalEncryptionContext?: Record<string, string>;
174
+ ipRules: IpRule[] | undefined;
175
+ clientToken?: string;
176
+ }
177
+ export interface CreateIpAccessSettingsResponse {
178
+ ipAccessSettingsArn: string | undefined;
179
+ }
156
180
  export interface CreateNetworkSettingsRequest {
157
181
  vpcId: string | undefined;
158
182
  subnetIds: string[] | undefined;
@@ -218,6 +242,10 @@ export interface DeleteIdentityProviderRequest {
218
242
  identityProviderArn: string | undefined;
219
243
  }
220
244
  export interface DeleteIdentityProviderResponse {}
245
+ export interface DeleteIpAccessSettingsRequest {
246
+ ipAccessSettingsArn: string | undefined;
247
+ }
248
+ export interface DeleteIpAccessSettingsResponse {}
221
249
  export interface DeleteNetworkSettingsRequest {
222
250
  networkSettingsArn: string | undefined;
223
251
  }
@@ -242,6 +270,10 @@ export interface DisassociateBrowserSettingsRequest {
242
270
  portalArn: string | undefined;
243
271
  }
244
272
  export interface DisassociateBrowserSettingsResponse {}
273
+ export interface DisassociateIpAccessSettingsRequest {
274
+ portalArn: string | undefined;
275
+ }
276
+ export interface DisassociateIpAccessSettingsResponse {}
245
277
  export interface DisassociateNetworkSettingsRequest {
246
278
  portalArn: string | undefined;
247
279
  }
@@ -281,6 +313,20 @@ export interface IdentityProvider {
281
313
  export interface GetIdentityProviderResponse {
282
314
  identityProvider?: IdentityProvider;
283
315
  }
316
+ export interface GetIpAccessSettingsRequest {
317
+ ipAccessSettingsArn: string | undefined;
318
+ }
319
+ export interface IpAccessSettings {
320
+ ipAccessSettingsArn: string | undefined;
321
+ associatedPortalArns?: string[];
322
+ ipRules?: IpRule[];
323
+ displayName?: string;
324
+ description?: string;
325
+ creationDate?: Date;
326
+ }
327
+ export interface GetIpAccessSettingsResponse {
328
+ ipAccessSettings?: IpAccessSettings;
329
+ }
284
330
  export interface GetNetworkSettingsRequest {
285
331
  networkSettingsArn: string | undefined;
286
332
  }
@@ -326,6 +372,7 @@ export interface Portal {
326
372
  statusReason?: string;
327
373
  userAccessLoggingSettingsArn?: string;
328
374
  authenticationType?: AuthenticationType | string;
375
+ ipAccessSettingsArn?: string;
329
376
  }
330
377
  export interface GetPortalResponse {
331
378
  portal?: Portal;
@@ -416,6 +463,20 @@ export interface ListIdentityProvidersResponse {
416
463
  nextToken?: string;
417
464
  identityProviders?: IdentityProviderSummary[];
418
465
  }
466
+ export interface ListIpAccessSettingsRequest {
467
+ nextToken?: string;
468
+ maxResults?: number;
469
+ }
470
+ export interface IpAccessSettingsSummary {
471
+ ipAccessSettingsArn?: string;
472
+ displayName?: string;
473
+ description?: string;
474
+ creationDate?: Date;
475
+ }
476
+ export interface ListIpAccessSettingsResponse {
477
+ ipAccessSettings?: IpAccessSettingsSummary[];
478
+ nextToken?: string;
479
+ }
419
480
  export interface ListNetworkSettingsRequest {
420
481
  nextToken?: string;
421
482
  maxResults?: number;
@@ -446,6 +507,7 @@ export interface PortalSummary {
446
507
  trustStoreArn?: string;
447
508
  userAccessLoggingSettingsArn?: string;
448
509
  authenticationType?: AuthenticationType | string;
510
+ ipAccessSettingsArn?: string;
449
511
  }
450
512
  export interface ListPortalsResponse {
451
513
  portals?: PortalSummary[];
@@ -552,6 +614,16 @@ export interface UpdateIdentityProviderRequest {
552
614
  export interface UpdateIdentityProviderResponse {
553
615
  identityProvider: IdentityProvider | undefined;
554
616
  }
617
+ export interface UpdateIpAccessSettingsRequest {
618
+ ipAccessSettingsArn: string | undefined;
619
+ displayName?: string;
620
+ description?: string;
621
+ ipRules?: IpRule[];
622
+ clientToken?: string;
623
+ }
624
+ export interface UpdateIpAccessSettingsResponse {
625
+ ipAccessSettings: IpAccessSettings | undefined;
626
+ }
555
627
  export interface UpdateNetworkSettingsRequest {
556
628
  networkSettingsArn: string | undefined;
557
629
  vpcId?: string;
@@ -608,6 +680,10 @@ export declare const CreateBrowserSettingsRequestFilterSensitiveLog: (
608
680
  export declare const CreateIdentityProviderRequestFilterSensitiveLog: (
609
681
  obj: CreateIdentityProviderRequest
610
682
  ) => any;
683
+ export declare const IpRuleFilterSensitiveLog: (obj: IpRule) => any;
684
+ export declare const CreateIpAccessSettingsRequestFilterSensitiveLog: (
685
+ obj: CreateIpAccessSettingsRequest
686
+ ) => any;
611
687
  export declare const CreateNetworkSettingsRequestFilterSensitiveLog: (
612
688
  obj: CreateNetworkSettingsRequest
613
689
  ) => any;
@@ -635,6 +711,12 @@ export declare const IdentityProviderFilterSensitiveLog: (
635
711
  export declare const GetIdentityProviderResponseFilterSensitiveLog: (
636
712
  obj: GetIdentityProviderResponse
637
713
  ) => any;
714
+ export declare const IpAccessSettingsFilterSensitiveLog: (
715
+ obj: IpAccessSettings
716
+ ) => any;
717
+ export declare const GetIpAccessSettingsResponseFilterSensitiveLog: (
718
+ obj: GetIpAccessSettingsResponse
719
+ ) => any;
638
720
  export declare const PortalFilterSensitiveLog: (obj: Portal) => any;
639
721
  export declare const GetPortalResponseFilterSensitiveLog: (
640
722
  obj: GetPortalResponse
@@ -645,6 +727,12 @@ export declare const IdentityProviderSummaryFilterSensitiveLog: (
645
727
  export declare const ListIdentityProvidersResponseFilterSensitiveLog: (
646
728
  obj: ListIdentityProvidersResponse
647
729
  ) => any;
730
+ export declare const IpAccessSettingsSummaryFilterSensitiveLog: (
731
+ obj: IpAccessSettingsSummary
732
+ ) => any;
733
+ export declare const ListIpAccessSettingsResponseFilterSensitiveLog: (
734
+ obj: ListIpAccessSettingsResponse
735
+ ) => any;
648
736
  export declare const PortalSummaryFilterSensitiveLog: (
649
737
  obj: PortalSummary
650
738
  ) => any;
@@ -672,6 +760,12 @@ export declare const UpdateIdentityProviderRequestFilterSensitiveLog: (
672
760
  export declare const UpdateIdentityProviderResponseFilterSensitiveLog: (
673
761
  obj: UpdateIdentityProviderResponse
674
762
  ) => any;
763
+ export declare const UpdateIpAccessSettingsRequestFilterSensitiveLog: (
764
+ obj: UpdateIpAccessSettingsRequest
765
+ ) => any;
766
+ export declare const UpdateIpAccessSettingsResponseFilterSensitiveLog: (
767
+ obj: UpdateIpAccessSettingsResponse
768
+ ) => any;
675
769
  export declare const UpdatePortalRequestFilterSensitiveLog: (
676
770
  obj: UpdatePortalRequest
677
771
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListIpAccessSettingsCommandInput,
4
+ ListIpAccessSettingsCommandOutput,
5
+ } from "../commands/ListIpAccessSettingsCommand";
6
+ import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListIpAccessSettings(
8
+ config: WorkSpacesWebPaginationConfiguration,
9
+ input: ListIpAccessSettingsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListIpAccessSettingsCommandOutput>;
@@ -1,6 +1,7 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListBrowserSettingsPaginator";
3
3
  export * from "./ListIdentityProvidersPaginator";
4
+ export * from "./ListIpAccessSettingsPaginator";
4
5
  export * from "./ListNetworkSettingsPaginator";
5
6
  export * from "./ListPortalsPaginator";
6
7
  export * from "./ListTrustStoreCertificatesPaginator";
@@ -7,6 +7,10 @@ import {
7
7
  AssociateBrowserSettingsCommandInput,
8
8
  AssociateBrowserSettingsCommandOutput,
9
9
  } from "../commands/AssociateBrowserSettingsCommand";
10
+ import {
11
+ AssociateIpAccessSettingsCommandInput,
12
+ AssociateIpAccessSettingsCommandOutput,
13
+ } from "../commands/AssociateIpAccessSettingsCommand";
10
14
  import {
11
15
  AssociateNetworkSettingsCommandInput,
12
16
  AssociateNetworkSettingsCommandOutput,
@@ -31,6 +35,10 @@ import {
31
35
  CreateIdentityProviderCommandInput,
32
36
  CreateIdentityProviderCommandOutput,
33
37
  } from "../commands/CreateIdentityProviderCommand";
38
+ import {
39
+ CreateIpAccessSettingsCommandInput,
40
+ CreateIpAccessSettingsCommandOutput,
41
+ } from "../commands/CreateIpAccessSettingsCommand";
34
42
  import {
35
43
  CreateNetworkSettingsCommandInput,
36
44
  CreateNetworkSettingsCommandOutput,
@@ -59,6 +67,10 @@ import {
59
67
  DeleteIdentityProviderCommandInput,
60
68
  DeleteIdentityProviderCommandOutput,
61
69
  } from "../commands/DeleteIdentityProviderCommand";
70
+ import {
71
+ DeleteIpAccessSettingsCommandInput,
72
+ DeleteIpAccessSettingsCommandOutput,
73
+ } from "../commands/DeleteIpAccessSettingsCommand";
62
74
  import {
63
75
  DeleteNetworkSettingsCommandInput,
64
76
  DeleteNetworkSettingsCommandOutput,
@@ -83,6 +95,10 @@ import {
83
95
  DisassociateBrowserSettingsCommandInput,
84
96
  DisassociateBrowserSettingsCommandOutput,
85
97
  } from "../commands/DisassociateBrowserSettingsCommand";
98
+ import {
99
+ DisassociateIpAccessSettingsCommandInput,
100
+ DisassociateIpAccessSettingsCommandOutput,
101
+ } from "../commands/DisassociateIpAccessSettingsCommand";
86
102
  import {
87
103
  DisassociateNetworkSettingsCommandInput,
88
104
  DisassociateNetworkSettingsCommandOutput,
@@ -107,6 +123,10 @@ import {
107
123
  GetIdentityProviderCommandInput,
108
124
  GetIdentityProviderCommandOutput,
109
125
  } from "../commands/GetIdentityProviderCommand";
126
+ import {
127
+ GetIpAccessSettingsCommandInput,
128
+ GetIpAccessSettingsCommandOutput,
129
+ } from "../commands/GetIpAccessSettingsCommand";
110
130
  import {
111
131
  GetNetworkSettingsCommandInput,
112
132
  GetNetworkSettingsCommandOutput,
@@ -143,6 +163,10 @@ import {
143
163
  ListIdentityProvidersCommandInput,
144
164
  ListIdentityProvidersCommandOutput,
145
165
  } from "../commands/ListIdentityProvidersCommand";
166
+ import {
167
+ ListIpAccessSettingsCommandInput,
168
+ ListIpAccessSettingsCommandOutput,
169
+ } from "../commands/ListIpAccessSettingsCommand";
146
170
  import {
147
171
  ListNetworkSettingsCommandInput,
148
172
  ListNetworkSettingsCommandOutput,
@@ -187,6 +211,10 @@ import {
187
211
  UpdateIdentityProviderCommandInput,
188
212
  UpdateIdentityProviderCommandOutput,
189
213
  } from "../commands/UpdateIdentityProviderCommand";
214
+ import {
215
+ UpdateIpAccessSettingsCommandInput,
216
+ UpdateIpAccessSettingsCommandOutput,
217
+ } from "../commands/UpdateIpAccessSettingsCommand";
190
218
  import {
191
219
  UpdateNetworkSettingsCommandInput,
192
220
  UpdateNetworkSettingsCommandOutput,
@@ -211,6 +239,10 @@ export declare const se_AssociateBrowserSettingsCommand: (
211
239
  input: AssociateBrowserSettingsCommandInput,
212
240
  context: __SerdeContext
213
241
  ) => Promise<__HttpRequest>;
242
+ export declare const se_AssociateIpAccessSettingsCommand: (
243
+ input: AssociateIpAccessSettingsCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
214
246
  export declare const se_AssociateNetworkSettingsCommand: (
215
247
  input: AssociateNetworkSettingsCommandInput,
216
248
  context: __SerdeContext
@@ -235,6 +267,10 @@ export declare const se_CreateIdentityProviderCommand: (
235
267
  input: CreateIdentityProviderCommandInput,
236
268
  context: __SerdeContext
237
269
  ) => Promise<__HttpRequest>;
270
+ export declare const se_CreateIpAccessSettingsCommand: (
271
+ input: CreateIpAccessSettingsCommandInput,
272
+ context: __SerdeContext
273
+ ) => Promise<__HttpRequest>;
238
274
  export declare const se_CreateNetworkSettingsCommand: (
239
275
  input: CreateNetworkSettingsCommandInput,
240
276
  context: __SerdeContext
@@ -263,6 +299,10 @@ export declare const se_DeleteIdentityProviderCommand: (
263
299
  input: DeleteIdentityProviderCommandInput,
264
300
  context: __SerdeContext
265
301
  ) => Promise<__HttpRequest>;
302
+ export declare const se_DeleteIpAccessSettingsCommand: (
303
+ input: DeleteIpAccessSettingsCommandInput,
304
+ context: __SerdeContext
305
+ ) => Promise<__HttpRequest>;
266
306
  export declare const se_DeleteNetworkSettingsCommand: (
267
307
  input: DeleteNetworkSettingsCommandInput,
268
308
  context: __SerdeContext
@@ -287,6 +327,10 @@ export declare const se_DisassociateBrowserSettingsCommand: (
287
327
  input: DisassociateBrowserSettingsCommandInput,
288
328
  context: __SerdeContext
289
329
  ) => Promise<__HttpRequest>;
330
+ export declare const se_DisassociateIpAccessSettingsCommand: (
331
+ input: DisassociateIpAccessSettingsCommandInput,
332
+ context: __SerdeContext
333
+ ) => Promise<__HttpRequest>;
290
334
  export declare const se_DisassociateNetworkSettingsCommand: (
291
335
  input: DisassociateNetworkSettingsCommandInput,
292
336
  context: __SerdeContext
@@ -311,6 +355,10 @@ export declare const se_GetIdentityProviderCommand: (
311
355
  input: GetIdentityProviderCommandInput,
312
356
  context: __SerdeContext
313
357
  ) => Promise<__HttpRequest>;
358
+ export declare const se_GetIpAccessSettingsCommand: (
359
+ input: GetIpAccessSettingsCommandInput,
360
+ context: __SerdeContext
361
+ ) => Promise<__HttpRequest>;
314
362
  export declare const se_GetNetworkSettingsCommand: (
315
363
  input: GetNetworkSettingsCommandInput,
316
364
  context: __SerdeContext
@@ -347,6 +395,10 @@ export declare const se_ListIdentityProvidersCommand: (
347
395
  input: ListIdentityProvidersCommandInput,
348
396
  context: __SerdeContext
349
397
  ) => Promise<__HttpRequest>;
398
+ export declare const se_ListIpAccessSettingsCommand: (
399
+ input: ListIpAccessSettingsCommandInput,
400
+ context: __SerdeContext
401
+ ) => Promise<__HttpRequest>;
350
402
  export declare const se_ListNetworkSettingsCommand: (
351
403
  input: ListNetworkSettingsCommandInput,
352
404
  context: __SerdeContext
@@ -391,6 +443,10 @@ export declare const se_UpdateIdentityProviderCommand: (
391
443
  input: UpdateIdentityProviderCommandInput,
392
444
  context: __SerdeContext
393
445
  ) => Promise<__HttpRequest>;
446
+ export declare const se_UpdateIpAccessSettingsCommand: (
447
+ input: UpdateIpAccessSettingsCommandInput,
448
+ context: __SerdeContext
449
+ ) => Promise<__HttpRequest>;
394
450
  export declare const se_UpdateNetworkSettingsCommand: (
395
451
  input: UpdateNetworkSettingsCommandInput,
396
452
  context: __SerdeContext
@@ -415,6 +471,10 @@ export declare const de_AssociateBrowserSettingsCommand: (
415
471
  output: __HttpResponse,
416
472
  context: __SerdeContext
417
473
  ) => Promise<AssociateBrowserSettingsCommandOutput>;
474
+ export declare const de_AssociateIpAccessSettingsCommand: (
475
+ output: __HttpResponse,
476
+ context: __SerdeContext
477
+ ) => Promise<AssociateIpAccessSettingsCommandOutput>;
418
478
  export declare const de_AssociateNetworkSettingsCommand: (
419
479
  output: __HttpResponse,
420
480
  context: __SerdeContext
@@ -439,6 +499,10 @@ export declare const de_CreateIdentityProviderCommand: (
439
499
  output: __HttpResponse,
440
500
  context: __SerdeContext
441
501
  ) => Promise<CreateIdentityProviderCommandOutput>;
502
+ export declare const de_CreateIpAccessSettingsCommand: (
503
+ output: __HttpResponse,
504
+ context: __SerdeContext
505
+ ) => Promise<CreateIpAccessSettingsCommandOutput>;
442
506
  export declare const de_CreateNetworkSettingsCommand: (
443
507
  output: __HttpResponse,
444
508
  context: __SerdeContext
@@ -467,6 +531,10 @@ export declare const de_DeleteIdentityProviderCommand: (
467
531
  output: __HttpResponse,
468
532
  context: __SerdeContext
469
533
  ) => Promise<DeleteIdentityProviderCommandOutput>;
534
+ export declare const de_DeleteIpAccessSettingsCommand: (
535
+ output: __HttpResponse,
536
+ context: __SerdeContext
537
+ ) => Promise<DeleteIpAccessSettingsCommandOutput>;
470
538
  export declare const de_DeleteNetworkSettingsCommand: (
471
539
  output: __HttpResponse,
472
540
  context: __SerdeContext
@@ -491,6 +559,10 @@ export declare const de_DisassociateBrowserSettingsCommand: (
491
559
  output: __HttpResponse,
492
560
  context: __SerdeContext
493
561
  ) => Promise<DisassociateBrowserSettingsCommandOutput>;
562
+ export declare const de_DisassociateIpAccessSettingsCommand: (
563
+ output: __HttpResponse,
564
+ context: __SerdeContext
565
+ ) => Promise<DisassociateIpAccessSettingsCommandOutput>;
494
566
  export declare const de_DisassociateNetworkSettingsCommand: (
495
567
  output: __HttpResponse,
496
568
  context: __SerdeContext
@@ -515,6 +587,10 @@ export declare const de_GetIdentityProviderCommand: (
515
587
  output: __HttpResponse,
516
588
  context: __SerdeContext
517
589
  ) => Promise<GetIdentityProviderCommandOutput>;
590
+ export declare const de_GetIpAccessSettingsCommand: (
591
+ output: __HttpResponse,
592
+ context: __SerdeContext
593
+ ) => Promise<GetIpAccessSettingsCommandOutput>;
518
594
  export declare const de_GetNetworkSettingsCommand: (
519
595
  output: __HttpResponse,
520
596
  context: __SerdeContext
@@ -551,6 +627,10 @@ export declare const de_ListIdentityProvidersCommand: (
551
627
  output: __HttpResponse,
552
628
  context: __SerdeContext
553
629
  ) => Promise<ListIdentityProvidersCommandOutput>;
630
+ export declare const de_ListIpAccessSettingsCommand: (
631
+ output: __HttpResponse,
632
+ context: __SerdeContext
633
+ ) => Promise<ListIpAccessSettingsCommandOutput>;
554
634
  export declare const de_ListNetworkSettingsCommand: (
555
635
  output: __HttpResponse,
556
636
  context: __SerdeContext
@@ -595,6 +675,10 @@ export declare const de_UpdateIdentityProviderCommand: (
595
675
  output: __HttpResponse,
596
676
  context: __SerdeContext
597
677
  ) => Promise<UpdateIdentityProviderCommandOutput>;
678
+ export declare const de_UpdateIpAccessSettingsCommand: (
679
+ output: __HttpResponse,
680
+ context: __SerdeContext
681
+ ) => Promise<UpdateIpAccessSettingsCommandOutput>;
598
682
  export declare const de_UpdateNetworkSettingsCommand: (
599
683
  output: __HttpResponse,
600
684
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces-web",
3
3
  "description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native",
4
- "version": "3.341.0",
4
+ "version": "3.343.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,36 +21,36 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.341.0",
25
- "@aws-sdk/config-resolver": "3.341.0",
26
- "@aws-sdk/credential-provider-node": "3.341.0",
27
- "@aws-sdk/fetch-http-handler": "3.341.0",
28
- "@aws-sdk/hash-node": "3.341.0",
29
- "@aws-sdk/invalid-dependency": "3.341.0",
30
- "@aws-sdk/middleware-content-length": "3.341.0",
31
- "@aws-sdk/middleware-endpoint": "3.341.0",
32
- "@aws-sdk/middleware-host-header": "3.341.0",
33
- "@aws-sdk/middleware-logger": "3.341.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.341.0",
35
- "@aws-sdk/middleware-retry": "3.341.0",
36
- "@aws-sdk/middleware-serde": "3.341.0",
37
- "@aws-sdk/middleware-signing": "3.341.0",
38
- "@aws-sdk/middleware-stack": "3.341.0",
39
- "@aws-sdk/middleware-user-agent": "3.341.0",
40
- "@aws-sdk/node-config-provider": "3.341.0",
41
- "@aws-sdk/node-http-handler": "3.341.0",
42
- "@aws-sdk/smithy-client": "3.341.0",
43
- "@aws-sdk/types": "3.341.0",
44
- "@aws-sdk/url-parser": "3.341.0",
24
+ "@aws-sdk/client-sts": "3.342.0",
25
+ "@aws-sdk/config-resolver": "3.342.0",
26
+ "@aws-sdk/credential-provider-node": "3.342.0",
27
+ "@aws-sdk/fetch-http-handler": "3.342.0",
28
+ "@aws-sdk/hash-node": "3.342.0",
29
+ "@aws-sdk/invalid-dependency": "3.342.0",
30
+ "@aws-sdk/middleware-content-length": "3.342.0",
31
+ "@aws-sdk/middleware-endpoint": "3.342.0",
32
+ "@aws-sdk/middleware-host-header": "3.342.0",
33
+ "@aws-sdk/middleware-logger": "3.342.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.342.0",
35
+ "@aws-sdk/middleware-retry": "3.342.0",
36
+ "@aws-sdk/middleware-serde": "3.342.0",
37
+ "@aws-sdk/middleware-signing": "3.342.0",
38
+ "@aws-sdk/middleware-stack": "3.342.0",
39
+ "@aws-sdk/middleware-user-agent": "3.342.0",
40
+ "@aws-sdk/node-config-provider": "3.342.0",
41
+ "@aws-sdk/node-http-handler": "3.342.0",
42
+ "@aws-sdk/smithy-client": "3.342.0",
43
+ "@aws-sdk/types": "3.342.0",
44
+ "@aws-sdk/url-parser": "3.342.0",
45
45
  "@aws-sdk/util-base64": "3.310.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.310.0",
47
47
  "@aws-sdk/util-body-length-node": "3.310.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.341.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.341.0",
50
- "@aws-sdk/util-endpoints": "3.341.0",
51
- "@aws-sdk/util-retry": "3.341.0",
52
- "@aws-sdk/util-user-agent-browser": "3.341.0",
53
- "@aws-sdk/util-user-agent-node": "3.341.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.342.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.342.0",
50
+ "@aws-sdk/util-endpoints": "3.342.0",
51
+ "@aws-sdk/util-retry": "3.342.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.342.0",
53
+ "@aws-sdk/util-user-agent-node": "3.342.0",
54
54
  "@aws-sdk/util-utf8": "3.310.0",
55
55
  "@smithy/protocol-http": "^1.0.1",
56
56
  "@smithy/types": "^1.0.0",