@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,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { WorkSpacesWeb } from "../WorkSpacesWeb";
|
|
3
|
+
import { WorkSpacesWebClient } from "../WorkSpacesWebClient";
|
|
4
|
+
export interface WorkSpacesWebPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: WorkSpacesWeb | WorkSpacesWebClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput } from "../commands/ListBrowserSettingsCommand";
|
|
3
|
+
import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListBrowserSettings(config: WorkSpacesWebPaginationConfiguration, input: ListBrowserSettingsCommandInput, ...additionalArguments: any): Paginator<ListBrowserSettingsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "../commands/ListIdentityProvidersCommand";
|
|
3
|
+
import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListIdentityProviders(config: WorkSpacesWebPaginationConfiguration, input: ListIdentityProvidersCommandInput, ...additionalArguments: any): Paginator<ListIdentityProvidersCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "../commands/ListNetworkSettingsCommand";
|
|
3
|
+
import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListNetworkSettings(config: WorkSpacesWebPaginationConfiguration, input: ListNetworkSettingsCommandInput, ...additionalArguments: any): Paginator<ListNetworkSettingsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "../commands/ListPortalsCommand";
|
|
3
|
+
import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListPortals(config: WorkSpacesWebPaginationConfiguration, input: ListPortalsCommandInput, ...additionalArguments: any): Paginator<ListPortalsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput } from "../commands/ListTrustStoreCertificatesCommand";
|
|
3
|
+
import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListTrustStoreCertificates(config: WorkSpacesWebPaginationConfiguration, input: ListTrustStoreCertificatesCommandInput, ...additionalArguments: any): Paginator<ListTrustStoreCertificatesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListTrustStoresCommandInput, ListTrustStoresCommandOutput } from "../commands/ListTrustStoresCommand";
|
|
3
|
+
import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListTrustStores(config: WorkSpacesWebPaginationConfiguration, input: ListTrustStoresCommandInput, ...additionalArguments: any): Paginator<ListTrustStoresCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListUserSettingsCommandInput, ListUserSettingsCommandOutput } from "../commands/ListUserSettingsCommand";
|
|
3
|
+
import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListUserSettings(config: WorkSpacesWebPaginationConfiguration, input: ListUserSettingsCommandInput, ...additionalArguments: any): Paginator<ListUserSettingsCommandOutput>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListBrowserSettingsPaginator";
|
|
3
|
+
export * from "./ListIdentityProvidersPaginator";
|
|
4
|
+
export * from "./ListNetworkSettingsPaginator";
|
|
5
|
+
export * from "./ListPortalsPaginator";
|
|
6
|
+
export * from "./ListTrustStoreCertificatesPaginator";
|
|
7
|
+
export * from "./ListTrustStoresPaginator";
|
|
8
|
+
export * from "./ListUserSettingsPaginator";
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOutput } from "../commands/AssociateBrowserSettingsCommand";
|
|
4
|
+
import { AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput } from "../commands/AssociateNetworkSettingsCommand";
|
|
5
|
+
import { AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput } from "../commands/AssociateTrustStoreCommand";
|
|
6
|
+
import { AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput } from "../commands/AssociateUserSettingsCommand";
|
|
7
|
+
import { CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput } from "../commands/CreateBrowserSettingsCommand";
|
|
8
|
+
import { CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput } from "../commands/CreateIdentityProviderCommand";
|
|
9
|
+
import { CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput } from "../commands/CreateNetworkSettingsCommand";
|
|
10
|
+
import { CreatePortalCommandInput, CreatePortalCommandOutput } from "../commands/CreatePortalCommand";
|
|
11
|
+
import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "../commands/CreateTrustStoreCommand";
|
|
12
|
+
import { CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput } from "../commands/CreateUserSettingsCommand";
|
|
13
|
+
import { DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput } from "../commands/DeleteBrowserSettingsCommand";
|
|
14
|
+
import { DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput } from "../commands/DeleteIdentityProviderCommand";
|
|
15
|
+
import { DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput } from "../commands/DeleteNetworkSettingsCommand";
|
|
16
|
+
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "../commands/DeletePortalCommand";
|
|
17
|
+
import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "../commands/DeleteTrustStoreCommand";
|
|
18
|
+
import { DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput } from "../commands/DeleteUserSettingsCommand";
|
|
19
|
+
import { DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCommandOutput } from "../commands/DisassociateBrowserSettingsCommand";
|
|
20
|
+
import { DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput } from "../commands/DisassociateNetworkSettingsCommand";
|
|
21
|
+
import { DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput } from "../commands/DisassociateTrustStoreCommand";
|
|
22
|
+
import { DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput } from "../commands/DisassociateUserSettingsCommand";
|
|
23
|
+
import { GetBrowserSettingsCommandInput, GetBrowserSettingsCommandOutput } from "../commands/GetBrowserSettingsCommand";
|
|
24
|
+
import { GetIdentityProviderCommandInput, GetIdentityProviderCommandOutput } from "../commands/GetIdentityProviderCommand";
|
|
25
|
+
import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from "../commands/GetNetworkSettingsCommand";
|
|
26
|
+
import { GetPortalCommandInput, GetPortalCommandOutput } from "../commands/GetPortalCommand";
|
|
27
|
+
import { GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput } from "../commands/GetPortalServiceProviderMetadataCommand";
|
|
28
|
+
import { GetTrustStoreCertificateCommandInput, GetTrustStoreCertificateCommandOutput } from "../commands/GetTrustStoreCertificateCommand";
|
|
29
|
+
import { GetTrustStoreCommandInput, GetTrustStoreCommandOutput } from "../commands/GetTrustStoreCommand";
|
|
30
|
+
import { GetUserSettingsCommandInput, GetUserSettingsCommandOutput } from "../commands/GetUserSettingsCommand";
|
|
31
|
+
import { ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput } from "../commands/ListBrowserSettingsCommand";
|
|
32
|
+
import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "../commands/ListIdentityProvidersCommand";
|
|
33
|
+
import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "../commands/ListNetworkSettingsCommand";
|
|
34
|
+
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "../commands/ListPortalsCommand";
|
|
35
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
36
|
+
import { ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput } from "../commands/ListTrustStoreCertificatesCommand";
|
|
37
|
+
import { ListTrustStoresCommandInput, ListTrustStoresCommandOutput } from "../commands/ListTrustStoresCommand";
|
|
38
|
+
import { ListUserSettingsCommandInput, ListUserSettingsCommandOutput } from "../commands/ListUserSettingsCommand";
|
|
39
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
40
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
41
|
+
import { UpdateBrowserSettingsCommandInput, UpdateBrowserSettingsCommandOutput } from "../commands/UpdateBrowserSettingsCommand";
|
|
42
|
+
import { UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput } from "../commands/UpdateIdentityProviderCommand";
|
|
43
|
+
import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "../commands/UpdateNetworkSettingsCommand";
|
|
44
|
+
import { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "../commands/UpdatePortalCommand";
|
|
45
|
+
import { UpdateTrustStoreCommandInput, UpdateTrustStoreCommandOutput } from "../commands/UpdateTrustStoreCommand";
|
|
46
|
+
import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput } from "../commands/UpdateUserSettingsCommand";
|
|
47
|
+
export declare const serializeAws_restJson1AssociateBrowserSettingsCommand: (input: AssociateBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
export declare const serializeAws_restJson1AssociateNetworkSettingsCommand: (input: AssociateNetworkSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
+
export declare const serializeAws_restJson1AssociateTrustStoreCommand: (input: AssociateTrustStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
export declare const serializeAws_restJson1AssociateUserSettingsCommand: (input: AssociateUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
export declare const serializeAws_restJson1CreateBrowserSettingsCommand: (input: CreateBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
export declare const serializeAws_restJson1CreateIdentityProviderCommand: (input: CreateIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
+
export declare const serializeAws_restJson1CreateNetworkSettingsCommand: (input: CreateNetworkSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
export declare const serializeAws_restJson1CreatePortalCommand: (input: CreatePortalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
export declare const serializeAws_restJson1CreateTrustStoreCommand: (input: CreateTrustStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
export declare const serializeAws_restJson1CreateUserSettingsCommand: (input: CreateUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
export declare const serializeAws_restJson1DeleteBrowserSettingsCommand: (input: DeleteBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const serializeAws_restJson1DeleteIdentityProviderCommand: (input: DeleteIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
export declare const serializeAws_restJson1DeleteNetworkSettingsCommand: (input: DeleteNetworkSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
+
export declare const serializeAws_restJson1DeletePortalCommand: (input: DeletePortalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
+
export declare const serializeAws_restJson1DeleteTrustStoreCommand: (input: DeleteTrustStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const serializeAws_restJson1DeleteUserSettingsCommand: (input: DeleteUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
export declare const serializeAws_restJson1DisassociateBrowserSettingsCommand: (input: DisassociateBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
export declare const serializeAws_restJson1DisassociateNetworkSettingsCommand: (input: DisassociateNetworkSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
+
export declare const serializeAws_restJson1DisassociateTrustStoreCommand: (input: DisassociateTrustStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_restJson1DisassociateUserSettingsCommand: (input: DisassociateUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
export declare const serializeAws_restJson1GetBrowserSettingsCommand: (input: GetBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
export declare const serializeAws_restJson1GetIdentityProviderCommand: (input: GetIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
+
export declare const serializeAws_restJson1GetNetworkSettingsCommand: (input: GetNetworkSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_restJson1GetPortalCommand: (input: GetPortalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
export declare const serializeAws_restJson1GetPortalServiceProviderMetadataCommand: (input: GetPortalServiceProviderMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
+
export declare const serializeAws_restJson1GetTrustStoreCommand: (input: GetTrustStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
+
export declare const serializeAws_restJson1GetTrustStoreCertificateCommand: (input: GetTrustStoreCertificateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_restJson1GetUserSettingsCommand: (input: GetUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
+
export declare const serializeAws_restJson1ListBrowserSettingsCommand: (input: ListBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
export declare const serializeAws_restJson1ListIdentityProvidersCommand: (input: ListIdentityProvidersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
+
export declare const serializeAws_restJson1ListNetworkSettingsCommand: (input: ListNetworkSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_restJson1ListPortalsCommand: (input: ListPortalsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
+
export declare const serializeAws_restJson1ListTrustStoreCertificatesCommand: (input: ListTrustStoreCertificatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
+
export declare const serializeAws_restJson1ListTrustStoresCommand: (input: ListTrustStoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_restJson1ListUserSettingsCommand: (input: ListUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
+
export declare const serializeAws_restJson1UpdateBrowserSettingsCommand: (input: UpdateBrowserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1UpdateIdentityProviderCommand: (input: UpdateIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
+
export declare const serializeAws_restJson1UpdateNetworkSettingsCommand: (input: UpdateNetworkSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
+
export declare const serializeAws_restJson1UpdatePortalCommand: (input: UpdatePortalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
+
export declare const serializeAws_restJson1UpdateTrustStoreCommand: (input: UpdateTrustStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_restJson1UpdateUserSettingsCommand: (input: UpdateUserSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
+
export declare const deserializeAws_restJson1AssociateBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateBrowserSettingsCommandOutput>;
|
|
92
|
+
export declare const deserializeAws_restJson1AssociateNetworkSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateNetworkSettingsCommandOutput>;
|
|
93
|
+
export declare const deserializeAws_restJson1AssociateTrustStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateTrustStoreCommandOutput>;
|
|
94
|
+
export declare const deserializeAws_restJson1AssociateUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateUserSettingsCommandOutput>;
|
|
95
|
+
export declare const deserializeAws_restJson1CreateBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBrowserSettingsCommandOutput>;
|
|
96
|
+
export declare const deserializeAws_restJson1CreateIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIdentityProviderCommandOutput>;
|
|
97
|
+
export declare const deserializeAws_restJson1CreateNetworkSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNetworkSettingsCommandOutput>;
|
|
98
|
+
export declare const deserializeAws_restJson1CreatePortalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePortalCommandOutput>;
|
|
99
|
+
export declare const deserializeAws_restJson1CreateTrustStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTrustStoreCommandOutput>;
|
|
100
|
+
export declare const deserializeAws_restJson1CreateUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserSettingsCommandOutput>;
|
|
101
|
+
export declare const deserializeAws_restJson1DeleteBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBrowserSettingsCommandOutput>;
|
|
102
|
+
export declare const deserializeAws_restJson1DeleteIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIdentityProviderCommandOutput>;
|
|
103
|
+
export declare const deserializeAws_restJson1DeleteNetworkSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNetworkSettingsCommandOutput>;
|
|
104
|
+
export declare const deserializeAws_restJson1DeletePortalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePortalCommandOutput>;
|
|
105
|
+
export declare const deserializeAws_restJson1DeleteTrustStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrustStoreCommandOutput>;
|
|
106
|
+
export declare const deserializeAws_restJson1DeleteUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserSettingsCommandOutput>;
|
|
107
|
+
export declare const deserializeAws_restJson1DisassociateBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateBrowserSettingsCommandOutput>;
|
|
108
|
+
export declare const deserializeAws_restJson1DisassociateNetworkSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateNetworkSettingsCommandOutput>;
|
|
109
|
+
export declare const deserializeAws_restJson1DisassociateTrustStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateTrustStoreCommandOutput>;
|
|
110
|
+
export declare const deserializeAws_restJson1DisassociateUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateUserSettingsCommandOutput>;
|
|
111
|
+
export declare const deserializeAws_restJson1GetBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBrowserSettingsCommandOutput>;
|
|
112
|
+
export declare const deserializeAws_restJson1GetIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIdentityProviderCommandOutput>;
|
|
113
|
+
export declare const deserializeAws_restJson1GetNetworkSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNetworkSettingsCommandOutput>;
|
|
114
|
+
export declare const deserializeAws_restJson1GetPortalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPortalCommandOutput>;
|
|
115
|
+
export declare const deserializeAws_restJson1GetPortalServiceProviderMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPortalServiceProviderMetadataCommandOutput>;
|
|
116
|
+
export declare const deserializeAws_restJson1GetTrustStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrustStoreCommandOutput>;
|
|
117
|
+
export declare const deserializeAws_restJson1GetTrustStoreCertificateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrustStoreCertificateCommandOutput>;
|
|
118
|
+
export declare const deserializeAws_restJson1GetUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserSettingsCommandOutput>;
|
|
119
|
+
export declare const deserializeAws_restJson1ListBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBrowserSettingsCommandOutput>;
|
|
120
|
+
export declare const deserializeAws_restJson1ListIdentityProvidersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentityProvidersCommandOutput>;
|
|
121
|
+
export declare const deserializeAws_restJson1ListNetworkSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNetworkSettingsCommandOutput>;
|
|
122
|
+
export declare const deserializeAws_restJson1ListPortalsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPortalsCommandOutput>;
|
|
123
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
124
|
+
export declare const deserializeAws_restJson1ListTrustStoreCertificatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrustStoreCertificatesCommandOutput>;
|
|
125
|
+
export declare const deserializeAws_restJson1ListTrustStoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrustStoresCommandOutput>;
|
|
126
|
+
export declare const deserializeAws_restJson1ListUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserSettingsCommandOutput>;
|
|
127
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
128
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
129
|
+
export declare const deserializeAws_restJson1UpdateBrowserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBrowserSettingsCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_restJson1UpdateIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdentityProviderCommandOutput>;
|
|
131
|
+
export declare const deserializeAws_restJson1UpdateNetworkSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNetworkSettingsCommandOutput>;
|
|
132
|
+
export declare const deserializeAws_restJson1UpdatePortalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePortalCommandOutput>;
|
|
133
|
+
export declare const deserializeAws_restJson1UpdateTrustStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTrustStoreCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_restJson1UpdateUserSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserSettingsCommandOutput>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: WorkSpacesWebClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
|
|
16
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
22
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
29
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
30
|
+
tls?: boolean | undefined;
|
|
31
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
34
|
+
signingEscapePath?: boolean | undefined;
|
|
35
|
+
systemClockOffset?: number | undefined;
|
|
36
|
+
signingRegion?: string | undefined;
|
|
37
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
38
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: WorkSpacesWebClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
+
credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
|
|
12
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
|
|
16
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
22
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
29
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
30
|
+
tls?: boolean | undefined;
|
|
31
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
34
|
+
signingEscapePath?: boolean | undefined;
|
|
35
|
+
systemClockOffset?: number | undefined;
|
|
36
|
+
signingRegion?: string | undefined;
|
|
37
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
38
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
39
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: WorkSpacesWebClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
12
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
25
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: WorkSpacesWebClientConfig) => {
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
logger: __Logger;
|
|
10
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
|
+
serviceId: string;
|
|
12
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
|
+
};
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOutput } from "./commands/AssociateBrowserSettingsCommand";
|
|
3
|
+
import { AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput } from "./commands/AssociateNetworkSettingsCommand";
|
|
4
|
+
import { AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput } from "./commands/AssociateTrustStoreCommand";
|
|
5
|
+
import { AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput } from "./commands/AssociateUserSettingsCommand";
|
|
6
|
+
import { CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput } from "./commands/CreateBrowserSettingsCommand";
|
|
7
|
+
import { CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput } from "./commands/CreateIdentityProviderCommand";
|
|
8
|
+
import { CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput } from "./commands/CreateNetworkSettingsCommand";
|
|
9
|
+
import { CreatePortalCommandInput, CreatePortalCommandOutput } from "./commands/CreatePortalCommand";
|
|
10
|
+
import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "./commands/CreateTrustStoreCommand";
|
|
11
|
+
import { CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput } from "./commands/CreateUserSettingsCommand";
|
|
12
|
+
import { DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput } from "./commands/DeleteBrowserSettingsCommand";
|
|
13
|
+
import { DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput } from "./commands/DeleteIdentityProviderCommand";
|
|
14
|
+
import { DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput } from "./commands/DeleteNetworkSettingsCommand";
|
|
15
|
+
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "./commands/DeletePortalCommand";
|
|
16
|
+
import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "./commands/DeleteTrustStoreCommand";
|
|
17
|
+
import { DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput } from "./commands/DeleteUserSettingsCommand";
|
|
18
|
+
import { DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCommandOutput } from "./commands/DisassociateBrowserSettingsCommand";
|
|
19
|
+
import { DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput } from "./commands/DisassociateNetworkSettingsCommand";
|
|
20
|
+
import { DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput } from "./commands/DisassociateTrustStoreCommand";
|
|
21
|
+
import { DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput } from "./commands/DisassociateUserSettingsCommand";
|
|
22
|
+
import { GetBrowserSettingsCommandInput, GetBrowserSettingsCommandOutput } from "./commands/GetBrowserSettingsCommand";
|
|
23
|
+
import { GetIdentityProviderCommandInput, GetIdentityProviderCommandOutput } from "./commands/GetIdentityProviderCommand";
|
|
24
|
+
import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from "./commands/GetNetworkSettingsCommand";
|
|
25
|
+
import { GetPortalCommandInput, GetPortalCommandOutput } from "./commands/GetPortalCommand";
|
|
26
|
+
import { GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput } from "./commands/GetPortalServiceProviderMetadataCommand";
|
|
27
|
+
import { GetTrustStoreCertificateCommandInput, GetTrustStoreCertificateCommandOutput } from "./commands/GetTrustStoreCertificateCommand";
|
|
28
|
+
import { GetTrustStoreCommandInput, GetTrustStoreCommandOutput } from "./commands/GetTrustStoreCommand";
|
|
29
|
+
import { GetUserSettingsCommandInput, GetUserSettingsCommandOutput } from "./commands/GetUserSettingsCommand";
|
|
30
|
+
import { ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput } from "./commands/ListBrowserSettingsCommand";
|
|
31
|
+
import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "./commands/ListIdentityProvidersCommand";
|
|
32
|
+
import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "./commands/ListNetworkSettingsCommand";
|
|
33
|
+
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
|
|
34
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
35
|
+
import { ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput } from "./commands/ListTrustStoreCertificatesCommand";
|
|
36
|
+
import { ListTrustStoresCommandInput, ListTrustStoresCommandOutput } from "./commands/ListTrustStoresCommand";
|
|
37
|
+
import { ListUserSettingsCommandInput, ListUserSettingsCommandOutput } from "./commands/ListUserSettingsCommand";
|
|
38
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
39
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
40
|
+
import { UpdateBrowserSettingsCommandInput, UpdateBrowserSettingsCommandOutput } from "./commands/UpdateBrowserSettingsCommand";
|
|
41
|
+
import { UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput } from "./commands/UpdateIdentityProviderCommand";
|
|
42
|
+
import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "./commands/UpdateNetworkSettingsCommand";
|
|
43
|
+
import { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "./commands/UpdatePortalCommand";
|
|
44
|
+
import { UpdateTrustStoreCommandInput, UpdateTrustStoreCommandOutput } from "./commands/UpdateTrustStoreCommand";
|
|
45
|
+
import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput } from "./commands/UpdateUserSettingsCommand";
|
|
46
|
+
import { WorkSpacesWebClient } from "./WorkSpacesWebClient";
|
|
47
|
+
|
|
48
|
+
export declare class WorkSpacesWeb extends WorkSpacesWebClient {
|
|
49
|
+
|
|
50
|
+
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateBrowserSettingsCommandOutput>;
|
|
51
|
+
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void): void;
|
|
52
|
+
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void): void;
|
|
53
|
+
|
|
54
|
+
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateNetworkSettingsCommandOutput>;
|
|
55
|
+
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, cb: (err: any, data?: AssociateNetworkSettingsCommandOutput) => void): void;
|
|
56
|
+
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateNetworkSettingsCommandOutput) => void): void;
|
|
57
|
+
|
|
58
|
+
associateTrustStore(args: AssociateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTrustStoreCommandOutput>;
|
|
59
|
+
associateTrustStore(args: AssociateTrustStoreCommandInput, cb: (err: any, data?: AssociateTrustStoreCommandOutput) => void): void;
|
|
60
|
+
associateTrustStore(args: AssociateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTrustStoreCommandOutput) => void): void;
|
|
61
|
+
|
|
62
|
+
associateUserSettings(args: AssociateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateUserSettingsCommandOutput>;
|
|
63
|
+
associateUserSettings(args: AssociateUserSettingsCommandInput, cb: (err: any, data?: AssociateUserSettingsCommandOutput) => void): void;
|
|
64
|
+
associateUserSettings(args: AssociateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateUserSettingsCommandOutput) => void): void;
|
|
65
|
+
|
|
66
|
+
createBrowserSettings(args: CreateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateBrowserSettingsCommandOutput>;
|
|
67
|
+
createBrowserSettings(args: CreateBrowserSettingsCommandInput, cb: (err: any, data?: CreateBrowserSettingsCommandOutput) => void): void;
|
|
68
|
+
createBrowserSettings(args: CreateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBrowserSettingsCommandOutput) => void): void;
|
|
69
|
+
|
|
70
|
+
createIdentityProvider(args: CreateIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<CreateIdentityProviderCommandOutput>;
|
|
71
|
+
createIdentityProvider(args: CreateIdentityProviderCommandInput, cb: (err: any, data?: CreateIdentityProviderCommandOutput) => void): void;
|
|
72
|
+
createIdentityProvider(args: CreateIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIdentityProviderCommandOutput) => void): void;
|
|
73
|
+
|
|
74
|
+
createNetworkSettings(args: CreateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkSettingsCommandOutput>;
|
|
75
|
+
createNetworkSettings(args: CreateNetworkSettingsCommandInput, cb: (err: any, data?: CreateNetworkSettingsCommandOutput) => void): void;
|
|
76
|
+
createNetworkSettings(args: CreateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkSettingsCommandOutput) => void): void;
|
|
77
|
+
|
|
78
|
+
createPortal(args: CreatePortalCommandInput, options?: __HttpHandlerOptions): Promise<CreatePortalCommandOutput>;
|
|
79
|
+
createPortal(args: CreatePortalCommandInput, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
80
|
+
createPortal(args: CreatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
81
|
+
|
|
82
|
+
createTrustStore(args: CreateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrustStoreCommandOutput>;
|
|
83
|
+
createTrustStore(args: CreateTrustStoreCommandInput, cb: (err: any, data?: CreateTrustStoreCommandOutput) => void): void;
|
|
84
|
+
createTrustStore(args: CreateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrustStoreCommandOutput) => void): void;
|
|
85
|
+
|
|
86
|
+
createUserSettings(args: CreateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserSettingsCommandOutput>;
|
|
87
|
+
createUserSettings(args: CreateUserSettingsCommandInput, cb: (err: any, data?: CreateUserSettingsCommandOutput) => void): void;
|
|
88
|
+
createUserSettings(args: CreateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserSettingsCommandOutput) => void): void;
|
|
89
|
+
|
|
90
|
+
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBrowserSettingsCommandOutput>;
|
|
91
|
+
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, cb: (err: any, data?: DeleteBrowserSettingsCommandOutput) => void): void;
|
|
92
|
+
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBrowserSettingsCommandOutput) => void): void;
|
|
93
|
+
|
|
94
|
+
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityProviderCommandOutput>;
|
|
95
|
+
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, cb: (err: any, data?: DeleteIdentityProviderCommandOutput) => void): void;
|
|
96
|
+
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityProviderCommandOutput) => void): void;
|
|
97
|
+
|
|
98
|
+
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkSettingsCommandOutput>;
|
|
99
|
+
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, cb: (err: any, data?: DeleteNetworkSettingsCommandOutput) => void): void;
|
|
100
|
+
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkSettingsCommandOutput) => void): void;
|
|
101
|
+
|
|
102
|
+
deletePortal(args: DeletePortalCommandInput, options?: __HttpHandlerOptions): Promise<DeletePortalCommandOutput>;
|
|
103
|
+
deletePortal(args: DeletePortalCommandInput, cb: (err: any, data?: DeletePortalCommandOutput) => void): void;
|
|
104
|
+
deletePortal(args: DeletePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePortalCommandOutput) => void): void;
|
|
105
|
+
|
|
106
|
+
deleteTrustStore(args: DeleteTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrustStoreCommandOutput>;
|
|
107
|
+
deleteTrustStore(args: DeleteTrustStoreCommandInput, cb: (err: any, data?: DeleteTrustStoreCommandOutput) => void): void;
|
|
108
|
+
deleteTrustStore(args: DeleteTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrustStoreCommandOutput) => void): void;
|
|
109
|
+
|
|
110
|
+
deleteUserSettings(args: DeleteUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserSettingsCommandOutput>;
|
|
111
|
+
deleteUserSettings(args: DeleteUserSettingsCommandInput, cb: (err: any, data?: DeleteUserSettingsCommandOutput) => void): void;
|
|
112
|
+
deleteUserSettings(args: DeleteUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserSettingsCommandOutput) => void): void;
|
|
113
|
+
|
|
114
|
+
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateBrowserSettingsCommandOutput>;
|
|
115
|
+
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void): void;
|
|
116
|
+
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void): void;
|
|
117
|
+
|
|
118
|
+
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateNetworkSettingsCommandOutput>;
|
|
119
|
+
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, cb: (err: any, data?: DisassociateNetworkSettingsCommandOutput) => void): void;
|
|
120
|
+
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateNetworkSettingsCommandOutput) => void): void;
|
|
121
|
+
|
|
122
|
+
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTrustStoreCommandOutput>;
|
|
123
|
+
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, cb: (err: any, data?: DisassociateTrustStoreCommandOutput) => void): void;
|
|
124
|
+
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTrustStoreCommandOutput) => void): void;
|
|
125
|
+
|
|
126
|
+
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateUserSettingsCommandOutput>;
|
|
127
|
+
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, cb: (err: any, data?: DisassociateUserSettingsCommandOutput) => void): void;
|
|
128
|
+
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateUserSettingsCommandOutput) => void): void;
|
|
129
|
+
|
|
130
|
+
getBrowserSettings(args: GetBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetBrowserSettingsCommandOutput>;
|
|
131
|
+
getBrowserSettings(args: GetBrowserSettingsCommandInput, cb: (err: any, data?: GetBrowserSettingsCommandOutput) => void): void;
|
|
132
|
+
getBrowserSettings(args: GetBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBrowserSettingsCommandOutput) => void): void;
|
|
133
|
+
|
|
134
|
+
getIdentityProvider(args: GetIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityProviderCommandOutput>;
|
|
135
|
+
getIdentityProvider(args: GetIdentityProviderCommandInput, cb: (err: any, data?: GetIdentityProviderCommandOutput) => void): void;
|
|
136
|
+
getIdentityProvider(args: GetIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityProviderCommandOutput) => void): void;
|
|
137
|
+
|
|
138
|
+
getNetworkSettings(args: GetNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkSettingsCommandOutput>;
|
|
139
|
+
getNetworkSettings(args: GetNetworkSettingsCommandInput, cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void): void;
|
|
140
|
+
getNetworkSettings(args: GetNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void): void;
|
|
141
|
+
|
|
142
|
+
getPortal(args: GetPortalCommandInput, options?: __HttpHandlerOptions): Promise<GetPortalCommandOutput>;
|
|
143
|
+
getPortal(args: GetPortalCommandInput, cb: (err: any, data?: GetPortalCommandOutput) => void): void;
|
|
144
|
+
getPortal(args: GetPortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPortalCommandOutput) => void): void;
|
|
145
|
+
|
|
146
|
+
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetPortalServiceProviderMetadataCommandOutput>;
|
|
147
|
+
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, cb: (err: any, data?: GetPortalServiceProviderMetadataCommandOutput) => void): void;
|
|
148
|
+
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPortalServiceProviderMetadataCommandOutput) => void): void;
|
|
149
|
+
|
|
150
|
+
getTrustStore(args: GetTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<GetTrustStoreCommandOutput>;
|
|
151
|
+
getTrustStore(args: GetTrustStoreCommandInput, cb: (err: any, data?: GetTrustStoreCommandOutput) => void): void;
|
|
152
|
+
getTrustStore(args: GetTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrustStoreCommandOutput) => void): void;
|
|
153
|
+
|
|
154
|
+
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetTrustStoreCertificateCommandOutput>;
|
|
155
|
+
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, cb: (err: any, data?: GetTrustStoreCertificateCommandOutput) => void): void;
|
|
156
|
+
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrustStoreCertificateCommandOutput) => void): void;
|
|
157
|
+
|
|
158
|
+
getUserSettings(args: GetUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetUserSettingsCommandOutput>;
|
|
159
|
+
getUserSettings(args: GetUserSettingsCommandInput, cb: (err: any, data?: GetUserSettingsCommandOutput) => void): void;
|
|
160
|
+
getUserSettings(args: GetUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserSettingsCommandOutput) => void): void;
|
|
161
|
+
|
|
162
|
+
listBrowserSettings(args: ListBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListBrowserSettingsCommandOutput>;
|
|
163
|
+
listBrowserSettings(args: ListBrowserSettingsCommandInput, cb: (err: any, data?: ListBrowserSettingsCommandOutput) => void): void;
|
|
164
|
+
listBrowserSettings(args: ListBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBrowserSettingsCommandOutput) => void): void;
|
|
165
|
+
|
|
166
|
+
listIdentityProviders(args: ListIdentityProvidersCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityProvidersCommandOutput>;
|
|
167
|
+
listIdentityProviders(args: ListIdentityProvidersCommandInput, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
|
|
168
|
+
listIdentityProviders(args: ListIdentityProvidersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
|
|
169
|
+
|
|
170
|
+
listNetworkSettings(args: ListNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListNetworkSettingsCommandOutput>;
|
|
171
|
+
listNetworkSettings(args: ListNetworkSettingsCommandInput, cb: (err: any, data?: ListNetworkSettingsCommandOutput) => void): void;
|
|
172
|
+
listNetworkSettings(args: ListNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNetworkSettingsCommandOutput) => void): void;
|
|
173
|
+
|
|
174
|
+
listPortals(args: ListPortalsCommandInput, options?: __HttpHandlerOptions): Promise<ListPortalsCommandOutput>;
|
|
175
|
+
listPortals(args: ListPortalsCommandInput, cb: (err: any, data?: ListPortalsCommandOutput) => void): void;
|
|
176
|
+
listPortals(args: ListPortalsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPortalsCommandOutput) => void): void;
|
|
177
|
+
|
|
178
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
179
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
180
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
181
|
+
|
|
182
|
+
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ListTrustStoreCertificatesCommandOutput>;
|
|
183
|
+
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, cb: (err: any, data?: ListTrustStoreCertificatesCommandOutput) => void): void;
|
|
184
|
+
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrustStoreCertificatesCommandOutput) => void): void;
|
|
185
|
+
|
|
186
|
+
listTrustStores(args: ListTrustStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListTrustStoresCommandOutput>;
|
|
187
|
+
listTrustStores(args: ListTrustStoresCommandInput, cb: (err: any, data?: ListTrustStoresCommandOutput) => void): void;
|
|
188
|
+
listTrustStores(args: ListTrustStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrustStoresCommandOutput) => void): void;
|
|
189
|
+
|
|
190
|
+
listUserSettings(args: ListUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserSettingsCommandOutput>;
|
|
191
|
+
listUserSettings(args: ListUserSettingsCommandInput, cb: (err: any, data?: ListUserSettingsCommandOutput) => void): void;
|
|
192
|
+
listUserSettings(args: ListUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserSettingsCommandOutput) => void): void;
|
|
193
|
+
|
|
194
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
195
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
196
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
197
|
+
|
|
198
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
199
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
200
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
201
|
+
|
|
202
|
+
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrowserSettingsCommandOutput>;
|
|
203
|
+
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, cb: (err: any, data?: UpdateBrowserSettingsCommandOutput) => void): void;
|
|
204
|
+
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrowserSettingsCommandOutput) => void): void;
|
|
205
|
+
|
|
206
|
+
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIdentityProviderCommandOutput>;
|
|
207
|
+
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, cb: (err: any, data?: UpdateIdentityProviderCommandOutput) => void): void;
|
|
208
|
+
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdentityProviderCommandOutput) => void): void;
|
|
209
|
+
|
|
210
|
+
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkSettingsCommandOutput>;
|
|
211
|
+
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void): void;
|
|
212
|
+
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void): void;
|
|
213
|
+
|
|
214
|
+
updatePortal(args: UpdatePortalCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePortalCommandOutput>;
|
|
215
|
+
updatePortal(args: UpdatePortalCommandInput, cb: (err: any, data?: UpdatePortalCommandOutput) => void): void;
|
|
216
|
+
updatePortal(args: UpdatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePortalCommandOutput) => void): void;
|
|
217
|
+
|
|
218
|
+
updateTrustStore(args: UpdateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrustStoreCommandOutput>;
|
|
219
|
+
updateTrustStore(args: UpdateTrustStoreCommandInput, cb: (err: any, data?: UpdateTrustStoreCommandOutput) => void): void;
|
|
220
|
+
updateTrustStore(args: UpdateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrustStoreCommandOutput) => void): void;
|
|
221
|
+
|
|
222
|
+
updateUserSettings(args: UpdateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserSettingsCommandOutput>;
|
|
223
|
+
updateUserSettings(args: UpdateUserSettingsCommandInput, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
|
|
224
|
+
updateUserSettings(args: UpdateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
|
|
225
|
+
}
|