@aws-sdk/client-workspaces-web 3.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/LICENSE +201 -0
- package/README.md +208 -0
- package/dist-cjs/WorkSpacesWeb.js +667 -0
- package/dist-cjs/WorkSpacesWebClient.js +35 -0
- package/dist-cjs/commands/AssociateBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/AssociateNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/AssociateTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/AssociateUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/CreateBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/CreateIdentityProviderCommand.js +36 -0
- package/dist-cjs/commands/CreateNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/CreatePortalCommand.js +36 -0
- package/dist-cjs/commands/CreateTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/CreateUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/DeleteBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/DeleteIdentityProviderCommand.js +36 -0
- package/dist-cjs/commands/DeleteNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/DeletePortalCommand.js +36 -0
- package/dist-cjs/commands/DeleteTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/DeleteUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/DisassociateBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/DisassociateNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/DisassociateTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/DisassociateUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/GetBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/GetIdentityProviderCommand.js +36 -0
- package/dist-cjs/commands/GetNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/GetPortalCommand.js +36 -0
- package/dist-cjs/commands/GetPortalServiceProviderMetadataCommand.js +36 -0
- package/dist-cjs/commands/GetTrustStoreCertificateCommand.js +36 -0
- package/dist-cjs/commands/GetTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/GetUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/ListBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/ListIdentityProvidersCommand.js +36 -0
- package/dist-cjs/commands/ListNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/ListPortalsCommand.js +36 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
- package/dist-cjs/commands/ListTrustStoreCertificatesCommand.js +36 -0
- package/dist-cjs/commands/ListTrustStoresCommand.js +36 -0
- package/dist-cjs/commands/ListUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/TagResourceCommand.js +36 -0
- package/dist-cjs/commands/UntagResourceCommand.js +36 -0
- package/dist-cjs/commands/UpdateBrowserSettingsCommand.js +36 -0
- package/dist-cjs/commands/UpdateIdentityProviderCommand.js +36 -0
- package/dist-cjs/commands/UpdateNetworkSettingsCommand.js +36 -0
- package/dist-cjs/commands/UpdatePortalCommand.js +36 -0
- package/dist-cjs/commands/UpdateTrustStoreCommand.js +36 -0
- package/dist-cjs/commands/UpdateUserSettingsCommand.js +36 -0
- package/dist-cjs/commands/index.js +47 -0
- package/dist-cjs/endpoints.js +130 -0
- package/dist-cjs/index.js +8 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +712 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListBrowserSettingsPaginator.js +35 -0
- package/dist-cjs/pagination/ListIdentityProvidersPaginator.js +35 -0
- package/dist-cjs/pagination/ListNetworkSettingsPaginator.js +35 -0
- package/dist-cjs/pagination/ListPortalsPaginator.js +35 -0
- package/dist-cjs/pagination/ListTrustStoreCertificatesPaginator.js +35 -0
- package/dist-cjs/pagination/ListTrustStoresPaginator.js +35 -0
- package/dist-cjs/pagination/ListUserSettingsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +5533 -0
- package/dist-cjs/runtimeConfig.browser.js +40 -0
- package/dist-cjs/runtimeConfig.js +44 -0
- package/dist-cjs/runtimeConfig.native.js +16 -0
- package/dist-cjs/runtimeConfig.shared.js +17 -0
- package/dist-es/WorkSpacesWeb.js +670 -0
- package/dist-es/WorkSpacesWebClient.js +37 -0
- package/dist-es/commands/AssociateBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/AssociateNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/AssociateTrustStoreCommand.js +39 -0
- package/dist-es/commands/AssociateUserSettingsCommand.js +39 -0
- package/dist-es/commands/CreateBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/CreateIdentityProviderCommand.js +39 -0
- package/dist-es/commands/CreateNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/CreatePortalCommand.js +39 -0
- package/dist-es/commands/CreateTrustStoreCommand.js +39 -0
- package/dist-es/commands/CreateUserSettingsCommand.js +39 -0
- package/dist-es/commands/DeleteBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/DeleteIdentityProviderCommand.js +39 -0
- package/dist-es/commands/DeleteNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/DeletePortalCommand.js +39 -0
- package/dist-es/commands/DeleteTrustStoreCommand.js +39 -0
- package/dist-es/commands/DeleteUserSettingsCommand.js +39 -0
- package/dist-es/commands/DisassociateBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/DisassociateNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/DisassociateTrustStoreCommand.js +39 -0
- package/dist-es/commands/DisassociateUserSettingsCommand.js +39 -0
- package/dist-es/commands/GetBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/GetIdentityProviderCommand.js +39 -0
- package/dist-es/commands/GetNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/GetPortalCommand.js +39 -0
- package/dist-es/commands/GetPortalServiceProviderMetadataCommand.js +39 -0
- package/dist-es/commands/GetTrustStoreCertificateCommand.js +39 -0
- package/dist-es/commands/GetTrustStoreCommand.js +39 -0
- package/dist-es/commands/GetUserSettingsCommand.js +39 -0
- package/dist-es/commands/ListBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/ListIdentityProvidersCommand.js +39 -0
- package/dist-es/commands/ListNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/ListPortalsCommand.js +39 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/ListTrustStoreCertificatesCommand.js +39 -0
- package/dist-es/commands/ListTrustStoresCommand.js +39 -0
- package/dist-es/commands/ListUserSettingsCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/UpdateBrowserSettingsCommand.js +39 -0
- package/dist-es/commands/UpdateIdentityProviderCommand.js +39 -0
- package/dist-es/commands/UpdateNetworkSettingsCommand.js +39 -0
- package/dist-es/commands/UpdatePortalCommand.js +39 -0
- package/dist-es/commands/UpdateTrustStoreCommand.js +39 -0
- package/dist-es/commands/UpdateUserSettingsCommand.js +39 -0
- package/dist-es/commands/index.js +44 -0
- package/dist-es/endpoints.js +126 -0
- package/dist-es/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +484 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListBrowserSettingsPaginator.js +74 -0
- package/dist-es/pagination/ListIdentityProvidersPaginator.js +74 -0
- package/dist-es/pagination/ListNetworkSettingsPaginator.js +74 -0
- package/dist-es/pagination/ListPortalsPaginator.js +74 -0
- package/dist-es/pagination/ListTrustStoreCertificatesPaginator.js +74 -0
- package/dist-es/pagination/ListTrustStoresPaginator.js +74 -0
- package/dist-es/pagination/ListUserSettingsPaginator.js +74 -0
- package/dist-es/pagination/index.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +6269 -0
- package/dist-es/runtimeConfig.browser.js +17 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/WorkSpacesWeb.d.ts +330 -0
- package/dist-types/WorkSpacesWebClient.d.ts +189 -0
- package/dist-types/commands/AssociateBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/AssociateNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/AssociateTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/AssociateUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/CreateBrowserSettingsCommand.d.ts +37 -0
- package/dist-types/commands/CreateIdentityProviderCommand.d.ts +35 -0
- package/dist-types/commands/CreateNetworkSettingsCommand.d.ts +37 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +35 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +39 -0
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +37 -0
- package/dist-types/commands/DeleteBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +35 -0
- package/dist-types/commands/DeleteNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +35 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/DeleteUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/GetBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/GetIdentityProviderCommand.d.ts +35 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/GetPortalCommand.d.ts +35 -0
- package/dist-types/commands/GetPortalServiceProviderMetadataCommand.d.ts +35 -0
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +35 -0
- package/dist-types/commands/GetTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/GetUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +35 -0
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +35 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +35 -0
- package/dist-types/commands/ListUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UpdateBrowserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +35 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +35 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +35 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +35 -0
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +44 -0
- package/dist-types/endpoints.d.ts +2 -0
- package/dist-types/index.d.ts +5 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2382 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListBrowserSettingsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListIdentityProvidersPaginator.d.ts +4 -0
- package/dist-types/pagination/ListNetworkSettingsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListPortalsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTrustStoreCertificatesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTrustStoresPaginator.d.ts +4 -0
- package/dist-types/pagination/ListUserSettingsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +8 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +134 -0
- package/dist-types/runtimeConfig.browser.d.ts +39 -0
- package/dist-types/runtimeConfig.d.ts +39 -0
- package/dist-types/runtimeConfig.native.d.ts +38 -0
- package/dist-types/runtimeConfig.shared.d.ts +13 -0
- package/dist-types/ts3.4/WorkSpacesWeb.d.ts +225 -0
- package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +115 -0
- package/dist-types/ts3.4/commands/AssociateBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AssociateNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AssociateTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AssociateUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateIdentityProviderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreatePortalCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteIdentityProviderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePortalCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetIdentityProviderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPortalCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPortalServiceProviderMetadataCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTrustStoreCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPortalsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTrustStoreCertificatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateBrowserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateIdentityProviderCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateNetworkSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdatePortalCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateUserSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +44 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1238 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListBrowserSettingsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListIdentityProvidersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListNetworkSettingsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPortalsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTrustStoreCertificatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListUserSettingsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +8 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +134 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +96 -0
|
@@ -0,0 +1,670 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { AssociateBrowserSettingsCommand, } from "./commands/AssociateBrowserSettingsCommand";
|
|
3
|
+
import { AssociateNetworkSettingsCommand, } from "./commands/AssociateNetworkSettingsCommand";
|
|
4
|
+
import { AssociateTrustStoreCommand, } from "./commands/AssociateTrustStoreCommand";
|
|
5
|
+
import { AssociateUserSettingsCommand, } from "./commands/AssociateUserSettingsCommand";
|
|
6
|
+
import { CreateBrowserSettingsCommand, } from "./commands/CreateBrowserSettingsCommand";
|
|
7
|
+
import { CreateIdentityProviderCommand, } from "./commands/CreateIdentityProviderCommand";
|
|
8
|
+
import { CreateNetworkSettingsCommand, } from "./commands/CreateNetworkSettingsCommand";
|
|
9
|
+
import { CreatePortalCommand, } from "./commands/CreatePortalCommand";
|
|
10
|
+
import { CreateTrustStoreCommand, } from "./commands/CreateTrustStoreCommand";
|
|
11
|
+
import { CreateUserSettingsCommand, } from "./commands/CreateUserSettingsCommand";
|
|
12
|
+
import { DeleteBrowserSettingsCommand, } from "./commands/DeleteBrowserSettingsCommand";
|
|
13
|
+
import { DeleteIdentityProviderCommand, } from "./commands/DeleteIdentityProviderCommand";
|
|
14
|
+
import { DeleteNetworkSettingsCommand, } from "./commands/DeleteNetworkSettingsCommand";
|
|
15
|
+
import { DeletePortalCommand, } from "./commands/DeletePortalCommand";
|
|
16
|
+
import { DeleteTrustStoreCommand, } from "./commands/DeleteTrustStoreCommand";
|
|
17
|
+
import { DeleteUserSettingsCommand, } from "./commands/DeleteUserSettingsCommand";
|
|
18
|
+
import { DisassociateBrowserSettingsCommand, } from "./commands/DisassociateBrowserSettingsCommand";
|
|
19
|
+
import { DisassociateNetworkSettingsCommand, } from "./commands/DisassociateNetworkSettingsCommand";
|
|
20
|
+
import { DisassociateTrustStoreCommand, } from "./commands/DisassociateTrustStoreCommand";
|
|
21
|
+
import { DisassociateUserSettingsCommand, } from "./commands/DisassociateUserSettingsCommand";
|
|
22
|
+
import { GetBrowserSettingsCommand, } from "./commands/GetBrowserSettingsCommand";
|
|
23
|
+
import { GetIdentityProviderCommand, } from "./commands/GetIdentityProviderCommand";
|
|
24
|
+
import { GetNetworkSettingsCommand, } from "./commands/GetNetworkSettingsCommand";
|
|
25
|
+
import { GetPortalCommand } from "./commands/GetPortalCommand";
|
|
26
|
+
import { GetPortalServiceProviderMetadataCommand, } from "./commands/GetPortalServiceProviderMetadataCommand";
|
|
27
|
+
import { GetTrustStoreCertificateCommand, } from "./commands/GetTrustStoreCertificateCommand";
|
|
28
|
+
import { GetTrustStoreCommand, } from "./commands/GetTrustStoreCommand";
|
|
29
|
+
import { GetUserSettingsCommand, } from "./commands/GetUserSettingsCommand";
|
|
30
|
+
import { ListBrowserSettingsCommand, } from "./commands/ListBrowserSettingsCommand";
|
|
31
|
+
import { ListIdentityProvidersCommand, } from "./commands/ListIdentityProvidersCommand";
|
|
32
|
+
import { ListNetworkSettingsCommand, } from "./commands/ListNetworkSettingsCommand";
|
|
33
|
+
import { ListPortalsCommand } from "./commands/ListPortalsCommand";
|
|
34
|
+
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
35
|
+
import { ListTrustStoreCertificatesCommand, } from "./commands/ListTrustStoreCertificatesCommand";
|
|
36
|
+
import { ListTrustStoresCommand, } from "./commands/ListTrustStoresCommand";
|
|
37
|
+
import { ListUserSettingsCommand, } from "./commands/ListUserSettingsCommand";
|
|
38
|
+
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
39
|
+
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
40
|
+
import { UpdateBrowserSettingsCommand, } from "./commands/UpdateBrowserSettingsCommand";
|
|
41
|
+
import { UpdateIdentityProviderCommand, } from "./commands/UpdateIdentityProviderCommand";
|
|
42
|
+
import { UpdateNetworkSettingsCommand, } from "./commands/UpdateNetworkSettingsCommand";
|
|
43
|
+
import { UpdatePortalCommand, } from "./commands/UpdatePortalCommand";
|
|
44
|
+
import { UpdateTrustStoreCommand, } from "./commands/UpdateTrustStoreCommand";
|
|
45
|
+
import { UpdateUserSettingsCommand, } from "./commands/UpdateUserSettingsCommand";
|
|
46
|
+
import { WorkSpacesWebClient } from "./WorkSpacesWebClient";
|
|
47
|
+
var WorkSpacesWeb = (function (_super) {
|
|
48
|
+
__extends(WorkSpacesWeb, _super);
|
|
49
|
+
function WorkSpacesWeb() {
|
|
50
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
51
|
+
}
|
|
52
|
+
WorkSpacesWeb.prototype.associateBrowserSettings = function (args, optionsOrCb, cb) {
|
|
53
|
+
var command = new AssociateBrowserSettingsCommand(args);
|
|
54
|
+
if (typeof optionsOrCb === "function") {
|
|
55
|
+
this.send(command, optionsOrCb);
|
|
56
|
+
}
|
|
57
|
+
else if (typeof cb === "function") {
|
|
58
|
+
if (typeof optionsOrCb !== "object")
|
|
59
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
60
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
61
|
+
}
|
|
62
|
+
else {
|
|
63
|
+
return this.send(command, optionsOrCb);
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
WorkSpacesWeb.prototype.associateNetworkSettings = function (args, optionsOrCb, cb) {
|
|
67
|
+
var command = new AssociateNetworkSettingsCommand(args);
|
|
68
|
+
if (typeof optionsOrCb === "function") {
|
|
69
|
+
this.send(command, optionsOrCb);
|
|
70
|
+
}
|
|
71
|
+
else if (typeof cb === "function") {
|
|
72
|
+
if (typeof optionsOrCb !== "object")
|
|
73
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
74
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
return this.send(command, optionsOrCb);
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
WorkSpacesWeb.prototype.associateTrustStore = function (args, optionsOrCb, cb) {
|
|
81
|
+
var command = new AssociateTrustStoreCommand(args);
|
|
82
|
+
if (typeof optionsOrCb === "function") {
|
|
83
|
+
this.send(command, optionsOrCb);
|
|
84
|
+
}
|
|
85
|
+
else if (typeof cb === "function") {
|
|
86
|
+
if (typeof optionsOrCb !== "object")
|
|
87
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
88
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
89
|
+
}
|
|
90
|
+
else {
|
|
91
|
+
return this.send(command, optionsOrCb);
|
|
92
|
+
}
|
|
93
|
+
};
|
|
94
|
+
WorkSpacesWeb.prototype.associateUserSettings = function (args, optionsOrCb, cb) {
|
|
95
|
+
var command = new AssociateUserSettingsCommand(args);
|
|
96
|
+
if (typeof optionsOrCb === "function") {
|
|
97
|
+
this.send(command, optionsOrCb);
|
|
98
|
+
}
|
|
99
|
+
else if (typeof cb === "function") {
|
|
100
|
+
if (typeof optionsOrCb !== "object")
|
|
101
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
102
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
103
|
+
}
|
|
104
|
+
else {
|
|
105
|
+
return this.send(command, optionsOrCb);
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
WorkSpacesWeb.prototype.createBrowserSettings = function (args, optionsOrCb, cb) {
|
|
109
|
+
var command = new CreateBrowserSettingsCommand(args);
|
|
110
|
+
if (typeof optionsOrCb === "function") {
|
|
111
|
+
this.send(command, optionsOrCb);
|
|
112
|
+
}
|
|
113
|
+
else if (typeof cb === "function") {
|
|
114
|
+
if (typeof optionsOrCb !== "object")
|
|
115
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
116
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
117
|
+
}
|
|
118
|
+
else {
|
|
119
|
+
return this.send(command, optionsOrCb);
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
WorkSpacesWeb.prototype.createIdentityProvider = function (args, optionsOrCb, cb) {
|
|
123
|
+
var command = new CreateIdentityProviderCommand(args);
|
|
124
|
+
if (typeof optionsOrCb === "function") {
|
|
125
|
+
this.send(command, optionsOrCb);
|
|
126
|
+
}
|
|
127
|
+
else if (typeof cb === "function") {
|
|
128
|
+
if (typeof optionsOrCb !== "object")
|
|
129
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
130
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
131
|
+
}
|
|
132
|
+
else {
|
|
133
|
+
return this.send(command, optionsOrCb);
|
|
134
|
+
}
|
|
135
|
+
};
|
|
136
|
+
WorkSpacesWeb.prototype.createNetworkSettings = function (args, optionsOrCb, cb) {
|
|
137
|
+
var command = new CreateNetworkSettingsCommand(args);
|
|
138
|
+
if (typeof optionsOrCb === "function") {
|
|
139
|
+
this.send(command, optionsOrCb);
|
|
140
|
+
}
|
|
141
|
+
else if (typeof cb === "function") {
|
|
142
|
+
if (typeof optionsOrCb !== "object")
|
|
143
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
144
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
145
|
+
}
|
|
146
|
+
else {
|
|
147
|
+
return this.send(command, optionsOrCb);
|
|
148
|
+
}
|
|
149
|
+
};
|
|
150
|
+
WorkSpacesWeb.prototype.createPortal = function (args, optionsOrCb, cb) {
|
|
151
|
+
var command = new CreatePortalCommand(args);
|
|
152
|
+
if (typeof optionsOrCb === "function") {
|
|
153
|
+
this.send(command, optionsOrCb);
|
|
154
|
+
}
|
|
155
|
+
else if (typeof cb === "function") {
|
|
156
|
+
if (typeof optionsOrCb !== "object")
|
|
157
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
158
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
159
|
+
}
|
|
160
|
+
else {
|
|
161
|
+
return this.send(command, optionsOrCb);
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
WorkSpacesWeb.prototype.createTrustStore = function (args, optionsOrCb, cb) {
|
|
165
|
+
var command = new CreateTrustStoreCommand(args);
|
|
166
|
+
if (typeof optionsOrCb === "function") {
|
|
167
|
+
this.send(command, optionsOrCb);
|
|
168
|
+
}
|
|
169
|
+
else if (typeof cb === "function") {
|
|
170
|
+
if (typeof optionsOrCb !== "object")
|
|
171
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
172
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
173
|
+
}
|
|
174
|
+
else {
|
|
175
|
+
return this.send(command, optionsOrCb);
|
|
176
|
+
}
|
|
177
|
+
};
|
|
178
|
+
WorkSpacesWeb.prototype.createUserSettings = function (args, optionsOrCb, cb) {
|
|
179
|
+
var command = new CreateUserSettingsCommand(args);
|
|
180
|
+
if (typeof optionsOrCb === "function") {
|
|
181
|
+
this.send(command, optionsOrCb);
|
|
182
|
+
}
|
|
183
|
+
else if (typeof cb === "function") {
|
|
184
|
+
if (typeof optionsOrCb !== "object")
|
|
185
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
186
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
187
|
+
}
|
|
188
|
+
else {
|
|
189
|
+
return this.send(command, optionsOrCb);
|
|
190
|
+
}
|
|
191
|
+
};
|
|
192
|
+
WorkSpacesWeb.prototype.deleteBrowserSettings = function (args, optionsOrCb, cb) {
|
|
193
|
+
var command = new DeleteBrowserSettingsCommand(args);
|
|
194
|
+
if (typeof optionsOrCb === "function") {
|
|
195
|
+
this.send(command, optionsOrCb);
|
|
196
|
+
}
|
|
197
|
+
else if (typeof cb === "function") {
|
|
198
|
+
if (typeof optionsOrCb !== "object")
|
|
199
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
200
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
201
|
+
}
|
|
202
|
+
else {
|
|
203
|
+
return this.send(command, optionsOrCb);
|
|
204
|
+
}
|
|
205
|
+
};
|
|
206
|
+
WorkSpacesWeb.prototype.deleteIdentityProvider = function (args, optionsOrCb, cb) {
|
|
207
|
+
var command = new DeleteIdentityProviderCommand(args);
|
|
208
|
+
if (typeof optionsOrCb === "function") {
|
|
209
|
+
this.send(command, optionsOrCb);
|
|
210
|
+
}
|
|
211
|
+
else if (typeof cb === "function") {
|
|
212
|
+
if (typeof optionsOrCb !== "object")
|
|
213
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
214
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
215
|
+
}
|
|
216
|
+
else {
|
|
217
|
+
return this.send(command, optionsOrCb);
|
|
218
|
+
}
|
|
219
|
+
};
|
|
220
|
+
WorkSpacesWeb.prototype.deleteNetworkSettings = function (args, optionsOrCb, cb) {
|
|
221
|
+
var command = new DeleteNetworkSettingsCommand(args);
|
|
222
|
+
if (typeof optionsOrCb === "function") {
|
|
223
|
+
this.send(command, optionsOrCb);
|
|
224
|
+
}
|
|
225
|
+
else if (typeof cb === "function") {
|
|
226
|
+
if (typeof optionsOrCb !== "object")
|
|
227
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
228
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
229
|
+
}
|
|
230
|
+
else {
|
|
231
|
+
return this.send(command, optionsOrCb);
|
|
232
|
+
}
|
|
233
|
+
};
|
|
234
|
+
WorkSpacesWeb.prototype.deletePortal = function (args, optionsOrCb, cb) {
|
|
235
|
+
var command = new DeletePortalCommand(args);
|
|
236
|
+
if (typeof optionsOrCb === "function") {
|
|
237
|
+
this.send(command, optionsOrCb);
|
|
238
|
+
}
|
|
239
|
+
else if (typeof cb === "function") {
|
|
240
|
+
if (typeof optionsOrCb !== "object")
|
|
241
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
242
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
243
|
+
}
|
|
244
|
+
else {
|
|
245
|
+
return this.send(command, optionsOrCb);
|
|
246
|
+
}
|
|
247
|
+
};
|
|
248
|
+
WorkSpacesWeb.prototype.deleteTrustStore = function (args, optionsOrCb, cb) {
|
|
249
|
+
var command = new DeleteTrustStoreCommand(args);
|
|
250
|
+
if (typeof optionsOrCb === "function") {
|
|
251
|
+
this.send(command, optionsOrCb);
|
|
252
|
+
}
|
|
253
|
+
else if (typeof cb === "function") {
|
|
254
|
+
if (typeof optionsOrCb !== "object")
|
|
255
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
256
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
257
|
+
}
|
|
258
|
+
else {
|
|
259
|
+
return this.send(command, optionsOrCb);
|
|
260
|
+
}
|
|
261
|
+
};
|
|
262
|
+
WorkSpacesWeb.prototype.deleteUserSettings = function (args, optionsOrCb, cb) {
|
|
263
|
+
var command = new DeleteUserSettingsCommand(args);
|
|
264
|
+
if (typeof optionsOrCb === "function") {
|
|
265
|
+
this.send(command, optionsOrCb);
|
|
266
|
+
}
|
|
267
|
+
else if (typeof cb === "function") {
|
|
268
|
+
if (typeof optionsOrCb !== "object")
|
|
269
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
270
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
271
|
+
}
|
|
272
|
+
else {
|
|
273
|
+
return this.send(command, optionsOrCb);
|
|
274
|
+
}
|
|
275
|
+
};
|
|
276
|
+
WorkSpacesWeb.prototype.disassociateBrowserSettings = function (args, optionsOrCb, cb) {
|
|
277
|
+
var command = new DisassociateBrowserSettingsCommand(args);
|
|
278
|
+
if (typeof optionsOrCb === "function") {
|
|
279
|
+
this.send(command, optionsOrCb);
|
|
280
|
+
}
|
|
281
|
+
else if (typeof cb === "function") {
|
|
282
|
+
if (typeof optionsOrCb !== "object")
|
|
283
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
284
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
285
|
+
}
|
|
286
|
+
else {
|
|
287
|
+
return this.send(command, optionsOrCb);
|
|
288
|
+
}
|
|
289
|
+
};
|
|
290
|
+
WorkSpacesWeb.prototype.disassociateNetworkSettings = function (args, optionsOrCb, cb) {
|
|
291
|
+
var command = new DisassociateNetworkSettingsCommand(args);
|
|
292
|
+
if (typeof optionsOrCb === "function") {
|
|
293
|
+
this.send(command, optionsOrCb);
|
|
294
|
+
}
|
|
295
|
+
else if (typeof cb === "function") {
|
|
296
|
+
if (typeof optionsOrCb !== "object")
|
|
297
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
298
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
299
|
+
}
|
|
300
|
+
else {
|
|
301
|
+
return this.send(command, optionsOrCb);
|
|
302
|
+
}
|
|
303
|
+
};
|
|
304
|
+
WorkSpacesWeb.prototype.disassociateTrustStore = function (args, optionsOrCb, cb) {
|
|
305
|
+
var command = new DisassociateTrustStoreCommand(args);
|
|
306
|
+
if (typeof optionsOrCb === "function") {
|
|
307
|
+
this.send(command, optionsOrCb);
|
|
308
|
+
}
|
|
309
|
+
else if (typeof cb === "function") {
|
|
310
|
+
if (typeof optionsOrCb !== "object")
|
|
311
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
312
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
313
|
+
}
|
|
314
|
+
else {
|
|
315
|
+
return this.send(command, optionsOrCb);
|
|
316
|
+
}
|
|
317
|
+
};
|
|
318
|
+
WorkSpacesWeb.prototype.disassociateUserSettings = function (args, optionsOrCb, cb) {
|
|
319
|
+
var command = new DisassociateUserSettingsCommand(args);
|
|
320
|
+
if (typeof optionsOrCb === "function") {
|
|
321
|
+
this.send(command, optionsOrCb);
|
|
322
|
+
}
|
|
323
|
+
else if (typeof cb === "function") {
|
|
324
|
+
if (typeof optionsOrCb !== "object")
|
|
325
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
326
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
327
|
+
}
|
|
328
|
+
else {
|
|
329
|
+
return this.send(command, optionsOrCb);
|
|
330
|
+
}
|
|
331
|
+
};
|
|
332
|
+
WorkSpacesWeb.prototype.getBrowserSettings = function (args, optionsOrCb, cb) {
|
|
333
|
+
var command = new GetBrowserSettingsCommand(args);
|
|
334
|
+
if (typeof optionsOrCb === "function") {
|
|
335
|
+
this.send(command, optionsOrCb);
|
|
336
|
+
}
|
|
337
|
+
else if (typeof cb === "function") {
|
|
338
|
+
if (typeof optionsOrCb !== "object")
|
|
339
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
340
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
341
|
+
}
|
|
342
|
+
else {
|
|
343
|
+
return this.send(command, optionsOrCb);
|
|
344
|
+
}
|
|
345
|
+
};
|
|
346
|
+
WorkSpacesWeb.prototype.getIdentityProvider = function (args, optionsOrCb, cb) {
|
|
347
|
+
var command = new GetIdentityProviderCommand(args);
|
|
348
|
+
if (typeof optionsOrCb === "function") {
|
|
349
|
+
this.send(command, optionsOrCb);
|
|
350
|
+
}
|
|
351
|
+
else if (typeof cb === "function") {
|
|
352
|
+
if (typeof optionsOrCb !== "object")
|
|
353
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
354
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
355
|
+
}
|
|
356
|
+
else {
|
|
357
|
+
return this.send(command, optionsOrCb);
|
|
358
|
+
}
|
|
359
|
+
};
|
|
360
|
+
WorkSpacesWeb.prototype.getNetworkSettings = function (args, optionsOrCb, cb) {
|
|
361
|
+
var command = new GetNetworkSettingsCommand(args);
|
|
362
|
+
if (typeof optionsOrCb === "function") {
|
|
363
|
+
this.send(command, optionsOrCb);
|
|
364
|
+
}
|
|
365
|
+
else if (typeof cb === "function") {
|
|
366
|
+
if (typeof optionsOrCb !== "object")
|
|
367
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
368
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
369
|
+
}
|
|
370
|
+
else {
|
|
371
|
+
return this.send(command, optionsOrCb);
|
|
372
|
+
}
|
|
373
|
+
};
|
|
374
|
+
WorkSpacesWeb.prototype.getPortal = function (args, optionsOrCb, cb) {
|
|
375
|
+
var command = new GetPortalCommand(args);
|
|
376
|
+
if (typeof optionsOrCb === "function") {
|
|
377
|
+
this.send(command, optionsOrCb);
|
|
378
|
+
}
|
|
379
|
+
else if (typeof cb === "function") {
|
|
380
|
+
if (typeof optionsOrCb !== "object")
|
|
381
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
382
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
383
|
+
}
|
|
384
|
+
else {
|
|
385
|
+
return this.send(command, optionsOrCb);
|
|
386
|
+
}
|
|
387
|
+
};
|
|
388
|
+
WorkSpacesWeb.prototype.getPortalServiceProviderMetadata = function (args, optionsOrCb, cb) {
|
|
389
|
+
var command = new GetPortalServiceProviderMetadataCommand(args);
|
|
390
|
+
if (typeof optionsOrCb === "function") {
|
|
391
|
+
this.send(command, optionsOrCb);
|
|
392
|
+
}
|
|
393
|
+
else if (typeof cb === "function") {
|
|
394
|
+
if (typeof optionsOrCb !== "object")
|
|
395
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
396
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
397
|
+
}
|
|
398
|
+
else {
|
|
399
|
+
return this.send(command, optionsOrCb);
|
|
400
|
+
}
|
|
401
|
+
};
|
|
402
|
+
WorkSpacesWeb.prototype.getTrustStore = function (args, optionsOrCb, cb) {
|
|
403
|
+
var command = new GetTrustStoreCommand(args);
|
|
404
|
+
if (typeof optionsOrCb === "function") {
|
|
405
|
+
this.send(command, optionsOrCb);
|
|
406
|
+
}
|
|
407
|
+
else if (typeof cb === "function") {
|
|
408
|
+
if (typeof optionsOrCb !== "object")
|
|
409
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
410
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
411
|
+
}
|
|
412
|
+
else {
|
|
413
|
+
return this.send(command, optionsOrCb);
|
|
414
|
+
}
|
|
415
|
+
};
|
|
416
|
+
WorkSpacesWeb.prototype.getTrustStoreCertificate = function (args, optionsOrCb, cb) {
|
|
417
|
+
var command = new GetTrustStoreCertificateCommand(args);
|
|
418
|
+
if (typeof optionsOrCb === "function") {
|
|
419
|
+
this.send(command, optionsOrCb);
|
|
420
|
+
}
|
|
421
|
+
else if (typeof cb === "function") {
|
|
422
|
+
if (typeof optionsOrCb !== "object")
|
|
423
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
424
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
425
|
+
}
|
|
426
|
+
else {
|
|
427
|
+
return this.send(command, optionsOrCb);
|
|
428
|
+
}
|
|
429
|
+
};
|
|
430
|
+
WorkSpacesWeb.prototype.getUserSettings = function (args, optionsOrCb, cb) {
|
|
431
|
+
var command = new GetUserSettingsCommand(args);
|
|
432
|
+
if (typeof optionsOrCb === "function") {
|
|
433
|
+
this.send(command, optionsOrCb);
|
|
434
|
+
}
|
|
435
|
+
else if (typeof cb === "function") {
|
|
436
|
+
if (typeof optionsOrCb !== "object")
|
|
437
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
438
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
439
|
+
}
|
|
440
|
+
else {
|
|
441
|
+
return this.send(command, optionsOrCb);
|
|
442
|
+
}
|
|
443
|
+
};
|
|
444
|
+
WorkSpacesWeb.prototype.listBrowserSettings = function (args, optionsOrCb, cb) {
|
|
445
|
+
var command = new ListBrowserSettingsCommand(args);
|
|
446
|
+
if (typeof optionsOrCb === "function") {
|
|
447
|
+
this.send(command, optionsOrCb);
|
|
448
|
+
}
|
|
449
|
+
else if (typeof cb === "function") {
|
|
450
|
+
if (typeof optionsOrCb !== "object")
|
|
451
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
452
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
453
|
+
}
|
|
454
|
+
else {
|
|
455
|
+
return this.send(command, optionsOrCb);
|
|
456
|
+
}
|
|
457
|
+
};
|
|
458
|
+
WorkSpacesWeb.prototype.listIdentityProviders = function (args, optionsOrCb, cb) {
|
|
459
|
+
var command = new ListIdentityProvidersCommand(args);
|
|
460
|
+
if (typeof optionsOrCb === "function") {
|
|
461
|
+
this.send(command, optionsOrCb);
|
|
462
|
+
}
|
|
463
|
+
else if (typeof cb === "function") {
|
|
464
|
+
if (typeof optionsOrCb !== "object")
|
|
465
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
466
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
467
|
+
}
|
|
468
|
+
else {
|
|
469
|
+
return this.send(command, optionsOrCb);
|
|
470
|
+
}
|
|
471
|
+
};
|
|
472
|
+
WorkSpacesWeb.prototype.listNetworkSettings = function (args, optionsOrCb, cb) {
|
|
473
|
+
var command = new ListNetworkSettingsCommand(args);
|
|
474
|
+
if (typeof optionsOrCb === "function") {
|
|
475
|
+
this.send(command, optionsOrCb);
|
|
476
|
+
}
|
|
477
|
+
else if (typeof cb === "function") {
|
|
478
|
+
if (typeof optionsOrCb !== "object")
|
|
479
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
480
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
481
|
+
}
|
|
482
|
+
else {
|
|
483
|
+
return this.send(command, optionsOrCb);
|
|
484
|
+
}
|
|
485
|
+
};
|
|
486
|
+
WorkSpacesWeb.prototype.listPortals = function (args, optionsOrCb, cb) {
|
|
487
|
+
var command = new ListPortalsCommand(args);
|
|
488
|
+
if (typeof optionsOrCb === "function") {
|
|
489
|
+
this.send(command, optionsOrCb);
|
|
490
|
+
}
|
|
491
|
+
else if (typeof cb === "function") {
|
|
492
|
+
if (typeof optionsOrCb !== "object")
|
|
493
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
494
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
495
|
+
}
|
|
496
|
+
else {
|
|
497
|
+
return this.send(command, optionsOrCb);
|
|
498
|
+
}
|
|
499
|
+
};
|
|
500
|
+
WorkSpacesWeb.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
|
|
501
|
+
var command = new ListTagsForResourceCommand(args);
|
|
502
|
+
if (typeof optionsOrCb === "function") {
|
|
503
|
+
this.send(command, optionsOrCb);
|
|
504
|
+
}
|
|
505
|
+
else if (typeof cb === "function") {
|
|
506
|
+
if (typeof optionsOrCb !== "object")
|
|
507
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
508
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
509
|
+
}
|
|
510
|
+
else {
|
|
511
|
+
return this.send(command, optionsOrCb);
|
|
512
|
+
}
|
|
513
|
+
};
|
|
514
|
+
WorkSpacesWeb.prototype.listTrustStoreCertificates = function (args, optionsOrCb, cb) {
|
|
515
|
+
var command = new ListTrustStoreCertificatesCommand(args);
|
|
516
|
+
if (typeof optionsOrCb === "function") {
|
|
517
|
+
this.send(command, optionsOrCb);
|
|
518
|
+
}
|
|
519
|
+
else if (typeof cb === "function") {
|
|
520
|
+
if (typeof optionsOrCb !== "object")
|
|
521
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
522
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
523
|
+
}
|
|
524
|
+
else {
|
|
525
|
+
return this.send(command, optionsOrCb);
|
|
526
|
+
}
|
|
527
|
+
};
|
|
528
|
+
WorkSpacesWeb.prototype.listTrustStores = function (args, optionsOrCb, cb) {
|
|
529
|
+
var command = new ListTrustStoresCommand(args);
|
|
530
|
+
if (typeof optionsOrCb === "function") {
|
|
531
|
+
this.send(command, optionsOrCb);
|
|
532
|
+
}
|
|
533
|
+
else if (typeof cb === "function") {
|
|
534
|
+
if (typeof optionsOrCb !== "object")
|
|
535
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
536
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
537
|
+
}
|
|
538
|
+
else {
|
|
539
|
+
return this.send(command, optionsOrCb);
|
|
540
|
+
}
|
|
541
|
+
};
|
|
542
|
+
WorkSpacesWeb.prototype.listUserSettings = function (args, optionsOrCb, cb) {
|
|
543
|
+
var command = new ListUserSettingsCommand(args);
|
|
544
|
+
if (typeof optionsOrCb === "function") {
|
|
545
|
+
this.send(command, optionsOrCb);
|
|
546
|
+
}
|
|
547
|
+
else if (typeof cb === "function") {
|
|
548
|
+
if (typeof optionsOrCb !== "object")
|
|
549
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
550
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
551
|
+
}
|
|
552
|
+
else {
|
|
553
|
+
return this.send(command, optionsOrCb);
|
|
554
|
+
}
|
|
555
|
+
};
|
|
556
|
+
WorkSpacesWeb.prototype.tagResource = function (args, optionsOrCb, cb) {
|
|
557
|
+
var command = new TagResourceCommand(args);
|
|
558
|
+
if (typeof optionsOrCb === "function") {
|
|
559
|
+
this.send(command, optionsOrCb);
|
|
560
|
+
}
|
|
561
|
+
else if (typeof cb === "function") {
|
|
562
|
+
if (typeof optionsOrCb !== "object")
|
|
563
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
564
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
565
|
+
}
|
|
566
|
+
else {
|
|
567
|
+
return this.send(command, optionsOrCb);
|
|
568
|
+
}
|
|
569
|
+
};
|
|
570
|
+
WorkSpacesWeb.prototype.untagResource = function (args, optionsOrCb, cb) {
|
|
571
|
+
var command = new UntagResourceCommand(args);
|
|
572
|
+
if (typeof optionsOrCb === "function") {
|
|
573
|
+
this.send(command, optionsOrCb);
|
|
574
|
+
}
|
|
575
|
+
else if (typeof cb === "function") {
|
|
576
|
+
if (typeof optionsOrCb !== "object")
|
|
577
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
578
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
579
|
+
}
|
|
580
|
+
else {
|
|
581
|
+
return this.send(command, optionsOrCb);
|
|
582
|
+
}
|
|
583
|
+
};
|
|
584
|
+
WorkSpacesWeb.prototype.updateBrowserSettings = function (args, optionsOrCb, cb) {
|
|
585
|
+
var command = new UpdateBrowserSettingsCommand(args);
|
|
586
|
+
if (typeof optionsOrCb === "function") {
|
|
587
|
+
this.send(command, optionsOrCb);
|
|
588
|
+
}
|
|
589
|
+
else if (typeof cb === "function") {
|
|
590
|
+
if (typeof optionsOrCb !== "object")
|
|
591
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
592
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
593
|
+
}
|
|
594
|
+
else {
|
|
595
|
+
return this.send(command, optionsOrCb);
|
|
596
|
+
}
|
|
597
|
+
};
|
|
598
|
+
WorkSpacesWeb.prototype.updateIdentityProvider = function (args, optionsOrCb, cb) {
|
|
599
|
+
var command = new UpdateIdentityProviderCommand(args);
|
|
600
|
+
if (typeof optionsOrCb === "function") {
|
|
601
|
+
this.send(command, optionsOrCb);
|
|
602
|
+
}
|
|
603
|
+
else if (typeof cb === "function") {
|
|
604
|
+
if (typeof optionsOrCb !== "object")
|
|
605
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
606
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
607
|
+
}
|
|
608
|
+
else {
|
|
609
|
+
return this.send(command, optionsOrCb);
|
|
610
|
+
}
|
|
611
|
+
};
|
|
612
|
+
WorkSpacesWeb.prototype.updateNetworkSettings = function (args, optionsOrCb, cb) {
|
|
613
|
+
var command = new UpdateNetworkSettingsCommand(args);
|
|
614
|
+
if (typeof optionsOrCb === "function") {
|
|
615
|
+
this.send(command, optionsOrCb);
|
|
616
|
+
}
|
|
617
|
+
else if (typeof cb === "function") {
|
|
618
|
+
if (typeof optionsOrCb !== "object")
|
|
619
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
620
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
621
|
+
}
|
|
622
|
+
else {
|
|
623
|
+
return this.send(command, optionsOrCb);
|
|
624
|
+
}
|
|
625
|
+
};
|
|
626
|
+
WorkSpacesWeb.prototype.updatePortal = function (args, optionsOrCb, cb) {
|
|
627
|
+
var command = new UpdatePortalCommand(args);
|
|
628
|
+
if (typeof optionsOrCb === "function") {
|
|
629
|
+
this.send(command, optionsOrCb);
|
|
630
|
+
}
|
|
631
|
+
else if (typeof cb === "function") {
|
|
632
|
+
if (typeof optionsOrCb !== "object")
|
|
633
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
634
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
635
|
+
}
|
|
636
|
+
else {
|
|
637
|
+
return this.send(command, optionsOrCb);
|
|
638
|
+
}
|
|
639
|
+
};
|
|
640
|
+
WorkSpacesWeb.prototype.updateTrustStore = function (args, optionsOrCb, cb) {
|
|
641
|
+
var command = new UpdateTrustStoreCommand(args);
|
|
642
|
+
if (typeof optionsOrCb === "function") {
|
|
643
|
+
this.send(command, optionsOrCb);
|
|
644
|
+
}
|
|
645
|
+
else if (typeof cb === "function") {
|
|
646
|
+
if (typeof optionsOrCb !== "object")
|
|
647
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
648
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
649
|
+
}
|
|
650
|
+
else {
|
|
651
|
+
return this.send(command, optionsOrCb);
|
|
652
|
+
}
|
|
653
|
+
};
|
|
654
|
+
WorkSpacesWeb.prototype.updateUserSettings = function (args, optionsOrCb, cb) {
|
|
655
|
+
var command = new UpdateUserSettingsCommand(args);
|
|
656
|
+
if (typeof optionsOrCb === "function") {
|
|
657
|
+
this.send(command, optionsOrCb);
|
|
658
|
+
}
|
|
659
|
+
else if (typeof cb === "function") {
|
|
660
|
+
if (typeof optionsOrCb !== "object")
|
|
661
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
662
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
663
|
+
}
|
|
664
|
+
else {
|
|
665
|
+
return this.send(command, optionsOrCb);
|
|
666
|
+
}
|
|
667
|
+
};
|
|
668
|
+
return WorkSpacesWeb;
|
|
669
|
+
}(WorkSpacesWebClient));
|
|
670
|
+
export { WorkSpacesWeb };
|