@aws-sdk/client-wickr 3.956.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/LICENSE +201 -0
- package/README.md +541 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +2520 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +55 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +41 -0
- package/dist-es/Wickr.js +91 -0
- package/dist-es/WickrClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/BatchCreateUserCommand.js +16 -0
- package/dist-es/commands/BatchDeleteUserCommand.js +16 -0
- package/dist-es/commands/BatchLookupUserUnameCommand.js +16 -0
- package/dist-es/commands/BatchReinviteUserCommand.js +16 -0
- package/dist-es/commands/BatchResetDevicesForUserCommand.js +16 -0
- package/dist-es/commands/BatchToggleUserSuspendStatusCommand.js +16 -0
- package/dist-es/commands/CreateBotCommand.js +16 -0
- package/dist-es/commands/CreateDataRetentionBotChallengeCommand.js +16 -0
- package/dist-es/commands/CreateDataRetentionBotCommand.js +16 -0
- package/dist-es/commands/CreateNetworkCommand.js +16 -0
- package/dist-es/commands/CreateSecurityGroupCommand.js +16 -0
- package/dist-es/commands/DeleteBotCommand.js +16 -0
- package/dist-es/commands/DeleteDataRetentionBotCommand.js +16 -0
- package/dist-es/commands/DeleteNetworkCommand.js +16 -0
- package/dist-es/commands/DeleteSecurityGroupCommand.js +16 -0
- package/dist-es/commands/GetBotCommand.js +16 -0
- package/dist-es/commands/GetBotsCountCommand.js +16 -0
- package/dist-es/commands/GetDataRetentionBotCommand.js +16 -0
- package/dist-es/commands/GetGuestUserHistoryCountCommand.js +16 -0
- package/dist-es/commands/GetNetworkCommand.js +16 -0
- package/dist-es/commands/GetNetworkSettingsCommand.js +16 -0
- package/dist-es/commands/GetOidcInfoCommand.js +16 -0
- package/dist-es/commands/GetSecurityGroupCommand.js +16 -0
- package/dist-es/commands/GetUserCommand.js +16 -0
- package/dist-es/commands/GetUsersCountCommand.js +16 -0
- package/dist-es/commands/ListBlockedGuestUsersCommand.js +16 -0
- package/dist-es/commands/ListBotsCommand.js +16 -0
- package/dist-es/commands/ListDevicesForUserCommand.js +16 -0
- package/dist-es/commands/ListGuestUsersCommand.js +16 -0
- package/dist-es/commands/ListNetworksCommand.js +16 -0
- package/dist-es/commands/ListSecurityGroupUsersCommand.js +16 -0
- package/dist-es/commands/ListSecurityGroupsCommand.js +16 -0
- package/dist-es/commands/ListUsersCommand.js +16 -0
- package/dist-es/commands/RegisterOidcConfigCommand.js +16 -0
- package/dist-es/commands/RegisterOidcConfigTestCommand.js +16 -0
- package/dist-es/commands/UpdateBotCommand.js +16 -0
- package/dist-es/commands/UpdateDataRetentionCommand.js +16 -0
- package/dist-es/commands/UpdateGuestUserCommand.js +16 -0
- package/dist-es/commands/UpdateNetworkCommand.js +16 -0
- package/dist-es/commands/UpdateNetworkSettingsCommand.js +16 -0
- package/dist-es/commands/UpdateSecurityGroupCommand.js +16 -0
- package/dist-es/commands/UpdateUserCommand.js +16 -0
- package/dist-es/commands/index.js +42 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/WickrServiceException.js +8 -0
- package/dist-es/models/enums.js +28 -0
- package/dist-es/models/errors.js +87 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListBlockedGuestUsersPaginator.js +4 -0
- package/dist-es/pagination/ListBotsPaginator.js +4 -0
- package/dist-es/pagination/ListDevicesForUserPaginator.js +4 -0
- package/dist-es/pagination/ListGuestUsersPaginator.js +4 -0
- package/dist-es/pagination/ListNetworksPaginator.js +4 -0
- package/dist-es/pagination/ListSecurityGroupUsersPaginator.js +4 -0
- package/dist-es/pagination/ListSecurityGroupsPaginator.js +4 -0
- package/dist-es/pagination/ListUsersPaginator.js +4 -0
- package/dist-es/pagination/index.js +9 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +50 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +37 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1491 -0
- package/dist-types/Wickr.d.ts +305 -0
- package/dist-types/WickrClient.d.ts +229 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/BatchCreateUserCommand.d.ts +251 -0
- package/dist-types/commands/BatchDeleteUserCommand.d.ts +171 -0
- package/dist-types/commands/BatchLookupUserUnameCommand.d.ts +175 -0
- package/dist-types/commands/BatchReinviteUserCommand.d.ts +191 -0
- package/dist-types/commands/BatchResetDevicesForUserCommand.d.ts +190 -0
- package/dist-types/commands/BatchToggleUserSuspendStatusCommand.d.ts +174 -0
- package/dist-types/commands/CreateBotCommand.d.ts +161 -0
- package/dist-types/commands/CreateDataRetentionBotChallengeCommand.d.ts +110 -0
- package/dist-types/commands/CreateDataRetentionBotCommand.d.ts +123 -0
- package/dist-types/commands/CreateNetworkCommand.d.ts +150 -0
- package/dist-types/commands/CreateSecurityGroupCommand.d.ts +241 -0
- package/dist-types/commands/DeleteBotCommand.d.ts +126 -0
- package/dist-types/commands/DeleteDataRetentionBotCommand.d.ts +110 -0
- package/dist-types/commands/DeleteNetworkCommand.d.ts +124 -0
- package/dist-types/commands/DeleteSecurityGroupCommand.d.ts +130 -0
- package/dist-types/commands/GetBotCommand.d.ts +144 -0
- package/dist-types/commands/GetBotsCountCommand.d.ts +131 -0
- package/dist-types/commands/GetDataRetentionBotCommand.d.ts +140 -0
- package/dist-types/commands/GetGuestUserHistoryCountCommand.d.ts +155 -0
- package/dist-types/commands/GetNetworkCommand.d.ts +137 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +166 -0
- package/dist-types/commands/GetOidcInfoCommand.d.ts +169 -0
- package/dist-types/commands/GetSecurityGroupCommand.d.ts +211 -0
- package/dist-types/commands/GetUserCommand.d.ts +194 -0
- package/dist-types/commands/GetUsersCountCommand.d.ts +137 -0
- package/dist-types/commands/ListBlockedGuestUsersCommand.d.ts +185 -0
- package/dist-types/commands/ListBotsCommand.d.ts +192 -0
- package/dist-types/commands/ListDevicesForUserCommand.d.ts +197 -0
- package/dist-types/commands/ListGuestUsersCommand.d.ts +192 -0
- package/dist-types/commands/ListNetworksCommand.d.ts +167 -0
- package/dist-types/commands/ListSecurityGroupUsersCommand.d.ts +156 -0
- package/dist-types/commands/ListSecurityGroupsCommand.d.ts +246 -0
- package/dist-types/commands/ListUsersCommand.d.ts +221 -0
- package/dist-types/commands/RegisterOidcConfigCommand.d.ts +174 -0
- package/dist-types/commands/RegisterOidcConfigTestCommand.d.ts +168 -0
- package/dist-types/commands/UpdateBotCommand.d.ts +133 -0
- package/dist-types/commands/UpdateDataRetentionCommand.d.ts +144 -0
- package/dist-types/commands/UpdateGuestUserCommand.d.ts +146 -0
- package/dist-types/commands/UpdateNetworkCommand.d.ts +142 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +234 -0
- package/dist-types/commands/UpdateSecurityGroupCommand.d.ts +282 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +229 -0
- package/dist-types/commands/index.d.ts +42 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/WickrServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +58 -0
- package/dist-types/models/errors.d.ts +92 -0
- package/dist-types/models/models_0.d.ts +2975 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListBlockedGuestUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBotsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDevicesForUserPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGuestUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListNetworksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSecurityGroupUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSecurityGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +164 -0
- package/dist-types/ts3.4/Wickr.d.ts +720 -0
- package/dist-types/ts3.4/WickrClient.d.ts +371 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/BatchCreateUserCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/BatchDeleteUserCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/BatchLookupUserUnameCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchReinviteUserCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchResetDevicesForUserCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchToggleUserSuspendStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateBotCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateDataRetentionBotChallengeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDataRetentionBotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBotCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteDataRetentionBotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteNetworkCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBotCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetBotsCountCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDataRetentionBotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetGuestUserHistoryCountCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetNetworkSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetOidcInfoCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetSecurityGroupCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetUserCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetUsersCountCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListBlockedGuestUsersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBotsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListDevicesForUserCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGuestUsersCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSecurityGroupUsersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSecurityGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/RegisterOidcConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterOidcConfigTestCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBotCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateDataRetentionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGuestUserCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateNetworkCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateNetworkSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSecurityGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +42 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/WickrServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +31 -0
- package/dist-types/ts3.4/models/errors.d.ts +43 -0
- package/dist-types/ts3.4/models/models_0.d.ts +714 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListBlockedGuestUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBotsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDevicesForUserPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGuestUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListNetworksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityGroupUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -0
- package/package.json +100 -0
|
@@ -0,0 +1,2520 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var middlewareHostHeader = require('@aws-sdk/middleware-host-header');
|
|
4
|
+
var middlewareLogger = require('@aws-sdk/middleware-logger');
|
|
5
|
+
var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detection');
|
|
6
|
+
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
|
+
var configResolver = require('@smithy/config-resolver');
|
|
8
|
+
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
10
|
+
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
11
|
+
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
12
|
+
var middlewareRetry = require('@smithy/middleware-retry');
|
|
13
|
+
var smithyClient = require('@smithy/smithy-client');
|
|
14
|
+
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
15
|
+
var runtimeConfig = require('./runtimeConfig');
|
|
16
|
+
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
|
+
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
|
|
19
|
+
const resolveClientEndpointParameters = (options) => {
|
|
20
|
+
return Object.assign(options, {
|
|
21
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
22
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
23
|
+
defaultSigningName: "wickr",
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
const commonParams = {
|
|
27
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
28
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
29
|
+
Region: { type: "builtInParams", name: "region" },
|
|
30
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
34
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
35
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
36
|
+
let _credentials = runtimeConfig.credentials;
|
|
37
|
+
return {
|
|
38
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
39
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
40
|
+
if (index === -1) {
|
|
41
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
httpAuthSchemes() {
|
|
48
|
+
return _httpAuthSchemes;
|
|
49
|
+
},
|
|
50
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
51
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
52
|
+
},
|
|
53
|
+
httpAuthSchemeProvider() {
|
|
54
|
+
return _httpAuthSchemeProvider;
|
|
55
|
+
},
|
|
56
|
+
setCredentials(credentials) {
|
|
57
|
+
_credentials = credentials;
|
|
58
|
+
},
|
|
59
|
+
credentials() {
|
|
60
|
+
return _credentials;
|
|
61
|
+
},
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
const resolveHttpAuthRuntimeConfig = (config) => {
|
|
65
|
+
return {
|
|
66
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
67
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
68
|
+
credentials: config.credentials(),
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
73
|
+
const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig), smithyClient.getDefaultExtensionConfiguration(runtimeConfig), protocolHttp.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
74
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
75
|
+
return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration), smithyClient.resolveDefaultRuntimeConfig(extensionConfiguration), protocolHttp.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
class WickrClient extends smithyClient.Client {
|
|
79
|
+
config;
|
|
80
|
+
constructor(...[configuration]) {
|
|
81
|
+
const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
|
|
82
|
+
super(_config_0);
|
|
83
|
+
this.initConfig = _config_0;
|
|
84
|
+
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
85
|
+
const _config_2 = middlewareUserAgent.resolveUserAgentConfig(_config_1);
|
|
86
|
+
const _config_3 = middlewareRetry.resolveRetryConfig(_config_2);
|
|
87
|
+
const _config_4 = configResolver.resolveRegionConfig(_config_3);
|
|
88
|
+
const _config_5 = middlewareHostHeader.resolveHostHeaderConfig(_config_4);
|
|
89
|
+
const _config_6 = middlewareEndpoint.resolveEndpointConfig(_config_5);
|
|
90
|
+
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
91
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
92
|
+
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
|
+
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(middlewareHostHeader.getHostHeaderPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(middlewareLogger.getLoggerPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(middlewareRecursionDetection.getRecursionDetectionPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
101
|
+
httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultWickrHttpAuthSchemeParametersProvider,
|
|
102
|
+
identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({
|
|
103
|
+
"aws.auth#sigv4": config.credentials,
|
|
104
|
+
}),
|
|
105
|
+
}));
|
|
106
|
+
this.middlewareStack.use(core.getHttpSigningPlugin(this.config));
|
|
107
|
+
}
|
|
108
|
+
destroy() {
|
|
109
|
+
super.destroy();
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
class WickrServiceException extends smithyClient.ServiceException {
|
|
114
|
+
constructor(options) {
|
|
115
|
+
super(options);
|
|
116
|
+
Object.setPrototypeOf(this, WickrServiceException.prototype);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
class BadRequestError extends WickrServiceException {
|
|
121
|
+
name = "BadRequestError";
|
|
122
|
+
$fault = "client";
|
|
123
|
+
constructor(opts) {
|
|
124
|
+
super({
|
|
125
|
+
name: "BadRequestError",
|
|
126
|
+
$fault: "client",
|
|
127
|
+
...opts,
|
|
128
|
+
});
|
|
129
|
+
Object.setPrototypeOf(this, BadRequestError.prototype);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
class ForbiddenError extends WickrServiceException {
|
|
133
|
+
name = "ForbiddenError";
|
|
134
|
+
$fault = "client";
|
|
135
|
+
constructor(opts) {
|
|
136
|
+
super({
|
|
137
|
+
name: "ForbiddenError",
|
|
138
|
+
$fault: "client",
|
|
139
|
+
...opts,
|
|
140
|
+
});
|
|
141
|
+
Object.setPrototypeOf(this, ForbiddenError.prototype);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
class InternalServerError extends WickrServiceException {
|
|
145
|
+
name = "InternalServerError";
|
|
146
|
+
$fault = "server";
|
|
147
|
+
constructor(opts) {
|
|
148
|
+
super({
|
|
149
|
+
name: "InternalServerError",
|
|
150
|
+
$fault: "server",
|
|
151
|
+
...opts,
|
|
152
|
+
});
|
|
153
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
class RateLimitError extends WickrServiceException {
|
|
157
|
+
name = "RateLimitError";
|
|
158
|
+
$fault = "client";
|
|
159
|
+
constructor(opts) {
|
|
160
|
+
super({
|
|
161
|
+
name: "RateLimitError",
|
|
162
|
+
$fault: "client",
|
|
163
|
+
...opts,
|
|
164
|
+
});
|
|
165
|
+
Object.setPrototypeOf(this, RateLimitError.prototype);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
class ResourceNotFoundError extends WickrServiceException {
|
|
169
|
+
name = "ResourceNotFoundError";
|
|
170
|
+
$fault = "client";
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "ResourceNotFoundError",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, ResourceNotFoundError.prototype);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
class UnauthorizedError extends WickrServiceException {
|
|
181
|
+
name = "UnauthorizedError";
|
|
182
|
+
$fault = "client";
|
|
183
|
+
constructor(opts) {
|
|
184
|
+
super({
|
|
185
|
+
name: "UnauthorizedError",
|
|
186
|
+
$fault: "client",
|
|
187
|
+
...opts,
|
|
188
|
+
});
|
|
189
|
+
Object.setPrototypeOf(this, UnauthorizedError.prototype);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
class ValidationError extends WickrServiceException {
|
|
193
|
+
name = "ValidationError";
|
|
194
|
+
$fault = "client";
|
|
195
|
+
reasons;
|
|
196
|
+
constructor(opts) {
|
|
197
|
+
super({
|
|
198
|
+
name: "ValidationError",
|
|
199
|
+
$fault: "client",
|
|
200
|
+
...opts,
|
|
201
|
+
});
|
|
202
|
+
Object.setPrototypeOf(this, ValidationError.prototype);
|
|
203
|
+
this.reasons = opts.reasons;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
const _B = "Bot";
|
|
208
|
+
const _BCU = "BatchCreateUser";
|
|
209
|
+
const _BCUR = "BatchCreateUserRequest";
|
|
210
|
+
const _BCURI = "BatchCreateUserRequestItem";
|
|
211
|
+
const _BCURIa = "BatchCreateUserRequestItems";
|
|
212
|
+
const _BCURa = "BatchCreateUserResponse";
|
|
213
|
+
const _BDERI = "BatchDeviceErrorResponseItem";
|
|
214
|
+
const _BDERIa = "BatchDeviceErrorResponseItems";
|
|
215
|
+
const _BDO = "BasicDeviceObject";
|
|
216
|
+
const _BDSRI = "BatchDeviceSuccessResponseItem";
|
|
217
|
+
const _BDSRIa = "BatchDeviceSuccessResponseItems";
|
|
218
|
+
const _BDU = "BatchDeleteUser";
|
|
219
|
+
const _BDUR = "BatchDeleteUserRequest";
|
|
220
|
+
const _BDURa = "BatchDeleteUserResponse";
|
|
221
|
+
const _BGU = "BlockedGuestUser";
|
|
222
|
+
const _BGUL = "BlockedGuestUserList";
|
|
223
|
+
const _BLUU = "BatchLookupUserUname";
|
|
224
|
+
const _BLUUR = "BatchLookupUserUnameRequest";
|
|
225
|
+
const _BLUURa = "BatchLookupUserUnameResponse";
|
|
226
|
+
const _BRDFU = "BatchResetDevicesForUser";
|
|
227
|
+
const _BRDFUR = "BatchResetDevicesForUserRequest";
|
|
228
|
+
const _BRDFURa = "BatchResetDevicesForUserResponse";
|
|
229
|
+
const _BRE = "BadRequestError";
|
|
230
|
+
const _BRU = "BatchReinviteUser";
|
|
231
|
+
const _BRUR = "BatchReinviteUserRequest";
|
|
232
|
+
const _BRURa = "BatchReinviteUserResponse";
|
|
233
|
+
const _BTUSS = "BatchToggleUserSuspendStatus";
|
|
234
|
+
const _BTUSSR = "BatchToggleUserSuspendStatusRequest";
|
|
235
|
+
const _BTUSSRa = "BatchToggleUserSuspendStatusResponse";
|
|
236
|
+
const _BUERI = "BatchUnameErrorResponseItem";
|
|
237
|
+
const _BUERIa = "BatchUserErrorResponseItem";
|
|
238
|
+
const _BUERIat = "BatchUnameErrorResponseItems";
|
|
239
|
+
const _BUERIatc = "BatchUserErrorResponseItems";
|
|
240
|
+
const _BUSRI = "BatchUnameSuccessResponseItem";
|
|
241
|
+
const _BUSRIa = "BatchUserSuccessResponseItem";
|
|
242
|
+
const _BUSRIat = "BatchUnameSuccessResponseItems";
|
|
243
|
+
const _BUSRIatc = "BatchUserSuccessResponseItems";
|
|
244
|
+
const _Bo = "Bots";
|
|
245
|
+
const _CB = "CreateBot";
|
|
246
|
+
const _CBR = "CreateBotRequest";
|
|
247
|
+
const _CBRr = "CreateBotResponse";
|
|
248
|
+
const _CDRB = "CreateDataRetentionBot";
|
|
249
|
+
const _CDRBC = "CreateDataRetentionBotChallenge";
|
|
250
|
+
const _CDRBCR = "CreateDataRetentionBotChallengeRequest";
|
|
251
|
+
const _CDRBCRr = "CreateDataRetentionBotChallengeResponse";
|
|
252
|
+
const _CDRBR = "CreateDataRetentionBotRequest";
|
|
253
|
+
const _CDRBRr = "CreateDataRetentionBotResponse";
|
|
254
|
+
const _CN = "CreateNetwork";
|
|
255
|
+
const _CNR = "CreateNetworkRequest";
|
|
256
|
+
const _CNRr = "CreateNetworkResponse";
|
|
257
|
+
const _CS = "CallingSettings";
|
|
258
|
+
const _CSG = "CreateSecurityGroup";
|
|
259
|
+
const _CSGR = "CreateSecurityGroupRequest";
|
|
260
|
+
const _CSGRr = "CreateSecurityGroupResponse";
|
|
261
|
+
const _D = "Devices";
|
|
262
|
+
const _DB = "DeleteBot";
|
|
263
|
+
const _DBR = "DeleteBotRequest";
|
|
264
|
+
const _DBRe = "DeleteBotResponse";
|
|
265
|
+
const _DDRB = "DeleteDataRetentionBot";
|
|
266
|
+
const _DDRBR = "DeleteDataRetentionBotRequest";
|
|
267
|
+
const _DDRBRe = "DeleteDataRetentionBotResponse";
|
|
268
|
+
const _DN = "DeleteNetwork";
|
|
269
|
+
const _DNR = "DeleteNetworkRequest";
|
|
270
|
+
const _DNRe = "DeleteNetworkResponse";
|
|
271
|
+
const _DSG = "DeleteSecurityGroup";
|
|
272
|
+
const _DSGR = "DeleteSecurityGroupRequest";
|
|
273
|
+
const _DSGRe = "DeleteSecurityGroupResponse";
|
|
274
|
+
const _ED = "ErrorDetail";
|
|
275
|
+
const _EDL = "ErrorDetailList";
|
|
276
|
+
const _FE = "ForbiddenError";
|
|
277
|
+
const _GB = "GetBot";
|
|
278
|
+
const _GBC = "GetBotsCount";
|
|
279
|
+
const _GBCR = "GetBotsCountRequest";
|
|
280
|
+
const _GBCRe = "GetBotsCountResponse";
|
|
281
|
+
const _GBR = "GetBotRequest";
|
|
282
|
+
const _GBRe = "GetBotResponse";
|
|
283
|
+
const _GDRB = "GetDataRetentionBot";
|
|
284
|
+
const _GDRBR = "GetDataRetentionBotRequest";
|
|
285
|
+
const _GDRBRe = "GetDataRetentionBotResponse";
|
|
286
|
+
const _GGUHC = "GetGuestUserHistoryCount";
|
|
287
|
+
const _GGUHCR = "GetGuestUserHistoryCountRequest";
|
|
288
|
+
const _GGUHCRe = "GetGuestUserHistoryCountResponse";
|
|
289
|
+
const _GN = "GetNetwork";
|
|
290
|
+
const _GNR = "GetNetworkRequest";
|
|
291
|
+
const _GNRe = "GetNetworkResponse";
|
|
292
|
+
const _GNS = "GetNetworkSettings";
|
|
293
|
+
const _GNSR = "GetNetworkSettingsRequest";
|
|
294
|
+
const _GNSRe = "GetNetworkSettingsResponse";
|
|
295
|
+
const _GOI = "GetOidcInfo";
|
|
296
|
+
const _GOIR = "GetOidcInfoRequest";
|
|
297
|
+
const _GOIRe = "GetOidcInfoResponse";
|
|
298
|
+
const _GSG = "GetSecurityGroup";
|
|
299
|
+
const _GSGR = "GetSecurityGroupRequest";
|
|
300
|
+
const _GSGRe = "GetSecurityGroupResponse";
|
|
301
|
+
const _GU = "GuestUser";
|
|
302
|
+
const _GUC = "GetUsersCount";
|
|
303
|
+
const _GUCR = "GetUsersCountRequest";
|
|
304
|
+
const _GUCRe = "GetUsersCountResponse";
|
|
305
|
+
const _GUHC = "GuestUserHistoryCount";
|
|
306
|
+
const _GUHCL = "GuestUserHistoryCountList";
|
|
307
|
+
const _GUL = "GuestUserList";
|
|
308
|
+
const _GUR = "GetUserRequest";
|
|
309
|
+
const _GURe = "GetUserResponse";
|
|
310
|
+
const _GUe = "GetUser";
|
|
311
|
+
const _ISE = "InternalServerError";
|
|
312
|
+
const _LB = "ListBots";
|
|
313
|
+
const _LBGU = "ListBlockedGuestUsers";
|
|
314
|
+
const _LBGUR = "ListBlockedGuestUsersRequest";
|
|
315
|
+
const _LBGURi = "ListBlockedGuestUsersResponse";
|
|
316
|
+
const _LBR = "ListBotsRequest";
|
|
317
|
+
const _LBRi = "ListBotsResponse";
|
|
318
|
+
const _LDFU = "ListDevicesForUser";
|
|
319
|
+
const _LDFUR = "ListDevicesForUserRequest";
|
|
320
|
+
const _LDFURi = "ListDevicesForUserResponse";
|
|
321
|
+
const _LGU = "ListGuestUsers";
|
|
322
|
+
const _LGUR = "ListGuestUsersRequest";
|
|
323
|
+
const _LGURi = "ListGuestUsersResponse";
|
|
324
|
+
const _LN = "ListNetworks";
|
|
325
|
+
const _LNR = "ListNetworksRequest";
|
|
326
|
+
const _LNRi = "ListNetworksResponse";
|
|
327
|
+
const _LSG = "ListSecurityGroups";
|
|
328
|
+
const _LSGR = "ListSecurityGroupsRequest";
|
|
329
|
+
const _LSGRi = "ListSecurityGroupsResponse";
|
|
330
|
+
const _LSGU = "ListSecurityGroupUsers";
|
|
331
|
+
const _LSGUR = "ListSecurityGroupUsersRequest";
|
|
332
|
+
const _LSGURi = "ListSecurityGroupUsersResponse";
|
|
333
|
+
const _LU = "ListUsers";
|
|
334
|
+
const _LUR = "ListUsersRequest";
|
|
335
|
+
const _LURi = "ListUsersResponse";
|
|
336
|
+
const _N = "Network";
|
|
337
|
+
const _NL = "NetworkList";
|
|
338
|
+
const _NS = "NetworkSettings";
|
|
339
|
+
const _OCI = "OidcConfigInfo";
|
|
340
|
+
const _OTI = "OidcTokenInfo";
|
|
341
|
+
const _PR = "PasswordRequirements";
|
|
342
|
+
const _PWEN = "PermittedWickrEnterpriseNetwork";
|
|
343
|
+
const _PWENL = "PermittedWickrEnterpriseNetworksList";
|
|
344
|
+
const _RLE = "RateLimitError";
|
|
345
|
+
const _RNFE = "ResourceNotFoundError";
|
|
346
|
+
const _ROC = "RegisterOidcConfig";
|
|
347
|
+
const _ROCR = "RegisterOidcConfigRequest";
|
|
348
|
+
const _ROCRe = "RegisterOidcConfigResponse";
|
|
349
|
+
const _ROCT = "RegisterOidcConfigTest";
|
|
350
|
+
const _ROCTR = "RegisterOidcConfigTestRequest";
|
|
351
|
+
const _ROCTRe = "RegisterOidcConfigTestResponse";
|
|
352
|
+
const _RRC = "ReadReceiptConfig";
|
|
353
|
+
const _S = "Setting";
|
|
354
|
+
const _SG = "SecurityGroup";
|
|
355
|
+
const _SGL = "SecurityGroupList";
|
|
356
|
+
const _SGS = "SecurityGroupSettings";
|
|
357
|
+
const _SGSR = "SecurityGroupSettingsRequest";
|
|
358
|
+
const _SL = "SettingsList";
|
|
359
|
+
const _SS = "SensitiveString";
|
|
360
|
+
const _SSh = "ShredderSettings";
|
|
361
|
+
const _U = "User";
|
|
362
|
+
const _UB = "UpdateBot";
|
|
363
|
+
const _UBR = "UpdateBotRequest";
|
|
364
|
+
const _UBRp = "UpdateBotResponse";
|
|
365
|
+
const _UDR = "UpdateDataRetention";
|
|
366
|
+
const _UDRR = "UpdateDataRetentionRequest";
|
|
367
|
+
const _UDRRp = "UpdateDataRetentionResponse";
|
|
368
|
+
const _UE = "UnauthorizedError";
|
|
369
|
+
const _UGU = "UpdateGuestUser";
|
|
370
|
+
const _UGUR = "UpdateGuestUserRequest";
|
|
371
|
+
const _UGURp = "UpdateGuestUserResponse";
|
|
372
|
+
const _UN = "UpdateNetwork";
|
|
373
|
+
const _UNR = "UpdateNetworkRequest";
|
|
374
|
+
const _UNRp = "UpdateNetworkResponse";
|
|
375
|
+
const _UNS = "UpdateNetworkSettings";
|
|
376
|
+
const _UNSR = "UpdateNetworkSettingsRequest";
|
|
377
|
+
const _UNSRp = "UpdateNetworkSettingsResponse";
|
|
378
|
+
const _USG = "UpdateSecurityGroup";
|
|
379
|
+
const _USGR = "UpdateSecurityGroupRequest";
|
|
380
|
+
const _USGRp = "UpdateSecurityGroupResponse";
|
|
381
|
+
const _UU = "UpdateUser";
|
|
382
|
+
const _UUD = "UpdateUserDetails";
|
|
383
|
+
const _UUR = "UpdateUserRequest";
|
|
384
|
+
const _UURp = "UpdateUserResponse";
|
|
385
|
+
const _Us = "Users";
|
|
386
|
+
const _VE = "ValidationError";
|
|
387
|
+
const _WAN = "WickrAwsNetworks";
|
|
388
|
+
const _WANL = "WickrAwsNetworksList";
|
|
389
|
+
const _XCT = "X-Client-Token";
|
|
390
|
+
const _a = "admin";
|
|
391
|
+
const _aAI = "awsAccountId";
|
|
392
|
+
const _aDG = "activeDirectoryGuid";
|
|
393
|
+
const _aE = "authorizationEndpoint";
|
|
394
|
+
const _aI = "appId";
|
|
395
|
+
const _aIp = "appIds";
|
|
396
|
+
const _aIpp = "applicationId";
|
|
397
|
+
const _aL = "accessLevel";
|
|
398
|
+
const _aM = "activeMembers";
|
|
399
|
+
const _aN = "applicationName";
|
|
400
|
+
const _aPV = "atakPackageValues";
|
|
401
|
+
const _aR = "alwaysReauthenticate";
|
|
402
|
+
const _aT = "accessToken";
|
|
403
|
+
const _aTc = "actionType";
|
|
404
|
+
const _ac = "active";
|
|
405
|
+
const _b = "blocklist";
|
|
406
|
+
const _bE = "botExists";
|
|
407
|
+
const _bI = "botId";
|
|
408
|
+
const _bM = "botMembers";
|
|
409
|
+
const _bN = "botName";
|
|
410
|
+
const _bP = "billingPeriod";
|
|
411
|
+
const _bl = "block";
|
|
412
|
+
const _bo = "bots";
|
|
413
|
+
const _c = "client";
|
|
414
|
+
const _cC = "caCertificate";
|
|
415
|
+
const _cCo = "codeChallenge";
|
|
416
|
+
const _cCou = "countryCode";
|
|
417
|
+
const _cF = "challengeFailures";
|
|
418
|
+
const _cFU = "checkForUpdates";
|
|
419
|
+
const _cI = "clientId";
|
|
420
|
+
const _cIo = "companyId";
|
|
421
|
+
const _cPM = "canProcessManually";
|
|
422
|
+
const _cS = "clientSecret";
|
|
423
|
+
const _cSC = "canStart11Call";
|
|
424
|
+
const _cT = "clientToken";
|
|
425
|
+
const _cU = "customUsername";
|
|
426
|
+
const _cV = "codeValidation";
|
|
427
|
+
const _cVC = "canVideoCall";
|
|
428
|
+
const _cVo = "codeVerifier";
|
|
429
|
+
const _ca = "calling";
|
|
430
|
+
const _ce = "certificate";
|
|
431
|
+
const _cel = "cell";
|
|
432
|
+
const _ch = "challenge";
|
|
433
|
+
const _co = "code";
|
|
434
|
+
const _cou = "count";
|
|
435
|
+
const _cr = "created";
|
|
436
|
+
const _d = "devices";
|
|
437
|
+
const _dN = "displayName";
|
|
438
|
+
const _dR = "dataRetention";
|
|
439
|
+
const _do = "domain";
|
|
440
|
+
const _e = "error";
|
|
441
|
+
const _eA = "enableAtak";
|
|
442
|
+
const _eAP = "extraAuthParams";
|
|
443
|
+
const _eCM = "enableClientMetrics";
|
|
444
|
+
const _eCR = "enableCrashReports";
|
|
445
|
+
const _eFD = "enableFileDownload";
|
|
446
|
+
const _eGF = "enableGuestFederation";
|
|
447
|
+
const _eI = "expiresIn";
|
|
448
|
+
const _eKA = "encryptionKeyArn";
|
|
449
|
+
const _eNP = "enableNotificationPreview";
|
|
450
|
+
const _eOAO = "enableOpenAccessOption";
|
|
451
|
+
const _ePFT = "enablePremiumFreeTrial";
|
|
452
|
+
const _eRGF = "enableRestrictedGlobalFederation";
|
|
453
|
+
const _eSE = "endSessionEndpoint";
|
|
454
|
+
const _eT = "endTime";
|
|
455
|
+
const _f = "failed";
|
|
456
|
+
const _fDL = "forceDeviceLockout";
|
|
457
|
+
const _fE = "filesEnabled";
|
|
458
|
+
const _fM = "federationMode";
|
|
459
|
+
const _fN = "firstName";
|
|
460
|
+
const _fOA = "forceOpenAccess";
|
|
461
|
+
const _fRR = "forceReadReceipts";
|
|
462
|
+
const _fTC = "forceTcpCall";
|
|
463
|
+
const _fTE = "freeTrialExpiration";
|
|
464
|
+
const _fi = "field";
|
|
465
|
+
const _g = "guestlist";
|
|
466
|
+
const _gF = "globalFederation";
|
|
467
|
+
const _gI = "groupId";
|
|
468
|
+
const _gT = "grantType";
|
|
469
|
+
const _gTS = "grantTypesSupported";
|
|
470
|
+
const _h = "history";
|
|
471
|
+
const _hC = "hasChallenge";
|
|
472
|
+
const _hE = "httpError";
|
|
473
|
+
const _hH = "httpHeader";
|
|
474
|
+
const _hQ = "httpQuery";
|
|
475
|
+
const _ht = "http";
|
|
476
|
+
const _i = "issuer";
|
|
477
|
+
const _iA = "isAdmin";
|
|
478
|
+
const _iAE = "isAtoEnabled";
|
|
479
|
+
const _iBA = "isBotActive";
|
|
480
|
+
const _iC = "inviteCode";
|
|
481
|
+
const _iCT = "inviteCodeTtl";
|
|
482
|
+
const _iD = "isDefault";
|
|
483
|
+
const _iDRBR = "isDataRetentionBotRegistered";
|
|
484
|
+
const _iDRSE = "isDataRetentionServiceEnabled";
|
|
485
|
+
const _iE = "inviteExpiration";
|
|
486
|
+
const _iIE = "isInviteExpired";
|
|
487
|
+
const _iLPE = "isLinkPreviewEnabled";
|
|
488
|
+
const _iPMA = "isPubkeyMsgAcked";
|
|
489
|
+
const _iT = "idempotencyToken";
|
|
490
|
+
const _iTd = "idToken";
|
|
491
|
+
const _iU = "isUser";
|
|
492
|
+
const _id = "id";
|
|
493
|
+
const _in = "intensity";
|
|
494
|
+
const _l = "lowercase";
|
|
495
|
+
const _lA = "lastActivity";
|
|
496
|
+
const _lAM = "locationAllowMaps";
|
|
497
|
+
const _lE = "logoutEndpoint";
|
|
498
|
+
const _lEo = "locationEnabled";
|
|
499
|
+
const _lL = "lastLogin";
|
|
500
|
+
const _lN = "lastName";
|
|
501
|
+
const _lT = "lockoutThreshold";
|
|
502
|
+
const _m = "message";
|
|
503
|
+
const _mADS = "maxAutoDownloadSize";
|
|
504
|
+
const _mB = "maxBor";
|
|
505
|
+
const _mFE = "messageForwardingEnabled";
|
|
506
|
+
const _mL = "minLength";
|
|
507
|
+
const _mMRT = "microsoftMultiRefreshToken";
|
|
508
|
+
const _mN = "middleName";
|
|
509
|
+
const _mR = "maxResults";
|
|
510
|
+
const _mS = "migrationState";
|
|
511
|
+
const _mT = "maxTtl";
|
|
512
|
+
const _mo = "modified";
|
|
513
|
+
const _mon = "month";
|
|
514
|
+
const _n = "name";
|
|
515
|
+
const _nA = "networkArn";
|
|
516
|
+
const _nI = "networkId";
|
|
517
|
+
const _nN = "networkName";
|
|
518
|
+
const _nT = "nextToken";
|
|
519
|
+
const _ne = "networks";
|
|
520
|
+
const _nu = "numbers";
|
|
521
|
+
const _oCI = "openidConnectInfo";
|
|
522
|
+
const _oE = "otpEnabled";
|
|
523
|
+
const _oN = "optionName";
|
|
524
|
+
const _p = "pubkey";
|
|
525
|
+
const _pE = "presenceEnabled";
|
|
526
|
+
const _pN = "permittedNetworks";
|
|
527
|
+
const _pR = "passwordRequirements";
|
|
528
|
+
const _pWAN = "permittedWickrAwsNetworks";
|
|
529
|
+
const _pWEN = "permittedWickrEnterpriseNetworks";
|
|
530
|
+
const _pe = "pending";
|
|
531
|
+
const _qR = "quickResponses";
|
|
532
|
+
const _r = "reason";
|
|
533
|
+
const _rE = "revocationEndpoint";
|
|
534
|
+
const _rRC = "readReceiptConfig";
|
|
535
|
+
const _rT = "refreshToken";
|
|
536
|
+
const _rTS = "responseTypesSupported";
|
|
537
|
+
const _rU = "redirectUri";
|
|
538
|
+
const _rUe = "redirectUrl";
|
|
539
|
+
const _re = "rejected";
|
|
540
|
+
const _rea = "reasons";
|
|
541
|
+
const _reg = "region";
|
|
542
|
+
const _rem = "remaining";
|
|
543
|
+
const _s = "suspend";
|
|
544
|
+
const _sD = "sortDirection";
|
|
545
|
+
const _sF = "sortFields";
|
|
546
|
+
const _sG = "securityGroup";
|
|
547
|
+
const _sGI = "securityGroupIds";
|
|
548
|
+
const _sGS = "securityGroupSettings";
|
|
549
|
+
const _sGe = "securityGroups";
|
|
550
|
+
const _sI = "scimId";
|
|
551
|
+
const _sMIM = "ssoMaxIdleMinutes";
|
|
552
|
+
const _sMRK = "showMasterRecoveryKey";
|
|
553
|
+
const _sS = "scopesSupported";
|
|
554
|
+
const _sT = "statusText";
|
|
555
|
+
const _sTBM = "ssoTokenBufferMinutes";
|
|
556
|
+
const _sTt = "startTime";
|
|
557
|
+
const _sc = "scopes";
|
|
558
|
+
const _se = "settings";
|
|
559
|
+
const _sec = "secret";
|
|
560
|
+
const _ser = "server";
|
|
561
|
+
const _sh = "shredder";
|
|
562
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.wickr";
|
|
563
|
+
const _st = "status";
|
|
564
|
+
const _sta = "standing";
|
|
565
|
+
const _su = "successful";
|
|
566
|
+
const _sus = "suspended";
|
|
567
|
+
const _sy = "symbols";
|
|
568
|
+
const _t = "type";
|
|
569
|
+
const _tE = "tokenEndpoint";
|
|
570
|
+
const _tEAMS = "tokenEndpointAuthMethodsSupported";
|
|
571
|
+
const _tI = "tokenInfo";
|
|
572
|
+
const _tT = "tokenType";
|
|
573
|
+
const _to = "total";
|
|
574
|
+
const _u = "users";
|
|
575
|
+
const _uD = "userDetails";
|
|
576
|
+
const _uE = "userinfoEndpoint";
|
|
577
|
+
const _uH = "usernameHash";
|
|
578
|
+
const _uI = "userIds";
|
|
579
|
+
const _uIs = "userId";
|
|
580
|
+
const _un = "unames";
|
|
581
|
+
const _una = "uname";
|
|
582
|
+
const _up = "uppercase";
|
|
583
|
+
const _ur = "url";
|
|
584
|
+
const _us = "username";
|
|
585
|
+
const _v = "value";
|
|
586
|
+
const n0 = "com.amazonaws.wickr";
|
|
587
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
588
|
+
var BadRequestError$ = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
589
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestError$, BadRequestError);
|
|
590
|
+
var BasicDeviceObject$ = [
|
|
591
|
+
3,
|
|
592
|
+
n0,
|
|
593
|
+
_BDO,
|
|
594
|
+
0,
|
|
595
|
+
[_aI, _cr, _lL, _sT, _s, _t],
|
|
596
|
+
[0, 0, 0, 0, 2, 0],
|
|
597
|
+
];
|
|
598
|
+
var BatchCreateUserRequest$ = [
|
|
599
|
+
3,
|
|
600
|
+
n0,
|
|
601
|
+
_BCUR,
|
|
602
|
+
0,
|
|
603
|
+
[_nI, _u, _cT],
|
|
604
|
+
[
|
|
605
|
+
[0, 1],
|
|
606
|
+
[() => BatchCreateUserRequestItems, 0],
|
|
607
|
+
[0, { [_hH]: _XCT, [_iT]: 1 }],
|
|
608
|
+
],
|
|
609
|
+
];
|
|
610
|
+
var BatchCreateUserRequestItem$ = [
|
|
611
|
+
3,
|
|
612
|
+
n0,
|
|
613
|
+
_BCURI,
|
|
614
|
+
0,
|
|
615
|
+
[_fN, _lN, _sGI, _us, _iC, _iCT, _cV],
|
|
616
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], 64 | 0, 0, 0, 1, 2],
|
|
617
|
+
];
|
|
618
|
+
var BatchCreateUserResponse$ = [
|
|
619
|
+
3,
|
|
620
|
+
n0,
|
|
621
|
+
_BCURa,
|
|
622
|
+
0,
|
|
623
|
+
[_m, _su, _f],
|
|
624
|
+
[0, [() => Users, 0], () => BatchUserErrorResponseItems],
|
|
625
|
+
];
|
|
626
|
+
var BatchDeleteUserRequest$ = [
|
|
627
|
+
3,
|
|
628
|
+
n0,
|
|
629
|
+
_BDUR,
|
|
630
|
+
0,
|
|
631
|
+
[_nI, _uI, _cT],
|
|
632
|
+
[[0, 1], 64 | 0, [0, { [_hH]: _XCT, [_iT]: 1 }]],
|
|
633
|
+
];
|
|
634
|
+
var BatchDeleteUserResponse$ = [
|
|
635
|
+
3,
|
|
636
|
+
n0,
|
|
637
|
+
_BDURa,
|
|
638
|
+
0,
|
|
639
|
+
[_m, _su, _f],
|
|
640
|
+
[0, () => BatchUserSuccessResponseItems, () => BatchUserErrorResponseItems],
|
|
641
|
+
];
|
|
642
|
+
var BatchDeviceErrorResponseItem$ = [3, n0, _BDERI, 0, [_fi, _r, _aI], [0, 0, 0]];
|
|
643
|
+
var BatchDeviceSuccessResponseItem$ = [3, n0, _BDSRI, 0, [_aI], [0]];
|
|
644
|
+
var BatchLookupUserUnameRequest$ = [
|
|
645
|
+
3,
|
|
646
|
+
n0,
|
|
647
|
+
_BLUUR,
|
|
648
|
+
0,
|
|
649
|
+
[_nI, _un, _cT],
|
|
650
|
+
[[0, 1], 64 | 0, [0, { [_hH]: _XCT, [_iT]: 1 }]],
|
|
651
|
+
];
|
|
652
|
+
var BatchLookupUserUnameResponse$ = [
|
|
653
|
+
3,
|
|
654
|
+
n0,
|
|
655
|
+
_BLUURa,
|
|
656
|
+
0,
|
|
657
|
+
[_m, _su, _f],
|
|
658
|
+
[0, () => BatchUnameSuccessResponseItems, () => BatchUnameErrorResponseItems],
|
|
659
|
+
];
|
|
660
|
+
var BatchReinviteUserRequest$ = [
|
|
661
|
+
3,
|
|
662
|
+
n0,
|
|
663
|
+
_BRUR,
|
|
664
|
+
0,
|
|
665
|
+
[_nI, _uI, _cT],
|
|
666
|
+
[[0, 1], 64 | 0, [0, { [_hH]: _XCT, [_iT]: 1 }]],
|
|
667
|
+
];
|
|
668
|
+
var BatchReinviteUserResponse$ = [
|
|
669
|
+
3,
|
|
670
|
+
n0,
|
|
671
|
+
_BRURa,
|
|
672
|
+
0,
|
|
673
|
+
[_m, _su, _f],
|
|
674
|
+
[0, () => BatchUserSuccessResponseItems, () => BatchUserErrorResponseItems],
|
|
675
|
+
];
|
|
676
|
+
var BatchResetDevicesForUserRequest$ = [
|
|
677
|
+
3,
|
|
678
|
+
n0,
|
|
679
|
+
_BRDFUR,
|
|
680
|
+
0,
|
|
681
|
+
[_nI, _uIs, _aIp, _cT],
|
|
682
|
+
[[0, 1], [0, 1], 64 | 0, [0, { [_hH]: _XCT, [_iT]: 1 }]],
|
|
683
|
+
];
|
|
684
|
+
var BatchResetDevicesForUserResponse$ = [
|
|
685
|
+
3,
|
|
686
|
+
n0,
|
|
687
|
+
_BRDFURa,
|
|
688
|
+
0,
|
|
689
|
+
[_m, _su, _f],
|
|
690
|
+
[0, () => BatchDeviceSuccessResponseItems, () => BatchDeviceErrorResponseItems],
|
|
691
|
+
];
|
|
692
|
+
var BatchToggleUserSuspendStatusRequest$ = [
|
|
693
|
+
3,
|
|
694
|
+
n0,
|
|
695
|
+
_BTUSSR,
|
|
696
|
+
0,
|
|
697
|
+
[_nI, _s, _uI, _cT],
|
|
698
|
+
[[0, 1], [2, { [_hQ]: _s }], 64 | 0, [0, { [_hH]: _XCT, [_iT]: 1 }]],
|
|
699
|
+
];
|
|
700
|
+
var BatchToggleUserSuspendStatusResponse$ = [
|
|
701
|
+
3,
|
|
702
|
+
n0,
|
|
703
|
+
_BTUSSRa,
|
|
704
|
+
0,
|
|
705
|
+
[_m, _su, _f],
|
|
706
|
+
[0, () => BatchUserSuccessResponseItems, () => BatchUserErrorResponseItems],
|
|
707
|
+
];
|
|
708
|
+
var BatchUnameErrorResponseItem$ = [3, n0, _BUERI, 0, [_fi, _r, _una], [0, 0, 0]];
|
|
709
|
+
var BatchUnameSuccessResponseItem$ = [3, n0, _BUSRI, 0, [_una, _us], [0, 0]];
|
|
710
|
+
var BatchUserErrorResponseItem$ = [3, n0, _BUERIa, 0, [_fi, _r, _uIs], [0, 0, 0]];
|
|
711
|
+
var BatchUserSuccessResponseItem$ = [3, n0, _BUSRIa, 0, [_uIs], [0]];
|
|
712
|
+
var BlockedGuestUser$ = [3, n0, _BGU, 0, [_us, _a, _mo, _uH], [0, 0, 0, 0]];
|
|
713
|
+
var Bot$ = [
|
|
714
|
+
3,
|
|
715
|
+
n0,
|
|
716
|
+
_B,
|
|
717
|
+
0,
|
|
718
|
+
[_bI, _dN, _us, _una, _p, _st, _gI, _hC, _sus, _lL],
|
|
719
|
+
[0, 0, 0, 0, 0, 1, 0, 2, 2, 0],
|
|
720
|
+
];
|
|
721
|
+
var CallingSettings$ = [3, n0, _CS, 0, [_cSC, _cVC, _fTC], [2, 2, 2]];
|
|
722
|
+
var CreateBotRequest$ = [
|
|
723
|
+
3,
|
|
724
|
+
n0,
|
|
725
|
+
_CBR,
|
|
726
|
+
0,
|
|
727
|
+
[_nI, _us, _dN, _gI, _ch],
|
|
728
|
+
[[0, 1], 0, 0, 0, [() => SensitiveString, 0]],
|
|
729
|
+
];
|
|
730
|
+
var CreateBotResponse$ = [
|
|
731
|
+
3,
|
|
732
|
+
n0,
|
|
733
|
+
_CBRr,
|
|
734
|
+
0,
|
|
735
|
+
[_m, _bI, _nI, _us, _dN, _gI],
|
|
736
|
+
[0, 0, 0, 0, 0, 0],
|
|
737
|
+
];
|
|
738
|
+
var CreateDataRetentionBotChallengeRequest$ = [3, n0, _CDRBCR, 0, [_nI], [[0, 1]]];
|
|
739
|
+
var CreateDataRetentionBotChallengeResponse$ = [
|
|
740
|
+
3,
|
|
741
|
+
n0,
|
|
742
|
+
_CDRBCRr,
|
|
743
|
+
0,
|
|
744
|
+
[_ch],
|
|
745
|
+
[[() => SensitiveString, 0]],
|
|
746
|
+
];
|
|
747
|
+
var CreateDataRetentionBotRequest$ = [3, n0, _CDRBR, 0, [_nI], [[0, 1]]];
|
|
748
|
+
var CreateDataRetentionBotResponse$ = [3, n0, _CDRBRr, 0, [_m], [0]];
|
|
749
|
+
var CreateNetworkRequest$ = [3, n0, _CNR, 0, [_nN, _aL, _ePFT, _eKA], [0, 0, 2, 0]];
|
|
750
|
+
var CreateNetworkResponse$ = [3, n0, _CNRr, 0, [_nI, _nN, _eKA], [0, 0, 0]];
|
|
751
|
+
var CreateSecurityGroupRequest$ = [
|
|
752
|
+
3,
|
|
753
|
+
n0,
|
|
754
|
+
_CSGR,
|
|
755
|
+
0,
|
|
756
|
+
[_nI, _n, _sGS, _cT],
|
|
757
|
+
[[0, 1], 0, () => SecurityGroupSettingsRequest$, [0, { [_hH]: _XCT, [_iT]: 1 }]],
|
|
758
|
+
];
|
|
759
|
+
var CreateSecurityGroupResponse$ = [3, n0, _CSGRr, 0, [_sG], [() => SecurityGroup$]];
|
|
760
|
+
var DeleteBotRequest$ = [
|
|
761
|
+
3,
|
|
762
|
+
n0,
|
|
763
|
+
_DBR,
|
|
764
|
+
0,
|
|
765
|
+
[_nI, _bI],
|
|
766
|
+
[
|
|
767
|
+
[0, 1],
|
|
768
|
+
[0, 1],
|
|
769
|
+
],
|
|
770
|
+
];
|
|
771
|
+
var DeleteBotResponse$ = [3, n0, _DBRe, 0, [_m], [0]];
|
|
772
|
+
var DeleteDataRetentionBotRequest$ = [3, n0, _DDRBR, 0, [_nI], [[0, 1]]];
|
|
773
|
+
var DeleteDataRetentionBotResponse$ = [3, n0, _DDRBRe, 0, [_m], [0]];
|
|
774
|
+
var DeleteNetworkRequest$ = [
|
|
775
|
+
3,
|
|
776
|
+
n0,
|
|
777
|
+
_DNR,
|
|
778
|
+
0,
|
|
779
|
+
[_nI, _cT],
|
|
780
|
+
[
|
|
781
|
+
[0, 1],
|
|
782
|
+
[0, { [_hH]: _XCT, [_iT]: 1 }],
|
|
783
|
+
],
|
|
784
|
+
];
|
|
785
|
+
var DeleteNetworkResponse$ = [3, n0, _DNRe, 0, [_m], [0]];
|
|
786
|
+
var DeleteSecurityGroupRequest$ = [
|
|
787
|
+
3,
|
|
788
|
+
n0,
|
|
789
|
+
_DSGR,
|
|
790
|
+
0,
|
|
791
|
+
[_nI, _gI],
|
|
792
|
+
[
|
|
793
|
+
[0, 1],
|
|
794
|
+
[0, 1],
|
|
795
|
+
],
|
|
796
|
+
];
|
|
797
|
+
var DeleteSecurityGroupResponse$ = [3, n0, _DSGRe, 0, [_m, _nI, _gI], [0, 0, 0]];
|
|
798
|
+
var ErrorDetail$ = [3, n0, _ED, 0, [_fi, _r], [0, 0]];
|
|
799
|
+
var ForbiddenError$ = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
800
|
+
schema.TypeRegistry.for(n0).registerError(ForbiddenError$, ForbiddenError);
|
|
801
|
+
var GetBotRequest$ = [
|
|
802
|
+
3,
|
|
803
|
+
n0,
|
|
804
|
+
_GBR,
|
|
805
|
+
0,
|
|
806
|
+
[_nI, _bI],
|
|
807
|
+
[
|
|
808
|
+
[0, 1],
|
|
809
|
+
[0, 1],
|
|
810
|
+
],
|
|
811
|
+
];
|
|
812
|
+
var GetBotResponse$ = [
|
|
813
|
+
3,
|
|
814
|
+
n0,
|
|
815
|
+
_GBRe,
|
|
816
|
+
0,
|
|
817
|
+
[_bI, _dN, _us, _una, _p, _st, _gI, _hC, _sus, _lL],
|
|
818
|
+
[0, 0, 0, 0, 0, 1, 0, 2, 2, 0],
|
|
819
|
+
];
|
|
820
|
+
var GetBotsCountRequest$ = [3, n0, _GBCR, 0, [_nI], [[0, 1]]];
|
|
821
|
+
var GetBotsCountResponse$ = [3, n0, _GBCRe, 0, [_pe, _ac, _to], [1, 1, 1]];
|
|
822
|
+
var GetDataRetentionBotRequest$ = [3, n0, _GDRBR, 0, [_nI], [[0, 1]]];
|
|
823
|
+
var GetDataRetentionBotResponse$ = [
|
|
824
|
+
3,
|
|
825
|
+
n0,
|
|
826
|
+
_GDRBRe,
|
|
827
|
+
0,
|
|
828
|
+
[_bN, _bE, _iBA, _iDRBR, _iDRSE, _iPMA],
|
|
829
|
+
[0, 2, 2, 2, 2, 2],
|
|
830
|
+
];
|
|
831
|
+
var GetGuestUserHistoryCountRequest$ = [3, n0, _GGUHCR, 0, [_nI], [[0, 1]]];
|
|
832
|
+
var GetGuestUserHistoryCountResponse$ = [
|
|
833
|
+
3,
|
|
834
|
+
n0,
|
|
835
|
+
_GGUHCRe,
|
|
836
|
+
0,
|
|
837
|
+
[_h],
|
|
838
|
+
[() => GuestUserHistoryCountList],
|
|
839
|
+
];
|
|
840
|
+
var GetNetworkRequest$ = [3, n0, _GNR, 0, [_nI], [[0, 1]]];
|
|
841
|
+
var GetNetworkResponse$ = [
|
|
842
|
+
3,
|
|
843
|
+
n0,
|
|
844
|
+
_GNRe,
|
|
845
|
+
0,
|
|
846
|
+
[_nI, _nN, _aL, _aAI, _nA, _sta, _fTE, _mS, _eKA],
|
|
847
|
+
[0, 0, 0, 0, 0, 1, 0, 1, 0],
|
|
848
|
+
];
|
|
849
|
+
var GetNetworkSettingsRequest$ = [3, n0, _GNSR, 0, [_nI], [[0, 1]]];
|
|
850
|
+
var GetNetworkSettingsResponse$ = [3, n0, _GNSRe, 0, [_se], [() => SettingsList]];
|
|
851
|
+
var GetOidcInfoRequest$ = [
|
|
852
|
+
3,
|
|
853
|
+
n0,
|
|
854
|
+
_GOIR,
|
|
855
|
+
0,
|
|
856
|
+
[_nI, _cI, _co, _gT, _rU, _ur, _cS, _cVo, _ce],
|
|
857
|
+
[
|
|
858
|
+
[0, 1],
|
|
859
|
+
[0, { [_hQ]: _cI }],
|
|
860
|
+
[0, { [_hQ]: _co }],
|
|
861
|
+
[0, { [_hQ]: _gT }],
|
|
862
|
+
[0, { [_hQ]: _rU }],
|
|
863
|
+
[0, { [_hQ]: _ur }],
|
|
864
|
+
[() => SensitiveString, { [_hQ]: _cS }],
|
|
865
|
+
[0, { [_hQ]: _cVo }],
|
|
866
|
+
[0, { [_hQ]: _ce }],
|
|
867
|
+
],
|
|
868
|
+
];
|
|
869
|
+
var GetOidcInfoResponse$ = [
|
|
870
|
+
3,
|
|
871
|
+
n0,
|
|
872
|
+
_GOIRe,
|
|
873
|
+
0,
|
|
874
|
+
[_oCI, _tI],
|
|
875
|
+
[[() => OidcConfigInfo$, 0], () => OidcTokenInfo$],
|
|
876
|
+
];
|
|
877
|
+
var GetSecurityGroupRequest$ = [
|
|
878
|
+
3,
|
|
879
|
+
n0,
|
|
880
|
+
_GSGR,
|
|
881
|
+
0,
|
|
882
|
+
[_nI, _gI],
|
|
883
|
+
[
|
|
884
|
+
[0, 1],
|
|
885
|
+
[0, 1],
|
|
886
|
+
],
|
|
887
|
+
];
|
|
888
|
+
var GetSecurityGroupResponse$ = [3, n0, _GSGRe, 0, [_sG], [() => SecurityGroup$]];
|
|
889
|
+
var GetUserRequest$ = [
|
|
890
|
+
3,
|
|
891
|
+
n0,
|
|
892
|
+
_GUR,
|
|
893
|
+
0,
|
|
894
|
+
[_nI, _uIs, _sTt, _eT],
|
|
895
|
+
[
|
|
896
|
+
[0, 1],
|
|
897
|
+
[0, 1],
|
|
898
|
+
[7, { [_hQ]: _sTt }],
|
|
899
|
+
[7, { [_hQ]: _eT }],
|
|
900
|
+
],
|
|
901
|
+
];
|
|
902
|
+
var GetUserResponse$ = [
|
|
903
|
+
3,
|
|
904
|
+
n0,
|
|
905
|
+
_GURe,
|
|
906
|
+
0,
|
|
907
|
+
[_uIs, _fN, _lN, _us, _iA, _sus, _st, _lA, _lL, _sGI],
|
|
908
|
+
[0, [() => SensitiveString, 0], [() => SensitiveString, 0], 0, 2, 2, 1, 1, 1, 64 | 0],
|
|
909
|
+
];
|
|
910
|
+
var GetUsersCountRequest$ = [3, n0, _GUCR, 0, [_nI], [[0, 1]]];
|
|
911
|
+
var GetUsersCountResponse$ = [
|
|
912
|
+
3,
|
|
913
|
+
n0,
|
|
914
|
+
_GUCRe,
|
|
915
|
+
0,
|
|
916
|
+
[_pe, _ac, _re, _rem, _to],
|
|
917
|
+
[1, 1, 1, 1, 1],
|
|
918
|
+
];
|
|
919
|
+
var GuestUser$ = [3, n0, _GU, 0, [_bP, _us, _uH], [0, 0, 0]];
|
|
920
|
+
var GuestUserHistoryCount$ = [3, n0, _GUHC, 0, [_mon, _cou], [0, 0]];
|
|
921
|
+
var InternalServerError$ = [-3, n0, _ISE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
|
|
922
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerError$, InternalServerError);
|
|
923
|
+
var ListBlockedGuestUsersRequest$ = [
|
|
924
|
+
3,
|
|
925
|
+
n0,
|
|
926
|
+
_LBGUR,
|
|
927
|
+
0,
|
|
928
|
+
[_nI, _mR, _sD, _sF, _us, _a, _nT],
|
|
929
|
+
[
|
|
930
|
+
[0, 1],
|
|
931
|
+
[1, { [_hQ]: _mR }],
|
|
932
|
+
[0, { [_hQ]: _sD }],
|
|
933
|
+
[0, { [_hQ]: _sF }],
|
|
934
|
+
[0, { [_hQ]: _us }],
|
|
935
|
+
[0, { [_hQ]: _a }],
|
|
936
|
+
[0, { [_hQ]: _nT }],
|
|
937
|
+
],
|
|
938
|
+
];
|
|
939
|
+
var ListBlockedGuestUsersResponse$ = [
|
|
940
|
+
3,
|
|
941
|
+
n0,
|
|
942
|
+
_LBGURi,
|
|
943
|
+
0,
|
|
944
|
+
[_nT, _b],
|
|
945
|
+
[0, () => BlockedGuestUserList],
|
|
946
|
+
];
|
|
947
|
+
var ListBotsRequest$ = [
|
|
948
|
+
3,
|
|
949
|
+
n0,
|
|
950
|
+
_LBR,
|
|
951
|
+
0,
|
|
952
|
+
[_nI, _nT, _mR, _sF, _sD, _dN, _us, _st, _gI],
|
|
953
|
+
[
|
|
954
|
+
[0, 1],
|
|
955
|
+
[0, { [_hQ]: _nT }],
|
|
956
|
+
[1, { [_hQ]: _mR }],
|
|
957
|
+
[0, { [_hQ]: _sF }],
|
|
958
|
+
[0, { [_hQ]: _sD }],
|
|
959
|
+
[0, { [_hQ]: _dN }],
|
|
960
|
+
[0, { [_hQ]: _us }],
|
|
961
|
+
[1, { [_hQ]: _st }],
|
|
962
|
+
[0, { [_hQ]: _gI }],
|
|
963
|
+
],
|
|
964
|
+
];
|
|
965
|
+
var ListBotsResponse$ = [3, n0, _LBRi, 0, [_bo, _nT], [() => Bots, 0]];
|
|
966
|
+
var ListDevicesForUserRequest$ = [
|
|
967
|
+
3,
|
|
968
|
+
n0,
|
|
969
|
+
_LDFUR,
|
|
970
|
+
0,
|
|
971
|
+
[_nI, _uIs, _nT, _mR, _sF, _sD],
|
|
972
|
+
[
|
|
973
|
+
[0, 1],
|
|
974
|
+
[0, 1],
|
|
975
|
+
[0, { [_hQ]: _nT }],
|
|
976
|
+
[1, { [_hQ]: _mR }],
|
|
977
|
+
[0, { [_hQ]: _sF }],
|
|
978
|
+
[0, { [_hQ]: _sD }],
|
|
979
|
+
],
|
|
980
|
+
];
|
|
981
|
+
var ListDevicesForUserResponse$ = [3, n0, _LDFURi, 0, [_nT, _d], [0, () => Devices]];
|
|
982
|
+
var ListGuestUsersRequest$ = [
|
|
983
|
+
3,
|
|
984
|
+
n0,
|
|
985
|
+
_LGUR,
|
|
986
|
+
0,
|
|
987
|
+
[_nI, _mR, _sD, _sF, _us, _bP, _nT],
|
|
988
|
+
[
|
|
989
|
+
[0, 1],
|
|
990
|
+
[1, { [_hQ]: _mR }],
|
|
991
|
+
[0, { [_hQ]: _sD }],
|
|
992
|
+
[0, { [_hQ]: _sF }],
|
|
993
|
+
[0, { [_hQ]: _us }],
|
|
994
|
+
[0, { [_hQ]: _bP }],
|
|
995
|
+
[0, { [_hQ]: _nT }],
|
|
996
|
+
],
|
|
997
|
+
];
|
|
998
|
+
var ListGuestUsersResponse$ = [3, n0, _LGURi, 0, [_nT, _g], [0, () => GuestUserList]];
|
|
999
|
+
var ListNetworksRequest$ = [
|
|
1000
|
+
3,
|
|
1001
|
+
n0,
|
|
1002
|
+
_LNR,
|
|
1003
|
+
0,
|
|
1004
|
+
[_mR, _sF, _sD, _nT],
|
|
1005
|
+
[
|
|
1006
|
+
[1, { [_hQ]: _mR }],
|
|
1007
|
+
[0, { [_hQ]: _sF }],
|
|
1008
|
+
[0, { [_hQ]: _sD }],
|
|
1009
|
+
[0, { [_hQ]: _nT }],
|
|
1010
|
+
],
|
|
1011
|
+
];
|
|
1012
|
+
var ListNetworksResponse$ = [3, n0, _LNRi, 0, [_ne, _nT], [() => NetworkList, 0]];
|
|
1013
|
+
var ListSecurityGroupsRequest$ = [
|
|
1014
|
+
3,
|
|
1015
|
+
n0,
|
|
1016
|
+
_LSGR,
|
|
1017
|
+
0,
|
|
1018
|
+
[_nI, _nT, _mR, _sF, _sD],
|
|
1019
|
+
[
|
|
1020
|
+
[0, 1],
|
|
1021
|
+
[0, { [_hQ]: _nT }],
|
|
1022
|
+
[1, { [_hQ]: _mR }],
|
|
1023
|
+
[0, { [_hQ]: _sF }],
|
|
1024
|
+
[0, { [_hQ]: _sD }],
|
|
1025
|
+
],
|
|
1026
|
+
];
|
|
1027
|
+
var ListSecurityGroupsResponse$ = [
|
|
1028
|
+
3,
|
|
1029
|
+
n0,
|
|
1030
|
+
_LSGRi,
|
|
1031
|
+
0,
|
|
1032
|
+
[_sGe, _nT],
|
|
1033
|
+
[() => SecurityGroupList, 0],
|
|
1034
|
+
];
|
|
1035
|
+
var ListSecurityGroupUsersRequest$ = [
|
|
1036
|
+
3,
|
|
1037
|
+
n0,
|
|
1038
|
+
_LSGUR,
|
|
1039
|
+
0,
|
|
1040
|
+
[_nI, _gI, _nT, _mR, _sF, _sD],
|
|
1041
|
+
[
|
|
1042
|
+
[0, 1],
|
|
1043
|
+
[0, 1],
|
|
1044
|
+
[0, { [_hQ]: _nT }],
|
|
1045
|
+
[1, { [_hQ]: _mR }],
|
|
1046
|
+
[0, { [_hQ]: _sF }],
|
|
1047
|
+
[0, { [_hQ]: _sD }],
|
|
1048
|
+
],
|
|
1049
|
+
];
|
|
1050
|
+
var ListSecurityGroupUsersResponse$ = [
|
|
1051
|
+
3,
|
|
1052
|
+
n0,
|
|
1053
|
+
_LSGURi,
|
|
1054
|
+
0,
|
|
1055
|
+
[_u, _nT],
|
|
1056
|
+
[[() => Users, 0], 0],
|
|
1057
|
+
];
|
|
1058
|
+
var ListUsersRequest$ = [
|
|
1059
|
+
3,
|
|
1060
|
+
n0,
|
|
1061
|
+
_LUR,
|
|
1062
|
+
0,
|
|
1063
|
+
[_nI, _nT, _mR, _sF, _sD, _fN, _lN, _us, _st, _gI],
|
|
1064
|
+
[
|
|
1065
|
+
[0, 1],
|
|
1066
|
+
[0, { [_hQ]: _nT }],
|
|
1067
|
+
[1, { [_hQ]: _mR }],
|
|
1068
|
+
[0, { [_hQ]: _sF }],
|
|
1069
|
+
[0, { [_hQ]: _sD }],
|
|
1070
|
+
[() => SensitiveString, { [_hQ]: _fN }],
|
|
1071
|
+
[() => SensitiveString, { [_hQ]: _lN }],
|
|
1072
|
+
[0, { [_hQ]: _us }],
|
|
1073
|
+
[1, { [_hQ]: _st }],
|
|
1074
|
+
[0, { [_hQ]: _gI }],
|
|
1075
|
+
],
|
|
1076
|
+
];
|
|
1077
|
+
var ListUsersResponse$ = [3, n0, _LURi, 0, [_nT, _u], [0, [() => Users, 0]]];
|
|
1078
|
+
var Network$ = [
|
|
1079
|
+
3,
|
|
1080
|
+
n0,
|
|
1081
|
+
_N,
|
|
1082
|
+
0,
|
|
1083
|
+
[_nI, _nN, _aL, _aAI, _nA, _sta, _fTE, _mS, _eKA],
|
|
1084
|
+
[0, 0, 0, 0, 0, 1, 0, 1, 0],
|
|
1085
|
+
];
|
|
1086
|
+
var NetworkSettings$ = [
|
|
1087
|
+
3,
|
|
1088
|
+
n0,
|
|
1089
|
+
_NS,
|
|
1090
|
+
0,
|
|
1091
|
+
[_eCM, _rRC, _dR],
|
|
1092
|
+
[2, () => ReadReceiptConfig$, 2],
|
|
1093
|
+
];
|
|
1094
|
+
var OidcConfigInfo$ = [
|
|
1095
|
+
3,
|
|
1096
|
+
n0,
|
|
1097
|
+
_OCI,
|
|
1098
|
+
0,
|
|
1099
|
+
[_aN, _cI, _cIo, _sc, _i, _cS, _sec, _rUe, _uIs, _cU, _cC, _aIpp, _sTBM, _eAP],
|
|
1100
|
+
[0, 0, 0, 0, 0, [() => SensitiveString, 0], [() => SensitiveString, 0], 0, 0, 0, 0, 1, 1, 0],
|
|
1101
|
+
];
|
|
1102
|
+
var OidcTokenInfo$ = [
|
|
1103
|
+
3,
|
|
1104
|
+
n0,
|
|
1105
|
+
_OTI,
|
|
1106
|
+
0,
|
|
1107
|
+
[_cVo, _cCo, _aT, _iTd, _rT, _tT, _eI],
|
|
1108
|
+
[0, 0, 0, 0, 0, 0, 1],
|
|
1109
|
+
];
|
|
1110
|
+
var PasswordRequirements$ = [3, n0, _PR, 0, [_l, _mL, _nu, _sy, _up], [1, 1, 1, 1, 1]];
|
|
1111
|
+
var PermittedWickrEnterpriseNetwork$ = [3, n0, _PWEN, 0, [_do, _nI], [0, 0]];
|
|
1112
|
+
var RateLimitError$ = [-3, n0, _RLE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
1113
|
+
schema.TypeRegistry.for(n0).registerError(RateLimitError$, RateLimitError);
|
|
1114
|
+
var ReadReceiptConfig$ = [3, n0, _RRC, 0, [_st], [0]];
|
|
1115
|
+
var RegisterOidcConfigRequest$ = [
|
|
1116
|
+
3,
|
|
1117
|
+
n0,
|
|
1118
|
+
_ROCR,
|
|
1119
|
+
0,
|
|
1120
|
+
[_nI, _cIo, _cU, _eAP, _i, _sc, _sec, _sTBM, _uIs],
|
|
1121
|
+
[[0, 1], 0, 0, 0, 0, 0, [() => SensitiveString, 0], 1, 0],
|
|
1122
|
+
];
|
|
1123
|
+
var RegisterOidcConfigResponse$ = [
|
|
1124
|
+
3,
|
|
1125
|
+
n0,
|
|
1126
|
+
_ROCRe,
|
|
1127
|
+
0,
|
|
1128
|
+
[_aN, _cI, _cIo, _sc, _i, _cS, _sec, _rUe, _uIs, _cU, _cC, _aIpp, _sTBM, _eAP],
|
|
1129
|
+
[0, 0, 0, 0, 0, [() => SensitiveString, 0], [() => SensitiveString, 0], 0, 0, 0, 0, 1, 1, 0],
|
|
1130
|
+
];
|
|
1131
|
+
var RegisterOidcConfigTestRequest$ = [
|
|
1132
|
+
3,
|
|
1133
|
+
n0,
|
|
1134
|
+
_ROCTR,
|
|
1135
|
+
0,
|
|
1136
|
+
[_nI, _eAP, _i, _sc, _ce],
|
|
1137
|
+
[[0, 1], 0, 0, 0, 0],
|
|
1138
|
+
];
|
|
1139
|
+
var RegisterOidcConfigTestResponse$ = [
|
|
1140
|
+
3,
|
|
1141
|
+
n0,
|
|
1142
|
+
_ROCTRe,
|
|
1143
|
+
0,
|
|
1144
|
+
[_tE, _uE, _rTS, _sS, _i, _aE, _eSE, _lE, _gTS, _rE, _tEAMS, _mMRT],
|
|
1145
|
+
[0, 0, 64 | 0, 64 | 0, 0, 0, 0, 0, 64 | 0, 0, 64 | 0, 2],
|
|
1146
|
+
];
|
|
1147
|
+
var ResourceNotFoundError$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
1148
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundError$, ResourceNotFoundError);
|
|
1149
|
+
var SecurityGroup$ = [
|
|
1150
|
+
3,
|
|
1151
|
+
n0,
|
|
1152
|
+
_SG,
|
|
1153
|
+
0,
|
|
1154
|
+
[_aM, _bM, _aDG, _id, _iD, _n, _mo, _sGS],
|
|
1155
|
+
[1, 1, 0, 0, 2, 0, 1, () => SecurityGroupSettings$],
|
|
1156
|
+
];
|
|
1157
|
+
var SecurityGroupSettings$ = [
|
|
1158
|
+
3,
|
|
1159
|
+
n0,
|
|
1160
|
+
_SGS,
|
|
1161
|
+
0,
|
|
1162
|
+
[
|
|
1163
|
+
_aR,
|
|
1164
|
+
_aPV,
|
|
1165
|
+
_ca,
|
|
1166
|
+
_cFU,
|
|
1167
|
+
_eA,
|
|
1168
|
+
_eCR,
|
|
1169
|
+
_eFD,
|
|
1170
|
+
_eGF,
|
|
1171
|
+
_eNP,
|
|
1172
|
+
_eOAO,
|
|
1173
|
+
_eRGF,
|
|
1174
|
+
_fE,
|
|
1175
|
+
_fDL,
|
|
1176
|
+
_fOA,
|
|
1177
|
+
_fRR,
|
|
1178
|
+
_gF,
|
|
1179
|
+
_iAE,
|
|
1180
|
+
_iLPE,
|
|
1181
|
+
_lAM,
|
|
1182
|
+
_lEo,
|
|
1183
|
+
_mADS,
|
|
1184
|
+
_mB,
|
|
1185
|
+
_mT,
|
|
1186
|
+
_mFE,
|
|
1187
|
+
_pR,
|
|
1188
|
+
_pE,
|
|
1189
|
+
_qR,
|
|
1190
|
+
_sMRK,
|
|
1191
|
+
_sh,
|
|
1192
|
+
_sMIM,
|
|
1193
|
+
_fM,
|
|
1194
|
+
_lT,
|
|
1195
|
+
_pN,
|
|
1196
|
+
_pWAN,
|
|
1197
|
+
_pWEN,
|
|
1198
|
+
],
|
|
1199
|
+
[
|
|
1200
|
+
2,
|
|
1201
|
+
64 | 0,
|
|
1202
|
+
() => CallingSettings$,
|
|
1203
|
+
2,
|
|
1204
|
+
2,
|
|
1205
|
+
2,
|
|
1206
|
+
2,
|
|
1207
|
+
2,
|
|
1208
|
+
2,
|
|
1209
|
+
2,
|
|
1210
|
+
2,
|
|
1211
|
+
2,
|
|
1212
|
+
1,
|
|
1213
|
+
2,
|
|
1214
|
+
2,
|
|
1215
|
+
2,
|
|
1216
|
+
2,
|
|
1217
|
+
2,
|
|
1218
|
+
2,
|
|
1219
|
+
2,
|
|
1220
|
+
1,
|
|
1221
|
+
1,
|
|
1222
|
+
1,
|
|
1223
|
+
2,
|
|
1224
|
+
() => PasswordRequirements$,
|
|
1225
|
+
2,
|
|
1226
|
+
64 | 0,
|
|
1227
|
+
2,
|
|
1228
|
+
() => ShredderSettings$,
|
|
1229
|
+
1,
|
|
1230
|
+
1,
|
|
1231
|
+
1,
|
|
1232
|
+
64 | 0,
|
|
1233
|
+
() => WickrAwsNetworksList,
|
|
1234
|
+
() => PermittedWickrEnterpriseNetworksList,
|
|
1235
|
+
],
|
|
1236
|
+
];
|
|
1237
|
+
var SecurityGroupSettingsRequest$ = [
|
|
1238
|
+
3,
|
|
1239
|
+
n0,
|
|
1240
|
+
_SGSR,
|
|
1241
|
+
0,
|
|
1242
|
+
[_lT, _pN, _eGF, _gF, _fM, _eRGF, _pWAN, _pWEN],
|
|
1243
|
+
[1, 64 | 0, 2, 2, 1, 2, () => WickrAwsNetworksList, () => PermittedWickrEnterpriseNetworksList],
|
|
1244
|
+
];
|
|
1245
|
+
var Setting$ = [3, n0, _S, 0, [_oN, _v, _t], [0, 0, 0]];
|
|
1246
|
+
var ShredderSettings$ = [3, n0, _SSh, 0, [_cPM, _in], [2, 1]];
|
|
1247
|
+
var UnauthorizedError$ = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
|
|
1248
|
+
schema.TypeRegistry.for(n0).registerError(UnauthorizedError$, UnauthorizedError);
|
|
1249
|
+
var UpdateBotRequest$ = [
|
|
1250
|
+
3,
|
|
1251
|
+
n0,
|
|
1252
|
+
_UBR,
|
|
1253
|
+
0,
|
|
1254
|
+
[_nI, _bI, _dN, _gI, _ch, _s],
|
|
1255
|
+
[[0, 1], [0, 1], 0, 0, [() => SensitiveString, 0], 2],
|
|
1256
|
+
];
|
|
1257
|
+
var UpdateBotResponse$ = [3, n0, _UBRp, 0, [_m], [0]];
|
|
1258
|
+
var UpdateDataRetentionRequest$ = [3, n0, _UDRR, 0, [_nI, _aTc], [[0, 1], 0]];
|
|
1259
|
+
var UpdateDataRetentionResponse$ = [3, n0, _UDRRp, 0, [_m], [0]];
|
|
1260
|
+
var UpdateGuestUserRequest$ = [3, n0, _UGUR, 0, [_nI, _uH, _bl], [[0, 1], [0, 1], 2]];
|
|
1261
|
+
var UpdateGuestUserResponse$ = [3, n0, _UGURp, 0, [_m], [0]];
|
|
1262
|
+
var UpdateNetworkRequest$ = [
|
|
1263
|
+
3,
|
|
1264
|
+
n0,
|
|
1265
|
+
_UNR,
|
|
1266
|
+
0,
|
|
1267
|
+
[_nI, _nN, _cT, _eKA],
|
|
1268
|
+
[[0, 1], 0, [0, { [_hH]: _XCT, [_iT]: 1 }], 0],
|
|
1269
|
+
];
|
|
1270
|
+
var UpdateNetworkResponse$ = [3, n0, _UNRp, 0, [_m], [0]];
|
|
1271
|
+
var UpdateNetworkSettingsRequest$ = [
|
|
1272
|
+
3,
|
|
1273
|
+
n0,
|
|
1274
|
+
_UNSR,
|
|
1275
|
+
0,
|
|
1276
|
+
[_nI, _se],
|
|
1277
|
+
[[0, 1], () => NetworkSettings$],
|
|
1278
|
+
];
|
|
1279
|
+
var UpdateNetworkSettingsResponse$ = [3, n0, _UNSRp, 0, [_se], [() => SettingsList]];
|
|
1280
|
+
var UpdateSecurityGroupRequest$ = [
|
|
1281
|
+
3,
|
|
1282
|
+
n0,
|
|
1283
|
+
_USGR,
|
|
1284
|
+
0,
|
|
1285
|
+
[_nI, _gI, _n, _sGS],
|
|
1286
|
+
[[0, 1], [0, 1], 0, () => SecurityGroupSettings$],
|
|
1287
|
+
];
|
|
1288
|
+
var UpdateSecurityGroupResponse$ = [3, n0, _USGRp, 0, [_sG], [() => SecurityGroup$]];
|
|
1289
|
+
var UpdateUserDetails$ = [
|
|
1290
|
+
3,
|
|
1291
|
+
n0,
|
|
1292
|
+
_UUD,
|
|
1293
|
+
0,
|
|
1294
|
+
[_fN, _lN, _us, _sGI, _iC, _iCT, _cV],
|
|
1295
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0], 0, 64 | 0, 0, 1, 2],
|
|
1296
|
+
];
|
|
1297
|
+
var UpdateUserRequest$ = [
|
|
1298
|
+
3,
|
|
1299
|
+
n0,
|
|
1300
|
+
_UUR,
|
|
1301
|
+
0,
|
|
1302
|
+
[_nI, _uIs, _uD],
|
|
1303
|
+
[[0, 1], 0, [() => UpdateUserDetails$, 0]],
|
|
1304
|
+
];
|
|
1305
|
+
var UpdateUserResponse$ = [
|
|
1306
|
+
3,
|
|
1307
|
+
n0,
|
|
1308
|
+
_UURp,
|
|
1309
|
+
0,
|
|
1310
|
+
[_uIs, _nI, _sGI, _fN, _lN, _mN, _sus, _mo, _st, _iC, _iE, _cV],
|
|
1311
|
+
[0, 0, 64 | 0, [() => SensitiveString, 0], [() => SensitiveString, 0], 0, 2, 1, 1, 0, 1, 2],
|
|
1312
|
+
];
|
|
1313
|
+
var User$ = [
|
|
1314
|
+
3,
|
|
1315
|
+
n0,
|
|
1316
|
+
_U,
|
|
1317
|
+
0,
|
|
1318
|
+
[_uIs, _fN, _lN, _us, _sGe, _iA, _sus, _st, _oE, _sI, _t, _cel, _cCou, _cF, _iIE, _iU, _iC, _cV, _una],
|
|
1319
|
+
[0, [() => SensitiveString, 0], [() => SensitiveString, 0], 0, 64 | 0, 2, 2, 1, 2, 0, 0, 0, 0, 1, 2, 2, 0, 2, 0],
|
|
1320
|
+
];
|
|
1321
|
+
var ValidationError$ = [
|
|
1322
|
+
-3,
|
|
1323
|
+
n0,
|
|
1324
|
+
_VE,
|
|
1325
|
+
{ [_e]: _c, [_hE]: 422 },
|
|
1326
|
+
[_rea],
|
|
1327
|
+
[() => ErrorDetailList],
|
|
1328
|
+
];
|
|
1329
|
+
schema.TypeRegistry.for(n0).registerError(ValidationError$, ValidationError);
|
|
1330
|
+
var WickrAwsNetworks$ = [3, n0, _WAN, 0, [_reg, _nI], [0, 0]];
|
|
1331
|
+
var WickrServiceException$ = [-3, _sm, "WickrServiceException", 0, [], []];
|
|
1332
|
+
schema.TypeRegistry.for(_sm).registerError(WickrServiceException$, WickrServiceException);
|
|
1333
|
+
var BatchCreateUserRequestItems = [1, n0, _BCURIa, 0, [() => BatchCreateUserRequestItem$, 0]];
|
|
1334
|
+
var BatchDeviceErrorResponseItems = [1, n0, _BDERIa, 0, () => BatchDeviceErrorResponseItem$];
|
|
1335
|
+
var BatchDeviceSuccessResponseItems = [1, n0, _BDSRIa, 0, () => BatchDeviceSuccessResponseItem$];
|
|
1336
|
+
var BatchUnameErrorResponseItems = [1, n0, _BUERIat, 0, () => BatchUnameErrorResponseItem$];
|
|
1337
|
+
var BatchUnameSuccessResponseItems = [1, n0, _BUSRIat, 0, () => BatchUnameSuccessResponseItem$];
|
|
1338
|
+
var BatchUserErrorResponseItems = [1, n0, _BUERIatc, 0, () => BatchUserErrorResponseItem$];
|
|
1339
|
+
var BatchUserSuccessResponseItems = [1, n0, _BUSRIatc, 0, () => BatchUserSuccessResponseItem$];
|
|
1340
|
+
var BlockedGuestUserList = [1, n0, _BGUL, 0, () => BlockedGuestUser$];
|
|
1341
|
+
var Bots = [1, n0, _Bo, 0, () => Bot$];
|
|
1342
|
+
var Devices = [1, n0, _D, 0, () => BasicDeviceObject$];
|
|
1343
|
+
var ErrorDetailList = [1, n0, _EDL, 0, () => ErrorDetail$];
|
|
1344
|
+
var GuestUserHistoryCountList = [1, n0, _GUHCL, 0, () => GuestUserHistoryCount$];
|
|
1345
|
+
var GuestUserList = [1, n0, _GUL, 0, () => GuestUser$];
|
|
1346
|
+
var NetworkList = [1, n0, _NL, 0, () => Network$];
|
|
1347
|
+
var PermittedWickrEnterpriseNetworksList = [1, n0, _PWENL, 0, () => PermittedWickrEnterpriseNetwork$];
|
|
1348
|
+
var SecurityGroupList = [1, n0, _SGL, 0, () => SecurityGroup$];
|
|
1349
|
+
var SettingsList = [1, n0, _SL, 0, () => Setting$];
|
|
1350
|
+
var Users = [1, n0, _Us, 0, [() => User$, 0]];
|
|
1351
|
+
var WickrAwsNetworksList = [1, n0, _WANL, 0, () => WickrAwsNetworks$];
|
|
1352
|
+
var BatchCreateUser$ = [
|
|
1353
|
+
9,
|
|
1354
|
+
n0,
|
|
1355
|
+
_BCU,
|
|
1356
|
+
{ [_ht]: ["POST", "/networks/{networkId}/users", 200] },
|
|
1357
|
+
() => BatchCreateUserRequest$,
|
|
1358
|
+
() => BatchCreateUserResponse$,
|
|
1359
|
+
];
|
|
1360
|
+
var BatchDeleteUser$ = [
|
|
1361
|
+
9,
|
|
1362
|
+
n0,
|
|
1363
|
+
_BDU,
|
|
1364
|
+
{ [_ht]: ["POST", "/networks/{networkId}/users/batch-delete", 200] },
|
|
1365
|
+
() => BatchDeleteUserRequest$,
|
|
1366
|
+
() => BatchDeleteUserResponse$,
|
|
1367
|
+
];
|
|
1368
|
+
var BatchLookupUserUname$ = [
|
|
1369
|
+
9,
|
|
1370
|
+
n0,
|
|
1371
|
+
_BLUU,
|
|
1372
|
+
{ [_ht]: ["POST", "/networks/{networkId}/users/uname-lookup", 200] },
|
|
1373
|
+
() => BatchLookupUserUnameRequest$,
|
|
1374
|
+
() => BatchLookupUserUnameResponse$,
|
|
1375
|
+
];
|
|
1376
|
+
var BatchReinviteUser$ = [
|
|
1377
|
+
9,
|
|
1378
|
+
n0,
|
|
1379
|
+
_BRU,
|
|
1380
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/users/re-invite", 200] },
|
|
1381
|
+
() => BatchReinviteUserRequest$,
|
|
1382
|
+
() => BatchReinviteUserResponse$,
|
|
1383
|
+
];
|
|
1384
|
+
var BatchResetDevicesForUser$ = [
|
|
1385
|
+
9,
|
|
1386
|
+
n0,
|
|
1387
|
+
_BRDFU,
|
|
1388
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/users/{userId}/devices", 200] },
|
|
1389
|
+
() => BatchResetDevicesForUserRequest$,
|
|
1390
|
+
() => BatchResetDevicesForUserResponse$,
|
|
1391
|
+
];
|
|
1392
|
+
var BatchToggleUserSuspendStatus$ = [
|
|
1393
|
+
9,
|
|
1394
|
+
n0,
|
|
1395
|
+
_BTUSS,
|
|
1396
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/users/toggleSuspend", 200] },
|
|
1397
|
+
() => BatchToggleUserSuspendStatusRequest$,
|
|
1398
|
+
() => BatchToggleUserSuspendStatusResponse$,
|
|
1399
|
+
];
|
|
1400
|
+
var CreateBot$ = [
|
|
1401
|
+
9,
|
|
1402
|
+
n0,
|
|
1403
|
+
_CB,
|
|
1404
|
+
{ [_ht]: ["POST", "/networks/{networkId}/bots", 200] },
|
|
1405
|
+
() => CreateBotRequest$,
|
|
1406
|
+
() => CreateBotResponse$,
|
|
1407
|
+
];
|
|
1408
|
+
var CreateDataRetentionBot$ = [
|
|
1409
|
+
9,
|
|
1410
|
+
n0,
|
|
1411
|
+
_CDRB,
|
|
1412
|
+
{ [_ht]: ["POST", "/networks/{networkId}/data-retention-bots", 200] },
|
|
1413
|
+
() => CreateDataRetentionBotRequest$,
|
|
1414
|
+
() => CreateDataRetentionBotResponse$,
|
|
1415
|
+
];
|
|
1416
|
+
var CreateDataRetentionBotChallenge$ = [
|
|
1417
|
+
9,
|
|
1418
|
+
n0,
|
|
1419
|
+
_CDRBC,
|
|
1420
|
+
{ [_ht]: ["POST", "/networks/{networkId}/data-retention-bots/challenge", 200] },
|
|
1421
|
+
() => CreateDataRetentionBotChallengeRequest$,
|
|
1422
|
+
() => CreateDataRetentionBotChallengeResponse$,
|
|
1423
|
+
];
|
|
1424
|
+
var CreateNetwork$ = [
|
|
1425
|
+
9,
|
|
1426
|
+
n0,
|
|
1427
|
+
_CN,
|
|
1428
|
+
{ [_ht]: ["POST", "/networks", 200] },
|
|
1429
|
+
() => CreateNetworkRequest$,
|
|
1430
|
+
() => CreateNetworkResponse$,
|
|
1431
|
+
];
|
|
1432
|
+
var CreateSecurityGroup$ = [
|
|
1433
|
+
9,
|
|
1434
|
+
n0,
|
|
1435
|
+
_CSG,
|
|
1436
|
+
{ [_ht]: ["POST", "/networks/{networkId}/security-groups", 200] },
|
|
1437
|
+
() => CreateSecurityGroupRequest$,
|
|
1438
|
+
() => CreateSecurityGroupResponse$,
|
|
1439
|
+
];
|
|
1440
|
+
var DeleteBot$ = [
|
|
1441
|
+
9,
|
|
1442
|
+
n0,
|
|
1443
|
+
_DB,
|
|
1444
|
+
{ [_ht]: ["DELETE", "/networks/{networkId}/bots/{botId}", 200] },
|
|
1445
|
+
() => DeleteBotRequest$,
|
|
1446
|
+
() => DeleteBotResponse$,
|
|
1447
|
+
];
|
|
1448
|
+
var DeleteDataRetentionBot$ = [
|
|
1449
|
+
9,
|
|
1450
|
+
n0,
|
|
1451
|
+
_DDRB,
|
|
1452
|
+
{ [_ht]: ["DELETE", "/networks/{networkId}/data-retention-bots", 200] },
|
|
1453
|
+
() => DeleteDataRetentionBotRequest$,
|
|
1454
|
+
() => DeleteDataRetentionBotResponse$,
|
|
1455
|
+
];
|
|
1456
|
+
var DeleteNetwork$ = [
|
|
1457
|
+
9,
|
|
1458
|
+
n0,
|
|
1459
|
+
_DN,
|
|
1460
|
+
{ [_ht]: ["DELETE", "/networks/{networkId}", 200] },
|
|
1461
|
+
() => DeleteNetworkRequest$,
|
|
1462
|
+
() => DeleteNetworkResponse$,
|
|
1463
|
+
];
|
|
1464
|
+
var DeleteSecurityGroup$ = [
|
|
1465
|
+
9,
|
|
1466
|
+
n0,
|
|
1467
|
+
_DSG,
|
|
1468
|
+
{ [_ht]: ["DELETE", "/networks/{networkId}/security-groups/{groupId}", 200] },
|
|
1469
|
+
() => DeleteSecurityGroupRequest$,
|
|
1470
|
+
() => DeleteSecurityGroupResponse$,
|
|
1471
|
+
];
|
|
1472
|
+
var GetBot$ = [
|
|
1473
|
+
9,
|
|
1474
|
+
n0,
|
|
1475
|
+
_GB,
|
|
1476
|
+
{ [_ht]: ["GET", "/networks/{networkId}/bots/{botId}", 200] },
|
|
1477
|
+
() => GetBotRequest$,
|
|
1478
|
+
() => GetBotResponse$,
|
|
1479
|
+
];
|
|
1480
|
+
var GetBotsCount$ = [
|
|
1481
|
+
9,
|
|
1482
|
+
n0,
|
|
1483
|
+
_GBC,
|
|
1484
|
+
{ [_ht]: ["GET", "/networks/{networkId}/bots/count", 200] },
|
|
1485
|
+
() => GetBotsCountRequest$,
|
|
1486
|
+
() => GetBotsCountResponse$,
|
|
1487
|
+
];
|
|
1488
|
+
var GetDataRetentionBot$ = [
|
|
1489
|
+
9,
|
|
1490
|
+
n0,
|
|
1491
|
+
_GDRB,
|
|
1492
|
+
{ [_ht]: ["GET", "/networks/{networkId}/data-retention-bots", 200] },
|
|
1493
|
+
() => GetDataRetentionBotRequest$,
|
|
1494
|
+
() => GetDataRetentionBotResponse$,
|
|
1495
|
+
];
|
|
1496
|
+
var GetGuestUserHistoryCount$ = [
|
|
1497
|
+
9,
|
|
1498
|
+
n0,
|
|
1499
|
+
_GGUHC,
|
|
1500
|
+
{ [_ht]: ["GET", "/networks/{networkId}/guest-users/count", 200] },
|
|
1501
|
+
() => GetGuestUserHistoryCountRequest$,
|
|
1502
|
+
() => GetGuestUserHistoryCountResponse$,
|
|
1503
|
+
];
|
|
1504
|
+
var GetNetwork$ = [
|
|
1505
|
+
9,
|
|
1506
|
+
n0,
|
|
1507
|
+
_GN,
|
|
1508
|
+
{ [_ht]: ["GET", "/networks/{networkId}", 200] },
|
|
1509
|
+
() => GetNetworkRequest$,
|
|
1510
|
+
() => GetNetworkResponse$,
|
|
1511
|
+
];
|
|
1512
|
+
var GetNetworkSettings$ = [
|
|
1513
|
+
9,
|
|
1514
|
+
n0,
|
|
1515
|
+
_GNS,
|
|
1516
|
+
{ [_ht]: ["GET", "/networks/{networkId}/settings", 200] },
|
|
1517
|
+
() => GetNetworkSettingsRequest$,
|
|
1518
|
+
() => GetNetworkSettingsResponse$,
|
|
1519
|
+
];
|
|
1520
|
+
var GetOidcInfo$ = [
|
|
1521
|
+
9,
|
|
1522
|
+
n0,
|
|
1523
|
+
_GOI,
|
|
1524
|
+
{ [_ht]: ["GET", "/networks/{networkId}/oidc", 200] },
|
|
1525
|
+
() => GetOidcInfoRequest$,
|
|
1526
|
+
() => GetOidcInfoResponse$,
|
|
1527
|
+
];
|
|
1528
|
+
var GetSecurityGroup$ = [
|
|
1529
|
+
9,
|
|
1530
|
+
n0,
|
|
1531
|
+
_GSG,
|
|
1532
|
+
{ [_ht]: ["GET", "/networks/{networkId}/security-groups/{groupId}", 200] },
|
|
1533
|
+
() => GetSecurityGroupRequest$,
|
|
1534
|
+
() => GetSecurityGroupResponse$,
|
|
1535
|
+
];
|
|
1536
|
+
var GetUser$ = [
|
|
1537
|
+
9,
|
|
1538
|
+
n0,
|
|
1539
|
+
_GUe,
|
|
1540
|
+
{ [_ht]: ["GET", "/networks/{networkId}/users/{userId}", 200] },
|
|
1541
|
+
() => GetUserRequest$,
|
|
1542
|
+
() => GetUserResponse$,
|
|
1543
|
+
];
|
|
1544
|
+
var GetUsersCount$ = [
|
|
1545
|
+
9,
|
|
1546
|
+
n0,
|
|
1547
|
+
_GUC,
|
|
1548
|
+
{ [_ht]: ["GET", "/networks/{networkId}/users/count", 200] },
|
|
1549
|
+
() => GetUsersCountRequest$,
|
|
1550
|
+
() => GetUsersCountResponse$,
|
|
1551
|
+
];
|
|
1552
|
+
var ListBlockedGuestUsers$ = [
|
|
1553
|
+
9,
|
|
1554
|
+
n0,
|
|
1555
|
+
_LBGU,
|
|
1556
|
+
{ [_ht]: ["GET", "/networks/{networkId}/guest-users/blocklist", 200] },
|
|
1557
|
+
() => ListBlockedGuestUsersRequest$,
|
|
1558
|
+
() => ListBlockedGuestUsersResponse$,
|
|
1559
|
+
];
|
|
1560
|
+
var ListBots$ = [
|
|
1561
|
+
9,
|
|
1562
|
+
n0,
|
|
1563
|
+
_LB,
|
|
1564
|
+
{ [_ht]: ["GET", "/networks/{networkId}/bots", 200] },
|
|
1565
|
+
() => ListBotsRequest$,
|
|
1566
|
+
() => ListBotsResponse$,
|
|
1567
|
+
];
|
|
1568
|
+
var ListDevicesForUser$ = [
|
|
1569
|
+
9,
|
|
1570
|
+
n0,
|
|
1571
|
+
_LDFU,
|
|
1572
|
+
{ [_ht]: ["GET", "/networks/{networkId}/users/{userId}/devices", 200] },
|
|
1573
|
+
() => ListDevicesForUserRequest$,
|
|
1574
|
+
() => ListDevicesForUserResponse$,
|
|
1575
|
+
];
|
|
1576
|
+
var ListGuestUsers$ = [
|
|
1577
|
+
9,
|
|
1578
|
+
n0,
|
|
1579
|
+
_LGU,
|
|
1580
|
+
{ [_ht]: ["GET", "/networks/{networkId}/guest-users", 200] },
|
|
1581
|
+
() => ListGuestUsersRequest$,
|
|
1582
|
+
() => ListGuestUsersResponse$,
|
|
1583
|
+
];
|
|
1584
|
+
var ListNetworks$ = [
|
|
1585
|
+
9,
|
|
1586
|
+
n0,
|
|
1587
|
+
_LN,
|
|
1588
|
+
{ [_ht]: ["GET", "/networks", 200] },
|
|
1589
|
+
() => ListNetworksRequest$,
|
|
1590
|
+
() => ListNetworksResponse$,
|
|
1591
|
+
];
|
|
1592
|
+
var ListSecurityGroups$ = [
|
|
1593
|
+
9,
|
|
1594
|
+
n0,
|
|
1595
|
+
_LSG,
|
|
1596
|
+
{ [_ht]: ["GET", "/networks/{networkId}/security-groups", 200] },
|
|
1597
|
+
() => ListSecurityGroupsRequest$,
|
|
1598
|
+
() => ListSecurityGroupsResponse$,
|
|
1599
|
+
];
|
|
1600
|
+
var ListSecurityGroupUsers$ = [
|
|
1601
|
+
9,
|
|
1602
|
+
n0,
|
|
1603
|
+
_LSGU,
|
|
1604
|
+
{ [_ht]: ["GET", "/networks/{networkId}/security-groups/{groupId}/users", 200] },
|
|
1605
|
+
() => ListSecurityGroupUsersRequest$,
|
|
1606
|
+
() => ListSecurityGroupUsersResponse$,
|
|
1607
|
+
];
|
|
1608
|
+
var ListUsers$ = [
|
|
1609
|
+
9,
|
|
1610
|
+
n0,
|
|
1611
|
+
_LU,
|
|
1612
|
+
{ [_ht]: ["GET", "/networks/{networkId}/users", 200] },
|
|
1613
|
+
() => ListUsersRequest$,
|
|
1614
|
+
() => ListUsersResponse$,
|
|
1615
|
+
];
|
|
1616
|
+
var RegisterOidcConfig$ = [
|
|
1617
|
+
9,
|
|
1618
|
+
n0,
|
|
1619
|
+
_ROC,
|
|
1620
|
+
{ [_ht]: ["POST", "/networks/{networkId}/oidc/save", 200] },
|
|
1621
|
+
() => RegisterOidcConfigRequest$,
|
|
1622
|
+
() => RegisterOidcConfigResponse$,
|
|
1623
|
+
];
|
|
1624
|
+
var RegisterOidcConfigTest$ = [
|
|
1625
|
+
9,
|
|
1626
|
+
n0,
|
|
1627
|
+
_ROCT,
|
|
1628
|
+
{ [_ht]: ["POST", "/networks/{networkId}/oidc/test", 200] },
|
|
1629
|
+
() => RegisterOidcConfigTestRequest$,
|
|
1630
|
+
() => RegisterOidcConfigTestResponse$,
|
|
1631
|
+
];
|
|
1632
|
+
var UpdateBot$ = [
|
|
1633
|
+
9,
|
|
1634
|
+
n0,
|
|
1635
|
+
_UB,
|
|
1636
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/bots/{botId}", 200] },
|
|
1637
|
+
() => UpdateBotRequest$,
|
|
1638
|
+
() => UpdateBotResponse$,
|
|
1639
|
+
];
|
|
1640
|
+
var UpdateDataRetention$ = [
|
|
1641
|
+
9,
|
|
1642
|
+
n0,
|
|
1643
|
+
_UDR,
|
|
1644
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/data-retention-bots", 200] },
|
|
1645
|
+
() => UpdateDataRetentionRequest$,
|
|
1646
|
+
() => UpdateDataRetentionResponse$,
|
|
1647
|
+
];
|
|
1648
|
+
var UpdateGuestUser$ = [
|
|
1649
|
+
9,
|
|
1650
|
+
n0,
|
|
1651
|
+
_UGU,
|
|
1652
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/guest-users/{usernameHash}", 200] },
|
|
1653
|
+
() => UpdateGuestUserRequest$,
|
|
1654
|
+
() => UpdateGuestUserResponse$,
|
|
1655
|
+
];
|
|
1656
|
+
var UpdateNetwork$ = [
|
|
1657
|
+
9,
|
|
1658
|
+
n0,
|
|
1659
|
+
_UN,
|
|
1660
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}", 200] },
|
|
1661
|
+
() => UpdateNetworkRequest$,
|
|
1662
|
+
() => UpdateNetworkResponse$,
|
|
1663
|
+
];
|
|
1664
|
+
var UpdateNetworkSettings$ = [
|
|
1665
|
+
9,
|
|
1666
|
+
n0,
|
|
1667
|
+
_UNS,
|
|
1668
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/settings", 200] },
|
|
1669
|
+
() => UpdateNetworkSettingsRequest$,
|
|
1670
|
+
() => UpdateNetworkSettingsResponse$,
|
|
1671
|
+
];
|
|
1672
|
+
var UpdateSecurityGroup$ = [
|
|
1673
|
+
9,
|
|
1674
|
+
n0,
|
|
1675
|
+
_USG,
|
|
1676
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/security-groups/{groupId}", 200] },
|
|
1677
|
+
() => UpdateSecurityGroupRequest$,
|
|
1678
|
+
() => UpdateSecurityGroupResponse$,
|
|
1679
|
+
];
|
|
1680
|
+
var UpdateUser$ = [
|
|
1681
|
+
9,
|
|
1682
|
+
n0,
|
|
1683
|
+
_UU,
|
|
1684
|
+
{ [_ht]: ["PATCH", "/networks/{networkId}/users", 200] },
|
|
1685
|
+
() => UpdateUserRequest$,
|
|
1686
|
+
() => UpdateUserResponse$,
|
|
1687
|
+
];
|
|
1688
|
+
|
|
1689
|
+
class BatchCreateUserCommand extends smithyClient.Command
|
|
1690
|
+
.classBuilder()
|
|
1691
|
+
.ep(commonParams)
|
|
1692
|
+
.m(function (Command, cs, config, o) {
|
|
1693
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1694
|
+
})
|
|
1695
|
+
.s("WickrAdminApi", "BatchCreateUser", {})
|
|
1696
|
+
.n("WickrClient", "BatchCreateUserCommand")
|
|
1697
|
+
.sc(BatchCreateUser$)
|
|
1698
|
+
.build() {
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
class BatchDeleteUserCommand extends smithyClient.Command
|
|
1702
|
+
.classBuilder()
|
|
1703
|
+
.ep(commonParams)
|
|
1704
|
+
.m(function (Command, cs, config, o) {
|
|
1705
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1706
|
+
})
|
|
1707
|
+
.s("WickrAdminApi", "BatchDeleteUser", {})
|
|
1708
|
+
.n("WickrClient", "BatchDeleteUserCommand")
|
|
1709
|
+
.sc(BatchDeleteUser$)
|
|
1710
|
+
.build() {
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
class BatchLookupUserUnameCommand extends smithyClient.Command
|
|
1714
|
+
.classBuilder()
|
|
1715
|
+
.ep(commonParams)
|
|
1716
|
+
.m(function (Command, cs, config, o) {
|
|
1717
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1718
|
+
})
|
|
1719
|
+
.s("WickrAdminApi", "BatchLookupUserUname", {})
|
|
1720
|
+
.n("WickrClient", "BatchLookupUserUnameCommand")
|
|
1721
|
+
.sc(BatchLookupUserUname$)
|
|
1722
|
+
.build() {
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
class BatchReinviteUserCommand extends smithyClient.Command
|
|
1726
|
+
.classBuilder()
|
|
1727
|
+
.ep(commonParams)
|
|
1728
|
+
.m(function (Command, cs, config, o) {
|
|
1729
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1730
|
+
})
|
|
1731
|
+
.s("WickrAdminApi", "BatchReinviteUser", {})
|
|
1732
|
+
.n("WickrClient", "BatchReinviteUserCommand")
|
|
1733
|
+
.sc(BatchReinviteUser$)
|
|
1734
|
+
.build() {
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
class BatchResetDevicesForUserCommand extends smithyClient.Command
|
|
1738
|
+
.classBuilder()
|
|
1739
|
+
.ep(commonParams)
|
|
1740
|
+
.m(function (Command, cs, config, o) {
|
|
1741
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1742
|
+
})
|
|
1743
|
+
.s("WickrAdminApi", "BatchResetDevicesForUser", {})
|
|
1744
|
+
.n("WickrClient", "BatchResetDevicesForUserCommand")
|
|
1745
|
+
.sc(BatchResetDevicesForUser$)
|
|
1746
|
+
.build() {
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
class BatchToggleUserSuspendStatusCommand extends smithyClient.Command
|
|
1750
|
+
.classBuilder()
|
|
1751
|
+
.ep(commonParams)
|
|
1752
|
+
.m(function (Command, cs, config, o) {
|
|
1753
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1754
|
+
})
|
|
1755
|
+
.s("WickrAdminApi", "BatchToggleUserSuspendStatus", {})
|
|
1756
|
+
.n("WickrClient", "BatchToggleUserSuspendStatusCommand")
|
|
1757
|
+
.sc(BatchToggleUserSuspendStatus$)
|
|
1758
|
+
.build() {
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
class CreateBotCommand extends smithyClient.Command
|
|
1762
|
+
.classBuilder()
|
|
1763
|
+
.ep(commonParams)
|
|
1764
|
+
.m(function (Command, cs, config, o) {
|
|
1765
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1766
|
+
})
|
|
1767
|
+
.s("WickrAdminApi", "CreateBot", {})
|
|
1768
|
+
.n("WickrClient", "CreateBotCommand")
|
|
1769
|
+
.sc(CreateBot$)
|
|
1770
|
+
.build() {
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
class CreateDataRetentionBotChallengeCommand extends smithyClient.Command
|
|
1774
|
+
.classBuilder()
|
|
1775
|
+
.ep(commonParams)
|
|
1776
|
+
.m(function (Command, cs, config, o) {
|
|
1777
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1778
|
+
})
|
|
1779
|
+
.s("WickrAdminApi", "CreateDataRetentionBotChallenge", {})
|
|
1780
|
+
.n("WickrClient", "CreateDataRetentionBotChallengeCommand")
|
|
1781
|
+
.sc(CreateDataRetentionBotChallenge$)
|
|
1782
|
+
.build() {
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
class CreateDataRetentionBotCommand extends smithyClient.Command
|
|
1786
|
+
.classBuilder()
|
|
1787
|
+
.ep(commonParams)
|
|
1788
|
+
.m(function (Command, cs, config, o) {
|
|
1789
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1790
|
+
})
|
|
1791
|
+
.s("WickrAdminApi", "CreateDataRetentionBot", {})
|
|
1792
|
+
.n("WickrClient", "CreateDataRetentionBotCommand")
|
|
1793
|
+
.sc(CreateDataRetentionBot$)
|
|
1794
|
+
.build() {
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
class CreateNetworkCommand extends smithyClient.Command
|
|
1798
|
+
.classBuilder()
|
|
1799
|
+
.ep(commonParams)
|
|
1800
|
+
.m(function (Command, cs, config, o) {
|
|
1801
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1802
|
+
})
|
|
1803
|
+
.s("WickrAdminApi", "CreateNetwork", {})
|
|
1804
|
+
.n("WickrClient", "CreateNetworkCommand")
|
|
1805
|
+
.sc(CreateNetwork$)
|
|
1806
|
+
.build() {
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
class CreateSecurityGroupCommand extends smithyClient.Command
|
|
1810
|
+
.classBuilder()
|
|
1811
|
+
.ep(commonParams)
|
|
1812
|
+
.m(function (Command, cs, config, o) {
|
|
1813
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1814
|
+
})
|
|
1815
|
+
.s("WickrAdminApi", "CreateSecurityGroup", {})
|
|
1816
|
+
.n("WickrClient", "CreateSecurityGroupCommand")
|
|
1817
|
+
.sc(CreateSecurityGroup$)
|
|
1818
|
+
.build() {
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
class DeleteBotCommand extends smithyClient.Command
|
|
1822
|
+
.classBuilder()
|
|
1823
|
+
.ep(commonParams)
|
|
1824
|
+
.m(function (Command, cs, config, o) {
|
|
1825
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1826
|
+
})
|
|
1827
|
+
.s("WickrAdminApi", "DeleteBot", {})
|
|
1828
|
+
.n("WickrClient", "DeleteBotCommand")
|
|
1829
|
+
.sc(DeleteBot$)
|
|
1830
|
+
.build() {
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
class DeleteDataRetentionBotCommand extends smithyClient.Command
|
|
1834
|
+
.classBuilder()
|
|
1835
|
+
.ep(commonParams)
|
|
1836
|
+
.m(function (Command, cs, config, o) {
|
|
1837
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1838
|
+
})
|
|
1839
|
+
.s("WickrAdminApi", "DeleteDataRetentionBot", {})
|
|
1840
|
+
.n("WickrClient", "DeleteDataRetentionBotCommand")
|
|
1841
|
+
.sc(DeleteDataRetentionBot$)
|
|
1842
|
+
.build() {
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
class DeleteNetworkCommand extends smithyClient.Command
|
|
1846
|
+
.classBuilder()
|
|
1847
|
+
.ep(commonParams)
|
|
1848
|
+
.m(function (Command, cs, config, o) {
|
|
1849
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1850
|
+
})
|
|
1851
|
+
.s("WickrAdminApi", "DeleteNetwork", {})
|
|
1852
|
+
.n("WickrClient", "DeleteNetworkCommand")
|
|
1853
|
+
.sc(DeleteNetwork$)
|
|
1854
|
+
.build() {
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
class DeleteSecurityGroupCommand extends smithyClient.Command
|
|
1858
|
+
.classBuilder()
|
|
1859
|
+
.ep(commonParams)
|
|
1860
|
+
.m(function (Command, cs, config, o) {
|
|
1861
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1862
|
+
})
|
|
1863
|
+
.s("WickrAdminApi", "DeleteSecurityGroup", {})
|
|
1864
|
+
.n("WickrClient", "DeleteSecurityGroupCommand")
|
|
1865
|
+
.sc(DeleteSecurityGroup$)
|
|
1866
|
+
.build() {
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
class GetBotCommand extends smithyClient.Command
|
|
1870
|
+
.classBuilder()
|
|
1871
|
+
.ep(commonParams)
|
|
1872
|
+
.m(function (Command, cs, config, o) {
|
|
1873
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1874
|
+
})
|
|
1875
|
+
.s("WickrAdminApi", "GetBot", {})
|
|
1876
|
+
.n("WickrClient", "GetBotCommand")
|
|
1877
|
+
.sc(GetBot$)
|
|
1878
|
+
.build() {
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
class GetBotsCountCommand extends smithyClient.Command
|
|
1882
|
+
.classBuilder()
|
|
1883
|
+
.ep(commonParams)
|
|
1884
|
+
.m(function (Command, cs, config, o) {
|
|
1885
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1886
|
+
})
|
|
1887
|
+
.s("WickrAdminApi", "GetBotsCount", {})
|
|
1888
|
+
.n("WickrClient", "GetBotsCountCommand")
|
|
1889
|
+
.sc(GetBotsCount$)
|
|
1890
|
+
.build() {
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
class GetDataRetentionBotCommand extends smithyClient.Command
|
|
1894
|
+
.classBuilder()
|
|
1895
|
+
.ep(commonParams)
|
|
1896
|
+
.m(function (Command, cs, config, o) {
|
|
1897
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1898
|
+
})
|
|
1899
|
+
.s("WickrAdminApi", "GetDataRetentionBot", {})
|
|
1900
|
+
.n("WickrClient", "GetDataRetentionBotCommand")
|
|
1901
|
+
.sc(GetDataRetentionBot$)
|
|
1902
|
+
.build() {
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
class GetGuestUserHistoryCountCommand extends smithyClient.Command
|
|
1906
|
+
.classBuilder()
|
|
1907
|
+
.ep(commonParams)
|
|
1908
|
+
.m(function (Command, cs, config, o) {
|
|
1909
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1910
|
+
})
|
|
1911
|
+
.s("WickrAdminApi", "GetGuestUserHistoryCount", {})
|
|
1912
|
+
.n("WickrClient", "GetGuestUserHistoryCountCommand")
|
|
1913
|
+
.sc(GetGuestUserHistoryCount$)
|
|
1914
|
+
.build() {
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
class GetNetworkCommand extends smithyClient.Command
|
|
1918
|
+
.classBuilder()
|
|
1919
|
+
.ep(commonParams)
|
|
1920
|
+
.m(function (Command, cs, config, o) {
|
|
1921
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1922
|
+
})
|
|
1923
|
+
.s("WickrAdminApi", "GetNetwork", {})
|
|
1924
|
+
.n("WickrClient", "GetNetworkCommand")
|
|
1925
|
+
.sc(GetNetwork$)
|
|
1926
|
+
.build() {
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
class GetNetworkSettingsCommand extends smithyClient.Command
|
|
1930
|
+
.classBuilder()
|
|
1931
|
+
.ep(commonParams)
|
|
1932
|
+
.m(function (Command, cs, config, o) {
|
|
1933
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1934
|
+
})
|
|
1935
|
+
.s("WickrAdminApi", "GetNetworkSettings", {})
|
|
1936
|
+
.n("WickrClient", "GetNetworkSettingsCommand")
|
|
1937
|
+
.sc(GetNetworkSettings$)
|
|
1938
|
+
.build() {
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
class GetOidcInfoCommand extends smithyClient.Command
|
|
1942
|
+
.classBuilder()
|
|
1943
|
+
.ep(commonParams)
|
|
1944
|
+
.m(function (Command, cs, config, o) {
|
|
1945
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1946
|
+
})
|
|
1947
|
+
.s("WickrAdminApi", "GetOidcInfo", {})
|
|
1948
|
+
.n("WickrClient", "GetOidcInfoCommand")
|
|
1949
|
+
.sc(GetOidcInfo$)
|
|
1950
|
+
.build() {
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
class GetSecurityGroupCommand extends smithyClient.Command
|
|
1954
|
+
.classBuilder()
|
|
1955
|
+
.ep(commonParams)
|
|
1956
|
+
.m(function (Command, cs, config, o) {
|
|
1957
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1958
|
+
})
|
|
1959
|
+
.s("WickrAdminApi", "GetSecurityGroup", {})
|
|
1960
|
+
.n("WickrClient", "GetSecurityGroupCommand")
|
|
1961
|
+
.sc(GetSecurityGroup$)
|
|
1962
|
+
.build() {
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
class GetUserCommand extends smithyClient.Command
|
|
1966
|
+
.classBuilder()
|
|
1967
|
+
.ep(commonParams)
|
|
1968
|
+
.m(function (Command, cs, config, o) {
|
|
1969
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1970
|
+
})
|
|
1971
|
+
.s("WickrAdminApi", "GetUser", {})
|
|
1972
|
+
.n("WickrClient", "GetUserCommand")
|
|
1973
|
+
.sc(GetUser$)
|
|
1974
|
+
.build() {
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
class GetUsersCountCommand extends smithyClient.Command
|
|
1978
|
+
.classBuilder()
|
|
1979
|
+
.ep(commonParams)
|
|
1980
|
+
.m(function (Command, cs, config, o) {
|
|
1981
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1982
|
+
})
|
|
1983
|
+
.s("WickrAdminApi", "GetUsersCount", {})
|
|
1984
|
+
.n("WickrClient", "GetUsersCountCommand")
|
|
1985
|
+
.sc(GetUsersCount$)
|
|
1986
|
+
.build() {
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
class ListBlockedGuestUsersCommand extends smithyClient.Command
|
|
1990
|
+
.classBuilder()
|
|
1991
|
+
.ep(commonParams)
|
|
1992
|
+
.m(function (Command, cs, config, o) {
|
|
1993
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1994
|
+
})
|
|
1995
|
+
.s("WickrAdminApi", "ListBlockedGuestUsers", {})
|
|
1996
|
+
.n("WickrClient", "ListBlockedGuestUsersCommand")
|
|
1997
|
+
.sc(ListBlockedGuestUsers$)
|
|
1998
|
+
.build() {
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
class ListBotsCommand extends smithyClient.Command
|
|
2002
|
+
.classBuilder()
|
|
2003
|
+
.ep(commonParams)
|
|
2004
|
+
.m(function (Command, cs, config, o) {
|
|
2005
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2006
|
+
})
|
|
2007
|
+
.s("WickrAdminApi", "ListBots", {})
|
|
2008
|
+
.n("WickrClient", "ListBotsCommand")
|
|
2009
|
+
.sc(ListBots$)
|
|
2010
|
+
.build() {
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
class ListDevicesForUserCommand extends smithyClient.Command
|
|
2014
|
+
.classBuilder()
|
|
2015
|
+
.ep(commonParams)
|
|
2016
|
+
.m(function (Command, cs, config, o) {
|
|
2017
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2018
|
+
})
|
|
2019
|
+
.s("WickrAdminApi", "ListDevicesForUser", {})
|
|
2020
|
+
.n("WickrClient", "ListDevicesForUserCommand")
|
|
2021
|
+
.sc(ListDevicesForUser$)
|
|
2022
|
+
.build() {
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
class ListGuestUsersCommand extends smithyClient.Command
|
|
2026
|
+
.classBuilder()
|
|
2027
|
+
.ep(commonParams)
|
|
2028
|
+
.m(function (Command, cs, config, o) {
|
|
2029
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2030
|
+
})
|
|
2031
|
+
.s("WickrAdminApi", "ListGuestUsers", {})
|
|
2032
|
+
.n("WickrClient", "ListGuestUsersCommand")
|
|
2033
|
+
.sc(ListGuestUsers$)
|
|
2034
|
+
.build() {
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
class ListNetworksCommand extends smithyClient.Command
|
|
2038
|
+
.classBuilder()
|
|
2039
|
+
.ep(commonParams)
|
|
2040
|
+
.m(function (Command, cs, config, o) {
|
|
2041
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2042
|
+
})
|
|
2043
|
+
.s("WickrAdminApi", "ListNetworks", {})
|
|
2044
|
+
.n("WickrClient", "ListNetworksCommand")
|
|
2045
|
+
.sc(ListNetworks$)
|
|
2046
|
+
.build() {
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
class ListSecurityGroupsCommand extends smithyClient.Command
|
|
2050
|
+
.classBuilder()
|
|
2051
|
+
.ep(commonParams)
|
|
2052
|
+
.m(function (Command, cs, config, o) {
|
|
2053
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2054
|
+
})
|
|
2055
|
+
.s("WickrAdminApi", "ListSecurityGroups", {})
|
|
2056
|
+
.n("WickrClient", "ListSecurityGroupsCommand")
|
|
2057
|
+
.sc(ListSecurityGroups$)
|
|
2058
|
+
.build() {
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
class ListSecurityGroupUsersCommand extends smithyClient.Command
|
|
2062
|
+
.classBuilder()
|
|
2063
|
+
.ep(commonParams)
|
|
2064
|
+
.m(function (Command, cs, config, o) {
|
|
2065
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2066
|
+
})
|
|
2067
|
+
.s("WickrAdminApi", "ListSecurityGroupUsers", {})
|
|
2068
|
+
.n("WickrClient", "ListSecurityGroupUsersCommand")
|
|
2069
|
+
.sc(ListSecurityGroupUsers$)
|
|
2070
|
+
.build() {
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
class ListUsersCommand extends smithyClient.Command
|
|
2074
|
+
.classBuilder()
|
|
2075
|
+
.ep(commonParams)
|
|
2076
|
+
.m(function (Command, cs, config, o) {
|
|
2077
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2078
|
+
})
|
|
2079
|
+
.s("WickrAdminApi", "ListUsers", {})
|
|
2080
|
+
.n("WickrClient", "ListUsersCommand")
|
|
2081
|
+
.sc(ListUsers$)
|
|
2082
|
+
.build() {
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
class RegisterOidcConfigCommand extends smithyClient.Command
|
|
2086
|
+
.classBuilder()
|
|
2087
|
+
.ep(commonParams)
|
|
2088
|
+
.m(function (Command, cs, config, o) {
|
|
2089
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2090
|
+
})
|
|
2091
|
+
.s("WickrAdminApi", "RegisterOidcConfig", {})
|
|
2092
|
+
.n("WickrClient", "RegisterOidcConfigCommand")
|
|
2093
|
+
.sc(RegisterOidcConfig$)
|
|
2094
|
+
.build() {
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
class RegisterOidcConfigTestCommand extends smithyClient.Command
|
|
2098
|
+
.classBuilder()
|
|
2099
|
+
.ep(commonParams)
|
|
2100
|
+
.m(function (Command, cs, config, o) {
|
|
2101
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2102
|
+
})
|
|
2103
|
+
.s("WickrAdminApi", "RegisterOidcConfigTest", {})
|
|
2104
|
+
.n("WickrClient", "RegisterOidcConfigTestCommand")
|
|
2105
|
+
.sc(RegisterOidcConfigTest$)
|
|
2106
|
+
.build() {
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
class UpdateBotCommand extends smithyClient.Command
|
|
2110
|
+
.classBuilder()
|
|
2111
|
+
.ep(commonParams)
|
|
2112
|
+
.m(function (Command, cs, config, o) {
|
|
2113
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2114
|
+
})
|
|
2115
|
+
.s("WickrAdminApi", "UpdateBot", {})
|
|
2116
|
+
.n("WickrClient", "UpdateBotCommand")
|
|
2117
|
+
.sc(UpdateBot$)
|
|
2118
|
+
.build() {
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
class UpdateDataRetentionCommand extends smithyClient.Command
|
|
2122
|
+
.classBuilder()
|
|
2123
|
+
.ep(commonParams)
|
|
2124
|
+
.m(function (Command, cs, config, o) {
|
|
2125
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2126
|
+
})
|
|
2127
|
+
.s("WickrAdminApi", "UpdateDataRetention", {})
|
|
2128
|
+
.n("WickrClient", "UpdateDataRetentionCommand")
|
|
2129
|
+
.sc(UpdateDataRetention$)
|
|
2130
|
+
.build() {
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2133
|
+
class UpdateGuestUserCommand extends smithyClient.Command
|
|
2134
|
+
.classBuilder()
|
|
2135
|
+
.ep(commonParams)
|
|
2136
|
+
.m(function (Command, cs, config, o) {
|
|
2137
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2138
|
+
})
|
|
2139
|
+
.s("WickrAdminApi", "UpdateGuestUser", {})
|
|
2140
|
+
.n("WickrClient", "UpdateGuestUserCommand")
|
|
2141
|
+
.sc(UpdateGuestUser$)
|
|
2142
|
+
.build() {
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
class UpdateNetworkCommand extends smithyClient.Command
|
|
2146
|
+
.classBuilder()
|
|
2147
|
+
.ep(commonParams)
|
|
2148
|
+
.m(function (Command, cs, config, o) {
|
|
2149
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2150
|
+
})
|
|
2151
|
+
.s("WickrAdminApi", "UpdateNetwork", {})
|
|
2152
|
+
.n("WickrClient", "UpdateNetworkCommand")
|
|
2153
|
+
.sc(UpdateNetwork$)
|
|
2154
|
+
.build() {
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
class UpdateNetworkSettingsCommand extends smithyClient.Command
|
|
2158
|
+
.classBuilder()
|
|
2159
|
+
.ep(commonParams)
|
|
2160
|
+
.m(function (Command, cs, config, o) {
|
|
2161
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2162
|
+
})
|
|
2163
|
+
.s("WickrAdminApi", "UpdateNetworkSettings", {})
|
|
2164
|
+
.n("WickrClient", "UpdateNetworkSettingsCommand")
|
|
2165
|
+
.sc(UpdateNetworkSettings$)
|
|
2166
|
+
.build() {
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
class UpdateSecurityGroupCommand extends smithyClient.Command
|
|
2170
|
+
.classBuilder()
|
|
2171
|
+
.ep(commonParams)
|
|
2172
|
+
.m(function (Command, cs, config, o) {
|
|
2173
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2174
|
+
})
|
|
2175
|
+
.s("WickrAdminApi", "UpdateSecurityGroup", {})
|
|
2176
|
+
.n("WickrClient", "UpdateSecurityGroupCommand")
|
|
2177
|
+
.sc(UpdateSecurityGroup$)
|
|
2178
|
+
.build() {
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
class UpdateUserCommand extends smithyClient.Command
|
|
2182
|
+
.classBuilder()
|
|
2183
|
+
.ep(commonParams)
|
|
2184
|
+
.m(function (Command, cs, config, o) {
|
|
2185
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2186
|
+
})
|
|
2187
|
+
.s("WickrAdminApi", "UpdateUser", {})
|
|
2188
|
+
.n("WickrClient", "UpdateUserCommand")
|
|
2189
|
+
.sc(UpdateUser$)
|
|
2190
|
+
.build() {
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
const commands = {
|
|
2194
|
+
BatchCreateUserCommand,
|
|
2195
|
+
BatchDeleteUserCommand,
|
|
2196
|
+
BatchLookupUserUnameCommand,
|
|
2197
|
+
BatchReinviteUserCommand,
|
|
2198
|
+
BatchResetDevicesForUserCommand,
|
|
2199
|
+
BatchToggleUserSuspendStatusCommand,
|
|
2200
|
+
CreateBotCommand,
|
|
2201
|
+
CreateDataRetentionBotCommand,
|
|
2202
|
+
CreateDataRetentionBotChallengeCommand,
|
|
2203
|
+
CreateNetworkCommand,
|
|
2204
|
+
CreateSecurityGroupCommand,
|
|
2205
|
+
DeleteBotCommand,
|
|
2206
|
+
DeleteDataRetentionBotCommand,
|
|
2207
|
+
DeleteNetworkCommand,
|
|
2208
|
+
DeleteSecurityGroupCommand,
|
|
2209
|
+
GetBotCommand,
|
|
2210
|
+
GetBotsCountCommand,
|
|
2211
|
+
GetDataRetentionBotCommand,
|
|
2212
|
+
GetGuestUserHistoryCountCommand,
|
|
2213
|
+
GetNetworkCommand,
|
|
2214
|
+
GetNetworkSettingsCommand,
|
|
2215
|
+
GetOidcInfoCommand,
|
|
2216
|
+
GetSecurityGroupCommand,
|
|
2217
|
+
GetUserCommand,
|
|
2218
|
+
GetUsersCountCommand,
|
|
2219
|
+
ListBlockedGuestUsersCommand,
|
|
2220
|
+
ListBotsCommand,
|
|
2221
|
+
ListDevicesForUserCommand,
|
|
2222
|
+
ListGuestUsersCommand,
|
|
2223
|
+
ListNetworksCommand,
|
|
2224
|
+
ListSecurityGroupsCommand,
|
|
2225
|
+
ListSecurityGroupUsersCommand,
|
|
2226
|
+
ListUsersCommand,
|
|
2227
|
+
RegisterOidcConfigCommand,
|
|
2228
|
+
RegisterOidcConfigTestCommand,
|
|
2229
|
+
UpdateBotCommand,
|
|
2230
|
+
UpdateDataRetentionCommand,
|
|
2231
|
+
UpdateGuestUserCommand,
|
|
2232
|
+
UpdateNetworkCommand,
|
|
2233
|
+
UpdateNetworkSettingsCommand,
|
|
2234
|
+
UpdateSecurityGroupCommand,
|
|
2235
|
+
UpdateUserCommand,
|
|
2236
|
+
};
|
|
2237
|
+
class Wickr extends WickrClient {
|
|
2238
|
+
}
|
|
2239
|
+
smithyClient.createAggregatedClient(commands, Wickr);
|
|
2240
|
+
|
|
2241
|
+
const paginateListBlockedGuestUsers = core.createPaginator(WickrClient, ListBlockedGuestUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
2242
|
+
|
|
2243
|
+
const paginateListBots = core.createPaginator(WickrClient, ListBotsCommand, "nextToken", "nextToken", "maxResults");
|
|
2244
|
+
|
|
2245
|
+
const paginateListDevicesForUser = core.createPaginator(WickrClient, ListDevicesForUserCommand, "nextToken", "nextToken", "maxResults");
|
|
2246
|
+
|
|
2247
|
+
const paginateListGuestUsers = core.createPaginator(WickrClient, ListGuestUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
2248
|
+
|
|
2249
|
+
const paginateListNetworks = core.createPaginator(WickrClient, ListNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
2250
|
+
|
|
2251
|
+
const paginateListSecurityGroupUsers = core.createPaginator(WickrClient, ListSecurityGroupUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
2252
|
+
|
|
2253
|
+
const paginateListSecurityGroups = core.createPaginator(WickrClient, ListSecurityGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
2254
|
+
|
|
2255
|
+
const paginateListUsers = core.createPaginator(WickrClient, ListUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
2256
|
+
|
|
2257
|
+
const AccessLevel = {
|
|
2258
|
+
PREMIUM: "PREMIUM",
|
|
2259
|
+
STANDARD: "STANDARD",
|
|
2260
|
+
};
|
|
2261
|
+
exports.BotStatus = void 0;
|
|
2262
|
+
(function (BotStatus) {
|
|
2263
|
+
BotStatus[BotStatus["PENDING"] = 1] = "PENDING";
|
|
2264
|
+
BotStatus[BotStatus["ACTIVE"] = 2] = "ACTIVE";
|
|
2265
|
+
})(exports.BotStatus || (exports.BotStatus = {}));
|
|
2266
|
+
const DataRetentionActionType = {
|
|
2267
|
+
DISABLE: "DISABLE",
|
|
2268
|
+
ENABLE: "ENABLE",
|
|
2269
|
+
PUBKEY_MSG_ACK: "PUBKEY_MSG_ACK",
|
|
2270
|
+
};
|
|
2271
|
+
const SortDirection = {
|
|
2272
|
+
ASC: "ASC",
|
|
2273
|
+
DESC: "DESC",
|
|
2274
|
+
};
|
|
2275
|
+
exports.UserStatus = void 0;
|
|
2276
|
+
(function (UserStatus) {
|
|
2277
|
+
UserStatus[UserStatus["PENDING"] = 1] = "PENDING";
|
|
2278
|
+
UserStatus[UserStatus["ACTIVE"] = 2] = "ACTIVE";
|
|
2279
|
+
})(exports.UserStatus || (exports.UserStatus = {}));
|
|
2280
|
+
const Status = {
|
|
2281
|
+
DISABLED: "DISABLED",
|
|
2282
|
+
ENABLED: "ENABLED",
|
|
2283
|
+
FORCE_ENABLED: "FORCE_ENABLED",
|
|
2284
|
+
};
|
|
2285
|
+
|
|
2286
|
+
Object.defineProperty(exports, "$Command", {
|
|
2287
|
+
enumerable: true,
|
|
2288
|
+
get: function () { return smithyClient.Command; }
|
|
2289
|
+
});
|
|
2290
|
+
Object.defineProperty(exports, "__Client", {
|
|
2291
|
+
enumerable: true,
|
|
2292
|
+
get: function () { return smithyClient.Client; }
|
|
2293
|
+
});
|
|
2294
|
+
exports.AccessLevel = AccessLevel;
|
|
2295
|
+
exports.BadRequestError = BadRequestError;
|
|
2296
|
+
exports.BadRequestError$ = BadRequestError$;
|
|
2297
|
+
exports.BasicDeviceObject$ = BasicDeviceObject$;
|
|
2298
|
+
exports.BatchCreateUser$ = BatchCreateUser$;
|
|
2299
|
+
exports.BatchCreateUserCommand = BatchCreateUserCommand;
|
|
2300
|
+
exports.BatchCreateUserRequest$ = BatchCreateUserRequest$;
|
|
2301
|
+
exports.BatchCreateUserRequestItem$ = BatchCreateUserRequestItem$;
|
|
2302
|
+
exports.BatchCreateUserResponse$ = BatchCreateUserResponse$;
|
|
2303
|
+
exports.BatchDeleteUser$ = BatchDeleteUser$;
|
|
2304
|
+
exports.BatchDeleteUserCommand = BatchDeleteUserCommand;
|
|
2305
|
+
exports.BatchDeleteUserRequest$ = BatchDeleteUserRequest$;
|
|
2306
|
+
exports.BatchDeleteUserResponse$ = BatchDeleteUserResponse$;
|
|
2307
|
+
exports.BatchDeviceErrorResponseItem$ = BatchDeviceErrorResponseItem$;
|
|
2308
|
+
exports.BatchDeviceSuccessResponseItem$ = BatchDeviceSuccessResponseItem$;
|
|
2309
|
+
exports.BatchLookupUserUname$ = BatchLookupUserUname$;
|
|
2310
|
+
exports.BatchLookupUserUnameCommand = BatchLookupUserUnameCommand;
|
|
2311
|
+
exports.BatchLookupUserUnameRequest$ = BatchLookupUserUnameRequest$;
|
|
2312
|
+
exports.BatchLookupUserUnameResponse$ = BatchLookupUserUnameResponse$;
|
|
2313
|
+
exports.BatchReinviteUser$ = BatchReinviteUser$;
|
|
2314
|
+
exports.BatchReinviteUserCommand = BatchReinviteUserCommand;
|
|
2315
|
+
exports.BatchReinviteUserRequest$ = BatchReinviteUserRequest$;
|
|
2316
|
+
exports.BatchReinviteUserResponse$ = BatchReinviteUserResponse$;
|
|
2317
|
+
exports.BatchResetDevicesForUser$ = BatchResetDevicesForUser$;
|
|
2318
|
+
exports.BatchResetDevicesForUserCommand = BatchResetDevicesForUserCommand;
|
|
2319
|
+
exports.BatchResetDevicesForUserRequest$ = BatchResetDevicesForUserRequest$;
|
|
2320
|
+
exports.BatchResetDevicesForUserResponse$ = BatchResetDevicesForUserResponse$;
|
|
2321
|
+
exports.BatchToggleUserSuspendStatus$ = BatchToggleUserSuspendStatus$;
|
|
2322
|
+
exports.BatchToggleUserSuspendStatusCommand = BatchToggleUserSuspendStatusCommand;
|
|
2323
|
+
exports.BatchToggleUserSuspendStatusRequest$ = BatchToggleUserSuspendStatusRequest$;
|
|
2324
|
+
exports.BatchToggleUserSuspendStatusResponse$ = BatchToggleUserSuspendStatusResponse$;
|
|
2325
|
+
exports.BatchUnameErrorResponseItem$ = BatchUnameErrorResponseItem$;
|
|
2326
|
+
exports.BatchUnameSuccessResponseItem$ = BatchUnameSuccessResponseItem$;
|
|
2327
|
+
exports.BatchUserErrorResponseItem$ = BatchUserErrorResponseItem$;
|
|
2328
|
+
exports.BatchUserSuccessResponseItem$ = BatchUserSuccessResponseItem$;
|
|
2329
|
+
exports.BlockedGuestUser$ = BlockedGuestUser$;
|
|
2330
|
+
exports.Bot$ = Bot$;
|
|
2331
|
+
exports.CallingSettings$ = CallingSettings$;
|
|
2332
|
+
exports.CreateBot$ = CreateBot$;
|
|
2333
|
+
exports.CreateBotCommand = CreateBotCommand;
|
|
2334
|
+
exports.CreateBotRequest$ = CreateBotRequest$;
|
|
2335
|
+
exports.CreateBotResponse$ = CreateBotResponse$;
|
|
2336
|
+
exports.CreateDataRetentionBot$ = CreateDataRetentionBot$;
|
|
2337
|
+
exports.CreateDataRetentionBotChallenge$ = CreateDataRetentionBotChallenge$;
|
|
2338
|
+
exports.CreateDataRetentionBotChallengeCommand = CreateDataRetentionBotChallengeCommand;
|
|
2339
|
+
exports.CreateDataRetentionBotChallengeRequest$ = CreateDataRetentionBotChallengeRequest$;
|
|
2340
|
+
exports.CreateDataRetentionBotChallengeResponse$ = CreateDataRetentionBotChallengeResponse$;
|
|
2341
|
+
exports.CreateDataRetentionBotCommand = CreateDataRetentionBotCommand;
|
|
2342
|
+
exports.CreateDataRetentionBotRequest$ = CreateDataRetentionBotRequest$;
|
|
2343
|
+
exports.CreateDataRetentionBotResponse$ = CreateDataRetentionBotResponse$;
|
|
2344
|
+
exports.CreateNetwork$ = CreateNetwork$;
|
|
2345
|
+
exports.CreateNetworkCommand = CreateNetworkCommand;
|
|
2346
|
+
exports.CreateNetworkRequest$ = CreateNetworkRequest$;
|
|
2347
|
+
exports.CreateNetworkResponse$ = CreateNetworkResponse$;
|
|
2348
|
+
exports.CreateSecurityGroup$ = CreateSecurityGroup$;
|
|
2349
|
+
exports.CreateSecurityGroupCommand = CreateSecurityGroupCommand;
|
|
2350
|
+
exports.CreateSecurityGroupRequest$ = CreateSecurityGroupRequest$;
|
|
2351
|
+
exports.CreateSecurityGroupResponse$ = CreateSecurityGroupResponse$;
|
|
2352
|
+
exports.DataRetentionActionType = DataRetentionActionType;
|
|
2353
|
+
exports.DeleteBot$ = DeleteBot$;
|
|
2354
|
+
exports.DeleteBotCommand = DeleteBotCommand;
|
|
2355
|
+
exports.DeleteBotRequest$ = DeleteBotRequest$;
|
|
2356
|
+
exports.DeleteBotResponse$ = DeleteBotResponse$;
|
|
2357
|
+
exports.DeleteDataRetentionBot$ = DeleteDataRetentionBot$;
|
|
2358
|
+
exports.DeleteDataRetentionBotCommand = DeleteDataRetentionBotCommand;
|
|
2359
|
+
exports.DeleteDataRetentionBotRequest$ = DeleteDataRetentionBotRequest$;
|
|
2360
|
+
exports.DeleteDataRetentionBotResponse$ = DeleteDataRetentionBotResponse$;
|
|
2361
|
+
exports.DeleteNetwork$ = DeleteNetwork$;
|
|
2362
|
+
exports.DeleteNetworkCommand = DeleteNetworkCommand;
|
|
2363
|
+
exports.DeleteNetworkRequest$ = DeleteNetworkRequest$;
|
|
2364
|
+
exports.DeleteNetworkResponse$ = DeleteNetworkResponse$;
|
|
2365
|
+
exports.DeleteSecurityGroup$ = DeleteSecurityGroup$;
|
|
2366
|
+
exports.DeleteSecurityGroupCommand = DeleteSecurityGroupCommand;
|
|
2367
|
+
exports.DeleteSecurityGroupRequest$ = DeleteSecurityGroupRequest$;
|
|
2368
|
+
exports.DeleteSecurityGroupResponse$ = DeleteSecurityGroupResponse$;
|
|
2369
|
+
exports.ErrorDetail$ = ErrorDetail$;
|
|
2370
|
+
exports.ForbiddenError = ForbiddenError;
|
|
2371
|
+
exports.ForbiddenError$ = ForbiddenError$;
|
|
2372
|
+
exports.GetBot$ = GetBot$;
|
|
2373
|
+
exports.GetBotCommand = GetBotCommand;
|
|
2374
|
+
exports.GetBotRequest$ = GetBotRequest$;
|
|
2375
|
+
exports.GetBotResponse$ = GetBotResponse$;
|
|
2376
|
+
exports.GetBotsCount$ = GetBotsCount$;
|
|
2377
|
+
exports.GetBotsCountCommand = GetBotsCountCommand;
|
|
2378
|
+
exports.GetBotsCountRequest$ = GetBotsCountRequest$;
|
|
2379
|
+
exports.GetBotsCountResponse$ = GetBotsCountResponse$;
|
|
2380
|
+
exports.GetDataRetentionBot$ = GetDataRetentionBot$;
|
|
2381
|
+
exports.GetDataRetentionBotCommand = GetDataRetentionBotCommand;
|
|
2382
|
+
exports.GetDataRetentionBotRequest$ = GetDataRetentionBotRequest$;
|
|
2383
|
+
exports.GetDataRetentionBotResponse$ = GetDataRetentionBotResponse$;
|
|
2384
|
+
exports.GetGuestUserHistoryCount$ = GetGuestUserHistoryCount$;
|
|
2385
|
+
exports.GetGuestUserHistoryCountCommand = GetGuestUserHistoryCountCommand;
|
|
2386
|
+
exports.GetGuestUserHistoryCountRequest$ = GetGuestUserHistoryCountRequest$;
|
|
2387
|
+
exports.GetGuestUserHistoryCountResponse$ = GetGuestUserHistoryCountResponse$;
|
|
2388
|
+
exports.GetNetwork$ = GetNetwork$;
|
|
2389
|
+
exports.GetNetworkCommand = GetNetworkCommand;
|
|
2390
|
+
exports.GetNetworkRequest$ = GetNetworkRequest$;
|
|
2391
|
+
exports.GetNetworkResponse$ = GetNetworkResponse$;
|
|
2392
|
+
exports.GetNetworkSettings$ = GetNetworkSettings$;
|
|
2393
|
+
exports.GetNetworkSettingsCommand = GetNetworkSettingsCommand;
|
|
2394
|
+
exports.GetNetworkSettingsRequest$ = GetNetworkSettingsRequest$;
|
|
2395
|
+
exports.GetNetworkSettingsResponse$ = GetNetworkSettingsResponse$;
|
|
2396
|
+
exports.GetOidcInfo$ = GetOidcInfo$;
|
|
2397
|
+
exports.GetOidcInfoCommand = GetOidcInfoCommand;
|
|
2398
|
+
exports.GetOidcInfoRequest$ = GetOidcInfoRequest$;
|
|
2399
|
+
exports.GetOidcInfoResponse$ = GetOidcInfoResponse$;
|
|
2400
|
+
exports.GetSecurityGroup$ = GetSecurityGroup$;
|
|
2401
|
+
exports.GetSecurityGroupCommand = GetSecurityGroupCommand;
|
|
2402
|
+
exports.GetSecurityGroupRequest$ = GetSecurityGroupRequest$;
|
|
2403
|
+
exports.GetSecurityGroupResponse$ = GetSecurityGroupResponse$;
|
|
2404
|
+
exports.GetUser$ = GetUser$;
|
|
2405
|
+
exports.GetUserCommand = GetUserCommand;
|
|
2406
|
+
exports.GetUserRequest$ = GetUserRequest$;
|
|
2407
|
+
exports.GetUserResponse$ = GetUserResponse$;
|
|
2408
|
+
exports.GetUsersCount$ = GetUsersCount$;
|
|
2409
|
+
exports.GetUsersCountCommand = GetUsersCountCommand;
|
|
2410
|
+
exports.GetUsersCountRequest$ = GetUsersCountRequest$;
|
|
2411
|
+
exports.GetUsersCountResponse$ = GetUsersCountResponse$;
|
|
2412
|
+
exports.GuestUser$ = GuestUser$;
|
|
2413
|
+
exports.GuestUserHistoryCount$ = GuestUserHistoryCount$;
|
|
2414
|
+
exports.InternalServerError = InternalServerError;
|
|
2415
|
+
exports.InternalServerError$ = InternalServerError$;
|
|
2416
|
+
exports.ListBlockedGuestUsers$ = ListBlockedGuestUsers$;
|
|
2417
|
+
exports.ListBlockedGuestUsersCommand = ListBlockedGuestUsersCommand;
|
|
2418
|
+
exports.ListBlockedGuestUsersRequest$ = ListBlockedGuestUsersRequest$;
|
|
2419
|
+
exports.ListBlockedGuestUsersResponse$ = ListBlockedGuestUsersResponse$;
|
|
2420
|
+
exports.ListBots$ = ListBots$;
|
|
2421
|
+
exports.ListBotsCommand = ListBotsCommand;
|
|
2422
|
+
exports.ListBotsRequest$ = ListBotsRequest$;
|
|
2423
|
+
exports.ListBotsResponse$ = ListBotsResponse$;
|
|
2424
|
+
exports.ListDevicesForUser$ = ListDevicesForUser$;
|
|
2425
|
+
exports.ListDevicesForUserCommand = ListDevicesForUserCommand;
|
|
2426
|
+
exports.ListDevicesForUserRequest$ = ListDevicesForUserRequest$;
|
|
2427
|
+
exports.ListDevicesForUserResponse$ = ListDevicesForUserResponse$;
|
|
2428
|
+
exports.ListGuestUsers$ = ListGuestUsers$;
|
|
2429
|
+
exports.ListGuestUsersCommand = ListGuestUsersCommand;
|
|
2430
|
+
exports.ListGuestUsersRequest$ = ListGuestUsersRequest$;
|
|
2431
|
+
exports.ListGuestUsersResponse$ = ListGuestUsersResponse$;
|
|
2432
|
+
exports.ListNetworks$ = ListNetworks$;
|
|
2433
|
+
exports.ListNetworksCommand = ListNetworksCommand;
|
|
2434
|
+
exports.ListNetworksRequest$ = ListNetworksRequest$;
|
|
2435
|
+
exports.ListNetworksResponse$ = ListNetworksResponse$;
|
|
2436
|
+
exports.ListSecurityGroupUsers$ = ListSecurityGroupUsers$;
|
|
2437
|
+
exports.ListSecurityGroupUsersCommand = ListSecurityGroupUsersCommand;
|
|
2438
|
+
exports.ListSecurityGroupUsersRequest$ = ListSecurityGroupUsersRequest$;
|
|
2439
|
+
exports.ListSecurityGroupUsersResponse$ = ListSecurityGroupUsersResponse$;
|
|
2440
|
+
exports.ListSecurityGroups$ = ListSecurityGroups$;
|
|
2441
|
+
exports.ListSecurityGroupsCommand = ListSecurityGroupsCommand;
|
|
2442
|
+
exports.ListSecurityGroupsRequest$ = ListSecurityGroupsRequest$;
|
|
2443
|
+
exports.ListSecurityGroupsResponse$ = ListSecurityGroupsResponse$;
|
|
2444
|
+
exports.ListUsers$ = ListUsers$;
|
|
2445
|
+
exports.ListUsersCommand = ListUsersCommand;
|
|
2446
|
+
exports.ListUsersRequest$ = ListUsersRequest$;
|
|
2447
|
+
exports.ListUsersResponse$ = ListUsersResponse$;
|
|
2448
|
+
exports.Network$ = Network$;
|
|
2449
|
+
exports.NetworkSettings$ = NetworkSettings$;
|
|
2450
|
+
exports.OidcConfigInfo$ = OidcConfigInfo$;
|
|
2451
|
+
exports.OidcTokenInfo$ = OidcTokenInfo$;
|
|
2452
|
+
exports.PasswordRequirements$ = PasswordRequirements$;
|
|
2453
|
+
exports.PermittedWickrEnterpriseNetwork$ = PermittedWickrEnterpriseNetwork$;
|
|
2454
|
+
exports.RateLimitError = RateLimitError;
|
|
2455
|
+
exports.RateLimitError$ = RateLimitError$;
|
|
2456
|
+
exports.ReadReceiptConfig$ = ReadReceiptConfig$;
|
|
2457
|
+
exports.RegisterOidcConfig$ = RegisterOidcConfig$;
|
|
2458
|
+
exports.RegisterOidcConfigCommand = RegisterOidcConfigCommand;
|
|
2459
|
+
exports.RegisterOidcConfigRequest$ = RegisterOidcConfigRequest$;
|
|
2460
|
+
exports.RegisterOidcConfigResponse$ = RegisterOidcConfigResponse$;
|
|
2461
|
+
exports.RegisterOidcConfigTest$ = RegisterOidcConfigTest$;
|
|
2462
|
+
exports.RegisterOidcConfigTestCommand = RegisterOidcConfigTestCommand;
|
|
2463
|
+
exports.RegisterOidcConfigTestRequest$ = RegisterOidcConfigTestRequest$;
|
|
2464
|
+
exports.RegisterOidcConfigTestResponse$ = RegisterOidcConfigTestResponse$;
|
|
2465
|
+
exports.ResourceNotFoundError = ResourceNotFoundError;
|
|
2466
|
+
exports.ResourceNotFoundError$ = ResourceNotFoundError$;
|
|
2467
|
+
exports.SecurityGroup$ = SecurityGroup$;
|
|
2468
|
+
exports.SecurityGroupSettings$ = SecurityGroupSettings$;
|
|
2469
|
+
exports.SecurityGroupSettingsRequest$ = SecurityGroupSettingsRequest$;
|
|
2470
|
+
exports.Setting$ = Setting$;
|
|
2471
|
+
exports.ShredderSettings$ = ShredderSettings$;
|
|
2472
|
+
exports.SortDirection = SortDirection;
|
|
2473
|
+
exports.Status = Status;
|
|
2474
|
+
exports.UnauthorizedError = UnauthorizedError;
|
|
2475
|
+
exports.UnauthorizedError$ = UnauthorizedError$;
|
|
2476
|
+
exports.UpdateBot$ = UpdateBot$;
|
|
2477
|
+
exports.UpdateBotCommand = UpdateBotCommand;
|
|
2478
|
+
exports.UpdateBotRequest$ = UpdateBotRequest$;
|
|
2479
|
+
exports.UpdateBotResponse$ = UpdateBotResponse$;
|
|
2480
|
+
exports.UpdateDataRetention$ = UpdateDataRetention$;
|
|
2481
|
+
exports.UpdateDataRetentionCommand = UpdateDataRetentionCommand;
|
|
2482
|
+
exports.UpdateDataRetentionRequest$ = UpdateDataRetentionRequest$;
|
|
2483
|
+
exports.UpdateDataRetentionResponse$ = UpdateDataRetentionResponse$;
|
|
2484
|
+
exports.UpdateGuestUser$ = UpdateGuestUser$;
|
|
2485
|
+
exports.UpdateGuestUserCommand = UpdateGuestUserCommand;
|
|
2486
|
+
exports.UpdateGuestUserRequest$ = UpdateGuestUserRequest$;
|
|
2487
|
+
exports.UpdateGuestUserResponse$ = UpdateGuestUserResponse$;
|
|
2488
|
+
exports.UpdateNetwork$ = UpdateNetwork$;
|
|
2489
|
+
exports.UpdateNetworkCommand = UpdateNetworkCommand;
|
|
2490
|
+
exports.UpdateNetworkRequest$ = UpdateNetworkRequest$;
|
|
2491
|
+
exports.UpdateNetworkResponse$ = UpdateNetworkResponse$;
|
|
2492
|
+
exports.UpdateNetworkSettings$ = UpdateNetworkSettings$;
|
|
2493
|
+
exports.UpdateNetworkSettingsCommand = UpdateNetworkSettingsCommand;
|
|
2494
|
+
exports.UpdateNetworkSettingsRequest$ = UpdateNetworkSettingsRequest$;
|
|
2495
|
+
exports.UpdateNetworkSettingsResponse$ = UpdateNetworkSettingsResponse$;
|
|
2496
|
+
exports.UpdateSecurityGroup$ = UpdateSecurityGroup$;
|
|
2497
|
+
exports.UpdateSecurityGroupCommand = UpdateSecurityGroupCommand;
|
|
2498
|
+
exports.UpdateSecurityGroupRequest$ = UpdateSecurityGroupRequest$;
|
|
2499
|
+
exports.UpdateSecurityGroupResponse$ = UpdateSecurityGroupResponse$;
|
|
2500
|
+
exports.UpdateUser$ = UpdateUser$;
|
|
2501
|
+
exports.UpdateUserCommand = UpdateUserCommand;
|
|
2502
|
+
exports.UpdateUserDetails$ = UpdateUserDetails$;
|
|
2503
|
+
exports.UpdateUserRequest$ = UpdateUserRequest$;
|
|
2504
|
+
exports.UpdateUserResponse$ = UpdateUserResponse$;
|
|
2505
|
+
exports.User$ = User$;
|
|
2506
|
+
exports.ValidationError = ValidationError;
|
|
2507
|
+
exports.ValidationError$ = ValidationError$;
|
|
2508
|
+
exports.Wickr = Wickr;
|
|
2509
|
+
exports.WickrAwsNetworks$ = WickrAwsNetworks$;
|
|
2510
|
+
exports.WickrClient = WickrClient;
|
|
2511
|
+
exports.WickrServiceException = WickrServiceException;
|
|
2512
|
+
exports.WickrServiceException$ = WickrServiceException$;
|
|
2513
|
+
exports.paginateListBlockedGuestUsers = paginateListBlockedGuestUsers;
|
|
2514
|
+
exports.paginateListBots = paginateListBots;
|
|
2515
|
+
exports.paginateListDevicesForUser = paginateListDevicesForUser;
|
|
2516
|
+
exports.paginateListGuestUsers = paginateListGuestUsers;
|
|
2517
|
+
exports.paginateListNetworks = paginateListNetworks;
|
|
2518
|
+
exports.paginateListSecurityGroupUsers = paginateListSecurityGroupUsers;
|
|
2519
|
+
exports.paginateListSecurityGroups = paginateListSecurityGroups;
|
|
2520
|
+
exports.paginateListUsers = paginateListUsers;
|