@aws-sdk/client-workspaces-web 3.342.0 → 3.344.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 +6 -6
@@ -166,6 +166,32 @@ export declare class ValidationException extends __BaseException {
166
166
  */
167
167
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
168
168
  }
169
+ /**
170
+ * @public
171
+ */
172
+ export interface AssociateIpAccessSettingsRequest {
173
+ /**
174
+ * <p>The ARN of the web portal.</p>
175
+ */
176
+ portalArn: string | undefined;
177
+ /**
178
+ * <p>The ARN of the IP access settings.</p>
179
+ */
180
+ ipAccessSettingsArn: string | undefined;
181
+ }
182
+ /**
183
+ * @public
184
+ */
185
+ export interface AssociateIpAccessSettingsResponse {
186
+ /**
187
+ * <p>The ARN of the web portal.</p>
188
+ */
189
+ portalArn: string | undefined;
190
+ /**
191
+ * <p>The ARN of the IP access settings resource.</p>
192
+ */
193
+ ipAccessSettingsArn: string | undefined;
194
+ }
169
195
  /**
170
196
  * @public
171
197
  */
@@ -570,6 +596,67 @@ export interface CreateIdentityProviderResponse {
570
596
  */
571
597
  identityProviderArn: string | undefined;
572
598
  }
599
+ /**
600
+ * @public
601
+ * <p>The IP rules of the IP access settings.</p>
602
+ */
603
+ export interface IpRule {
604
+ /**
605
+ * <p>The IP range of the IP rule.</p>
606
+ */
607
+ ipRange: string | undefined;
608
+ /**
609
+ * <p>The description of the IP rule.</p>
610
+ */
611
+ description?: string;
612
+ }
613
+ /**
614
+ * @public
615
+ */
616
+ export interface CreateIpAccessSettingsRequest {
617
+ /**
618
+ * <p>The display name of the IP access settings.</p>
619
+ */
620
+ displayName?: string;
621
+ /**
622
+ * <p>The description of the IP access settings.</p>
623
+ */
624
+ description?: string;
625
+ /**
626
+ * <p>The tags to add to the browser settings resource. A tag is a key-value pair.</p>
627
+ */
628
+ tags?: Tag[];
629
+ /**
630
+ * <p>The custom managed key of the IP access settings.</p>
631
+ */
632
+ customerManagedKey?: string;
633
+ /**
634
+ * <p>Additional encryption context of the IP access settings.</p>
635
+ */
636
+ additionalEncryptionContext?: Record<string, string>;
637
+ /**
638
+ * <p>The IP rules of the IP access settings.</p>
639
+ */
640
+ ipRules: IpRule[] | undefined;
641
+ /**
642
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
643
+ * request. Idempotency ensures that an API request completes only once. With an idempotent
644
+ * request, if the original request completes successfully, subsequent retries with the same
645
+ * client token returns the result from the original successful request. </p>
646
+ * <p>If you do not specify a client token, one is automatically generated by the AWS
647
+ * SDK.</p>
648
+ */
649
+ clientToken?: string;
650
+ }
651
+ /**
652
+ * @public
653
+ */
654
+ export interface CreateIpAccessSettingsResponse {
655
+ /**
656
+ * <p>The ARN of the IP access settings resource.</p>
657
+ */
658
+ ipAccessSettingsArn: string | undefined;
659
+ }
573
660
  /**
574
661
  * @public
575
662
  */
