@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,17 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import packageInfo from "../package.json";
|
|
3
|
+
import { Sha256 } from "@aws-crypto/sha256-browser";
|
|
4
|
+
import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
|
|
5
|
+
import { FetchHttpHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
|
|
6
|
+
import { invalidProvider } from "@aws-sdk/invalid-dependency";
|
|
7
|
+
import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
|
|
8
|
+
import { fromBase64, toBase64 } from "@aws-sdk/util-base64-browser";
|
|
9
|
+
import { calculateBodyLength } from "@aws-sdk/util-body-length-browser";
|
|
10
|
+
import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
|
|
11
|
+
import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
|
|
12
|
+
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
13
|
+
export var getRuntimeConfig = function (config) {
|
|
14
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
15
|
+
var clientSharedValues = getSharedRuntimeConfig(config);
|
|
16
|
+
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
|
|
17
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import packageInfo from "../package.json";
|
|
3
|
+
import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
|
|
4
|
+
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
|
|
5
|
+
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
6
|
+
import { Hash } from "@aws-sdk/hash-node";
|
|
7
|
+
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@aws-sdk/middleware-retry";
|
|
8
|
+
import { loadConfig as loadNodeConfig } from "@aws-sdk/node-config-provider";
|
|
9
|
+
import { NodeHttpHandler, streamCollector } from "@aws-sdk/node-http-handler";
|
|
10
|
+
import { fromBase64, toBase64 } from "@aws-sdk/util-base64-node";
|
|
11
|
+
import { calculateBodyLength } from "@aws-sdk/util-body-length-node";
|
|
12
|
+
import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
|
|
13
|
+
import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
|
|
14
|
+
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
15
|
+
import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
|
|
16
|
+
export var getRuntimeConfig = function (config) {
|
|
17
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
18
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
19
|
+
var clientSharedValues = getSharedRuntimeConfig(config);
|
|
20
|
+
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
|
|
21
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
import { Sha256 } from "@aws-crypto/sha256-js";
|
|
3
|
+
import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
|
|
4
|
+
export var getRuntimeConfig = function (config) {
|
|
5
|
+
var _a;
|
|
6
|
+
var browserDefaults = getBrowserRuntimeConfig(config);
|
|
7
|
+
return __assign(__assign(__assign({}, browserDefaults), config), { runtime: "react-native", sha256: (_a = config === null || config === void 0 ? void 0 : config.sha256) !== null && _a !== void 0 ? _a : Sha256 });
|
|
8
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { parseUrl } from "@aws-sdk/url-parser";
|
|
2
|
+
import { defaultRegionInfoProvider } from "./endpoints";
|
|
3
|
+
export var getRuntimeConfig = function (config) {
|
|
4
|
+
var _a, _b, _c, _d, _e;
|
|
5
|
+
return ({
|
|
6
|
+
apiVersion: "2020-07-08",
|
|
7
|
+
disableHostPrefix: (_a = config === null || config === void 0 ? void 0 : config.disableHostPrefix) !== null && _a !== void 0 ? _a : false,
|
|
8
|
+
logger: (_b = config === null || config === void 0 ? void 0 : config.logger) !== null && _b !== void 0 ? _b : {},
|
|
9
|
+
regionInfoProvider: (_c = config === null || config === void 0 ? void 0 : config.regionInfoProvider) !== null && _c !== void 0 ? _c : defaultRegionInfoProvider,
|
|
10
|
+
serviceId: (_d = config === null || config === void 0 ? void 0 : config.serviceId) !== null && _d !== void 0 ? _d : "WorkSpaces Web",
|
|
11
|
+
urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : parseUrl,
|
|
12
|
+
});
|
|
13
|
+
};
|
|
@@ -0,0 +1,330 @@
|
|
|
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
|
+
* <p>WorkSpaces Web is a low cost, fully managed WorkSpace built specifically to facilitate
|
|
49
|
+
* secure, web-based workloads. WorkSpaces Web makes it easy for customers to safely provide
|
|
50
|
+
* their employees with access to internal websites and SaaS web applications without the
|
|
51
|
+
* administrative burden of appliances or specialized client software. WorkSpaces Web provides
|
|
52
|
+
* simple policy tools tailored for user interactions, while offloading common tasks like
|
|
53
|
+
* capacity management, scaling, and maintaining browser images.</p>
|
|
54
|
+
*/
|
|
55
|
+
export declare class WorkSpacesWeb extends WorkSpacesWebClient {
|
|
56
|
+
/**
|
|
57
|
+
* <p>Associates a browser settings resource with a web portal.</p>
|
|
58
|
+
*/
|
|
59
|
+
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateBrowserSettingsCommandOutput>;
|
|
60
|
+
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void): void;
|
|
61
|
+
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void): void;
|
|
62
|
+
/**
|
|
63
|
+
* <p>Associates a network settings resource with a web portal.</p>
|
|
64
|
+
*/
|
|
65
|
+
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateNetworkSettingsCommandOutput>;
|
|
66
|
+
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, cb: (err: any, data?: AssociateNetworkSettingsCommandOutput) => void): void;
|
|
67
|
+
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateNetworkSettingsCommandOutput) => void): void;
|
|
68
|
+
/**
|
|
69
|
+
* <p>Associates a trust store with a web portal.</p>
|
|
70
|
+
*/
|
|
71
|
+
associateTrustStore(args: AssociateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTrustStoreCommandOutput>;
|
|
72
|
+
associateTrustStore(args: AssociateTrustStoreCommandInput, cb: (err: any, data?: AssociateTrustStoreCommandOutput) => void): void;
|
|
73
|
+
associateTrustStore(args: AssociateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTrustStoreCommandOutput) => void): void;
|
|
74
|
+
/**
|
|
75
|
+
* <p>Associates a user settings resource with a web portal.</p>
|
|
76
|
+
*/
|
|
77
|
+
associateUserSettings(args: AssociateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateUserSettingsCommandOutput>;
|
|
78
|
+
associateUserSettings(args: AssociateUserSettingsCommandInput, cb: (err: any, data?: AssociateUserSettingsCommandOutput) => void): void;
|
|
79
|
+
associateUserSettings(args: AssociateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateUserSettingsCommandOutput) => void): void;
|
|
80
|
+
/**
|
|
81
|
+
* <p>Creates a browser settings resource that can be associated with a web portal. Once
|
|
82
|
+
* associated with a web portal, browser settings control how the browser will behave once a
|
|
83
|
+
* user starts a streaming session for the web portal. </p>
|
|
84
|
+
*/
|
|
85
|
+
createBrowserSettings(args: CreateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateBrowserSettingsCommandOutput>;
|
|
86
|
+
createBrowserSettings(args: CreateBrowserSettingsCommandInput, cb: (err: any, data?: CreateBrowserSettingsCommandOutput) => void): void;
|
|
87
|
+
createBrowserSettings(args: CreateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBrowserSettingsCommandOutput) => void): void;
|
|
88
|
+
/**
|
|
89
|
+
* <p>Creates an identity provider resource that is then associated with a web portal.</p>
|
|
90
|
+
*/
|
|
91
|
+
createIdentityProvider(args: CreateIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<CreateIdentityProviderCommandOutput>;
|
|
92
|
+
createIdentityProvider(args: CreateIdentityProviderCommandInput, cb: (err: any, data?: CreateIdentityProviderCommandOutput) => void): void;
|
|
93
|
+
createIdentityProvider(args: CreateIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIdentityProviderCommandOutput) => void): void;
|
|
94
|
+
/**
|
|
95
|
+
* <p>Creates a network settings resource that can be associated with a web portal. Once
|
|
96
|
+
* associated with a web portal, network settings define how streaming instances will connect
|
|
97
|
+
* with your specified VPC. </p>
|
|
98
|
+
*/
|
|
99
|
+
createNetworkSettings(args: CreateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkSettingsCommandOutput>;
|
|
100
|
+
createNetworkSettings(args: CreateNetworkSettingsCommandInput, cb: (err: any, data?: CreateNetworkSettingsCommandOutput) => void): void;
|
|
101
|
+
createNetworkSettings(args: CreateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkSettingsCommandOutput) => void): void;
|
|
102
|
+
/**
|
|
103
|
+
* <p>Creates a web portal.</p>
|
|
104
|
+
*/
|
|
105
|
+
createPortal(args: CreatePortalCommandInput, options?: __HttpHandlerOptions): Promise<CreatePortalCommandOutput>;
|
|
106
|
+
createPortal(args: CreatePortalCommandInput, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
107
|
+
createPortal(args: CreatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
108
|
+
/**
|
|
109
|
+
* <p>Creates a trust store that can be associated with a web portal. A trust store contains
|
|
110
|
+
* certificate authority (CA) certificates. Once associated with a web portal, the browser in
|
|
111
|
+
* a streaming session will recognize certificates that have been issued using any of the CAs
|
|
112
|
+
* in the trust store. If your organization has internal websites that use certificates issued
|
|
113
|
+
* by private CAs, you should add the private CA certificate to the trust store. </p>
|
|
114
|
+
*/
|
|
115
|
+
createTrustStore(args: CreateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrustStoreCommandOutput>;
|
|
116
|
+
createTrustStore(args: CreateTrustStoreCommandInput, cb: (err: any, data?: CreateTrustStoreCommandOutput) => void): void;
|
|
117
|
+
createTrustStore(args: CreateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrustStoreCommandOutput) => void): void;
|
|
118
|
+
/**
|
|
119
|
+
* <p>Creates a user settings resource that can be associated with a web portal. Once
|
|
120
|
+
* associated with a web portal, user settings control how users can transfer data between a
|
|
121
|
+
* streaming session and the their local devices. </p>
|
|
122
|
+
*/
|
|
123
|
+
createUserSettings(args: CreateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserSettingsCommandOutput>;
|
|
124
|
+
createUserSettings(args: CreateUserSettingsCommandInput, cb: (err: any, data?: CreateUserSettingsCommandOutput) => void): void;
|
|
125
|
+
createUserSettings(args: CreateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserSettingsCommandOutput) => void): void;
|
|
126
|
+
/**
|
|
127
|
+
* <p>Deletes browser settings.</p>
|
|
128
|
+
*/
|
|
129
|
+
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBrowserSettingsCommandOutput>;
|
|
130
|
+
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, cb: (err: any, data?: DeleteBrowserSettingsCommandOutput) => void): void;
|
|
131
|
+
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBrowserSettingsCommandOutput) => void): void;
|
|
132
|
+
/**
|
|
133
|
+
* <p>Deletes the identity provider.</p>
|
|
134
|
+
*/
|
|
135
|
+
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityProviderCommandOutput>;
|
|
136
|
+
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, cb: (err: any, data?: DeleteIdentityProviderCommandOutput) => void): void;
|
|
137
|
+
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityProviderCommandOutput) => void): void;
|
|
138
|
+
/**
|
|
139
|
+
* <p>Deletes network settings.</p>
|
|
140
|
+
*/
|
|
141
|
+
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkSettingsCommandOutput>;
|
|
142
|
+
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, cb: (err: any, data?: DeleteNetworkSettingsCommandOutput) => void): void;
|
|
143
|
+
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkSettingsCommandOutput) => void): void;
|
|
144
|
+
/**
|
|
145
|
+
* <p>Deletes a web portal.</p>
|
|
146
|
+
*/
|
|
147
|
+
deletePortal(args: DeletePortalCommandInput, options?: __HttpHandlerOptions): Promise<DeletePortalCommandOutput>;
|
|
148
|
+
deletePortal(args: DeletePortalCommandInput, cb: (err: any, data?: DeletePortalCommandOutput) => void): void;
|
|
149
|
+
deletePortal(args: DeletePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePortalCommandOutput) => void): void;
|
|
150
|
+
/**
|
|
151
|
+
* <p>Deletes the trust store.</p>
|
|
152
|
+
*/
|
|
153
|
+
deleteTrustStore(args: DeleteTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrustStoreCommandOutput>;
|
|
154
|
+
deleteTrustStore(args: DeleteTrustStoreCommandInput, cb: (err: any, data?: DeleteTrustStoreCommandOutput) => void): void;
|
|
155
|
+
deleteTrustStore(args: DeleteTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrustStoreCommandOutput) => void): void;
|
|
156
|
+
/**
|
|
157
|
+
* <p>Deletes user settings.</p>
|
|
158
|
+
*/
|
|
159
|
+
deleteUserSettings(args: DeleteUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserSettingsCommandOutput>;
|
|
160
|
+
deleteUserSettings(args: DeleteUserSettingsCommandInput, cb: (err: any, data?: DeleteUserSettingsCommandOutput) => void): void;
|
|
161
|
+
deleteUserSettings(args: DeleteUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserSettingsCommandOutput) => void): void;
|
|
162
|
+
/**
|
|
163
|
+
* <p>Disassociates browser settings from a web portal.</p>
|
|
164
|
+
*/
|
|
165
|
+
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateBrowserSettingsCommandOutput>;
|
|
166
|
+
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void): void;
|
|
167
|
+
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void): void;
|
|
168
|
+
/**
|
|
169
|
+
* <p>Disassociates network settings from a web portal.</p>
|
|
170
|
+
*/
|
|
171
|
+
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateNetworkSettingsCommandOutput>;
|
|
172
|
+
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, cb: (err: any, data?: DisassociateNetworkSettingsCommandOutput) => void): void;
|
|
173
|
+
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateNetworkSettingsCommandOutput) => void): void;
|
|
174
|
+
/**
|
|
175
|
+
* <p>Disassociates a trust store from a web portal.</p>
|
|
176
|
+
*/
|
|
177
|
+
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTrustStoreCommandOutput>;
|
|
178
|
+
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, cb: (err: any, data?: DisassociateTrustStoreCommandOutput) => void): void;
|
|
179
|
+
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTrustStoreCommandOutput) => void): void;
|
|
180
|
+
/**
|
|
181
|
+
* <p>Disassociates user settings from a web portal.</p>
|
|
182
|
+
*/
|
|
183
|
+
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateUserSettingsCommandOutput>;
|
|
184
|
+
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, cb: (err: any, data?: DisassociateUserSettingsCommandOutput) => void): void;
|
|
185
|
+
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateUserSettingsCommandOutput) => void): void;
|
|
186
|
+
/**
|
|
187
|
+
* <p>Gets browser settings.</p>
|
|
188
|
+
*/
|
|
189
|
+
getBrowserSettings(args: GetBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetBrowserSettingsCommandOutput>;
|
|
190
|
+
getBrowserSettings(args: GetBrowserSettingsCommandInput, cb: (err: any, data?: GetBrowserSettingsCommandOutput) => void): void;
|
|
191
|
+
getBrowserSettings(args: GetBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBrowserSettingsCommandOutput) => void): void;
|
|
192
|
+
/**
|
|
193
|
+
* <p>Gets the identity provider.</p>
|
|
194
|
+
*/
|
|
195
|
+
getIdentityProvider(args: GetIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityProviderCommandOutput>;
|
|
196
|
+
getIdentityProvider(args: GetIdentityProviderCommandInput, cb: (err: any, data?: GetIdentityProviderCommandOutput) => void): void;
|
|
197
|
+
getIdentityProvider(args: GetIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityProviderCommandOutput) => void): void;
|
|
198
|
+
/**
|
|
199
|
+
* <p>Gets the network settings.</p>
|
|
200
|
+
*/
|
|
201
|
+
getNetworkSettings(args: GetNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkSettingsCommandOutput>;
|
|
202
|
+
getNetworkSettings(args: GetNetworkSettingsCommandInput, cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void): void;
|
|
203
|
+
getNetworkSettings(args: GetNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void): void;
|
|
204
|
+
/**
|
|
205
|
+
* <p>Gets the web portal.</p>
|
|
206
|
+
*/
|
|
207
|
+
getPortal(args: GetPortalCommandInput, options?: __HttpHandlerOptions): Promise<GetPortalCommandOutput>;
|
|
208
|
+
getPortal(args: GetPortalCommandInput, cb: (err: any, data?: GetPortalCommandOutput) => void): void;
|
|
209
|
+
getPortal(args: GetPortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPortalCommandOutput) => void): void;
|
|
210
|
+
/**
|
|
211
|
+
* <p>Gets the service provider metadata.</p>
|
|
212
|
+
*/
|
|
213
|
+
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetPortalServiceProviderMetadataCommandOutput>;
|
|
214
|
+
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, cb: (err: any, data?: GetPortalServiceProviderMetadataCommandOutput) => void): void;
|
|
215
|
+
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPortalServiceProviderMetadataCommandOutput) => void): void;
|
|
216
|
+
/**
|
|
217
|
+
* <p>Gets the trust store.</p>
|
|
218
|
+
*/
|
|
219
|
+
getTrustStore(args: GetTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<GetTrustStoreCommandOutput>;
|
|
220
|
+
getTrustStore(args: GetTrustStoreCommandInput, cb: (err: any, data?: GetTrustStoreCommandOutput) => void): void;
|
|
221
|
+
getTrustStore(args: GetTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrustStoreCommandOutput) => void): void;
|
|
222
|
+
/**
|
|
223
|
+
* <p>Gets the trust store certificate.</p>
|
|
224
|
+
*/
|
|
225
|
+
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetTrustStoreCertificateCommandOutput>;
|
|
226
|
+
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, cb: (err: any, data?: GetTrustStoreCertificateCommandOutput) => void): void;
|
|
227
|
+
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrustStoreCertificateCommandOutput) => void): void;
|
|
228
|
+
/**
|
|
229
|
+
* <p>Gets user settings.</p>
|
|
230
|
+
*/
|
|
231
|
+
getUserSettings(args: GetUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetUserSettingsCommandOutput>;
|
|
232
|
+
getUserSettings(args: GetUserSettingsCommandInput, cb: (err: any, data?: GetUserSettingsCommandOutput) => void): void;
|
|
233
|
+
getUserSettings(args: GetUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserSettingsCommandOutput) => void): void;
|
|
234
|
+
/**
|
|
235
|
+
* <p>Retrieves a list of browser settings.</p>
|
|
236
|
+
*/
|
|
237
|
+
listBrowserSettings(args: ListBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListBrowserSettingsCommandOutput>;
|
|
238
|
+
listBrowserSettings(args: ListBrowserSettingsCommandInput, cb: (err: any, data?: ListBrowserSettingsCommandOutput) => void): void;
|
|
239
|
+
listBrowserSettings(args: ListBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBrowserSettingsCommandOutput) => void): void;
|
|
240
|
+
/**
|
|
241
|
+
* <p>Retrieves a list of identity providers for a specific web portal.</p>
|
|
242
|
+
*/
|
|
243
|
+
listIdentityProviders(args: ListIdentityProvidersCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityProvidersCommandOutput>;
|
|
244
|
+
listIdentityProviders(args: ListIdentityProvidersCommandInput, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
|
|
245
|
+
listIdentityProviders(args: ListIdentityProvidersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
|
|
246
|
+
/**
|
|
247
|
+
* <p>Retrieves a list of network settings.</p>
|
|
248
|
+
*/
|
|
249
|
+
listNetworkSettings(args: ListNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListNetworkSettingsCommandOutput>;
|
|
250
|
+
listNetworkSettings(args: ListNetworkSettingsCommandInput, cb: (err: any, data?: ListNetworkSettingsCommandOutput) => void): void;
|
|
251
|
+
listNetworkSettings(args: ListNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNetworkSettingsCommandOutput) => void): void;
|
|
252
|
+
/**
|
|
253
|
+
* <p>Retrieves a list or web portals.</p>
|
|
254
|
+
*/
|
|
255
|
+
listPortals(args: ListPortalsCommandInput, options?: __HttpHandlerOptions): Promise<ListPortalsCommandOutput>;
|
|
256
|
+
listPortals(args: ListPortalsCommandInput, cb: (err: any, data?: ListPortalsCommandOutput) => void): void;
|
|
257
|
+
listPortals(args: ListPortalsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPortalsCommandOutput) => void): void;
|
|
258
|
+
/**
|
|
259
|
+
* <p>Retrieves a list of tags for a resource.</p>
|
|
260
|
+
*/
|
|
261
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
262
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
263
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
264
|
+
/**
|
|
265
|
+
* <p>Retrieves a list of trust store certificates.</p>
|
|
266
|
+
*/
|
|
267
|
+
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ListTrustStoreCertificatesCommandOutput>;
|
|
268
|
+
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, cb: (err: any, data?: ListTrustStoreCertificatesCommandOutput) => void): void;
|
|
269
|
+
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrustStoreCertificatesCommandOutput) => void): void;
|
|
270
|
+
/**
|
|
271
|
+
* <p>Retrieves a list of trust stores.</p>
|
|
272
|
+
*/
|
|
273
|
+
listTrustStores(args: ListTrustStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListTrustStoresCommandOutput>;
|
|
274
|
+
listTrustStores(args: ListTrustStoresCommandInput, cb: (err: any, data?: ListTrustStoresCommandOutput) => void): void;
|
|
275
|
+
listTrustStores(args: ListTrustStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrustStoresCommandOutput) => void): void;
|
|
276
|
+
/**
|
|
277
|
+
* <p>Retrieves a list of user settings.</p>
|
|
278
|
+
*/
|
|
279
|
+
listUserSettings(args: ListUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserSettingsCommandOutput>;
|
|
280
|
+
listUserSettings(args: ListUserSettingsCommandInput, cb: (err: any, data?: ListUserSettingsCommandOutput) => void): void;
|
|
281
|
+
listUserSettings(args: ListUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserSettingsCommandOutput) => void): void;
|
|
282
|
+
/**
|
|
283
|
+
* <p>Adds or overwrites one or more tags for the specified resource.</p>
|
|
284
|
+
*/
|
|
285
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
286
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
287
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
288
|
+
/**
|
|
289
|
+
* <p>Removes one or more tags from the specified resource.</p>
|
|
290
|
+
*/
|
|
291
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
292
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
293
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
294
|
+
/**
|
|
295
|
+
* <p>Updates browser settings.</p>
|
|
296
|
+
*/
|
|
297
|
+
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrowserSettingsCommandOutput>;
|
|
298
|
+
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, cb: (err: any, data?: UpdateBrowserSettingsCommandOutput) => void): void;
|
|
299
|
+
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrowserSettingsCommandOutput) => void): void;
|
|
300
|
+
/**
|
|
301
|
+
* <p>Updates the identity provider.</p>
|
|
302
|
+
*/
|
|
303
|
+
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIdentityProviderCommandOutput>;
|
|
304
|
+
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, cb: (err: any, data?: UpdateIdentityProviderCommandOutput) => void): void;
|
|
305
|
+
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdentityProviderCommandOutput) => void): void;
|
|
306
|
+
/**
|
|
307
|
+
* <p>Updates network settings.</p>
|
|
308
|
+
*/
|
|
309
|
+
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkSettingsCommandOutput>;
|
|
310
|
+
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void): void;
|
|
311
|
+
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void): void;
|
|
312
|
+
/**
|
|
313
|
+
* <p>Updates a web portal.</p>
|
|
314
|
+
*/
|
|
315
|
+
updatePortal(args: UpdatePortalCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePortalCommandOutput>;
|
|
316
|
+
updatePortal(args: UpdatePortalCommandInput, cb: (err: any, data?: UpdatePortalCommandOutput) => void): void;
|
|
317
|
+
updatePortal(args: UpdatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePortalCommandOutput) => void): void;
|
|
318
|
+
/**
|
|
319
|
+
* <p>Updates the trust store.</p>
|
|
320
|
+
*/
|
|
321
|
+
updateTrustStore(args: UpdateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrustStoreCommandOutput>;
|
|
322
|
+
updateTrustStore(args: UpdateTrustStoreCommandInput, cb: (err: any, data?: UpdateTrustStoreCommandOutput) => void): void;
|
|
323
|
+
updateTrustStore(args: UpdateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrustStoreCommandOutput) => void): void;
|
|
324
|
+
/**
|
|
325
|
+
* <p>Updates the user settings.</p>
|
|
326
|
+
*/
|
|
327
|
+
updateUserSettings(args: UpdateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserSettingsCommandOutput>;
|
|
328
|
+
updateUserSettings(args: UpdateUserSettingsCommandInput, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
|
|
329
|
+
updateUserSettings(args: UpdateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
|
|
330
|
+
}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AssociateBrowserSettingsCommandInput, AssociateBrowserSettingsCommandOutput } from "./commands/AssociateBrowserSettingsCommand";
|
|
10
|
+
import { AssociateNetworkSettingsCommandInput, AssociateNetworkSettingsCommandOutput } from "./commands/AssociateNetworkSettingsCommand";
|
|
11
|
+
import { AssociateTrustStoreCommandInput, AssociateTrustStoreCommandOutput } from "./commands/AssociateTrustStoreCommand";
|
|
12
|
+
import { AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput } from "./commands/AssociateUserSettingsCommand";
|
|
13
|
+
import { CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput } from "./commands/CreateBrowserSettingsCommand";
|
|
14
|
+
import { CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput } from "./commands/CreateIdentityProviderCommand";
|
|
15
|
+
import { CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput } from "./commands/CreateNetworkSettingsCommand";
|
|
16
|
+
import { CreatePortalCommandInput, CreatePortalCommandOutput } from "./commands/CreatePortalCommand";
|
|
17
|
+
import { CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput } from "./commands/CreateTrustStoreCommand";
|
|
18
|
+
import { CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput } from "./commands/CreateUserSettingsCommand";
|
|
19
|
+
import { DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput } from "./commands/DeleteBrowserSettingsCommand";
|
|
20
|
+
import { DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput } from "./commands/DeleteIdentityProviderCommand";
|
|
21
|
+
import { DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput } from "./commands/DeleteNetworkSettingsCommand";
|
|
22
|
+
import { DeletePortalCommandInput, DeletePortalCommandOutput } from "./commands/DeletePortalCommand";
|
|
23
|
+
import { DeleteTrustStoreCommandInput, DeleteTrustStoreCommandOutput } from "./commands/DeleteTrustStoreCommand";
|
|
24
|
+
import { DeleteUserSettingsCommandInput, DeleteUserSettingsCommandOutput } from "./commands/DeleteUserSettingsCommand";
|
|
25
|
+
import { DisassociateBrowserSettingsCommandInput, DisassociateBrowserSettingsCommandOutput } from "./commands/DisassociateBrowserSettingsCommand";
|
|
26
|
+
import { DisassociateNetworkSettingsCommandInput, DisassociateNetworkSettingsCommandOutput } from "./commands/DisassociateNetworkSettingsCommand";
|
|
27
|
+
import { DisassociateTrustStoreCommandInput, DisassociateTrustStoreCommandOutput } from "./commands/DisassociateTrustStoreCommand";
|
|
28
|
+
import { DisassociateUserSettingsCommandInput, DisassociateUserSettingsCommandOutput } from "./commands/DisassociateUserSettingsCommand";
|
|
29
|
+
import { GetBrowserSettingsCommandInput, GetBrowserSettingsCommandOutput } from "./commands/GetBrowserSettingsCommand";
|
|
30
|
+
import { GetIdentityProviderCommandInput, GetIdentityProviderCommandOutput } from "./commands/GetIdentityProviderCommand";
|
|
31
|
+
import { GetNetworkSettingsCommandInput, GetNetworkSettingsCommandOutput } from "./commands/GetNetworkSettingsCommand";
|
|
32
|
+
import { GetPortalCommandInput, GetPortalCommandOutput } from "./commands/GetPortalCommand";
|
|
33
|
+
import { GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput } from "./commands/GetPortalServiceProviderMetadataCommand";
|
|
34
|
+
import { GetTrustStoreCertificateCommandInput, GetTrustStoreCertificateCommandOutput } from "./commands/GetTrustStoreCertificateCommand";
|
|
35
|
+
import { GetTrustStoreCommandInput, GetTrustStoreCommandOutput } from "./commands/GetTrustStoreCommand";
|
|
36
|
+
import { GetUserSettingsCommandInput, GetUserSettingsCommandOutput } from "./commands/GetUserSettingsCommand";
|
|
37
|
+
import { ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput } from "./commands/ListBrowserSettingsCommand";
|
|
38
|
+
import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "./commands/ListIdentityProvidersCommand";
|
|
39
|
+
import { ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput } from "./commands/ListNetworkSettingsCommand";
|
|
40
|
+
import { ListPortalsCommandInput, ListPortalsCommandOutput } from "./commands/ListPortalsCommand";
|
|
41
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
42
|
+
import { ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput } from "./commands/ListTrustStoreCertificatesCommand";
|
|
43
|
+
import { ListTrustStoresCommandInput, ListTrustStoresCommandOutput } from "./commands/ListTrustStoresCommand";
|
|
44
|
+
import { ListUserSettingsCommandInput, ListUserSettingsCommandOutput } from "./commands/ListUserSettingsCommand";
|
|
45
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
46
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
47
|
+
import { UpdateBrowserSettingsCommandInput, UpdateBrowserSettingsCommandOutput } from "./commands/UpdateBrowserSettingsCommand";
|
|
48
|
+
import { UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput } from "./commands/UpdateIdentityProviderCommand";
|
|
49
|
+
import { UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput } from "./commands/UpdateNetworkSettingsCommand";
|
|
50
|
+
import { UpdatePortalCommandInput, UpdatePortalCommandOutput } from "./commands/UpdatePortalCommand";
|
|
51
|
+
import { UpdateTrustStoreCommandInput, UpdateTrustStoreCommandOutput } from "./commands/UpdateTrustStoreCommand";
|
|
52
|
+
import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput } from "./commands/UpdateUserSettingsCommand";
|
|
53
|
+
export declare type ServiceInputTypes = AssociateBrowserSettingsCommandInput | AssociateNetworkSettingsCommandInput | AssociateTrustStoreCommandInput | AssociateUserSettingsCommandInput | CreateBrowserSettingsCommandInput | CreateIdentityProviderCommandInput | CreateNetworkSettingsCommandInput | CreatePortalCommandInput | CreateTrustStoreCommandInput | CreateUserSettingsCommandInput | DeleteBrowserSettingsCommandInput | DeleteIdentityProviderCommandInput | DeleteNetworkSettingsCommandInput | DeletePortalCommandInput | DeleteTrustStoreCommandInput | DeleteUserSettingsCommandInput | DisassociateBrowserSettingsCommandInput | DisassociateNetworkSettingsCommandInput | DisassociateTrustStoreCommandInput | DisassociateUserSettingsCommandInput | GetBrowserSettingsCommandInput | GetIdentityProviderCommandInput | GetNetworkSettingsCommandInput | GetPortalCommandInput | GetPortalServiceProviderMetadataCommandInput | GetTrustStoreCertificateCommandInput | GetTrustStoreCommandInput | GetUserSettingsCommandInput | ListBrowserSettingsCommandInput | ListIdentityProvidersCommandInput | ListNetworkSettingsCommandInput | ListPortalsCommandInput | ListTagsForResourceCommandInput | ListTrustStoreCertificatesCommandInput | ListTrustStoresCommandInput | ListUserSettingsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBrowserSettingsCommandInput | UpdateIdentityProviderCommandInput | UpdateNetworkSettingsCommandInput | UpdatePortalCommandInput | UpdateTrustStoreCommandInput | UpdateUserSettingsCommandInput;
|
|
54
|
+
export declare type ServiceOutputTypes = AssociateBrowserSettingsCommandOutput | AssociateNetworkSettingsCommandOutput | AssociateTrustStoreCommandOutput | AssociateUserSettingsCommandOutput | CreateBrowserSettingsCommandOutput | CreateIdentityProviderCommandOutput | CreateNetworkSettingsCommandOutput | CreatePortalCommandOutput | CreateTrustStoreCommandOutput | CreateUserSettingsCommandOutput | DeleteBrowserSettingsCommandOutput | DeleteIdentityProviderCommandOutput | DeleteNetworkSettingsCommandOutput | DeletePortalCommandOutput | DeleteTrustStoreCommandOutput | DeleteUserSettingsCommandOutput | DisassociateBrowserSettingsCommandOutput | DisassociateNetworkSettingsCommandOutput | DisassociateTrustStoreCommandOutput | DisassociateUserSettingsCommandOutput | GetBrowserSettingsCommandOutput | GetIdentityProviderCommandOutput | GetNetworkSettingsCommandOutput | GetPortalCommandOutput | GetPortalServiceProviderMetadataCommandOutput | GetTrustStoreCertificateCommandOutput | GetTrustStoreCommandOutput | GetUserSettingsCommandOutput | ListBrowserSettingsCommandOutput | ListIdentityProvidersCommandOutput | ListNetworkSettingsCommandOutput | ListPortalsCommandOutput | ListTagsForResourceCommandOutput | ListTrustStoreCertificatesCommandOutput | ListTrustStoresCommandOutput | ListUserSettingsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBrowserSettingsCommandOutput | UpdateIdentityProviderCommandOutput | UpdateNetworkSettingsCommandOutput | UpdatePortalCommandOutput | UpdateTrustStoreCommandOutput | UpdateUserSettingsCommandOutput;
|
|
55
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
56
|
+
/**
|
|
57
|
+
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
58
|
+
*/
|
|
59
|
+
requestHandler?: __HttpHandler;
|
|
60
|
+
/**
|
|
61
|
+
* A constructor for a class implementing the {@link __Hash} interface
|
|
62
|
+
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
65
|
+
sha256?: __HashConstructor;
|
|
66
|
+
/**
|
|
67
|
+
* The function that will be used to convert strings into HTTP endpoints.
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
70
|
+
urlParser?: __UrlParser;
|
|
71
|
+
/**
|
|
72
|
+
* A function that can calculate the length of a request body.
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* A function that converts a stream into an array of bytes.
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
80
|
+
streamCollector?: __StreamCollector;
|
|
81
|
+
/**
|
|
82
|
+
* The function that will be used to convert a base64-encoded string to a byte array.
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
base64Decoder?: __Decoder;
|
|
86
|
+
/**
|
|
87
|
+
* The function that will be used to convert binary data to a base64-encoded string.
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
base64Encoder?: __Encoder;
|
|
91
|
+
/**
|
|
92
|
+
* The function that will be used to convert a UTF8-encoded string to a byte array.
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
95
|
+
utf8Decoder?: __Decoder;
|
|
96
|
+
/**
|
|
97
|
+
* The function that will be used to convert binary data to a UTF-8 encoded string.
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
utf8Encoder?: __Encoder;
|
|
101
|
+
/**
|
|
102
|
+
* The runtime environment.
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
runtime?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Disable dyanamically changing the endpoint of the client based on the hostPrefix
|
|
108
|
+
* trait of an operation.
|
|
109
|
+
*/
|
|
110
|
+
disableHostPrefix?: boolean;
|
|
111
|
+
/**
|
|
112
|
+
* Value for how many times a request will be made at most in case of retry.
|
|
113
|
+
*/
|
|
114
|
+
maxAttempts?: number | __Provider<number>;
|
|
115
|
+
/**
|
|
116
|
+
* Specifies which retry algorithm to use.
|
|
117
|
+
*/
|
|
118
|
+
retryMode?: string | __Provider<string>;
|
|
119
|
+
/**
|
|
120
|
+
* Optional logger for logging debug/info/warn/error.
|
|
121
|
+
*/
|
|
122
|
+
logger?: __Logger;
|
|
123
|
+
/**
|
|
124
|
+
* Enables IPv6/IPv4 dualstack endpoint.
|
|
125
|
+
*/
|
|
126
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
127
|
+
/**
|
|
128
|
+
* Enables FIPS compatible endpoints.
|
|
129
|
+
*/
|
|
130
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
131
|
+
/**
|
|
132
|
+
* Unique service identifier.
|
|
133
|
+
* @internal
|
|
134
|
+
*/
|
|
135
|
+
serviceId?: string;
|
|
136
|
+
/**
|
|
137
|
+
* The AWS region to which this client will send requests
|
|
138
|
+
*/
|
|
139
|
+
region?: string | __Provider<string>;
|
|
140
|
+
/**
|
|
141
|
+
* Default credentials provider; Not available in browser runtime.
|
|
142
|
+
* @internal
|
|
143
|
+
*/
|
|
144
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
145
|
+
/**
|
|
146
|
+
* Fetch related hostname, signing name or signing region with given region.
|
|
147
|
+
* @internal
|
|
148
|
+
*/
|
|
149
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
150
|
+
/**
|
|
151
|
+
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
155
|
+
}
|
|
156
|
+
declare type WorkSpacesWebClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
157
|
+
/**
|
|
158
|
+
* The configuration interface of WorkSpacesWebClient class constructor that set the region, credentials and other options.
|
|
159
|
+
*/
|
|
160
|
+
export interface WorkSpacesWebClientConfig extends WorkSpacesWebClientConfigType {
|
|
161
|
+
}
|
|
162
|
+
declare type WorkSpacesWebClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
163
|
+
/**
|
|
164
|
+
* The resolved configuration interface of WorkSpacesWebClient class. This is resolved and normalized from the {@link WorkSpacesWebClientConfig | constructor configuration interface}.
|
|
165
|
+
*/
|
|
166
|
+
export interface WorkSpacesWebClientResolvedConfig extends WorkSpacesWebClientResolvedConfigType {
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* <p>WorkSpaces Web is a low cost, fully managed WorkSpace built specifically to facilitate
|
|
170
|
+
* secure, web-based workloads. WorkSpaces Web makes it easy for customers to safely provide
|
|
171
|
+
* their employees with access to internal websites and SaaS web applications without the
|
|
172
|
+
* administrative burden of appliances or specialized client software. WorkSpaces Web provides
|
|
173
|
+
* simple policy tools tailored for user interactions, while offloading common tasks like
|
|
174
|
+
* capacity management, scaling, and maintaining browser images.</p>
|
|
175
|
+
*/
|
|
176
|
+
export declare class WorkSpacesWebClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig> {
|
|
177
|
+
/**
|
|
178
|
+
* The resolved configuration of WorkSpacesWebClient class. This is resolved and normalized from the {@link WorkSpacesWebClientConfig | constructor configuration interface}.
|
|
179
|
+
*/
|
|
180
|
+
readonly config: WorkSpacesWebClientResolvedConfig;
|
|
181
|
+
constructor(configuration: WorkSpacesWebClientConfig);
|
|
182
|
+
/**
|
|
183
|
+
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
184
|
+
* However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
|
|
185
|
+
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
186
|
+
*/
|
|
187
|
+
destroy(): void;
|
|
188
|
+
}
|
|
189
|
+
export {};
|