@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
+ BatchResetDevicesForUserRequest,
5
+ BatchResetDevicesForUserResponse,
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 BatchResetDevicesForUserCommandInput
15
+ extends BatchResetDevicesForUserRequest {}
16
+ export interface BatchResetDevicesForUserCommandOutput
17
+ extends BatchResetDevicesForUserResponse,
18
+ __MetadataBearer {}
19
+ declare const BatchResetDevicesForUserCommand_base: {
20
+ new (
21
+ input: BatchResetDevicesForUserCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ BatchResetDevicesForUserCommandInput,
24
+ BatchResetDevicesForUserCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: BatchResetDevicesForUserCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ BatchResetDevicesForUserCommandInput,
33
+ BatchResetDevicesForUserCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class BatchResetDevicesForUserCommand extends BatchResetDevicesForUserCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: BatchResetDevicesForUserRequest;
44
+ output: BatchResetDevicesForUserResponse;
45
+ };
46
+ sdk: {
47
+ input: BatchResetDevicesForUserCommandInput;
48
+ output: BatchResetDevicesForUserCommandOutput;
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
+ BatchToggleUserSuspendStatusRequest,
5
+ BatchToggleUserSuspendStatusResponse,
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 BatchToggleUserSuspendStatusCommandInput
15
+ extends BatchToggleUserSuspendStatusRequest {}
16
+ export interface BatchToggleUserSuspendStatusCommandOutput
17
+ extends BatchToggleUserSuspendStatusResponse,
18
+ __MetadataBearer {}
19
+ declare const BatchToggleUserSuspendStatusCommand_base: {
20
+ new (
21
+ input: BatchToggleUserSuspendStatusCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ BatchToggleUserSuspendStatusCommandInput,
24
+ BatchToggleUserSuspendStatusCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: BatchToggleUserSuspendStatusCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ BatchToggleUserSuspendStatusCommandInput,
33
+ BatchToggleUserSuspendStatusCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class BatchToggleUserSuspendStatusCommand extends BatchToggleUserSuspendStatusCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: BatchToggleUserSuspendStatusRequest;
44
+ output: BatchToggleUserSuspendStatusResponse;
45
+ };
46
+ sdk: {
47
+ input: BatchToggleUserSuspendStatusCommandInput;
48
+ output: BatchToggleUserSuspendStatusCommandOutput;
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 { CreateBotRequest, CreateBotResponse } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ WickrClientResolvedConfig,
8
+ } from "../WickrClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateBotCommandInput extends CreateBotRequest {}
12
+ export interface CreateBotCommandOutput
13
+ extends CreateBotResponse,
14
+ __MetadataBearer {}
15
+ declare const CreateBotCommand_base: {
16
+ new (
17
+ input: CreateBotCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreateBotCommandInput,
20
+ CreateBotCommandOutput,
21
+ WickrClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: CreateBotCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreateBotCommandInput,
29
+ CreateBotCommandOutput,
30
+ WickrClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreateBotCommand extends CreateBotCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateBotRequest;
40
+ output: CreateBotResponse;
41
+ };
42
+ sdk: {
43
+ input: CreateBotCommandInput;
44
+ output: CreateBotCommandOutput;
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
+ CreateDataRetentionBotChallengeRequest,
5
+ CreateDataRetentionBotChallengeResponse,
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 CreateDataRetentionBotChallengeCommandInput
15
+ extends CreateDataRetentionBotChallengeRequest {}
16
+ export interface CreateDataRetentionBotChallengeCommandOutput
17
+ extends CreateDataRetentionBotChallengeResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateDataRetentionBotChallengeCommand_base: {
20
+ new (
21
+ input: CreateDataRetentionBotChallengeCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateDataRetentionBotChallengeCommandInput,
24
+ CreateDataRetentionBotChallengeCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateDataRetentionBotChallengeCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateDataRetentionBotChallengeCommandInput,
33
+ CreateDataRetentionBotChallengeCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateDataRetentionBotChallengeCommand extends CreateDataRetentionBotChallengeCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateDataRetentionBotChallengeRequest;
44
+ output: CreateDataRetentionBotChallengeResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateDataRetentionBotChallengeCommandInput;
48
+ output: CreateDataRetentionBotChallengeCommandOutput;
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
+ CreateDataRetentionBotRequest,
5
+ CreateDataRetentionBotResponse,
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 CreateDataRetentionBotCommandInput
15
+ extends CreateDataRetentionBotRequest {}
16
+ export interface CreateDataRetentionBotCommandOutput
17
+ extends CreateDataRetentionBotResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateDataRetentionBotCommand_base: {
20
+ new (
21
+ input: CreateDataRetentionBotCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateDataRetentionBotCommandInput,
24
+ CreateDataRetentionBotCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateDataRetentionBotCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateDataRetentionBotCommandInput,
33
+ CreateDataRetentionBotCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateDataRetentionBotCommand extends CreateDataRetentionBotCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateDataRetentionBotRequest;
44
+ output: CreateDataRetentionBotResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateDataRetentionBotCommandInput;
48
+ output: CreateDataRetentionBotCommandOutput;
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
+ CreateNetworkRequest,
5
+ CreateNetworkResponse,
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 CreateNetworkCommandInput extends CreateNetworkRequest {}
15
+ export interface CreateNetworkCommandOutput
16
+ extends CreateNetworkResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateNetworkCommand_base: {
19
+ new (
20
+ input: CreateNetworkCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateNetworkCommandInput,
23
+ CreateNetworkCommandOutput,
24
+ WickrClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateNetworkCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateNetworkCommandInput,
32
+ CreateNetworkCommandOutput,
33
+ WickrClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateNetworkCommand extends CreateNetworkCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateNetworkRequest;
43
+ output: CreateNetworkResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateNetworkCommandInput;
47
+ output: CreateNetworkCommandOutput;
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
+ CreateSecurityGroupRequest,
5
+ CreateSecurityGroupResponse,
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 CreateSecurityGroupCommandInput
15
+ extends CreateSecurityGroupRequest {}
16
+ export interface CreateSecurityGroupCommandOutput
17
+ extends CreateSecurityGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateSecurityGroupCommand_base: {
20
+ new (
21
+ input: CreateSecurityGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateSecurityGroupCommandInput,
24
+ CreateSecurityGroupCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateSecurityGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateSecurityGroupCommandInput,
33
+ CreateSecurityGroupCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateSecurityGroupCommand extends CreateSecurityGroupCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateSecurityGroupRequest;
44
+ output: CreateSecurityGroupResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateSecurityGroupCommandInput;
48
+ output: CreateSecurityGroupCommandOutput;
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 { DeleteBotRequest, DeleteBotResponse } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ WickrClientResolvedConfig,
8
+ } from "../WickrClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteBotCommandInput extends DeleteBotRequest {}
12
+ export interface DeleteBotCommandOutput
13
+ extends DeleteBotResponse,
14
+ __MetadataBearer {}
15
+ declare const DeleteBotCommand_base: {
16
+ new (
17
+ input: DeleteBotCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteBotCommandInput,
20
+ DeleteBotCommandOutput,
21
+ WickrClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteBotCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteBotCommandInput,
29
+ DeleteBotCommandOutput,
30
+ WickrClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteBotCommand extends DeleteBotCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteBotRequest;
40
+ output: DeleteBotResponse;
41
+ };
42
+ sdk: {
43
+ input: DeleteBotCommandInput;
44
+ output: DeleteBotCommandOutput;
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
+ DeleteDataRetentionBotRequest,
5
+ DeleteDataRetentionBotResponse,
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 DeleteDataRetentionBotCommandInput
15
+ extends DeleteDataRetentionBotRequest {}
16
+ export interface DeleteDataRetentionBotCommandOutput
17
+ extends DeleteDataRetentionBotResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteDataRetentionBotCommand_base: {
20
+ new (
21
+ input: DeleteDataRetentionBotCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteDataRetentionBotCommandInput,
24
+ DeleteDataRetentionBotCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteDataRetentionBotCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteDataRetentionBotCommandInput,
33
+ DeleteDataRetentionBotCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteDataRetentionBotCommand extends DeleteDataRetentionBotCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteDataRetentionBotRequest;
44
+ output: DeleteDataRetentionBotResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteDataRetentionBotCommandInput;
48
+ output: DeleteDataRetentionBotCommandOutput;
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
+ DeleteNetworkRequest,
5
+ DeleteNetworkResponse,
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 DeleteNetworkCommandInput extends DeleteNetworkRequest {}
15
+ export interface DeleteNetworkCommandOutput
16
+ extends DeleteNetworkResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteNetworkCommand_base: {
19
+ new (
20
+ input: DeleteNetworkCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteNetworkCommandInput,
23
+ DeleteNetworkCommandOutput,
24
+ WickrClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DeleteNetworkCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteNetworkCommandInput,
32
+ DeleteNetworkCommandOutput,
33
+ WickrClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteNetworkCommand extends DeleteNetworkCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteNetworkRequest;
43
+ output: DeleteNetworkResponse;
44
+ };
45
+ sdk: {
46
+ input: DeleteNetworkCommandInput;
47
+ output: DeleteNetworkCommandOutput;
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
+ DeleteSecurityGroupRequest,
5
+ DeleteSecurityGroupResponse,
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 DeleteSecurityGroupCommandInput
15
+ extends DeleteSecurityGroupRequest {}
16
+ export interface DeleteSecurityGroupCommandOutput
17
+ extends DeleteSecurityGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteSecurityGroupCommand_base: {
20
+ new (
21
+ input: DeleteSecurityGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteSecurityGroupCommandInput,
24
+ DeleteSecurityGroupCommandOutput,
25
+ WickrClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteSecurityGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteSecurityGroupCommandInput,
33
+ DeleteSecurityGroupCommandOutput,
34
+ WickrClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteSecurityGroupCommand extends DeleteSecurityGroupCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteSecurityGroupRequest;
44
+ output: DeleteSecurityGroupResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteSecurityGroupCommandInput;
48
+ output: DeleteSecurityGroupCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,41 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetBotRequest, GetBotResponse } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ WickrClientResolvedConfig,
8
+ } from "../WickrClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetBotCommandInput extends GetBotRequest {}
12
+ export interface GetBotCommandOutput extends GetBotResponse, __MetadataBearer {}
13
+ declare const GetBotCommand_base: {
14
+ new (input: GetBotCommandInput): import("@smithy/smithy-client").CommandImpl<
15
+ GetBotCommandInput,
16
+ GetBotCommandOutput,
17
+ WickrClientResolvedConfig,
18
+ ServiceInputTypes,
19
+ ServiceOutputTypes
20
+ >;
21
+ new (input: GetBotCommandInput): import("@smithy/smithy-client").CommandImpl<
22
+ GetBotCommandInput,
23
+ GetBotCommandOutput,
24
+ WickrClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class GetBotCommand extends GetBotCommand_base {
31
+ protected static __types: {
32
+ api: {
33
+ input: GetBotRequest;
34
+ output: GetBotResponse;
35
+ };
36
+ sdk: {
37
+ input: GetBotCommandInput;
38
+ output: GetBotCommandOutput;
39
+ };
40
+ };
41
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetBotsCountRequest, GetBotsCountResponse } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ WickrClientResolvedConfig,
8
+ } from "../WickrClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetBotsCountCommandInput extends GetBotsCountRequest {}
12
+ export interface GetBotsCountCommandOutput
13
+ extends GetBotsCountResponse,
14
+ __MetadataBearer {}
15
+ declare const GetBotsCountCommand_base: {
16
+ new (
17
+ input: GetBotsCountCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetBotsCountCommandInput,
20
+ GetBotsCountCommandOutput,
21
+ WickrClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetBotsCountCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetBotsCountCommandInput,
29
+ GetBotsCountCommandOutput,
30
+ WickrClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetBotsCountCommand extends GetBotsCountCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetBotsCountRequest;
40
+ output: GetBotsCountResponse;
41
+ };
42
+ sdk: {
43
+ input: GetBotsCountCommandInput;
44
+ output: GetBotsCountCommandOutput;
45
+ };
46
+ };
47
+ }