@aws-sdk/client-workspaces-web 3.342.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 +1 -1
@@ -3,6 +3,10 @@ import {
3
3
  AssociateBrowserSettingsCommandInput,
4
4
  AssociateBrowserSettingsCommandOutput,
5
5
  } from "./commands/AssociateBrowserSettingsCommand";
6
+ import {
7
+ AssociateIpAccessSettingsCommandInput,
8
+ AssociateIpAccessSettingsCommandOutput,
9
+ } from "./commands/AssociateIpAccessSettingsCommand";
6
10
  import {
7
11
  AssociateNetworkSettingsCommandInput,
8
12
  AssociateNetworkSettingsCommandOutput,
@@ -27,6 +31,10 @@ import {
27
31
  CreateIdentityProviderCommandInput,
28
32
  CreateIdentityProviderCommandOutput,
29
33
  } from "./commands/CreateIdentityProviderCommand";
34
+ import {
35
+ CreateIpAccessSettingsCommandInput,
36
+ CreateIpAccessSettingsCommandOutput,
37
+ } from "./commands/CreateIpAccessSettingsCommand";
30
38
  import {
31
39
  CreateNetworkSettingsCommandInput,
32
40
  CreateNetworkSettingsCommandOutput,
@@ -55,6 +63,10 @@ import {
55
63
  DeleteIdentityProviderCommandInput,
56
64
  DeleteIdentityProviderCommandOutput,
57
65
  } from "./commands/DeleteIdentityProviderCommand";
66
+ import {
67
+ DeleteIpAccessSettingsCommandInput,
68
+ DeleteIpAccessSettingsCommandOutput,
69
+ } from "./commands/DeleteIpAccessSettingsCommand";
58
70
  import {
59
71
  DeleteNetworkSettingsCommandInput,
60
72
  DeleteNetworkSettingsCommandOutput,
@@ -79,6 +91,10 @@ import {
79
91
  DisassociateBrowserSettingsCommandInput,
80
92
  DisassociateBrowserSettingsCommandOutput,
81
93
  } from "./commands/DisassociateBrowserSettingsCommand";
94
+ import {
95
+ DisassociateIpAccessSettingsCommandInput,
96
+ DisassociateIpAccessSettingsCommandOutput,
97
+ } from "./commands/DisassociateIpAccessSettingsCommand";
82
98
  import {
83
99
  DisassociateNetworkSettingsCommandInput,
84
100
  DisassociateNetworkSettingsCommandOutput,
@@ -103,6 +119,10 @@ import {
103
119
  GetIdentityProviderCommandInput,
104
120
  GetIdentityProviderCommandOutput,
105
121
  } from "./commands/GetIdentityProviderCommand";
122
+ import {
123
+ GetIpAccessSettingsCommandInput,
124
+ GetIpAccessSettingsCommandOutput,
125
+ } from "./commands/GetIpAccessSettingsCommand";
106
126
  import {
107
127
  GetNetworkSettingsCommandInput,
108
128
  GetNetworkSettingsCommandOutput,
@@ -139,6 +159,10 @@ import {
139
159
  ListIdentityProvidersCommandInput,
140
160
  ListIdentityProvidersCommandOutput,
141
161
  } from "./commands/ListIdentityProvidersCommand";
162
+ import {
163
+ ListIpAccessSettingsCommandInput,
164
+ ListIpAccessSettingsCommandOutput,
165
+ } from "./commands/ListIpAccessSettingsCommand";
142
166
  import {
143
167
  ListNetworkSettingsCommandInput,
144
168
  ListNetworkSettingsCommandOutput,
@@ -183,6 +207,10 @@ import {
183
207
  UpdateIdentityProviderCommandInput,
184
208
  UpdateIdentityProviderCommandOutput,
185
209
  } from "./commands/UpdateIdentityProviderCommand";
210
+ import {
211
+ UpdateIpAccessSettingsCommandInput,
212
+ UpdateIpAccessSettingsCommandOutput,
213
+ } from "./commands/UpdateIpAccessSettingsCommand";
186
214
  import {
187
215
  UpdateNetworkSettingsCommandInput,
188
216
  UpdateNetworkSettingsCommandOutput,
@@ -218,6 +246,19 @@ export interface WorkSpacesWeb {
218
246
  options: __HttpHandlerOptions,
219
247
  cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void
220
248
  ): void;
249
+ associateIpAccessSettings(
250
+ args: AssociateIpAccessSettingsCommandInput,
251
+ options?: __HttpHandlerOptions
252
+ ): Promise<AssociateIpAccessSettingsCommandOutput>;
253
+ associateIpAccessSettings(
254
+ args: AssociateIpAccessSettingsCommandInput,
255
+ cb: (err: any, data?: AssociateIpAccessSettingsCommandOutput) => void
256
+ ): void;
257
+ associateIpAccessSettings(
258
+ args: AssociateIpAccessSettingsCommandInput,
259
+ options: __HttpHandlerOptions,
260
+ cb: (err: any, data?: AssociateIpAccessSettingsCommandOutput) => void
261
+ ): void;
221
262
  associateNetworkSettings(
222
263
  args: AssociateNetworkSettingsCommandInput,
223
264
  options?: __HttpHandlerOptions
@@ -302,6 +343,19 @@ export interface WorkSpacesWeb {
302
343
  options: __HttpHandlerOptions,
303
344
  cb: (err: any, data?: CreateIdentityProviderCommandOutput) => void
304
345
  ): void;
346
+ createIpAccessSettings(
347
+ args: CreateIpAccessSettingsCommandInput,
348
+ options?: __HttpHandlerOptions
349
+ ): Promise<CreateIpAccessSettingsCommandOutput>;
350
+ createIpAccessSettings(
351
+ args: CreateIpAccessSettingsCommandInput,
352
+ cb: (err: any, data?: CreateIpAccessSettingsCommandOutput) => void
353
+ ): void;
354
+ createIpAccessSettings(
355
+ args: CreateIpAccessSettingsCommandInput,
356
+ options: __HttpHandlerOptions,
357
+ cb: (err: any, data?: CreateIpAccessSettingsCommandOutput) => void
358
+ ): void;
305
359
  createNetworkSettings(
306
360
  args: CreateNetworkSettingsCommandInput,
307
361
  options?: __HttpHandlerOptions
@@ -393,6 +447,19 @@ export interface WorkSpacesWeb {
393
447
  options: __HttpHandlerOptions,
394
448
  cb: (err: any, data?: DeleteIdentityProviderCommandOutput) => void
395
449
  ): void;
450
+ deleteIpAccessSettings(
451
+ args: DeleteIpAccessSettingsCommandInput,
452
+ options?: __HttpHandlerOptions
453
+ ): Promise<DeleteIpAccessSettingsCommandOutput>;
454
+ deleteIpAccessSettings(
455
+ args: DeleteIpAccessSettingsCommandInput,
456
+ cb: (err: any, data?: DeleteIpAccessSettingsCommandOutput) => void
457
+ ): void;
458
+ deleteIpAccessSettings(
459
+ args: DeleteIpAccessSettingsCommandInput,
460
+ options: __HttpHandlerOptions,
461
+ cb: (err: any, data?: DeleteIpAccessSettingsCommandOutput) => void
462
+ ): void;
396
463
  deleteNetworkSettings(
397
464
  args: DeleteNetworkSettingsCommandInput,
398
465
  options?: __HttpHandlerOptions
@@ -471,6 +538,19 @@ export interface WorkSpacesWeb {
471
538
  options: __HttpHandlerOptions,
472
539
  cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void
473
540
  ): void;
541
+ disassociateIpAccessSettings(
542
+ args: DisassociateIpAccessSettingsCommandInput,
543
+ options?: __HttpHandlerOptions
544
+ ): Promise<DisassociateIpAccessSettingsCommandOutput>;
545
+ disassociateIpAccessSettings(
546
+ args: DisassociateIpAccessSettingsCommandInput,
547
+ cb: (err: any, data?: DisassociateIpAccessSettingsCommandOutput) => void
548
+ ): void;
549
+ disassociateIpAccessSettings(
550
+ args: DisassociateIpAccessSettingsCommandInput,
551
+ options: __HttpHandlerOptions,
552
+ cb: (err: any, data?: DisassociateIpAccessSettingsCommandOutput) => void
553
+ ): void;
474
554
  disassociateNetworkSettings(
475
555
  args: DisassociateNetworkSettingsCommandInput,
476
556
  options?: __HttpHandlerOptions
@@ -555,6 +635,19 @@ export interface WorkSpacesWeb {
555
635
  options: __HttpHandlerOptions,
556
636
  cb: (err: any, data?: GetIdentityProviderCommandOutput) => void
557
637
  ): void;
638
+ getIpAccessSettings(
639
+ args: GetIpAccessSettingsCommandInput,
640
+ options?: __HttpHandlerOptions
641
+ ): Promise<GetIpAccessSettingsCommandOutput>;
642
+ getIpAccessSettings(
643
+ args: GetIpAccessSettingsCommandInput,
644
+ cb: (err: any, data?: GetIpAccessSettingsCommandOutput) => void
645
+ ): void;
646
+ getIpAccessSettings(
647
+ args: GetIpAccessSettingsCommandInput,
648
+ options: __HttpHandlerOptions,
649
+ cb: (err: any, data?: GetIpAccessSettingsCommandOutput) => void
650
+ ): void;
558
651
  getNetworkSettings(
559
652
  args: GetNetworkSettingsCommandInput,
560
653
  options?: __HttpHandlerOptions
@@ -672,6 +765,19 @@ export interface WorkSpacesWeb {
672
765
  options: __HttpHandlerOptions,
673
766
  cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void
674
767
  ): void;
768
+ listIpAccessSettings(
769
+ args: ListIpAccessSettingsCommandInput,
770
+ options?: __HttpHandlerOptions
771
+ ): Promise<ListIpAccessSettingsCommandOutput>;
772
+ listIpAccessSettings(
773
+ args: ListIpAccessSettingsCommandInput,
774
+ cb: (err: any, data?: ListIpAccessSettingsCommandOutput) => void
775
+ ): void;
776
+ listIpAccessSettings(
777
+ args: ListIpAccessSettingsCommandInput,
778
+ options: __HttpHandlerOptions,
779
+ cb: (err: any, data?: ListIpAccessSettingsCommandOutput) => void
780
+ ): void;
675
781
  listNetworkSettings(
676
782
  args: ListNetworkSettingsCommandInput,
677
783
  options?: __HttpHandlerOptions
@@ -815,6 +921,19 @@ export interface WorkSpacesWeb {
815
921
  options: __HttpHandlerOptions,
816
922
  cb: (err: any, data?: UpdateIdentityProviderCommandOutput) => void
817
923
  ): void;
924
+ updateIpAccessSettings(
925
+ args: UpdateIpAccessSettingsCommandInput,
926
+ options?: __HttpHandlerOptions
927
+ ): Promise<UpdateIpAccessSettingsCommandOutput>;
928
+ updateIpAccessSettings(
929
+ args: UpdateIpAccessSettingsCommandInput,
930
+ cb: (err: any, data?: UpdateIpAccessSettingsCommandOutput) => void
931
+ ): void;
932
+ updateIpAccessSettings(
933
+ args: UpdateIpAccessSettingsCommandInput,
934
+ options: __HttpHandlerOptions,
935
+ cb: (err: any, data?: UpdateIpAccessSettingsCommandOutput) => void
936
+ ): void;
818
937
  updateNetworkSettings(
819
938
  args: UpdateNetworkSettingsCommandInput,
820
939
  options?: __HttpHandlerOptions
@@ -50,6 +50,10 @@ import {
50
50
  AssociateBrowserSettingsCommandInput,
51
51
  AssociateBrowserSettingsCommandOutput,
52
52
  } from "./commands/AssociateBrowserSettingsCommand";
53
+ import {
54
+ AssociateIpAccessSettingsCommandInput,
55
+ AssociateIpAccessSettingsCommandOutput,
56
+ } from "./commands/AssociateIpAccessSettingsCommand";
53
57
  import {
54
58
  AssociateNetworkSettingsCommandInput,
55
59
  AssociateNetworkSettingsCommandOutput,
@@ -74,6 +78,10 @@ import {
74
78
  CreateIdentityProviderCommandInput,
75
79
  CreateIdentityProviderCommandOutput,
76
80
  } from "./commands/CreateIdentityProviderCommand";
81
+ import {
82
+ CreateIpAccessSettingsCommandInput,
83
+ CreateIpAccessSettingsCommandOutput,
84
+ } from "./commands/CreateIpAccessSettingsCommand";
77
85
  import {
78
86
  CreateNetworkSettingsCommandInput,
79
87
  CreateNetworkSettingsCommandOutput,
@@ -102,6 +110,10 @@ import {
102
110
  DeleteIdentityProviderCommandInput,
103
111
  DeleteIdentityProviderCommandOutput,
104
112
  } from "./commands/DeleteIdentityProviderCommand";
113
+ import {
114
+ DeleteIpAccessSettingsCommandInput,
115
+ DeleteIpAccessSettingsCommandOutput,
116
+ } from "./commands/DeleteIpAccessSettingsCommand";
105
117
  import {
106
118
  DeleteNetworkSettingsCommandInput,
107
119
  DeleteNetworkSettingsCommandOutput,
@@ -126,6 +138,10 @@ import {
126
138
  DisassociateBrowserSettingsCommandInput,
127
139
  DisassociateBrowserSettingsCommandOutput,
128
140
  } from "./commands/DisassociateBrowserSettingsCommand";
141
+ import {
142
+ DisassociateIpAccessSettingsCommandInput,
143
+ DisassociateIpAccessSettingsCommandOutput,
144
+ } from "./commands/DisassociateIpAccessSettingsCommand";
129
145
  import {
130
146
  DisassociateNetworkSettingsCommandInput,
131
147
  DisassociateNetworkSettingsCommandOutput,
@@ -150,6 +166,10 @@ import {
150
166
  GetIdentityProviderCommandInput,
151
167
  GetIdentityProviderCommandOutput,
152
168
  } from "./commands/GetIdentityProviderCommand";
169
+ import {
170
+ GetIpAccessSettingsCommandInput,
171
+ GetIpAccessSettingsCommandOutput,
172
+ } from "./commands/GetIpAccessSettingsCommand";
153
173
  import {
154
174
  GetNetworkSettingsCommandInput,
155
175
  GetNetworkSettingsCommandOutput,
@@ -186,6 +206,10 @@ import {
186
206
  ListIdentityProvidersCommandInput,
187
207
  ListIdentityProvidersCommandOutput,
188
208
  } from "./commands/ListIdentityProvidersCommand";
209
+ import {
210
+ ListIpAccessSettingsCommandInput,
211
+ ListIpAccessSettingsCommandOutput,
212
+ } from "./commands/ListIpAccessSettingsCommand";
189
213
  import {
190
214
  ListNetworkSettingsCommandInput,
191
215
  ListNetworkSettingsCommandOutput,
@@ -230,6 +254,10 @@ import {
230
254
  UpdateIdentityProviderCommandInput,
231
255
  UpdateIdentityProviderCommandOutput,
232
256
  } from "./commands/UpdateIdentityProviderCommand";
257
+ import {
258
+ UpdateIpAccessSettingsCommandInput,
259
+ UpdateIpAccessSettingsCommandOutput,
260
+ } from "./commands/UpdateIpAccessSettingsCommand";
233
261
  import {
234
262
  UpdateNetworkSettingsCommandInput,
235
263
  UpdateNetworkSettingsCommandOutput,
@@ -258,12 +286,14 @@ import {
258
286
  export { __Client };
259
287
  export type ServiceInputTypes =
260
288
  | AssociateBrowserSettingsCommandInput
289
+ | AssociateIpAccessSettingsCommandInput
261
290
  | AssociateNetworkSettingsCommandInput
262
291
  | AssociateTrustStoreCommandInput
263
292
  | AssociateUserAccessLoggingSettingsCommandInput
264
293
  | AssociateUserSettingsCommandInput
265
294
  | CreateBrowserSettingsCommandInput
266
295
  | CreateIdentityProviderCommandInput
296
+ | CreateIpAccessSettingsCommandInput
267
297
  | CreateNetworkSettingsCommandInput
268
298
  | CreatePortalCommandInput
269
299
  | CreateTrustStoreCommandInput
@@ -271,18 +301,21 @@ export type ServiceInputTypes =
271
301
  | CreateUserSettingsCommandInput
272
302
  | DeleteBrowserSettingsCommandInput
273
303
  | DeleteIdentityProviderCommandInput
304
+ | DeleteIpAccessSettingsCommandInput
274
305
  | DeleteNetworkSettingsCommandInput
275
306
  | DeletePortalCommandInput
276
307
  | DeleteTrustStoreCommandInput
277
308
  | DeleteUserAccessLoggingSettingsCommandInput
278
309
  | DeleteUserSettingsCommandInput
279
310
  | DisassociateBrowserSettingsCommandInput
311
+ | DisassociateIpAccessSettingsCommandInput
280
312
  | DisassociateNetworkSettingsCommandInput
281
313
  | DisassociateTrustStoreCommandInput
282
314
  | DisassociateUserAccessLoggingSettingsCommandInput
283
315
  | DisassociateUserSettingsCommandInput
284
316
  | GetBrowserSettingsCommandInput
285
317
  | GetIdentityProviderCommandInput
318
+ | GetIpAccessSettingsCommandInput
286
319
  | GetNetworkSettingsCommandInput
287
320
  | GetPortalCommandInput
288
321
  | GetPortalServiceProviderMetadataCommandInput
@@ -292,6 +325,7 @@ export type ServiceInputTypes =
292
325
  | GetUserSettingsCommandInput
293
326
  | ListBrowserSettingsCommandInput
294
327
  | ListIdentityProvidersCommandInput
328
+ | ListIpAccessSettingsCommandInput
295
329
  | ListNetworkSettingsCommandInput
296
330
  | ListPortalsCommandInput
297
331
  | ListTagsForResourceCommandInput
@@ -303,6 +337,7 @@ export type ServiceInputTypes =
303
337
  | UntagResourceCommandInput
304
338
  | UpdateBrowserSettingsCommandInput
305
339
  | UpdateIdentityProviderCommandInput
340
+ | UpdateIpAccessSettingsCommandInput
306
341
  | UpdateNetworkSettingsCommandInput
307
342
  | UpdatePortalCommandInput
308
343
  | UpdateTrustStoreCommandInput
@@ -310,12 +345,14 @@ export type ServiceInputTypes =
310
345
  | UpdateUserSettingsCommandInput;
311
346
  export type ServiceOutputTypes =
312
347
  | AssociateBrowserSettingsCommandOutput
348
+ | AssociateIpAccessSettingsCommandOutput
313
349
  | AssociateNetworkSettingsCommandOutput
314
350
  | AssociateTrustStoreCommandOutput
315
351
  | AssociateUserAccessLoggingSettingsCommandOutput
316
352
  | AssociateUserSettingsCommandOutput
317
353
  | CreateBrowserSettingsCommandOutput
318
354
  | CreateIdentityProviderCommandOutput
355
+ | CreateIpAccessSettingsCommandOutput
319
356
  | CreateNetworkSettingsCommandOutput
320
357
  | CreatePortalCommandOutput
321
358
  | CreateTrustStoreCommandOutput
@@ -323,18 +360,21 @@ export type ServiceOutputTypes =
323
360
  | CreateUserSettingsCommandOutput
324
361
  | DeleteBrowserSettingsCommandOutput
325
362
  | DeleteIdentityProviderCommandOutput
363
+ | DeleteIpAccessSettingsCommandOutput
326
364
  | DeleteNetworkSettingsCommandOutput
327
365
  | DeletePortalCommandOutput
328
366
  | DeleteTrustStoreCommandOutput
329
367
  | DeleteUserAccessLoggingSettingsCommandOutput
330
368
  | DeleteUserSettingsCommandOutput
331
369
  | DisassociateBrowserSettingsCommandOutput
370
+ | DisassociateIpAccessSettingsCommandOutput
332
371
  | DisassociateNetworkSettingsCommandOutput
333
372
  | DisassociateTrustStoreCommandOutput
334
373
  | DisassociateUserAccessLoggingSettingsCommandOutput
335
374
  | DisassociateUserSettingsCommandOutput
336
375
  | GetBrowserSettingsCommandOutput
337
376
  | GetIdentityProviderCommandOutput
377
+ | GetIpAccessSettingsCommandOutput
338
378
  | GetNetworkSettingsCommandOutput
339
379
  | GetPortalCommandOutput
340
380
  | GetPortalServiceProviderMetadataCommandOutput
@@ -344,6 +384,7 @@ export type ServiceOutputTypes =
344
384
  | GetUserSettingsCommandOutput
345
385
  | ListBrowserSettingsCommandOutput
346
386
  | ListIdentityProvidersCommandOutput
387
+ | ListIpAccessSettingsCommandOutput
347
388
  | ListNetworkSettingsCommandOutput
348
389
  | ListPortalsCommandOutput
349
390
  | ListTagsForResourceCommandOutput
@@ -355,6 +396,7 @@ export type ServiceOutputTypes =
355
396
  | UntagResourceCommandOutput
356
397
  | UpdateBrowserSettingsCommandOutput
357
398
  | UpdateIdentityProviderCommandOutput
399
+ | UpdateIpAccessSettingsCommandOutput
358
400
  | UpdateNetworkSettingsCommandOutput
359
401
  | UpdatePortalCommandOutput
360
402
  | UpdateTrustStoreCommandOutput
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ AssociateIpAccessSettingsRequest,
11
+ AssociateIpAccessSettingsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ WorkSpacesWebClientResolvedConfig,
17
+ } from "../WorkSpacesWebClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface AssociateIpAccessSettingsCommandInput
20
+ extends AssociateIpAccessSettingsRequest {}
21
+ export interface AssociateIpAccessSettingsCommandOutput
22
+ extends AssociateIpAccessSettingsResponse,
23
+ __MetadataBearer {}
24
+ export declare class AssociateIpAccessSettingsCommand extends $Command<
25
+ AssociateIpAccessSettingsCommandInput,
26
+ AssociateIpAccessSettingsCommandOutput,
27
+ WorkSpacesWebClientResolvedConfig
28
+ > {
29
+ readonly input: AssociateIpAccessSettingsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: AssociateIpAccessSettingsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: WorkSpacesWebClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ AssociateIpAccessSettingsCommandInput,
38
+ AssociateIpAccessSettingsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CreateIpAccessSettingsRequest,
11
+ CreateIpAccessSettingsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ WorkSpacesWebClientResolvedConfig,
17
+ } from "../WorkSpacesWebClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateIpAccessSettingsCommandInput
20
+ extends CreateIpAccessSettingsRequest {}
21
+ export interface CreateIpAccessSettingsCommandOutput
22
+ extends CreateIpAccessSettingsResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateIpAccessSettingsCommand extends $Command<
25
+ CreateIpAccessSettingsCommandInput,
26
+ CreateIpAccessSettingsCommandOutput,
27
+ WorkSpacesWebClientResolvedConfig
28
+ > {
29
+ readonly input: CreateIpAccessSettingsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateIpAccessSettingsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: WorkSpacesWebClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateIpAccessSettingsCommandInput,
38
+ CreateIpAccessSettingsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DeleteIpAccessSettingsRequest,
11
+ DeleteIpAccessSettingsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ WorkSpacesWebClientResolvedConfig,
17
+ } from "../WorkSpacesWebClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteIpAccessSettingsCommandInput
20
+ extends DeleteIpAccessSettingsRequest {}
21
+ export interface DeleteIpAccessSettingsCommandOutput
22
+ extends DeleteIpAccessSettingsResponse,
23
+ __MetadataBearer {}
24
+ export declare class DeleteIpAccessSettingsCommand extends $Command<
25
+ DeleteIpAccessSettingsCommandInput,
26
+ DeleteIpAccessSettingsCommandOutput,
27
+ WorkSpacesWebClientResolvedConfig
28
+ > {
29
+ readonly input: DeleteIpAccessSettingsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeleteIpAccessSettingsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: WorkSpacesWebClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DeleteIpAccessSettingsCommandInput,
38
+ DeleteIpAccessSettingsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DisassociateIpAccessSettingsRequest,
11
+ DisassociateIpAccessSettingsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ WorkSpacesWebClientResolvedConfig,
17
+ } from "../WorkSpacesWebClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DisassociateIpAccessSettingsCommandInput
20
+ extends DisassociateIpAccessSettingsRequest {}
21
+ export interface DisassociateIpAccessSettingsCommandOutput
22
+ extends DisassociateIpAccessSettingsResponse,
23
+ __MetadataBearer {}
24
+ export declare class DisassociateIpAccessSettingsCommand extends $Command<
25
+ DisassociateIpAccessSettingsCommandInput,
26
+ DisassociateIpAccessSettingsCommandOutput,
27
+ WorkSpacesWebClientResolvedConfig
28
+ > {
29
+ readonly input: DisassociateIpAccessSettingsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DisassociateIpAccessSettingsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: WorkSpacesWebClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DisassociateIpAccessSettingsCommandInput,
38
+ DisassociateIpAccessSettingsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ GetIpAccessSettingsRequest,
11
+ GetIpAccessSettingsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ WorkSpacesWebClientResolvedConfig,
17
+ } from "../WorkSpacesWebClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetIpAccessSettingsCommandInput
20
+ extends GetIpAccessSettingsRequest {}
21
+ export interface GetIpAccessSettingsCommandOutput
22
+ extends GetIpAccessSettingsResponse,
23
+ __MetadataBearer {}
24
+ export declare class GetIpAccessSettingsCommand extends $Command<
25
+ GetIpAccessSettingsCommandInput,
26
+ GetIpAccessSettingsCommandOutput,
27
+ WorkSpacesWebClientResolvedConfig
28
+ > {
29
+ readonly input: GetIpAccessSettingsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetIpAccessSettingsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: WorkSpacesWebClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<GetIpAccessSettingsCommandInput, GetIpAccessSettingsCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ListIpAccessSettingsRequest,
11
+ ListIpAccessSettingsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ WorkSpacesWebClientResolvedConfig,
17
+ } from "../WorkSpacesWebClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListIpAccessSettingsCommandInput
20
+ extends ListIpAccessSettingsRequest {}
21
+ export interface ListIpAccessSettingsCommandOutput
22
+ extends ListIpAccessSettingsResponse,
23
+ __MetadataBearer {}
24
+ export declare class ListIpAccessSettingsCommand extends $Command<
25
+ ListIpAccessSettingsCommandInput,
26
+ ListIpAccessSettingsCommandOutput,
27
+ WorkSpacesWebClientResolvedConfig
28
+ > {
29
+ readonly input: ListIpAccessSettingsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListIpAccessSettingsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: WorkSpacesWebClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListIpAccessSettingsCommandInput,
38
+ ListIpAccessSettingsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ UpdateIpAccessSettingsRequest,
11
+ UpdateIpAccessSettingsResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ WorkSpacesWebClientResolvedConfig,
17
+ } from "../WorkSpacesWebClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateIpAccessSettingsCommandInput
20
+ extends UpdateIpAccessSettingsRequest {}
21
+ export interface UpdateIpAccessSettingsCommandOutput
22
+ extends UpdateIpAccessSettingsResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateIpAccessSettingsCommand extends $Command<
25
+ UpdateIpAccessSettingsCommandInput,
26
+ UpdateIpAccessSettingsCommandOutput,
27
+ WorkSpacesWebClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateIpAccessSettingsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateIpAccessSettingsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: WorkSpacesWebClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateIpAccessSettingsCommandInput,
38
+ UpdateIpAccessSettingsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }