@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.
Files changed (227) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +541 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +2520 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +55 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/Wickr.js +91 -0
  12. package/dist-es/WickrClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/BatchCreateUserCommand.js +16 -0
  16. package/dist-es/commands/BatchDeleteUserCommand.js +16 -0
  17. package/dist-es/commands/BatchLookupUserUnameCommand.js +16 -0
  18. package/dist-es/commands/BatchReinviteUserCommand.js +16 -0
  19. package/dist-es/commands/BatchResetDevicesForUserCommand.js +16 -0
  20. package/dist-es/commands/BatchToggleUserSuspendStatusCommand.js +16 -0
  21. package/dist-es/commands/CreateBotCommand.js +16 -0
  22. package/dist-es/commands/CreateDataRetentionBotChallengeCommand.js +16 -0
  23. package/dist-es/commands/CreateDataRetentionBotCommand.js +16 -0
  24. package/dist-es/commands/CreateNetworkCommand.js +16 -0
  25. package/dist-es/commands/CreateSecurityGroupCommand.js +16 -0
  26. package/dist-es/commands/DeleteBotCommand.js +16 -0
  27. package/dist-es/commands/DeleteDataRetentionBotCommand.js +16 -0
  28. package/dist-es/commands/DeleteNetworkCommand.js +16 -0
  29. package/dist-es/commands/DeleteSecurityGroupCommand.js +16 -0
  30. package/dist-es/commands/GetBotCommand.js +16 -0
  31. package/dist-es/commands/GetBotsCountCommand.js +16 -0
  32. package/dist-es/commands/GetDataRetentionBotCommand.js +16 -0
  33. package/dist-es/commands/GetGuestUserHistoryCountCommand.js +16 -0
  34. package/dist-es/commands/GetNetworkCommand.js +16 -0
  35. package/dist-es/commands/GetNetworkSettingsCommand.js +16 -0
  36. package/dist-es/commands/GetOidcInfoCommand.js +16 -0
  37. package/dist-es/commands/GetSecurityGroupCommand.js +16 -0
  38. package/dist-es/commands/GetUserCommand.js +16 -0
  39. package/dist-es/commands/GetUsersCountCommand.js +16 -0
  40. package/dist-es/commands/ListBlockedGuestUsersCommand.js +16 -0
  41. package/dist-es/commands/ListBotsCommand.js +16 -0
  42. package/dist-es/commands/ListDevicesForUserCommand.js +16 -0
  43. package/dist-es/commands/ListGuestUsersCommand.js +16 -0
  44. package/dist-es/commands/ListNetworksCommand.js +16 -0
  45. package/dist-es/commands/ListSecurityGroupUsersCommand.js +16 -0
  46. package/dist-es/commands/ListSecurityGroupsCommand.js +16 -0
  47. package/dist-es/commands/ListUsersCommand.js +16 -0
  48. package/dist-es/commands/RegisterOidcConfigCommand.js +16 -0
  49. package/dist-es/commands/RegisterOidcConfigTestCommand.js +16 -0
  50. package/dist-es/commands/UpdateBotCommand.js +16 -0
  51. package/dist-es/commands/UpdateDataRetentionCommand.js +16 -0
  52. package/dist-es/commands/UpdateGuestUserCommand.js +16 -0
  53. package/dist-es/commands/UpdateNetworkCommand.js +16 -0
  54. package/dist-es/commands/UpdateNetworkSettingsCommand.js +16 -0
  55. package/dist-es/commands/UpdateSecurityGroupCommand.js +16 -0
  56. package/dist-es/commands/UpdateUserCommand.js +16 -0
  57. package/dist-es/commands/index.js +42 -0
  58. package/dist-es/endpoint/EndpointParameters.js +13 -0
  59. package/dist-es/endpoint/endpointResolver.js +14 -0
  60. package/dist-es/endpoint/ruleset.js +4 -0
  61. package/dist-es/extensionConfiguration.js +1 -0
  62. package/dist-es/index.js +9 -0
  63. package/dist-es/models/WickrServiceException.js +8 -0
  64. package/dist-es/models/enums.js +28 -0
  65. package/dist-es/models/errors.js +87 -0
  66. package/dist-es/models/models_0.js +1 -0
  67. package/dist-es/pagination/Interfaces.js +1 -0
  68. package/dist-es/pagination/ListBlockedGuestUsersPaginator.js +4 -0
  69. package/dist-es/pagination/ListBotsPaginator.js +4 -0
  70. package/dist-es/pagination/ListDevicesForUserPaginator.js +4 -0
  71. package/dist-es/pagination/ListGuestUsersPaginator.js +4 -0
  72. package/dist-es/pagination/ListNetworksPaginator.js +4 -0
  73. package/dist-es/pagination/ListSecurityGroupUsersPaginator.js +4 -0
  74. package/dist-es/pagination/ListSecurityGroupsPaginator.js +4 -0
  75. package/dist-es/pagination/ListUsersPaginator.js +4 -0
  76. package/dist-es/pagination/index.js +9 -0
  77. package/dist-es/runtimeConfig.browser.js +34 -0
  78. package/dist-es/runtimeConfig.js +50 -0
  79. package/dist-es/runtimeConfig.native.js +11 -0
  80. package/dist-es/runtimeConfig.shared.js +37 -0
  81. package/dist-es/runtimeExtensions.js +9 -0
  82. package/dist-es/schemas/schemas_0.js +1491 -0
  83. package/dist-types/Wickr.d.ts +305 -0
  84. package/dist-types/WickrClient.d.ts +229 -0
  85. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  86. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  87. package/dist-types/commands/BatchCreateUserCommand.d.ts +251 -0
  88. package/dist-types/commands/BatchDeleteUserCommand.d.ts +171 -0
  89. package/dist-types/commands/BatchLookupUserUnameCommand.d.ts +175 -0
  90. package/dist-types/commands/BatchReinviteUserCommand.d.ts +191 -0
  91. package/dist-types/commands/BatchResetDevicesForUserCommand.d.ts +190 -0
  92. package/dist-types/commands/BatchToggleUserSuspendStatusCommand.d.ts +174 -0
  93. package/dist-types/commands/CreateBotCommand.d.ts +161 -0
  94. package/dist-types/commands/CreateDataRetentionBotChallengeCommand.d.ts +110 -0
  95. package/dist-types/commands/CreateDataRetentionBotCommand.d.ts +123 -0
  96. package/dist-types/commands/CreateNetworkCommand.d.ts +150 -0
  97. package/dist-types/commands/CreateSecurityGroupCommand.d.ts +241 -0
  98. package/dist-types/commands/DeleteBotCommand.d.ts +126 -0
  99. package/dist-types/commands/DeleteDataRetentionBotCommand.d.ts +110 -0
  100. package/dist-types/commands/DeleteNetworkCommand.d.ts +124 -0
  101. package/dist-types/commands/DeleteSecurityGroupCommand.d.ts +130 -0
  102. package/dist-types/commands/GetBotCommand.d.ts +144 -0
  103. package/dist-types/commands/GetBotsCountCommand.d.ts +131 -0
  104. package/dist-types/commands/GetDataRetentionBotCommand.d.ts +140 -0
  105. package/dist-types/commands/GetGuestUserHistoryCountCommand.d.ts +155 -0
  106. package/dist-types/commands/GetNetworkCommand.d.ts +137 -0
  107. package/dist-types/commands/GetNetworkSettingsCommand.d.ts +166 -0
  108. package/dist-types/commands/GetOidcInfoCommand.d.ts +169 -0
  109. package/dist-types/commands/GetSecurityGroupCommand.d.ts +211 -0
  110. package/dist-types/commands/GetUserCommand.d.ts +194 -0
  111. package/dist-types/commands/GetUsersCountCommand.d.ts +137 -0
  112. package/dist-types/commands/ListBlockedGuestUsersCommand.d.ts +185 -0
  113. package/dist-types/commands/ListBotsCommand.d.ts +192 -0
  114. package/dist-types/commands/ListDevicesForUserCommand.d.ts +197 -0
  115. package/dist-types/commands/ListGuestUsersCommand.d.ts +192 -0
  116. package/dist-types/commands/ListNetworksCommand.d.ts +167 -0
  117. package/dist-types/commands/ListSecurityGroupUsersCommand.d.ts +156 -0
  118. package/dist-types/commands/ListSecurityGroupsCommand.d.ts +246 -0
  119. package/dist-types/commands/ListUsersCommand.d.ts +221 -0
  120. package/dist-types/commands/RegisterOidcConfigCommand.d.ts +174 -0
  121. package/dist-types/commands/RegisterOidcConfigTestCommand.d.ts +168 -0
  122. package/dist-types/commands/UpdateBotCommand.d.ts +133 -0
  123. package/dist-types/commands/UpdateDataRetentionCommand.d.ts +144 -0
  124. package/dist-types/commands/UpdateGuestUserCommand.d.ts +146 -0
  125. package/dist-types/commands/UpdateNetworkCommand.d.ts +142 -0
  126. package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +234 -0
  127. package/dist-types/commands/UpdateSecurityGroupCommand.d.ts +282 -0
  128. package/dist-types/commands/UpdateUserCommand.d.ts +229 -0
  129. package/dist-types/commands/index.d.ts +42 -0
  130. package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
  131. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  132. package/dist-types/endpoint/ruleset.d.ts +2 -0
  133. package/dist-types/extensionConfiguration.d.ts +9 -0
  134. package/dist-types/index.d.ts +17 -0
  135. package/dist-types/models/WickrServiceException.d.ts +14 -0
  136. package/dist-types/models/enums.d.ts +58 -0
  137. package/dist-types/models/errors.d.ts +92 -0
  138. package/dist-types/models/models_0.d.ts +2975 -0
  139. package/dist-types/pagination/Interfaces.d.ts +8 -0
  140. package/dist-types/pagination/ListBlockedGuestUsersPaginator.d.ts +7 -0
  141. package/dist-types/pagination/ListBotsPaginator.d.ts +7 -0
  142. package/dist-types/pagination/ListDevicesForUserPaginator.d.ts +7 -0
  143. package/dist-types/pagination/ListGuestUsersPaginator.d.ts +7 -0
  144. package/dist-types/pagination/ListNetworksPaginator.d.ts +7 -0
  145. package/dist-types/pagination/ListSecurityGroupUsersPaginator.d.ts +7 -0
  146. package/dist-types/pagination/ListSecurityGroupsPaginator.d.ts +7 -0
  147. package/dist-types/pagination/ListUsersPaginator.d.ts +7 -0
  148. package/dist-types/pagination/index.d.ts +9 -0
  149. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  150. package/dist-types/runtimeConfig.d.ts +55 -0
  151. package/dist-types/runtimeConfig.native.d.ts +54 -0
  152. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  153. package/dist-types/runtimeExtensions.d.ts +17 -0
  154. package/dist-types/schemas/schemas_0.d.ts +164 -0
  155. package/dist-types/ts3.4/Wickr.d.ts +720 -0
  156. package/dist-types/ts3.4/WickrClient.d.ts +371 -0
  157. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  158. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  159. package/dist-types/ts3.4/commands/BatchCreateUserCommand.d.ts +50 -0
  160. package/dist-types/ts3.4/commands/BatchDeleteUserCommand.d.ts +50 -0
  161. package/dist-types/ts3.4/commands/BatchLookupUserUnameCommand.d.ts +51 -0
  162. package/dist-types/ts3.4/commands/BatchReinviteUserCommand.d.ts +51 -0
  163. package/dist-types/ts3.4/commands/BatchResetDevicesForUserCommand.d.ts +51 -0
  164. package/dist-types/ts3.4/commands/BatchToggleUserSuspendStatusCommand.d.ts +51 -0
  165. package/dist-types/ts3.4/commands/CreateBotCommand.d.ts +47 -0
  166. package/dist-types/ts3.4/commands/CreateDataRetentionBotChallengeCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/CreateDataRetentionBotCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +50 -0
  169. package/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +51 -0
  170. package/dist-types/ts3.4/commands/DeleteBotCommand.d.ts +47 -0
  171. package/dist-types/ts3.4/commands/DeleteDataRetentionBotCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/DeleteNetworkCommand.d.ts +50 -0
  173. package/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/GetBotCommand.d.ts +41 -0
  175. package/dist-types/ts3.4/commands/GetBotsCountCommand.d.ts +47 -0
  176. package/dist-types/ts3.4/commands/GetDataRetentionBotCommand.d.ts +51 -0
  177. package/dist-types/ts3.4/commands/GetGuestUserHistoryCountCommand.d.ts +51 -0
  178. package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +47 -0
  179. package/dist-types/ts3.4/commands/GetNetworkSettingsCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/GetOidcInfoCommand.d.ts +47 -0
  181. package/dist-types/ts3.4/commands/GetSecurityGroupCommand.d.ts +50 -0
  182. package/dist-types/ts3.4/commands/GetUserCommand.d.ts +43 -0
  183. package/dist-types/ts3.4/commands/GetUsersCountCommand.d.ts +50 -0
  184. package/dist-types/ts3.4/commands/ListBlockedGuestUsersCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/ListBotsCommand.d.ts +47 -0
  186. package/dist-types/ts3.4/commands/ListDevicesForUserCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/ListGuestUsersCommand.d.ts +50 -0
  188. package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +47 -0
  189. package/dist-types/ts3.4/commands/ListSecurityGroupUsersCommand.d.ts +51 -0
  190. package/dist-types/ts3.4/commands/ListSecurityGroupsCommand.d.ts +51 -0
  191. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +47 -0
  192. package/dist-types/ts3.4/commands/RegisterOidcConfigCommand.d.ts +51 -0
  193. package/dist-types/ts3.4/commands/RegisterOidcConfigTestCommand.d.ts +51 -0
  194. package/dist-types/ts3.4/commands/UpdateBotCommand.d.ts +47 -0
  195. package/dist-types/ts3.4/commands/UpdateDataRetentionCommand.d.ts +51 -0
  196. package/dist-types/ts3.4/commands/UpdateGuestUserCommand.d.ts +50 -0
  197. package/dist-types/ts3.4/commands/UpdateNetworkCommand.d.ts +50 -0
  198. package/dist-types/ts3.4/commands/UpdateNetworkSettingsCommand.d.ts +51 -0
  199. package/dist-types/ts3.4/commands/UpdateSecurityGroupCommand.d.ts +51 -0
  200. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +47 -0
  201. package/dist-types/ts3.4/commands/index.d.ts +42 -0
  202. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  203. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  204. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  205. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  206. package/dist-types/ts3.4/index.d.ts +12 -0
  207. package/dist-types/ts3.4/models/WickrServiceException.d.ts +9 -0
  208. package/dist-types/ts3.4/models/enums.d.ts +31 -0
  209. package/dist-types/ts3.4/models/errors.d.ts +43 -0
  210. package/dist-types/ts3.4/models/models_0.d.ts +714 -0
  211. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  212. package/dist-types/ts3.4/pagination/ListBlockedGuestUsersPaginator.d.ts +11 -0
  213. package/dist-types/ts3.4/pagination/ListBotsPaginator.d.ts +11 -0
  214. package/dist-types/ts3.4/pagination/ListDevicesForUserPaginator.d.ts +11 -0
  215. package/dist-types/ts3.4/pagination/ListGuestUsersPaginator.d.ts +11 -0
  216. package/dist-types/ts3.4/pagination/ListNetworksPaginator.d.ts +11 -0
  217. package/dist-types/ts3.4/pagination/ListSecurityGroupUsersPaginator.d.ts +11 -0
  218. package/dist-types/ts3.4/pagination/ListSecurityGroupsPaginator.d.ts +11 -0
  219. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -0
  220. package/dist-types/ts3.4/pagination/index.d.ts +9 -0
  221. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
  222. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  223. package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
  224. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  225. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  226. package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -0
  227. package/package.json +100 -0
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListSecurityGroupUsersRequest,
5
+ ListSecurityGroupUsersResponse,
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 ListSecurityGroupUsersCommandInput
15
+ extends ListSecurityGroupUsersRequest {}
16
+ export interface ListSecurityGroupUsersCommandOutput
17
+ extends ListSecurityGroupUsersResponse,
18
+ __MetadataBearer {}
19
+ declare const ListSecurityGroupUsersCommand_base: {
20
+ new (
21
+ input: ListSecurityGroupUsersCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListSecurityGroupUsersCommandInput,
24
+ ListSecurityGroupUsersCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListSecurityGroupUsersCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListSecurityGroupUsersCommandInput,
33
+ ListSecurityGroupUsersCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListSecurityGroupUsersCommand extends ListSecurityGroupUsersCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListSecurityGroupUsersRequest;
44
+ output: ListSecurityGroupUsersResponse;
45
+ };
46
+ sdk: {
47
+ input: ListSecurityGroupUsersCommandInput;
48
+ output: ListSecurityGroupUsersCommandOutput;
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
+ ListSecurityGroupsRequest,
5
+ ListSecurityGroupsResponse,
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 ListSecurityGroupsCommandInput
15
+ extends ListSecurityGroupsRequest {}
16
+ export interface ListSecurityGroupsCommandOutput
17
+ extends ListSecurityGroupsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListSecurityGroupsCommand_base: {
20
+ new (
21
+ input: ListSecurityGroupsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListSecurityGroupsCommandInput,
24
+ ListSecurityGroupsCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListSecurityGroupsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListSecurityGroupsCommandInput,
33
+ ListSecurityGroupsCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListSecurityGroupsCommand extends ListSecurityGroupsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListSecurityGroupsRequest;
44
+ output: ListSecurityGroupsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListSecurityGroupsCommandInput;
48
+ output: ListSecurityGroupsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListUsersRequest, ListUsersResponse } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ WickrClientResolvedConfig,
8
+ } from "../WickrClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListUsersCommandInput extends ListUsersRequest {}
12
+ export interface ListUsersCommandOutput
13
+ extends ListUsersResponse,
14
+ __MetadataBearer {}
15
+ declare const ListUsersCommand_base: {
16
+ new (
17
+ input: ListUsersCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListUsersCommandInput,
20
+ ListUsersCommandOutput,
21
+ WickrClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListUsersCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListUsersCommandInput,
29
+ ListUsersCommandOutput,
30
+ WickrClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListUsersCommand extends ListUsersCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListUsersRequest;
40
+ output: ListUsersResponse;
41
+ };
42
+ sdk: {
43
+ input: ListUsersCommandInput;
44
+ output: ListUsersCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ RegisterOidcConfigRequest,
5
+ RegisterOidcConfigResponse,
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 RegisterOidcConfigCommandInput
15
+ extends RegisterOidcConfigRequest {}
16
+ export interface RegisterOidcConfigCommandOutput
17
+ extends RegisterOidcConfigResponse,
18
+ __MetadataBearer {}
19
+ declare const RegisterOidcConfigCommand_base: {
20
+ new (
21
+ input: RegisterOidcConfigCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ RegisterOidcConfigCommandInput,
24
+ RegisterOidcConfigCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: RegisterOidcConfigCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ RegisterOidcConfigCommandInput,
33
+ RegisterOidcConfigCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class RegisterOidcConfigCommand extends RegisterOidcConfigCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: RegisterOidcConfigRequest;
44
+ output: RegisterOidcConfigResponse;
45
+ };
46
+ sdk: {
47
+ input: RegisterOidcConfigCommandInput;
48
+ output: RegisterOidcConfigCommandOutput;
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
+ RegisterOidcConfigTestRequest,
5
+ RegisterOidcConfigTestResponse,
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 RegisterOidcConfigTestCommandInput
15
+ extends RegisterOidcConfigTestRequest {}
16
+ export interface RegisterOidcConfigTestCommandOutput
17
+ extends RegisterOidcConfigTestResponse,
18
+ __MetadataBearer {}
19
+ declare const RegisterOidcConfigTestCommand_base: {
20
+ new (
21
+ input: RegisterOidcConfigTestCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ RegisterOidcConfigTestCommandInput,
24
+ RegisterOidcConfigTestCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: RegisterOidcConfigTestCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ RegisterOidcConfigTestCommandInput,
33
+ RegisterOidcConfigTestCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class RegisterOidcConfigTestCommand extends RegisterOidcConfigTestCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: RegisterOidcConfigTestRequest;
44
+ output: RegisterOidcConfigTestResponse;
45
+ };
46
+ sdk: {
47
+ input: RegisterOidcConfigTestCommandInput;
48
+ output: RegisterOidcConfigTestCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateBotRequest, UpdateBotResponse } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ WickrClientResolvedConfig,
8
+ } from "../WickrClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateBotCommandInput extends UpdateBotRequest {}
12
+ export interface UpdateBotCommandOutput
13
+ extends UpdateBotResponse,
14
+ __MetadataBearer {}
15
+ declare const UpdateBotCommand_base: {
16
+ new (
17
+ input: UpdateBotCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ UpdateBotCommandInput,
20
+ UpdateBotCommandOutput,
21
+ WickrClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateBotCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ UpdateBotCommandInput,
29
+ UpdateBotCommandOutput,
30
+ WickrClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class UpdateBotCommand extends UpdateBotCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateBotRequest;
40
+ output: UpdateBotResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateBotCommandInput;
44
+ output: UpdateBotCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateDataRetentionRequest,
5
+ UpdateDataRetentionResponse,
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 UpdateDataRetentionCommandInput
15
+ extends UpdateDataRetentionRequest {}
16
+ export interface UpdateDataRetentionCommandOutput
17
+ extends UpdateDataRetentionResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateDataRetentionCommand_base: {
20
+ new (
21
+ input: UpdateDataRetentionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateDataRetentionCommandInput,
24
+ UpdateDataRetentionCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateDataRetentionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateDataRetentionCommandInput,
33
+ UpdateDataRetentionCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateDataRetentionCommand extends UpdateDataRetentionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateDataRetentionRequest;
44
+ output: UpdateDataRetentionResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateDataRetentionCommandInput;
48
+ output: UpdateDataRetentionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateGuestUserRequest,
5
+ UpdateGuestUserResponse,
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 UpdateGuestUserCommandInput extends UpdateGuestUserRequest {}
15
+ export interface UpdateGuestUserCommandOutput
16
+ extends UpdateGuestUserResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateGuestUserCommand_base: {
19
+ new (
20
+ input: UpdateGuestUserCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateGuestUserCommandInput,
23
+ UpdateGuestUserCommandOutput,
24
+ WickrClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: UpdateGuestUserCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateGuestUserCommandInput,
32
+ UpdateGuestUserCommandOutput,
33
+ WickrClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateGuestUserCommand extends UpdateGuestUserCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateGuestUserRequest;
43
+ output: UpdateGuestUserResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateGuestUserCommandInput;
47
+ output: UpdateGuestUserCommandOutput;
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
+ UpdateNetworkRequest,
5
+ UpdateNetworkResponse,
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 UpdateNetworkCommandInput extends UpdateNetworkRequest {}
15
+ export interface UpdateNetworkCommandOutput
16
+ extends UpdateNetworkResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateNetworkCommand_base: {
19
+ new (
20
+ input: UpdateNetworkCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateNetworkCommandInput,
23
+ UpdateNetworkCommandOutput,
24
+ WickrClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: UpdateNetworkCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateNetworkCommandInput,
32
+ UpdateNetworkCommandOutput,
33
+ WickrClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateNetworkCommand extends UpdateNetworkCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateNetworkRequest;
43
+ output: UpdateNetworkResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateNetworkCommandInput;
47
+ output: UpdateNetworkCommandOutput;
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
+ UpdateNetworkSettingsRequest,
5
+ UpdateNetworkSettingsResponse,
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 UpdateNetworkSettingsCommandInput
15
+ extends UpdateNetworkSettingsRequest {}
16
+ export interface UpdateNetworkSettingsCommandOutput
17
+ extends UpdateNetworkSettingsResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateNetworkSettingsCommand_base: {
20
+ new (
21
+ input: UpdateNetworkSettingsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateNetworkSettingsCommandInput,
24
+ UpdateNetworkSettingsCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateNetworkSettingsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateNetworkSettingsCommandInput,
33
+ UpdateNetworkSettingsCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateNetworkSettingsCommand extends UpdateNetworkSettingsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateNetworkSettingsRequest;
44
+ output: UpdateNetworkSettingsResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateNetworkSettingsCommandInput;
48
+ output: UpdateNetworkSettingsCommandOutput;
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
+ UpdateSecurityGroupRequest,
5
+ UpdateSecurityGroupResponse,
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 UpdateSecurityGroupCommandInput
15
+ extends UpdateSecurityGroupRequest {}
16
+ export interface UpdateSecurityGroupCommandOutput
17
+ extends UpdateSecurityGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateSecurityGroupCommand_base: {
20
+ new (
21
+ input: UpdateSecurityGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateSecurityGroupCommandInput,
24
+ UpdateSecurityGroupCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateSecurityGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateSecurityGroupCommandInput,
33
+ UpdateSecurityGroupCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateSecurityGroupCommand extends UpdateSecurityGroupCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateSecurityGroupRequest;
44
+ output: UpdateSecurityGroupResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateSecurityGroupCommandInput;
48
+ output: UpdateSecurityGroupCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ WickrClientResolvedConfig,
8
+ } from "../WickrClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateUserCommandInput extends UpdateUserRequest {}
12
+ export interface UpdateUserCommandOutput
13
+ extends UpdateUserResponse,
14
+ __MetadataBearer {}
15
+ declare const UpdateUserCommand_base: {
16
+ new (
17
+ input: UpdateUserCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ UpdateUserCommandInput,
20
+ UpdateUserCommandOutput,
21
+ WickrClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateUserCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ UpdateUserCommandInput,
29
+ UpdateUserCommandOutput,
30
+ WickrClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class UpdateUserCommand extends UpdateUserCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateUserRequest;
40
+ output: UpdateUserResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateUserCommandInput;
44
+ output: UpdateUserCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,42 @@
1
+ export * from "./BatchCreateUserCommand";
2
+ export * from "./BatchDeleteUserCommand";
3
+ export * from "./BatchLookupUserUnameCommand";
4
+ export * from "./BatchReinviteUserCommand";
5
+ export * from "./BatchResetDevicesForUserCommand";
6
+ export * from "./BatchToggleUserSuspendStatusCommand";
7
+ export * from "./CreateBotCommand";
8
+ export * from "./CreateDataRetentionBotChallengeCommand";
9
+ export * from "./CreateDataRetentionBotCommand";
10
+ export * from "./CreateNetworkCommand";
11
+ export * from "./CreateSecurityGroupCommand";
12
+ export * from "./DeleteBotCommand";
13
+ export * from "./DeleteDataRetentionBotCommand";
14
+ export * from "./DeleteNetworkCommand";
15
+ export * from "./DeleteSecurityGroupCommand";
16
+ export * from "./GetBotCommand";
17
+ export * from "./GetBotsCountCommand";
18
+ export * from "./GetDataRetentionBotCommand";
19
+ export * from "./GetGuestUserHistoryCountCommand";
20
+ export * from "./GetNetworkCommand";
21
+ export * from "./GetNetworkSettingsCommand";
22
+ export * from "./GetOidcInfoCommand";
23
+ export * from "./GetSecurityGroupCommand";
24
+ export * from "./GetUserCommand";
25
+ export * from "./GetUsersCountCommand";
26
+ export * from "./ListBlockedGuestUsersCommand";
27
+ export * from "./ListBotsCommand";
28
+ export * from "./ListDevicesForUserCommand";
29
+ export * from "./ListGuestUsersCommand";
30
+ export * from "./ListNetworksCommand";
31
+ export * from "./ListSecurityGroupUsersCommand";
32
+ export * from "./ListSecurityGroupsCommand";
33
+ export * from "./ListUsersCommand";
34
+ export * from "./RegisterOidcConfigCommand";
35
+ export * from "./RegisterOidcConfigTestCommand";
36
+ export * from "./UpdateBotCommand";
37
+ export * from "./UpdateDataRetentionCommand";
38
+ export * from "./UpdateGuestUserCommand";
39
+ export * from "./UpdateNetworkCommand";
40
+ export * from "./UpdateNetworkSettingsCommand";
41
+ export * from "./UpdateSecurityGroupCommand";
42
+ export * from "./UpdateUserCommand";