@@ -829,6 +916,20 @@ export interface DeleteIdentityProviderRequest {
829
916
  */
830
917
  export interface DeleteIdentityProviderResponse {
831
918
  }
919
+ /**
920
+ * @public
921
+ */
922
+ export interface DeleteIpAccessSettingsRequest {
923
+ /**
924
+ * <p>The ARN of the IP access settings.</p>
925
+ */
926
+ ipAccessSettingsArn: string | undefined;
927
+ }
928
+ /**
929
+ * @public
930
+ */
931
+ export interface DeleteIpAccessSettingsResponse {
932
+ }
832
933
  /**
833
934
  * @public
834
935
  */
@@ -913,6 +1014,20 @@ export interface DisassociateBrowserSettingsRequest {
913
1014
  */
914
1015
  export interface DisassociateBrowserSettingsResponse {
915
1016
  }
1017
+ /**
1018
+ * @public
1019
+ */
1020
+ export interface DisassociateIpAccessSettingsRequest {
1021
+ /**
1022
+ * <p>The ARN of the web portal.</p>
1023
+ */
1024
+ portalArn: string | undefined;
1025
+ }
1026
+ /**
1027
+ * @public
1028
+ */
1029
+ export interface DisassociateIpAccessSettingsResponse {
1030
+ }
916
1031
  /**
917
1032
  * @public
918
1033
  */
@@ -1200,6 +1315,54 @@ export interface GetIdentityProviderResponse {
1200
1315
  */
1201
1316
  identityProvider?: IdentityProvider;
1202
1317
  }
1318
+ /**
1319
+ * @public
1320
+ */
1321
+ export interface GetIpAccessSettingsRequest {
1322
+ /**
1323
+ * <p>The ARN of the IP access settings.</p>
1324
+ */
1325
+ ipAccessSettingsArn: string | undefined;
1326
+ }
1327
+ /**
1328
+ * @public
1329
+ * <p>The IP access settings resource that can be associated with a web portal. </p>
1330
+ */
1331
+ export interface IpAccessSettings {
1332
+ /**
1333
+ * <p>The ARN of the IP access settings resource.</p>
1334
+ */
1335
+ ipAccessSettingsArn: string | undefined;
1336
+ /**
1337
+ * <p>A list of web portal ARNs that this IP access settings resource is associated with.</p>
1338
+ */
1339
+ associatedPortalArns?: string[];
1340
+ /**
1341
+ * <p>The IP rules of the IP access settings.</p>
1342
+ */
1343
+ ipRules?: IpRule[];
1344
+ /**
1345
+ * <p> The display name of the IP access settings.</p>
1346
+ */
1347
+ displayName?: string;
1348
+ /**
1349
+ * <p>The description of the IP access settings.</p>
1350
+ */
1351
+ description?: string;
1352
+ /**
1353
+ * <p>The creation date timestamp of the IP access settings.</p>
1354
+ */
1355
+ creationDate?: Date;
1356
+ }
1357
+ /**
1358
+ * @public
1359
+ */
1360
+ export interface GetIpAccessSettingsResponse {
1361
+ /**
1362
+ * <p>The IP access settings.</p>
1363
+ */
1364
+ ipAccessSettings?: IpAccessSettings;
1365
+ }
1203
1366
  /**
1204
1367
  * @public
1205
1368
  */
@@ -1364,6 +1527,10 @@ export interface Portal {
1364
1527
  * Identity Center.</p>
1365
1528
  */
1366
1529
  authenticationType?: AuthenticationType | string;
1530
+ /**
1531
+ * <p>The ARN of the IP access settings.</p>
1532
+ */
1533
+ ipAccessSettingsArn?: string;
1367
1534
  }
1368
1535
  /**
1369
1536
  * @public
@@ -1674,6 +1841,54 @@ export interface ListIdentityProvidersResponse {
1674
1841
  */
1675
1842
  identityProviders?: IdentityProviderSummary[];
1676
1843
  }
1844
+ /**
1845
+ * @public
1846
+ */
1847
+ export interface ListIpAccessSettingsRequest {
1848
+ /**
1849
+ * <p>The pagination token used to retrieve the next page of results for this operation.</p>
1850
+ */
1851
+ nextToken?: string;
1852
+ /**
1853
+ * <p>The maximum number of results to be included in the next page.</p>
1854
+ */
1855
+ maxResults?: number;
1856
+ }
1857
+ /**
1858
+ * @public
1859
+ * <p>The summary of IP access settings.</p>
1860
+ */
1861
+ export interface IpAccessSettingsSummary {
1862
+ /**
1863
+ * <p>The ARN of IP access settings.</p>
1864
+ */
1865
+ ipAccessSettingsArn?: string;
1866
+ /**
1867
+ * <p>The display name of the IP access settings.</p>
1868
+ */
1869
+ displayName?: string;
1870
+ /**
1871
+ * <p>The description of the IP access settings.</p>
1872
+ */
1873
+ description?: string;
1874
+ /**
1875
+ * <p>The creation date timestamp of the IP access settings.</p>
1876
+ */
1877
+ creationDate?: Date;
1878
+ }
1879
+ /**
1880
+ * @public
1881
+ */
1882
+ export interface ListIpAccessSettingsResponse {
1883
+ /**
1884
+ * <p>The IP access settings.</p>
1885
+ */
1886
+ ipAccessSettings?: IpAccessSettingsSummary[];
1887
+ /**
1888
+ * <p>The pagination token used to retrieve the next page of results for this operation.</p>
1889
+ */
1890
+ nextToken?: string;
1891
+ }
1677
1892
  /**
1678
1893
  * @public
1679
1894
  */
@@ -1797,6 +2012,10 @@ export interface PortalSummary {
1797
2012
  * Identity Center.</p>
1798
2013
  */
1799
2014
  authenticationType?: AuthenticationType | string;
2015
+ /**
2016
+ * <p>The ARN of the IP access settings.</p>
2017
+ */
2018
+ ipAccessSettingsArn?: string;
1800
2019
  }
1801
2020
  /**
1802
2021
  * @public
@@ -2317,6 +2536,45 @@ export interface UpdateIdentityProviderResponse {
2317
2536
  */
2318
2537
  identityProvider: IdentityProvider | undefined;
2319
2538
  }
