@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,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListPortalsRequest, ListPortalsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListPortalsCommand, serializeAws_restJson1ListPortalsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListPortalsCommand = (function (_super) {
|
|
7
|
+
__extends(ListPortalsCommand, _super);
|
|
8
|
+
function ListPortalsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListPortalsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "ListPortalsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListPortalsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListPortalsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListPortalsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListPortalsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListPortalsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListPortalsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListPortalsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListPortalsCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListTagsForResourceCommand = (function (_super) {
|
|
7
|
+
__extends(ListTagsForResourceCommand, _super);
|
|
8
|
+
function ListTagsForResourceCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "ListTagsForResourceCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListTagsForResourceCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListTagsForResourceCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListTagsForResourceCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListTagsForResourceCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListTrustStoreCertificatesRequest, ListTrustStoreCertificatesResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListTrustStoreCertificatesCommand, serializeAws_restJson1ListTrustStoreCertificatesCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListTrustStoreCertificatesCommand = (function (_super) {
|
|
7
|
+
__extends(ListTrustStoreCertificatesCommand, _super);
|
|
8
|
+
function ListTrustStoreCertificatesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListTrustStoreCertificatesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "ListTrustStoreCertificatesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListTrustStoreCertificatesRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTrustStoreCertificatesResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListTrustStoreCertificatesCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListTrustStoreCertificatesCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListTrustStoreCertificatesCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListTrustStoreCertificatesCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListTrustStoreCertificatesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListTrustStoreCertificatesCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListTrustStoresRequest, ListTrustStoresResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListTrustStoresCommand, serializeAws_restJson1ListTrustStoresCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListTrustStoresCommand = (function (_super) {
|
|
7
|
+
__extends(ListTrustStoresCommand, _super);
|
|
8
|
+
function ListTrustStoresCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListTrustStoresCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "ListTrustStoresCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListTrustStoresRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTrustStoresResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListTrustStoresCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListTrustStoresCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListTrustStoresCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListTrustStoresCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListTrustStoresCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListTrustStoresCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListUserSettingsRequest, ListUserSettingsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListUserSettingsCommand, serializeAws_restJson1ListUserSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListUserSettingsCommand = (function (_super) {
|
|
7
|
+
__extends(ListUserSettingsCommand, _super);
|
|
8
|
+
function ListUserSettingsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListUserSettingsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "ListUserSettingsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListUserSettingsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListUserSettingsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListUserSettingsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListUserSettingsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListUserSettingsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListUserSettingsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListUserSettingsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListUserSettingsCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var TagResourceCommand = (function (_super) {
|
|
7
|
+
__extends(TagResourceCommand, _super);
|
|
8
|
+
function TagResourceCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
TagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "TagResourceCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: TagResourceResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
TagResourceCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1TagResourceCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
TagResourceCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1TagResourceCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return TagResourceCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { TagResourceCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UntagResourceCommand = (function (_super) {
|
|
7
|
+
__extends(UntagResourceCommand, _super);
|
|
8
|
+
function UntagResourceCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UntagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "UntagResourceCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UntagResourceResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UntagResourceCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UntagResourceCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UntagResourceCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UntagResourceCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UntagResourceCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UntagResourceCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateBrowserSettingsRequest, UpdateBrowserSettingsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdateBrowserSettingsCommand, serializeAws_restJson1UpdateBrowserSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UpdateBrowserSettingsCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateBrowserSettingsCommand, _super);
|
|
8
|
+
function UpdateBrowserSettingsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UpdateBrowserSettingsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "UpdateBrowserSettingsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UpdateBrowserSettingsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateBrowserSettingsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateBrowserSettingsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UpdateBrowserSettingsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UpdateBrowserSettingsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UpdateBrowserSettingsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UpdateBrowserSettingsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateBrowserSettingsCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateIdentityProviderRequest, UpdateIdentityProviderResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdateIdentityProviderCommand, serializeAws_restJson1UpdateIdentityProviderCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UpdateIdentityProviderCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateIdentityProviderCommand, _super);
|
|
8
|
+
function UpdateIdentityProviderCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UpdateIdentityProviderCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "UpdateIdentityProviderCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UpdateIdentityProviderRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateIdentityProviderResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateIdentityProviderCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UpdateIdentityProviderCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UpdateIdentityProviderCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UpdateIdentityProviderCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UpdateIdentityProviderCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateIdentityProviderCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateNetworkSettingsRequest, UpdateNetworkSettingsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdateNetworkSettingsCommand, serializeAws_restJson1UpdateNetworkSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UpdateNetworkSettingsCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateNetworkSettingsCommand, _super);
|
|
8
|
+
function UpdateNetworkSettingsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UpdateNetworkSettingsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "UpdateNetworkSettingsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UpdateNetworkSettingsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateNetworkSettingsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateNetworkSettingsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UpdateNetworkSettingsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UpdateNetworkSettingsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UpdateNetworkSettingsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UpdateNetworkSettingsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateNetworkSettingsCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdatePortalCommand, serializeAws_restJson1UpdatePortalCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UpdatePortalCommand = (function (_super) {
|
|
7
|
+
__extends(UpdatePortalCommand, _super);
|
|
8
|
+
function UpdatePortalCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UpdatePortalCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "UpdatePortalCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UpdatePortalRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdatePortalResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdatePortalCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UpdatePortalCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UpdatePortalCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UpdatePortalCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UpdatePortalCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdatePortalCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateTrustStoreRequest, UpdateTrustStoreResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdateTrustStoreCommand, serializeAws_restJson1UpdateTrustStoreCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UpdateTrustStoreCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateTrustStoreCommand, _super);
|
|
8
|
+
function UpdateTrustStoreCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UpdateTrustStoreCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "UpdateTrustStoreCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UpdateTrustStoreRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateTrustStoreResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateTrustStoreCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UpdateTrustStoreCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UpdateTrustStoreCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UpdateTrustStoreCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UpdateTrustStoreCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateTrustStoreCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateUserSettingsRequest, UpdateUserSettingsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdateUserSettingsCommand, serializeAws_restJson1UpdateUserSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UpdateUserSettingsCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateUserSettingsCommand, _super);
|
|
8
|
+
function UpdateUserSettingsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UpdateUserSettingsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "WorkSpacesWebClient";
|
|
18
|
+
var commandName = "UpdateUserSettingsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UpdateUserSettingsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateUserSettingsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateUserSettingsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UpdateUserSettingsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UpdateUserSettingsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UpdateUserSettingsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UpdateUserSettingsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateUserSettingsCommand };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export * from "./AssociateBrowserSettingsCommand";
|
|
2
|
+
export * from "./AssociateNetworkSettingsCommand";
|
|
3
|
+
export * from "./AssociateTrustStoreCommand";
|
|
4
|
+
export * from "./AssociateUserSettingsCommand";
|
|
5
|
+
export * from "./CreateBrowserSettingsCommand";
|
|
6
|
+
export * from "./CreateIdentityProviderCommand";
|
|
7
|
+
export * from "./CreateNetworkSettingsCommand";
|
|
8
|
+
export * from "./CreatePortalCommand";
|
|
9
|
+
export * from "./CreateTrustStoreCommand";
|
|
10
|
+
export * from "./CreateUserSettingsCommand";
|
|
11
|
+
export * from "./DeleteBrowserSettingsCommand";
|
|
12
|
+
export * from "./DeleteIdentityProviderCommand";
|
|
13
|
+
export * from "./DeleteNetworkSettingsCommand";
|
|
14
|
+
export * from "./DeletePortalCommand";
|
|
15
|
+
export * from "./DeleteTrustStoreCommand";
|
|
16
|
+
export * from "./DeleteUserSettingsCommand";
|
|
17
|
+
export * from "./DisassociateBrowserSettingsCommand";
|
|
18
|
+
export * from "./DisassociateNetworkSettingsCommand";
|
|
19
|
+
export * from "./DisassociateTrustStoreCommand";
|
|
20
|
+
export * from "./DisassociateUserSettingsCommand";
|
|
21
|
+
export * from "./GetBrowserSettingsCommand";
|
|
22
|
+
export * from "./GetIdentityProviderCommand";
|
|
23
|
+
export * from "./GetNetworkSettingsCommand";
|
|
24
|
+
export * from "./GetPortalCommand";
|
|
25
|
+
export * from "./GetPortalServiceProviderMetadataCommand";
|
|
26
|
+
export * from "./GetTrustStoreCertificateCommand";
|
|
27
|
+
export * from "./GetTrustStoreCommand";
|
|
28
|
+
export * from "./GetUserSettingsCommand";
|
|
29
|
+
export * from "./ListBrowserSettingsCommand";
|
|
30
|
+
export * from "./ListIdentityProvidersCommand";
|
|
31
|
+
export * from "./ListNetworkSettingsCommand";
|
|
32
|
+
export * from "./ListPortalsCommand";
|
|
33
|
+
export * from "./ListTagsForResourceCommand";
|
|
34
|
+
export * from "./ListTrustStoreCertificatesCommand";
|
|
35
|
+
export * from "./ListTrustStoresCommand";
|
|
36
|
+
export * from "./ListUserSettingsCommand";
|
|
37
|
+
export * from "./TagResourceCommand";
|
|
38
|
+
export * from "./UntagResourceCommand";
|
|
39
|
+
export * from "./UpdateBrowserSettingsCommand";
|
|
40
|
+
export * from "./UpdateIdentityProviderCommand";
|
|
41
|
+
export * from "./UpdateNetworkSettingsCommand";
|
|
42
|
+
export * from "./UpdatePortalCommand";
|
|
43
|
+
export * from "./UpdateTrustStoreCommand";
|
|
44
|
+
export * from "./UpdateUserSettingsCommand";
|