@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,371 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
DefaultsMode as __DefaultsMode,
|
|
24
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
25
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
26
|
+
Client as __Client,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
32
|
+
Decoder as __Decoder,
|
|
33
|
+
Encoder as __Encoder,
|
|
34
|
+
HashConstructor as __HashConstructor,
|
|
35
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
36
|
+
Logger as __Logger,
|
|
37
|
+
Provider as __Provider,
|
|
38
|
+
StreamCollector as __StreamCollector,
|
|
39
|
+
UrlParser as __UrlParser,
|
|
40
|
+
AwsCredentialIdentityProvider,
|
|
41
|
+
Provider,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
BatchCreateUserCommandInput,
|
|
50
|
+
BatchCreateUserCommandOutput,
|
|
51
|
+
} from "./commands/BatchCreateUserCommand";
|
|
52
|
+
import {
|
|
53
|
+
BatchDeleteUserCommandInput,
|
|
54
|
+
BatchDeleteUserCommandOutput,
|
|
55
|
+
} from "./commands/BatchDeleteUserCommand";
|
|
56
|
+
import {
|
|
57
|
+
BatchLookupUserUnameCommandInput,
|
|
58
|
+
BatchLookupUserUnameCommandOutput,
|
|
59
|
+
} from "./commands/BatchLookupUserUnameCommand";
|
|
60
|
+
import {
|
|
61
|
+
BatchReinviteUserCommandInput,
|
|
62
|
+
BatchReinviteUserCommandOutput,
|
|
63
|
+
} from "./commands/BatchReinviteUserCommand";
|
|
64
|
+
import {
|
|
65
|
+
BatchResetDevicesForUserCommandInput,
|
|
66
|
+
BatchResetDevicesForUserCommandOutput,
|
|
67
|
+
} from "./commands/BatchResetDevicesForUserCommand";
|
|
68
|
+
import {
|
|
69
|
+
BatchToggleUserSuspendStatusCommandInput,
|
|
70
|
+
BatchToggleUserSuspendStatusCommandOutput,
|
|
71
|
+
} from "./commands/BatchToggleUserSuspendStatusCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateBotCommandInput,
|
|
74
|
+
CreateBotCommandOutput,
|
|
75
|
+
} from "./commands/CreateBotCommand";
|
|
76
|
+
import {
|
|
77
|
+
CreateDataRetentionBotChallengeCommandInput,
|
|
78
|
+
CreateDataRetentionBotChallengeCommandOutput,
|
|
79
|
+
} from "./commands/CreateDataRetentionBotChallengeCommand";
|
|
80
|
+
import {
|
|
81
|
+
CreateDataRetentionBotCommandInput,
|
|
82
|
+
CreateDataRetentionBotCommandOutput,
|
|
83
|
+
} from "./commands/CreateDataRetentionBotCommand";
|
|
84
|
+
import {
|
|
85
|
+
CreateNetworkCommandInput,
|
|
86
|
+
CreateNetworkCommandOutput,
|
|
87
|
+
} from "./commands/CreateNetworkCommand";
|
|
88
|
+
import {
|
|
89
|
+
CreateSecurityGroupCommandInput,
|
|
90
|
+
CreateSecurityGroupCommandOutput,
|
|
91
|
+
} from "./commands/CreateSecurityGroupCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteBotCommandInput,
|
|
94
|
+
DeleteBotCommandOutput,
|
|
95
|
+
} from "./commands/DeleteBotCommand";
|
|
96
|
+
import {
|
|
97
|
+
DeleteDataRetentionBotCommandInput,
|
|
98
|
+
DeleteDataRetentionBotCommandOutput,
|
|
99
|
+
} from "./commands/DeleteDataRetentionBotCommand";
|
|
100
|
+
import {
|
|
101
|
+
DeleteNetworkCommandInput,
|
|
102
|
+
DeleteNetworkCommandOutput,
|
|
103
|
+
} from "./commands/DeleteNetworkCommand";
|
|
104
|
+
import {
|
|
105
|
+
DeleteSecurityGroupCommandInput,
|
|
106
|
+
DeleteSecurityGroupCommandOutput,
|
|
107
|
+
} from "./commands/DeleteSecurityGroupCommand";
|
|
108
|
+
import {
|
|
109
|
+
GetBotCommandInput,
|
|
110
|
+
GetBotCommandOutput,
|
|
111
|
+
} from "./commands/GetBotCommand";
|
|
112
|
+
import {
|
|
113
|
+
GetBotsCountCommandInput,
|
|
114
|
+
GetBotsCountCommandOutput,
|
|
115
|
+
} from "./commands/GetBotsCountCommand";
|
|
116
|
+
import {
|
|
117
|
+
GetDataRetentionBotCommandInput,
|
|
118
|
+
GetDataRetentionBotCommandOutput,
|
|
119
|
+
} from "./commands/GetDataRetentionBotCommand";
|
|
120
|
+
import {
|
|
121
|
+
GetGuestUserHistoryCountCommandInput,
|
|
122
|
+
GetGuestUserHistoryCountCommandOutput,
|
|
123
|
+
} from "./commands/GetGuestUserHistoryCountCommand";
|
|
124
|
+
import {
|
|
125
|
+
GetNetworkCommandInput,
|
|
126
|
+
GetNetworkCommandOutput,
|
|
127
|
+
} from "./commands/GetNetworkCommand";
|
|
128
|
+
import {
|
|
129
|
+
GetNetworkSettingsCommandInput,
|
|
130
|
+
GetNetworkSettingsCommandOutput,
|
|
131
|
+
} from "./commands/GetNetworkSettingsCommand";
|
|
132
|
+
import {
|
|
133
|
+
GetOidcInfoCommandInput,
|
|
134
|
+
GetOidcInfoCommandOutput,
|
|
135
|
+
} from "./commands/GetOidcInfoCommand";
|
|
136
|
+
import {
|
|
137
|
+
GetSecurityGroupCommandInput,
|
|
138
|
+
GetSecurityGroupCommandOutput,
|
|
139
|
+
} from "./commands/GetSecurityGroupCommand";
|
|
140
|
+
import {
|
|
141
|
+
GetUserCommandInput,
|
|
142
|
+
GetUserCommandOutput,
|
|
143
|
+
} from "./commands/GetUserCommand";
|
|
144
|
+
import {
|
|
145
|
+
GetUsersCountCommandInput,
|
|
146
|
+
GetUsersCountCommandOutput,
|
|
147
|
+
} from "./commands/GetUsersCountCommand";
|
|
148
|
+
import {
|
|
149
|
+
ListBlockedGuestUsersCommandInput,
|
|
150
|
+
ListBlockedGuestUsersCommandOutput,
|
|
151
|
+
} from "./commands/ListBlockedGuestUsersCommand";
|
|
152
|
+
import {
|
|
153
|
+
ListBotsCommandInput,
|
|
154
|
+
ListBotsCommandOutput,
|
|
155
|
+
} from "./commands/ListBotsCommand";
|
|
156
|
+
import {
|
|
157
|
+
ListDevicesForUserCommandInput,
|
|
158
|
+
ListDevicesForUserCommandOutput,
|
|
159
|
+
} from "./commands/ListDevicesForUserCommand";
|
|
160
|
+
import {
|
|
161
|
+
ListGuestUsersCommandInput,
|
|
162
|
+
ListGuestUsersCommandOutput,
|
|
163
|
+
} from "./commands/ListGuestUsersCommand";
|
|
164
|
+
import {
|
|
165
|
+
ListNetworksCommandInput,
|
|
166
|
+
ListNetworksCommandOutput,
|
|
167
|
+
} from "./commands/ListNetworksCommand";
|
|
168
|
+
import {
|
|
169
|
+
ListSecurityGroupsCommandInput,
|
|
170
|
+
ListSecurityGroupsCommandOutput,
|
|
171
|
+
} from "./commands/ListSecurityGroupsCommand";
|
|
172
|
+
import {
|
|
173
|
+
ListSecurityGroupUsersCommandInput,
|
|
174
|
+
ListSecurityGroupUsersCommandOutput,
|
|
175
|
+
} from "./commands/ListSecurityGroupUsersCommand";
|
|
176
|
+
import {
|
|
177
|
+
ListUsersCommandInput,
|
|
178
|
+
ListUsersCommandOutput,
|
|
179
|
+
} from "./commands/ListUsersCommand";
|
|
180
|
+
import {
|
|
181
|
+
RegisterOidcConfigCommandInput,
|
|
182
|
+
RegisterOidcConfigCommandOutput,
|
|
183
|
+
} from "./commands/RegisterOidcConfigCommand";
|
|
184
|
+
import {
|
|
185
|
+
RegisterOidcConfigTestCommandInput,
|
|
186
|
+
RegisterOidcConfigTestCommandOutput,
|
|
187
|
+
} from "./commands/RegisterOidcConfigTestCommand";
|
|
188
|
+
import {
|
|
189
|
+
UpdateBotCommandInput,
|
|
190
|
+
UpdateBotCommandOutput,
|
|
191
|
+
} from "./commands/UpdateBotCommand";
|
|
192
|
+
import {
|
|
193
|
+
UpdateDataRetentionCommandInput,
|
|
194
|
+
UpdateDataRetentionCommandOutput,
|
|
195
|
+
} from "./commands/UpdateDataRetentionCommand";
|
|
196
|
+
import {
|
|
197
|
+
UpdateGuestUserCommandInput,
|
|
198
|
+
UpdateGuestUserCommandOutput,
|
|
199
|
+
} from "./commands/UpdateGuestUserCommand";
|
|
200
|
+
import {
|
|
201
|
+
UpdateNetworkCommandInput,
|
|
202
|
+
UpdateNetworkCommandOutput,
|
|
203
|
+
} from "./commands/UpdateNetworkCommand";
|
|
204
|
+
import {
|
|
205
|
+
UpdateNetworkSettingsCommandInput,
|
|
206
|
+
UpdateNetworkSettingsCommandOutput,
|
|
207
|
+
} from "./commands/UpdateNetworkSettingsCommand";
|
|
208
|
+
import {
|
|
209
|
+
UpdateSecurityGroupCommandInput,
|
|
210
|
+
UpdateSecurityGroupCommandOutput,
|
|
211
|
+
} from "./commands/UpdateSecurityGroupCommand";
|
|
212
|
+
import {
|
|
213
|
+
UpdateUserCommandInput,
|
|
214
|
+
UpdateUserCommandOutput,
|
|
215
|
+
} from "./commands/UpdateUserCommand";
|
|
216
|
+
import {
|
|
217
|
+
ClientInputEndpointParameters,
|
|
218
|
+
ClientResolvedEndpointParameters,
|
|
219
|
+
EndpointParameters,
|
|
220
|
+
} from "./endpoint/EndpointParameters";
|
|
221
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
222
|
+
export { __Client };
|
|
223
|
+
export type ServiceInputTypes =
|
|
224
|
+
| BatchCreateUserCommandInput
|
|
225
|
+
| BatchDeleteUserCommandInput
|
|
226
|
+
| BatchLookupUserUnameCommandInput
|
|
227
|
+
| BatchReinviteUserCommandInput
|
|
228
|
+
| BatchResetDevicesForUserCommandInput
|
|
229
|
+
| BatchToggleUserSuspendStatusCommandInput
|
|
230
|
+
| CreateBotCommandInput
|
|
231
|
+
| CreateDataRetentionBotChallengeCommandInput
|
|
232
|
+
| CreateDataRetentionBotCommandInput
|
|
233
|
+
| CreateNetworkCommandInput
|
|
234
|
+
| CreateSecurityGroupCommandInput
|
|
235
|
+
| DeleteBotCommandInput
|
|
236
|
+
| DeleteDataRetentionBotCommandInput
|
|
237
|
+
| DeleteNetworkCommandInput
|
|
238
|
+
| DeleteSecurityGroupCommandInput
|
|
239
|
+
| GetBotCommandInput
|
|
240
|
+
| GetBotsCountCommandInput
|
|
241
|
+
| GetDataRetentionBotCommandInput
|
|
242
|
+
| GetGuestUserHistoryCountCommandInput
|
|
243
|
+
| GetNetworkCommandInput
|
|
244
|
+
| GetNetworkSettingsCommandInput
|
|
245
|
+
| GetOidcInfoCommandInput
|
|
246
|
+
| GetSecurityGroupCommandInput
|
|
247
|
+
| GetUserCommandInput
|
|
248
|
+
| GetUsersCountCommandInput
|
|
249
|
+
| ListBlockedGuestUsersCommandInput
|
|
250
|
+
| ListBotsCommandInput
|
|
251
|
+
| ListDevicesForUserCommandInput
|
|
252
|
+
| ListGuestUsersCommandInput
|
|
253
|
+
| ListNetworksCommandInput
|
|
254
|
+
| ListSecurityGroupUsersCommandInput
|
|
255
|
+
| ListSecurityGroupsCommandInput
|
|
256
|
+
| ListUsersCommandInput
|
|
257
|
+
| RegisterOidcConfigCommandInput
|
|
258
|
+
| RegisterOidcConfigTestCommandInput
|
|
259
|
+
| UpdateBotCommandInput
|
|
260
|
+
| UpdateDataRetentionCommandInput
|
|
261
|
+
| UpdateGuestUserCommandInput
|
|
262
|
+
| UpdateNetworkCommandInput
|
|
263
|
+
| UpdateNetworkSettingsCommandInput
|
|
264
|
+
| UpdateSecurityGroupCommandInput
|
|
265
|
+
| UpdateUserCommandInput;
|
|
266
|
+
export type ServiceOutputTypes =
|
|
267
|
+
| BatchCreateUserCommandOutput
|
|
268
|
+
| BatchDeleteUserCommandOutput
|
|
269
|
+
| BatchLookupUserUnameCommandOutput
|
|
270
|
+
| BatchReinviteUserCommandOutput
|
|
271
|
+
| BatchResetDevicesForUserCommandOutput
|
|
272
|
+
| BatchToggleUserSuspendStatusCommandOutput
|
|
273
|
+
| CreateBotCommandOutput
|
|
274
|
+
| CreateDataRetentionBotChallengeCommandOutput
|
|
275
|
+
| CreateDataRetentionBotCommandOutput
|
|
276
|
+
| CreateNetworkCommandOutput
|
|
277
|
+
| CreateSecurityGroupCommandOutput
|
|
278
|
+
| DeleteBotCommandOutput
|
|
279
|
+
| DeleteDataRetentionBotCommandOutput
|
|
280
|
+
| DeleteNetworkCommandOutput
|
|
281
|
+
| DeleteSecurityGroupCommandOutput
|
|
282
|
+
| GetBotCommandOutput
|
|
283
|
+
| GetBotsCountCommandOutput
|
|
284
|
+
| GetDataRetentionBotCommandOutput
|
|
285
|
+
| GetGuestUserHistoryCountCommandOutput
|
|
286
|
+
| GetNetworkCommandOutput
|
|
287
|
+
| GetNetworkSettingsCommandOutput
|
|
288
|
+
| GetOidcInfoCommandOutput
|
|
289
|
+
| GetSecurityGroupCommandOutput
|
|
290
|
+
| GetUserCommandOutput
|
|
291
|
+
| GetUsersCountCommandOutput
|
|
292
|
+
| ListBlockedGuestUsersCommandOutput
|
|
293
|
+
| ListBotsCommandOutput
|
|
294
|
+
| ListDevicesForUserCommandOutput
|
|
295
|
+
| ListGuestUsersCommandOutput
|
|
296
|
+
| ListNetworksCommandOutput
|
|
297
|
+
| ListSecurityGroupUsersCommandOutput
|
|
298
|
+
| ListSecurityGroupsCommandOutput
|
|
299
|
+
| ListUsersCommandOutput
|
|
300
|
+
| RegisterOidcConfigCommandOutput
|
|
301
|
+
| RegisterOidcConfigTestCommandOutput
|
|
302
|
+
| UpdateBotCommandOutput
|
|
303
|
+
| UpdateDataRetentionCommandOutput
|
|
304
|
+
| UpdateGuestUserCommandOutput
|
|
305
|
+
| UpdateNetworkCommandOutput
|
|
306
|
+
| UpdateNetworkSettingsCommandOutput
|
|
307
|
+
| UpdateSecurityGroupCommandOutput
|
|
308
|
+
| UpdateUserCommandOutput;
|
|
309
|
+
export interface ClientDefaults
|
|
310
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
311
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
312
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
313
|
+
urlParser?: __UrlParser;
|
|
314
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
315
|
+
streamCollector?: __StreamCollector;
|
|
316
|
+
base64Decoder?: __Decoder;
|
|
317
|
+
base64Encoder?: __Encoder;
|
|
318
|
+
utf8Decoder?: __Decoder;
|
|
319
|
+
utf8Encoder?: __Encoder;
|
|
320
|
+
runtime?: string;
|
|
321
|
+
disableHostPrefix?: boolean;
|
|
322
|
+
serviceId?: string;
|
|
323
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
324
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
325
|
+
region?: string | __Provider<string>;
|
|
326
|
+
profile?: string;
|
|
327
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
328
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
329
|
+
maxAttempts?: number | __Provider<number>;
|
|
330
|
+
retryMode?: string | __Provider<string>;
|
|
331
|
+
logger?: __Logger;
|
|
332
|
+
extensions?: RuntimeExtension[];
|
|
333
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
334
|
+
}
|
|
335
|
+
export type WickrClientConfigType = Partial<
|
|
336
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
337
|
+
> &
|
|
338
|
+
ClientDefaults &
|
|
339
|
+
UserAgentInputConfig &
|
|
340
|
+
RetryInputConfig &
|
|
341
|
+
RegionInputConfig &
|
|
342
|
+
HostHeaderInputConfig &
|
|
343
|
+
EndpointInputConfig<EndpointParameters> &
|
|
344
|
+
HttpAuthSchemeInputConfig &
|
|
345
|
+
ClientInputEndpointParameters;
|
|
346
|
+
export interface WickrClientConfig extends WickrClientConfigType {}
|
|
347
|
+
export type WickrClientResolvedConfigType =
|
|
348
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
349
|
+
Required<ClientDefaults> &
|
|
350
|
+
RuntimeExtensionsConfig &
|
|
351
|
+
UserAgentResolvedConfig &
|
|
352
|
+
RetryResolvedConfig &
|
|
353
|
+
RegionResolvedConfig &
|
|
354
|
+
HostHeaderResolvedConfig &
|
|
355
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
356
|
+
HttpAuthSchemeResolvedConfig &
|
|
357
|
+
ClientResolvedEndpointParameters;
|
|
358
|
+
export interface WickrClientResolvedConfig
|
|
359
|
+
extends WickrClientResolvedConfigType {}
|
|
360
|
+
export declare class WickrClient extends __Client<
|
|
361
|
+
__HttpHandlerOptions,
|
|
362
|
+
ServiceInputTypes,
|
|
363
|
+
ServiceOutputTypes,
|
|
364
|
+
WickrClientResolvedConfig
|
|
365
|
+
> {
|
|
366
|
+
readonly config: WickrClientResolvedConfig;
|
|
367
|
+
constructor(
|
|
368
|
+
...[configuration]: __CheckOptionalClientConfig<WickrClientConfig>
|
|
369
|
+
);
|
|
370
|
+
destroy(): void;
|
|
371
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpAuthScheme,
|
|
3
|
+
AwsCredentialIdentity,
|
|
4
|
+
AwsCredentialIdentityProvider,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { WickrHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: WickrHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): WickrHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: WickrHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { WickrClientResolvedConfig } from "../WickrClient";
|
|
15
|
+
export interface WickrHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface WickrHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
WickrClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
WickrHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultWickrHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: WickrClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<WickrHttpAuthSchemeParameters>;
|
|
31
|
+
export interface WickrHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<WickrHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultWickrHttpAuthSchemeProvider: WickrHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: WickrHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: WickrHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchCreateUserRequest,
|
|
5
|
+
BatchCreateUserResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WickrClientResolvedConfig,
|
|
11
|
+
} from "../WickrClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchCreateUserCommandInput extends BatchCreateUserRequest {}
|
|
15
|
+
export interface BatchCreateUserCommandOutput
|
|
16
|
+
extends BatchCreateUserResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const BatchCreateUserCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchCreateUserCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
BatchCreateUserCommandInput,
|
|
23
|
+
BatchCreateUserCommandOutput,
|
|
24
|
+
WickrClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: BatchCreateUserCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
BatchCreateUserCommandInput,
|
|
32
|
+
BatchCreateUserCommandOutput,
|
|
33
|
+
WickrClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class BatchCreateUserCommand extends BatchCreateUserCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: BatchCreateUserRequest;
|
|
43
|
+
output: BatchCreateUserResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: BatchCreateUserCommandInput;
|
|
47
|
+
output: BatchCreateUserCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchDeleteUserRequest,
|
|
5
|
+
BatchDeleteUserResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WickrClientResolvedConfig,
|
|
11
|
+
} from "../WickrClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchDeleteUserCommandInput extends BatchDeleteUserRequest {}
|
|
15
|
+
export interface BatchDeleteUserCommandOutput
|
|
16
|
+
extends BatchDeleteUserResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const BatchDeleteUserCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchDeleteUserCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
BatchDeleteUserCommandInput,
|
|
23
|
+
BatchDeleteUserCommandOutput,
|
|
24
|
+
WickrClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: BatchDeleteUserCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
BatchDeleteUserCommandInput,
|
|
32
|
+
BatchDeleteUserCommandOutput,
|
|
33
|
+
WickrClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class BatchDeleteUserCommand extends BatchDeleteUserCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: BatchDeleteUserRequest;
|
|
43
|
+
output: BatchDeleteUserResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: BatchDeleteUserCommandInput;
|
|
47
|
+
output: BatchDeleteUserCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchLookupUserUnameRequest,
|
|
5
|
+
BatchLookupUserUnameResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WickrClientResolvedConfig,
|
|
11
|
+
} from "../WickrClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchLookupUserUnameCommandInput
|
|
15
|
+
extends BatchLookupUserUnameRequest {}
|
|
16
|
+
export interface BatchLookupUserUnameCommandOutput
|
|
17
|
+
extends BatchLookupUserUnameResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchLookupUserUnameCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchLookupUserUnameCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchLookupUserUnameCommandInput,
|
|
24
|
+
BatchLookupUserUnameCommandOutput,
|
|
25
|
+
WickrClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchLookupUserUnameCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchLookupUserUnameCommandInput,
|
|
33
|
+
BatchLookupUserUnameCommandOutput,
|
|
34
|
+
WickrClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchLookupUserUnameCommand extends BatchLookupUserUnameCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchLookupUserUnameRequest;
|
|
44
|
+
output: BatchLookupUserUnameResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchLookupUserUnameCommandInput;
|
|
48
|
+
output: BatchLookupUserUnameCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchReinviteUserRequest,
|
|
5
|
+
BatchReinviteUserResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WickrClientResolvedConfig,
|
|
11
|
+
} from "../WickrClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchReinviteUserCommandInput
|
|
15
|
+
extends BatchReinviteUserRequest {}
|
|
16
|
+
export interface BatchReinviteUserCommandOutput
|
|
17
|
+
extends BatchReinviteUserResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchReinviteUserCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchReinviteUserCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchReinviteUserCommandInput,
|
|
24
|
+
BatchReinviteUserCommandOutput,
|
|
25
|
+
WickrClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchReinviteUserCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchReinviteUserCommandInput,
|
|
33
|
+
BatchReinviteUserCommandOutput,
|
|
34
|
+
WickrClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchReinviteUserCommand extends BatchReinviteUserCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchReinviteUserRequest;
|
|
44
|
+
output: BatchReinviteUserResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchReinviteUserCommandInput;
|
|
48
|
+
output: BatchReinviteUserCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|