2539
+ /**
2540
+ * @public
2541
+ */
2542
+ export interface UpdateIpAccessSettingsRequest {
2543
+ /**
2544
+ * <p>The ARN of the IP access settings.</p>
2545
+ */
2546
+ ipAccessSettingsArn: string | undefined;
2547
+ /**
2548
+ * <p>The display name of the IP access settings.</p>
2549
+ */
2550
+ displayName?: string;
2551
+ /**
2552
+ * <p>The description of the IP access settings.</p>
2553
+ */
2554
+ description?: string;
2555
+ /**
2556
+ * <p>The updated IP rules of the IP access settings.</p>
2557
+ */
2558
+ ipRules?: IpRule[];
2559
+ /**
2560
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
2561
+ * request. Idempotency ensures that an API request completes only once. With an idempotent
2562
+ * request, if the original request completes successfully, subsequent retries with the same
2563
+ * client token return the result from the original successful request. </p>
2564
+ * <p>If you do not specify a client token, one is automatically generated by the AWS
2565
+ * SDK.</p>
2566
+ */
2567
+ clientToken?: string;
2568
+ }
2569
+ /**
2570
+ * @public
2571
+ */
2572
+ export interface UpdateIpAccessSettingsResponse {
2573
+ /**
2574
+ * <p>The IP access settings.</p>
2575
+ */
2576
+ ipAccessSettings: IpAccessSettings | undefined;
2577
+ }
2320
2578
  /**
2321
2579
  * @public
2322
2580
  */
@@ -2531,6 +2789,14 @@ export declare const CreateBrowserSettingsRequestFilterSensitiveLog: (obj: Creat
2531
2789
  * @internal
2532
2790
  */
2533
2791
  export declare const CreateIdentityProviderRequestFilterSensitiveLog: (obj: CreateIdentityProviderRequest) => any;
2792
+ /**
2793
+ * @internal
2794
+ */
2795
+ export declare const IpRuleFilterSensitiveLog: (obj: IpRule) => any;
2796
+ /**
2797
+ * @internal
2798
+ */
2799
+ export declare const CreateIpAccessSettingsRequestFilterSensitiveLog: (obj: CreateIpAccessSettingsRequest) => any;
2534
2800
  /**
2535
2801
  * @internal
2536
2802
  */
@@ -2567,6 +2833,14 @@ export declare const IdentityProviderFilterSensitiveLog: (obj: IdentityProvider)
2567
2833
  * @internal
2568
2834
  */
2569
2835
  export declare const GetIdentityProviderResponseFilterSensitiveLog: (obj: GetIdentityProviderResponse) => any;
2836
+ /**
2837
+ * @internal
2838
+ */
2839
+ export declare const IpAccessSettingsFilterSensitiveLog: (obj: IpAccessSettings) => any;
2840
+ /**
2841
+ * @internal
2842
+ */
2843
+ export declare const GetIpAccessSettingsResponseFilterSensitiveLog: (obj: GetIpAccessSettingsResponse) => any;
2570
2844
  /**
2571
2845
  * @internal
2572
2846
  */
@@ -2583,6 +2857,14 @@ export declare const IdentityProviderSummaryFilterSensitiveLog: (obj: IdentityPr
2583
2857
  * @internal
2584
2858
  */
2585
2859
  export declare const ListIdentityProvidersResponseFilterSensitiveLog: (obj: ListIdentityProvidersResponse) => any;
2860
+ /**
2861
+ * @internal
2862
+ */
2863
+ export declare const IpAccessSettingsSummaryFilterSensitiveLog: (obj: IpAccessSettingsSummary) => any;
2864
+ /**
2865
+ * @internal
2866
+ */
2867
+ export declare const ListIpAccessSettingsResponseFilterSensitiveLog: (obj: ListIpAccessSettingsResponse) => any;
2586
2868
  /**
2587
2869
  * @internal
2588
2870
  */
@@ -2619,6 +2901,14 @@ export declare const UpdateIdentityProviderRequestFilterSensitiveLog: (obj: Upda
2619
2901
  * @internal
2620
2902
  */
2621
2903
  export declare const UpdateIdentityProviderResponseFilterSensitiveLog: (obj: UpdateIdentityProviderResponse) => any;
2904
+ /**
2905
+ * @internal
2906
+ */
2907
+ export declare const UpdateIpAccessSettingsRequestFilterSensitiveLog: (obj: UpdateIpAccessSettingsRequest) => any;
2908
+ /**
2909
+ * @internal
2910
+ */
2911
+ export declare const UpdateIpAccessSettingsResponseFilterSensitiveLog: (obj: UpdateIpAccessSettingsResponse) => any;
2622
2912
  /**
2623
2913
  * @internal
2624
2914
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListIpAccessSettingsCommandInput, ListIpAccessSettingsCommandOutput } from "../commands/ListIpAccessSettingsCommand";
3
+ import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListIpAccessSettings(config: WorkSpacesWebPaginationConfiguration, input: ListIpAccessSettingsCommandInput, ...additionalArguments: any): 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";
@@ -1,12 +1,14 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOutput } from "../commands/AssociateBrowserSettingsCommand";
4
+ import { AssociateIpAccessSettingsCommandInput, AssociateIpAccessSettingsCommandOutput } from "../commands/AssociateIpAccessSettingsCommand";
4
5
  import { AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput } from "../commands/AssociateNetworkSettingsCommand";
5
6
  import { AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput } from "../commands/AssociateTrustStoreCommand";
6
7
  import { AssociateUserAccessLoggingSettingsCommandInput, AssociateUserAccessLoggingSettingsCommandOutput } from "../commands/AssociateUserAccessLoggingSettingsCommand";
7
8
  import { AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput } from "../commands/AssociateUserSettingsCommand";
8
9
  import { CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput } from "../commands/CreateBrowserSettingsCommand";
9
10
  import { CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput } from "../commands/CreateIdentityProviderCommand";
11
+ import { CreateIpAccessSettingsCommandInput, CreateIpAccessSettingsCommandOutput } from "../commands/CreateIpAccessSettingsCommand";
10
12
  import { CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput } from "../commands/CreateNetworkSettingsCommand";
11
13
  import { CreatePortalCommandInput, CreatePortalCommandOutput } from "../commands/CreatePortalCommand";
12
14
  import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "../commands/CreateTrustStoreCommand";
@@ -14,18 +16,21 @@ import { CreateUserAccessLoggingSettingsCommandInput, CreateUserAccessLoggingSet
14
16
  import { CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput } from "../commands/CreateUserSettingsCommand";
15
17
  import { DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput } from "../commands/DeleteBrowserSettingsCommand";
16
18
  import { DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput } from "../commands/DeleteIdentityProviderCommand";
19
+ import { DeleteIpAccessSettingsCommandInput, DeleteIpAccessSettingsCommandOutput } from "../commands/DeleteIpAccessSettingsCommand";
17
20
  import { DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput } from "../commands/DeleteNetworkSettingsCommand";
18
21
  import { DeletePortalCommandInput, DeletePortalCommandOutput } from "../commands/DeletePortalCommand";
19
22
  import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "../commands/DeleteTrustStoreCommand";
20
23
  import { DeleteUserAccessLoggingSettingsCommandInput, DeleteUserAccessLoggingSettingsCommandOutput } from "../commands/DeleteUserAccessLoggingSettingsCommand";
21
24
  import { DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput } from "../commands/DeleteUserSettingsCommand";
22
25
  import { DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCommandOutput } from "../commands/DisassociateBrowserSettingsCommand";
26
+ import { DisassociateIpAccessSettingsCommandInput, DisassociateIpAccessSettingsCommandOutput } from "../commands/DisassociateIpAccessSettingsCommand";
23
27
  import { DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput } from "../commands/DisassociateNetworkSettingsCommand";
24
28
  import { DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput } from "../commands/DisassociateTrustStoreCommand";
25
29
  import { DisassociateUserAccessLoggingSettingsCommandInput, DisassociateUserAccessLoggingSettingsCommandOutput } from "../commands/DisassociateUserAccessLoggingSettingsCommand";
26
30
  import { DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput } from "../commands/DisassociateUserSettingsCommand";
27
31
  import { GetBrowserSettingsCommandInput, GetBrowserSettingsCommandOutput } from "../commands/GetBrowserSettingsCommand";
28
32
  import { GetIdentityProviderCommandInput, GetIdentityProviderCommandOutput } from "../commands/GetIdentityProviderCommand";
33
+ import { GetIpAccessSettingsCommandInput, GetIpAccessSettingsCommandOutput } from "../commands/GetIpAccessSettingsCommand";
29
34
  import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from "../commands/GetNetworkSettingsCommand";
30
35
  import { GetPortalCommandInput, GetPortalCommandOutput } from "../commands/GetPortalCommand";
31
36
  import { GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput } from "../commands/GetPortalServiceProviderMetadataCommand";
@@ -35,6 +40,7 @@ import { GetUserAccessLoggingSettingsCommandInput, GetUserAccessLoggingSettingsC
35
40
  import { GetUserSettingsCommandInput, GetUserSettingsCommandOutput } from "../commands/GetUserSettingsCommand";
36
41
  import { ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput } from "../commands/ListBrowserSettingsCommand";
37
42
  import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "../commands/ListIdentityProvidersCommand";
43
+ import { ListIpAccessSettingsCommandInput, ListIpAccessSettingsCommandOutput } from "../commands/ListIpAccessSettingsCommand";
38
44
  import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "../commands/ListNetworkSettingsCommand";
39
45
  import { ListPortalsCommandInput, ListPortalsCommandOutput } from "../commands/ListPortalsCommand";
40
46
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
@@ -46,6 +52,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
46
52
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
47
53
  import { UpdateBrowserSettingsCommandInput, UpdateBrowserSettingsCommandOutput } from "../commands/UpdateBrowserSettingsCommand";
48
54
  import { UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput } from "../commands/UpdateIdentityProviderCommand";
55
+ import { UpdateIpAccessSettingsCommandInput, UpdateIpAccessSettingsCommandOutput } from "../commands/UpdateIpAccessSettingsCommand";
49
56
  import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "../commands/UpdateNetworkSettingsCommand";
50
57
  import { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "../commands/UpdatePortalCommand";
51
58
  import { UpdateTrustStoreCommandInput, UpdateTrustStoreCommandOutput } from "../commands/UpdateTrustStoreCommand";
@@ -55,6 +62,10 @@ import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput } from
55
62
  * serializeAws_restJson1AssociateBrowserSettingsCommand
56
63
  */
57
64
  export declare const se_AssociateBrowserSettingsCommand: (input: AssociateBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
+ /**
66
+ * serializeAws_restJson1AssociateIpAccessSettingsCommand
67
+ */
68
+ export declare const se_AssociateIpAccessSettingsCommand: (input: AssociateIpAccessSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
69
  /**
59
70
  * serializeAws_restJson1AssociateNetworkSettingsCommand
60
71
  */
@@ -79,6 +90,10 @@ export declare const se_CreateBrowserSettingsCommand: (input: CreateBrowserSetti
79
90
  * serializeAws_restJson1CreateIdentityProviderCommand
80
91
  */
81
92
  export declare const se_CreateIdentityProviderCommand: (input: CreateIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
+ /**
94
+ * serializeAws_restJson1CreateIpAccessSettingsCommand
95
+ */
96
+ export declare const se_CreateIpAccessSettingsCommand: (input: CreateIpAccessSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
97
  /**
83
98
  * serializeAws_restJson1CreateNetworkSettingsCommand
84
99
  */
@@ -107,6 +122,10 @@ export declare const se_DeleteBrowserSettingsCommand: (input: DeleteBrowserSetti
107
122
  * serializeAws_restJson1DeleteIdentityProviderCommand
108
123
  */
109
124
  export declare const se_DeleteIdentityProviderCommand: (input: DeleteIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
+ /**
126
+ * serializeAws_restJson1DeleteIpAccessSettingsCommand
127
+ */
128
+ export declare const se_DeleteIpAccessSettingsCommand: (input: DeleteIpAccessSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
129
  /**
111
130
  * serializeAws_restJson1DeleteNetworkSettingsCommand
112
131
  */
@@ -131,6 +150,10 @@ export declare const se_DeleteUserSettingsCommand: (input: DeleteUserSettingsCom
131
150
  * serializeAws_restJson1DisassociateBrowserSettingsCommand
132
151
  */
133
152
  export declare const se_DisassociateBrowserSettingsCommand: (input: DisassociateBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
153
+ /**
154
+ * serializeAws_restJson1DisassociateIpAccessSettingsCommand
155
+ */
156
+ export declare const se_DisassociateIpAccessSettingsCommand: (input: DisassociateIpAccessSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
157
  /**
135
158
  * serializeAws_restJson1DisassociateNetworkSettingsCommand
136
159
  */
@@ -155,6 +178,10 @@ export declare const se_GetBrowserSettingsCommand: (input: GetBrowserSettingsCom
155
178
  * serializeAws_restJson1GetIdentityProviderCommand
156
179
  */
157
180
  export declare const se_GetIdentityProviderCommand: (input: GetIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
181
+ /**
182
+ * serializeAws_restJson1GetIpAccessSettingsCommand
183
+ */
184
+ export declare const se_GetIpAccessSettingsCommand: (input: GetIpAccessSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
158
185
  /**
159
186
  * serializeAws_restJson1GetNetworkSettingsCommand
160
187
  */
@@ -191,6 +218,10 @@ export declare const se_ListBrowserSettingsCommand: (input: ListBrowserSettingsC
191
218
  * serializeAws_restJson1ListIdentityProvidersCommand
192
219
  */
193
220
  export declare const se_ListIdentityProvidersCommand: (input: ListIdentityProvidersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
221
+ /**
222
+ * serializeAws_restJson1ListIpAccessSettingsCommand
223
+ */
224
+ export declare const se_ListIpAccessSettingsCommand: (input: ListIpAccessSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
194
225
  /**
195
226
  * serializeAws_restJson1ListNetworkSettingsCommand
196
227
  */
@@ -235,6 +266,10 @@ export declare const se_UpdateBrowserSettingsCommand: (input: UpdateBrowserSetti
235
266
  * serializeAws_restJson1UpdateIdentityProviderCommand
236
267
  */
237
268
  export declare const se_UpdateIdentityProviderCommand: (input: UpdateIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
269
+ /**
270
+ * serializeAws_restJson1UpdateIpAccessSettingsCommand
271
+ */
272
+ export declare const se_UpdateIpAccessSettingsCommand: (input: UpdateIpAccessSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
238
273
  /**
239
274
  * serializeAws_restJson1UpdateNetworkSettingsCommand
240
275
  */
@@ -259,6 +294,10 @@ export declare const se_UpdateUserSettingsCommand: (input: UpdateUserSettingsCom
259
294
  * deserializeAws_restJson1AssociateBrowserSettingsCommand
260
295
  */
261
296
  export declare const de_AssociateBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateBrowserSettingsCommandOutput>;
297
+ /**
298
+ * deserializeAws_restJson1AssociateIpAccessSettingsCommand
299
+ */
300
+ export declare const de_AssociateIpAccessSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateIpAccessSettingsCommandOutput>;
262
301
  /**
263
302
  * deserializeAws_restJson1AssociateNetworkSettingsCommand
264
303
  */
@@ -283,6 +322,10 @@ export declare const de_CreateBrowserSettingsCommand: (output: __HttpResponse, c
283
322
  * deserializeAws_restJson1CreateIdentityProviderCommand
284
323
  */
285
324
  export declare const de_CreateIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdentityProviderCommandOutput>;
325
+ /**
326
+ * deserializeAws_restJson1CreateIpAccessSettingsCommand
327
+ */
328
+ export declare const de_CreateIpAccessSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIpAccessSettingsCommandOutput>;
286
329
  /**
287
330
  * deserializeAws_restJson1CreateNetworkSettingsCommand
288
331
  */
@@ -311,6 +354,10 @@ export declare const de_DeleteBrowserSettingsCommand: (output: __HttpResponse, c
311
354
  * deserializeAws_restJson1DeleteIdentityProviderCommand
312
355
  */
313
356
  export declare const de_DeleteIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentityProviderCommandOutput>;
357
+ /**
358
+ * deserializeAws_restJson1DeleteIpAccessSettingsCommand
359
+ */
360
+ export declare const de_DeleteIpAccessSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIpAccessSettingsCommandOutput>;
314
361
  /**
315
362
  * deserializeAws_restJson1DeleteNetworkSettingsCommand
316
363
  */
@@ -335,6 +382,10 @@ export declare const de_DeleteUserSettingsCommand: (output: __HttpResponse, cont
335
382
  * deserializeAws_restJson1DisassociateBrowserSettingsCommand
336
383
  */
337
384
  export declare const de_DisassociateBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateBrowserSettingsCommandOutput>;
385
+ /**
386
+ * deserializeAws_restJson1DisassociateIpAccessSettingsCommand
387
+ */
388
+ export declare const de_DisassociateIpAccessSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateIpAccessSettingsCommandOutput>;
338
389
  /**
339
390
  * deserializeAws_restJson1DisassociateNetworkSettingsCommand
340
391
  */
@@ -359,6 +410,10 @@ export declare const de_GetBrowserSettingsCommand: (output: __HttpResponse, cont
359
410
  * deserializeAws_restJson1GetIdentityProviderCommand
360
411
  */
361
412
  export declare const de_GetIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityProviderCommandOutput>;
413
+ /**
414
+ * deserializeAws_restJson1GetIpAccessSettingsCommand
415
+ */
416
+ export declare const de_GetIpAccessSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIpAccessSettingsCommandOutput>;
362
417
  /**
363
418
  * deserializeAws_restJson1GetNetworkSettingsCommand
364
419
  */
@@ -395,6 +450,10 @@ export declare const de_ListBrowserSettingsCommand: (output: __HttpResponse, con
395
450
  * deserializeAws_restJson1ListIdentityProvidersCommand
396
451
  */
397
452
  export declare const de_ListIdentityProvidersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentityProvidersCommandOutput>;
453
+ /**
454
+ * deserializeAws_restJson1ListIpAccessSettingsCommand
455
+ */
456
+ export declare const de_ListIpAccessSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIpAccessSettingsCommandOutput>;
398
457
  /**
399
458
  * deserializeAws_restJson1ListNetworkSettingsCommand
400
459
  */
@@ -439,6 +498,10 @@ export declare const de_UpdateBrowserSettingsCommand: (output: __HttpResponse, c
439
498
  * deserializeAws_restJson1UpdateIdentityProviderCommand
440
499
  */
441
500
  export declare const de_UpdateIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdentityProviderCommandOutput>;
501
+ /**
502
+ * deserializeAws_restJson1UpdateIpAccessSettingsCommand
503
+ */
504
+ export declare const de_UpdateIpAccessSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIpAccessSettingsCommandOutput>;
442
505
  /**
443
506
  * deserializeAws_restJson1UpdateNetworkSettingsCommand
444
507
  */