@aws-sdk/client-security-ir 3.703.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 (191) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +381 -0
  3. package/dist-cjs/SecurityIR.js +55 -0
  4. package/dist-cjs/SecurityIRClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/BatchGetMemberAccountDetailsCommand.js +26 -0
  8. package/dist-cjs/commands/CancelMembershipCommand.js +26 -0
  9. package/dist-cjs/commands/CloseCaseCommand.js +26 -0
  10. package/dist-cjs/commands/CreateCaseCommand.js +27 -0
  11. package/dist-cjs/commands/CreateCaseCommentCommand.js +27 -0
  12. package/dist-cjs/commands/CreateMembershipCommand.js +27 -0
  13. package/dist-cjs/commands/GetCaseAttachmentDownloadUrlCommand.js +27 -0
  14. package/dist-cjs/commands/GetCaseAttachmentUploadUrlCommand.js +27 -0
  15. package/dist-cjs/commands/GetCaseCommand.js +27 -0
  16. package/dist-cjs/commands/GetMembershipCommand.js +27 -0
  17. package/dist-cjs/commands/ListCaseEditsCommand.js +26 -0
  18. package/dist-cjs/commands/ListCasesCommand.js +27 -0
  19. package/dist-cjs/commands/ListCommentsCommand.js +27 -0
  20. package/dist-cjs/commands/ListMembershipsCommand.js +26 -0
  21. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  22. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  23. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  24. package/dist-cjs/commands/UpdateCaseCommand.js +27 -0
  25. package/dist-cjs/commands/UpdateCaseCommentCommand.js +27 -0
  26. package/dist-cjs/commands/UpdateCaseStatusCommand.js +26 -0
  27. package/dist-cjs/commands/UpdateMembershipCommand.js +27 -0
  28. package/dist-cjs/commands/UpdateResolverTypeCommand.js +26 -0
  29. package/dist-cjs/commands/index.js +25 -0
  30. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  31. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  32. package/dist-cjs/endpoint/ruleset.js +7 -0
  33. package/dist-cjs/extensionConfiguration.js +2 -0
  34. package/dist-cjs/index.js +11 -0
  35. package/dist-cjs/models/SecurityIRServiceException.js +12 -0
  36. package/dist-cjs/models/index.js +4 -0
  37. package/dist-cjs/models/models_0.js +373 -0
  38. package/dist-cjs/pagination/Interfaces.js +2 -0
  39. package/dist-cjs/pagination/ListCaseEditsPaginator.js +7 -0
  40. package/dist-cjs/pagination/ListCasesPaginator.js +7 -0
  41. package/dist-cjs/pagination/ListCommentsPaginator.js +7 -0
  42. package/dist-cjs/pagination/ListMembershipsPaginator.js +7 -0
  43. package/dist-cjs/pagination/index.js +8 -0
  44. package/dist-cjs/protocols/Aws_restJson1.js +956 -0
  45. package/dist-cjs/runtimeConfig.browser.js +39 -0
  46. package/dist-cjs/runtimeConfig.js +50 -0
  47. package/dist-cjs/runtimeConfig.native.js +15 -0
  48. package/dist-cjs/runtimeConfig.shared.js +34 -0
  49. package/dist-cjs/runtimeExtensions.js +25 -0
  50. package/dist-es/SecurityIR.js +51 -0
  51. package/dist-es/SecurityIRClient.js +46 -0
  52. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  53. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  54. package/dist-es/commands/BatchGetMemberAccountDetailsCommand.js +22 -0
  55. package/dist-es/commands/CancelMembershipCommand.js +22 -0
  56. package/dist-es/commands/CloseCaseCommand.js +22 -0
  57. package/dist-es/commands/CreateCaseCommand.js +23 -0
  58. package/dist-es/commands/CreateCaseCommentCommand.js +23 -0
  59. package/dist-es/commands/CreateMembershipCommand.js +23 -0
  60. package/dist-es/commands/GetCaseAttachmentDownloadUrlCommand.js +23 -0
  61. package/dist-es/commands/GetCaseAttachmentUploadUrlCommand.js +23 -0
  62. package/dist-es/commands/GetCaseCommand.js +23 -0
  63. package/dist-es/commands/GetMembershipCommand.js +23 -0
  64. package/dist-es/commands/ListCaseEditsCommand.js +22 -0
  65. package/dist-es/commands/ListCasesCommand.js +23 -0
  66. package/dist-es/commands/ListCommentsCommand.js +23 -0
  67. package/dist-es/commands/ListMembershipsCommand.js +22 -0
  68. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  69. package/dist-es/commands/TagResourceCommand.js +22 -0
  70. package/dist-es/commands/UntagResourceCommand.js +22 -0
  71. package/dist-es/commands/UpdateCaseCommand.js +23 -0
  72. package/dist-es/commands/UpdateCaseCommentCommand.js +23 -0
  73. package/dist-es/commands/UpdateCaseStatusCommand.js +22 -0
  74. package/dist-es/commands/UpdateMembershipCommand.js +23 -0
  75. package/dist-es/commands/UpdateResolverTypeCommand.js +22 -0
  76. package/dist-es/commands/index.js +22 -0
  77. package/dist-es/endpoint/EndpointParameters.js +12 -0
  78. package/dist-es/endpoint/endpointResolver.js +14 -0
  79. package/dist-es/endpoint/ruleset.js +4 -0
  80. package/dist-es/extensionConfiguration.js +1 -0
  81. package/dist-es/index.js +6 -0
  82. package/dist-es/models/SecurityIRServiceException.js +8 -0
  83. package/dist-es/models/index.js +1 -0
  84. package/dist-es/models/models_0.js +341 -0
  85. package/dist-es/pagination/Interfaces.js +1 -0
  86. package/dist-es/pagination/ListCaseEditsPaginator.js +4 -0
  87. package/dist-es/pagination/ListCasesPaginator.js +4 -0
  88. package/dist-es/pagination/ListCommentsPaginator.js +4 -0
  89. package/dist-es/pagination/ListMembershipsPaginator.js +4 -0
  90. package/dist-es/pagination/index.js +5 -0
  91. package/dist-es/protocols/Aws_restJson1.js +909 -0
  92. package/dist-es/runtimeConfig.browser.js +34 -0
  93. package/dist-es/runtimeConfig.js +45 -0
  94. package/dist-es/runtimeConfig.native.js +11 -0
  95. package/dist-es/runtimeConfig.shared.js +30 -0
  96. package/dist-es/runtimeExtensions.js +21 -0
  97. package/dist-types/SecurityIR.d.ts +166 -0
  98. package/dist-types/SecurityIRClient.d.ts +191 -0
  99. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  100. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  101. package/dist-types/commands/BatchGetMemberAccountDetailsCommand.d.ts +114 -0
  102. package/dist-types/commands/CancelMembershipCommand.d.ts +98 -0
  103. package/dist-types/commands/CloseCaseCommand.d.ts +99 -0
  104. package/dist-types/commands/CreateCaseCommand.d.ts +130 -0
  105. package/dist-types/commands/CreateCaseCommentCommand.d.ts +100 -0
  106. package/dist-types/commands/CreateMembershipCommand.d.ts +115 -0
  107. package/dist-types/commands/GetCaseAttachmentDownloadUrlCommand.d.ts +99 -0
  108. package/dist-types/commands/GetCaseAttachmentUploadUrlCommand.d.ts +101 -0
  109. package/dist-types/commands/GetCaseCommand.d.ts +143 -0
  110. package/dist-types/commands/GetMembershipCommand.d.ts +120 -0
  111. package/dist-types/commands/ListCaseEditsCommand.d.ts +109 -0
  112. package/dist-types/commands/ListCasesCommand.d.ts +114 -0
  113. package/dist-types/commands/ListCommentsCommand.d.ts +111 -0
  114. package/dist-types/commands/ListMembershipsCommand.d.ts +108 -0
  115. package/dist-types/commands/ListTagsForResourceCommand.d.ts +100 -0
  116. package/dist-types/commands/TagResourceCommand.d.ts +99 -0
  117. package/dist-types/commands/UntagResourceCommand.d.ts +99 -0
  118. package/dist-types/commands/UpdateCaseCommand.d.ts +149 -0
  119. package/dist-types/commands/UpdateCaseCommentCommand.d.ts +101 -0
  120. package/dist-types/commands/UpdateCaseStatusCommand.d.ts +101 -0
  121. package/dist-types/commands/UpdateMembershipCommand.d.ts +110 -0
  122. package/dist-types/commands/UpdateResolverTypeCommand.d.ts +105 -0
  123. package/dist-types/commands/index.d.ts +22 -0
  124. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  125. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  126. package/dist-types/endpoint/ruleset.d.ts +2 -0
  127. package/dist-types/extensionConfiguration.d.ts +9 -0
  128. package/dist-types/index.d.ts +14 -0
  129. package/dist-types/models/SecurityIRServiceException.d.ts +14 -0
  130. package/dist-types/models/index.d.ts +1 -0
  131. package/dist-types/models/models_0.d.ts +1734 -0
  132. package/dist-types/pagination/Interfaces.d.ts +8 -0
  133. package/dist-types/pagination/ListCaseEditsPaginator.d.ts +7 -0
  134. package/dist-types/pagination/ListCasesPaginator.d.ts +7 -0
  135. package/dist-types/pagination/ListCommentsPaginator.d.ts +7 -0
  136. package/dist-types/pagination/ListMembershipsPaginator.d.ts +7 -0
  137. package/dist-types/pagination/index.d.ts +5 -0
  138. package/dist-types/protocols/Aws_restJson1.d.ts +200 -0
  139. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  140. package/dist-types/runtimeConfig.d.ts +48 -0
  141. package/dist-types/runtimeConfig.native.d.ts +47 -0
  142. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  143. package/dist-types/runtimeExtensions.d.ts +17 -0
  144. package/dist-types/ts3.4/SecurityIR.d.ts +383 -0
  145. package/dist-types/ts3.4/SecurityIRClient.d.ts +250 -0
  146. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  147. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  148. package/dist-types/ts3.4/commands/BatchGetMemberAccountDetailsCommand.d.ts +51 -0
  149. package/dist-types/ts3.4/commands/CancelMembershipCommand.d.ts +50 -0
  150. package/dist-types/ts3.4/commands/CloseCaseCommand.d.ts +47 -0
  151. package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +47 -0
  152. package/dist-types/ts3.4/commands/CreateCaseCommentCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +50 -0
  154. package/dist-types/ts3.4/commands/GetCaseAttachmentDownloadUrlCommand.d.ts +51 -0
  155. package/dist-types/ts3.4/commands/GetCaseAttachmentUploadUrlCommand.d.ts +51 -0
  156. package/dist-types/ts3.4/commands/GetCaseCommand.d.ts +43 -0
  157. package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +50 -0
  158. package/dist-types/ts3.4/commands/ListCaseEditsCommand.d.ts +50 -0
  159. package/dist-types/ts3.4/commands/ListCasesCommand.d.ts +47 -0
  160. package/dist-types/ts3.4/commands/ListCommentsCommand.d.ts +47 -0
  161. package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +50 -0
  162. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  163. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  164. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
  165. package/dist-types/ts3.4/commands/UpdateCaseCommand.d.ts +47 -0
  166. package/dist-types/ts3.4/commands/UpdateCaseCommentCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/UpdateCaseStatusCommand.d.ts +50 -0
  168. package/dist-types/ts3.4/commands/UpdateMembershipCommand.d.ts +50 -0
  169. package/dist-types/ts3.4/commands/UpdateResolverTypeCommand.d.ts +51 -0
  170. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  171. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  172. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  173. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  174. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  175. package/dist-types/ts3.4/index.d.ts +9 -0
  176. package/dist-types/ts3.4/models/SecurityIRServiceException.d.ts +9 -0
  177. package/dist-types/ts3.4/models/index.d.ts +1 -0
  178. package/dist-types/ts3.4/models/models_0.d.ts +552 -0
  179. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  180. package/dist-types/ts3.4/pagination/ListCaseEditsPaginator.d.ts +11 -0
  181. package/dist-types/ts3.4/pagination/ListCasesPaginator.d.ts +11 -0
  182. package/dist-types/ts3.4/pagination/ListCommentsPaginator.d.ts +11 -0
  183. package/dist-types/ts3.4/pagination/ListMembershipsPaginator.d.ts +11 -0
  184. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  185. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -0
  186. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  187. package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
  188. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  189. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  190. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  191. package/package.json +103 -0
@@ -0,0 +1,383 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ BatchGetMemberAccountDetailsCommandInput,
4
+ BatchGetMemberAccountDetailsCommandOutput,
5
+ } from "./commands/BatchGetMemberAccountDetailsCommand";
6
+ import {
7
+ CancelMembershipCommandInput,
8
+ CancelMembershipCommandOutput,
9
+ } from "./commands/CancelMembershipCommand";
10
+ import {
11
+ CloseCaseCommandInput,
12
+ CloseCaseCommandOutput,
13
+ } from "./commands/CloseCaseCommand";
14
+ import {
15
+ CreateCaseCommandInput,
16
+ CreateCaseCommandOutput,
17
+ } from "./commands/CreateCaseCommand";
18
+ import {
19
+ CreateCaseCommentCommandInput,
20
+ CreateCaseCommentCommandOutput,
21
+ } from "./commands/CreateCaseCommentCommand";
22
+ import {
23
+ CreateMembershipCommandInput,
24
+ CreateMembershipCommandOutput,
25
+ } from "./commands/CreateMembershipCommand";
26
+ import {
27
+ GetCaseAttachmentDownloadUrlCommandInput,
28
+ GetCaseAttachmentDownloadUrlCommandOutput,
29
+ } from "./commands/GetCaseAttachmentDownloadUrlCommand";
30
+ import {
31
+ GetCaseAttachmentUploadUrlCommandInput,
32
+ GetCaseAttachmentUploadUrlCommandOutput,
33
+ } from "./commands/GetCaseAttachmentUploadUrlCommand";
34
+ import {
35
+ GetCaseCommandInput,
36
+ GetCaseCommandOutput,
37
+ } from "./commands/GetCaseCommand";
38
+ import {
39
+ GetMembershipCommandInput,
40
+ GetMembershipCommandOutput,
41
+ } from "./commands/GetMembershipCommand";
42
+ import {
43
+ ListCaseEditsCommandInput,
44
+ ListCaseEditsCommandOutput,
45
+ } from "./commands/ListCaseEditsCommand";
46
+ import {
47
+ ListCasesCommandInput,
48
+ ListCasesCommandOutput,
49
+ } from "./commands/ListCasesCommand";
50
+ import {
51
+ ListCommentsCommandInput,
52
+ ListCommentsCommandOutput,
53
+ } from "./commands/ListCommentsCommand";
54
+ import {
55
+ ListMembershipsCommandInput,
56
+ ListMembershipsCommandOutput,
57
+ } from "./commands/ListMembershipsCommand";
58
+ import {
59
+ ListTagsForResourceCommandInput,
60
+ ListTagsForResourceCommandOutput,
61
+ } from "./commands/ListTagsForResourceCommand";
62
+ import {
63
+ TagResourceCommandInput,
64
+ TagResourceCommandOutput,
65
+ } from "./commands/TagResourceCommand";
66
+ import {
67
+ UntagResourceCommandInput,
68
+ UntagResourceCommandOutput,
69
+ } from "./commands/UntagResourceCommand";
70
+ import {
71
+ UpdateCaseCommandInput,
72
+ UpdateCaseCommandOutput,
73
+ } from "./commands/UpdateCaseCommand";
74
+ import {
75
+ UpdateCaseCommentCommandInput,
76
+ UpdateCaseCommentCommandOutput,
77
+ } from "./commands/UpdateCaseCommentCommand";
78
+ import {
79
+ UpdateCaseStatusCommandInput,
80
+ UpdateCaseStatusCommandOutput,
81
+ } from "./commands/UpdateCaseStatusCommand";
82
+ import {
83
+ UpdateMembershipCommandInput,
84
+ UpdateMembershipCommandOutput,
85
+ } from "./commands/UpdateMembershipCommand";
86
+ import {
87
+ UpdateResolverTypeCommandInput,
88
+ UpdateResolverTypeCommandOutput,
89
+ } from "./commands/UpdateResolverTypeCommand";
90
+ import { SecurityIRClient } from "./SecurityIRClient";
91
+ export interface SecurityIR {
92
+ batchGetMemberAccountDetails(
93
+ args: BatchGetMemberAccountDetailsCommandInput,
94
+ options?: __HttpHandlerOptions
95
+ ): Promise<BatchGetMemberAccountDetailsCommandOutput>;
96
+ batchGetMemberAccountDetails(
97
+ args: BatchGetMemberAccountDetailsCommandInput,
98
+ cb: (err: any, data?: BatchGetMemberAccountDetailsCommandOutput) => void
99
+ ): void;
100
+ batchGetMemberAccountDetails(
101
+ args: BatchGetMemberAccountDetailsCommandInput,
102
+ options: __HttpHandlerOptions,
103
+ cb: (err: any, data?: BatchGetMemberAccountDetailsCommandOutput) => void
104
+ ): void;
105
+ cancelMembership(
106
+ args: CancelMembershipCommandInput,
107
+ options?: __HttpHandlerOptions
108
+ ): Promise<CancelMembershipCommandOutput>;
109
+ cancelMembership(
110
+ args: CancelMembershipCommandInput,
111
+ cb: (err: any, data?: CancelMembershipCommandOutput) => void
112
+ ): void;
113
+ cancelMembership(
114
+ args: CancelMembershipCommandInput,
115
+ options: __HttpHandlerOptions,
116
+ cb: (err: any, data?: CancelMembershipCommandOutput) => void
117
+ ): void;
118
+ closeCase(
119
+ args: CloseCaseCommandInput,
120
+ options?: __HttpHandlerOptions
121
+ ): Promise<CloseCaseCommandOutput>;
122
+ closeCase(
123
+ args: CloseCaseCommandInput,
124
+ cb: (err: any, data?: CloseCaseCommandOutput) => void
125
+ ): void;
126
+ closeCase(
127
+ args: CloseCaseCommandInput,
128
+ options: __HttpHandlerOptions,
129
+ cb: (err: any, data?: CloseCaseCommandOutput) => void
130
+ ): void;
131
+ createCase(
132
+ args: CreateCaseCommandInput,
133
+ options?: __HttpHandlerOptions
134
+ ): Promise<CreateCaseCommandOutput>;
135
+ createCase(
136
+ args: CreateCaseCommandInput,
137
+ cb: (err: any, data?: CreateCaseCommandOutput) => void
138
+ ): void;
139
+ createCase(
140
+ args: CreateCaseCommandInput,
141
+ options: __HttpHandlerOptions,
142
+ cb: (err: any, data?: CreateCaseCommandOutput) => void
143
+ ): void;
144
+ createCaseComment(
145
+ args: CreateCaseCommentCommandInput,
146
+ options?: __HttpHandlerOptions
147
+ ): Promise<CreateCaseCommentCommandOutput>;
148
+ createCaseComment(
149
+ args: CreateCaseCommentCommandInput,
150
+ cb: (err: any, data?: CreateCaseCommentCommandOutput) => void
151
+ ): void;
152
+ createCaseComment(
153
+ args: CreateCaseCommentCommandInput,
154
+ options: __HttpHandlerOptions,
155
+ cb: (err: any, data?: CreateCaseCommentCommandOutput) => void
156
+ ): void;
157
+ createMembership(
158
+ args: CreateMembershipCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<CreateMembershipCommandOutput>;
161
+ createMembership(
162
+ args: CreateMembershipCommandInput,
163
+ cb: (err: any, data?: CreateMembershipCommandOutput) => void
164
+ ): void;
165
+ createMembership(
166
+ args: CreateMembershipCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: CreateMembershipCommandOutput) => void
169
+ ): void;
170
+ getCase(
171
+ args: GetCaseCommandInput,
172
+ options?: __HttpHandlerOptions
173
+ ): Promise<GetCaseCommandOutput>;
174
+ getCase(
175
+ args: GetCaseCommandInput,
176
+ cb: (err: any, data?: GetCaseCommandOutput) => void
177
+ ): void;
178
+ getCase(
179
+ args: GetCaseCommandInput,
180
+ options: __HttpHandlerOptions,
181
+ cb: (err: any, data?: GetCaseCommandOutput) => void
182
+ ): void;
183
+ getCaseAttachmentDownloadUrl(
184
+ args: GetCaseAttachmentDownloadUrlCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<GetCaseAttachmentDownloadUrlCommandOutput>;
187
+ getCaseAttachmentDownloadUrl(
188
+ args: GetCaseAttachmentDownloadUrlCommandInput,
189
+ cb: (err: any, data?: GetCaseAttachmentDownloadUrlCommandOutput) => void
190
+ ): void;
191
+ getCaseAttachmentDownloadUrl(
192
+ args: GetCaseAttachmentDownloadUrlCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: GetCaseAttachmentDownloadUrlCommandOutput) => void
195
+ ): void;
196
+ getCaseAttachmentUploadUrl(
197
+ args: GetCaseAttachmentUploadUrlCommandInput,
198
+ options?: __HttpHandlerOptions
199
+ ): Promise<GetCaseAttachmentUploadUrlCommandOutput>;
200
+ getCaseAttachmentUploadUrl(
201
+ args: GetCaseAttachmentUploadUrlCommandInput,
202
+ cb: (err: any, data?: GetCaseAttachmentUploadUrlCommandOutput) => void
203
+ ): void;
204
+ getCaseAttachmentUploadUrl(
205
+ args: GetCaseAttachmentUploadUrlCommandInput,
206
+ options: __HttpHandlerOptions,
207
+ cb: (err: any, data?: GetCaseAttachmentUploadUrlCommandOutput) => void
208
+ ): void;
209
+ getMembership(
210
+ args: GetMembershipCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<GetMembershipCommandOutput>;
213
+ getMembership(
214
+ args: GetMembershipCommandInput,
215
+ cb: (err: any, data?: GetMembershipCommandOutput) => void
216
+ ): void;
217
+ getMembership(
218
+ args: GetMembershipCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: GetMembershipCommandOutput) => void
221
+ ): void;
222
+ listCaseEdits(
223
+ args: ListCaseEditsCommandInput,
224
+ options?: __HttpHandlerOptions
225
+ ): Promise<ListCaseEditsCommandOutput>;
226
+ listCaseEdits(
227
+ args: ListCaseEditsCommandInput,
228
+ cb: (err: any, data?: ListCaseEditsCommandOutput) => void
229
+ ): void;
230
+ listCaseEdits(
231
+ args: ListCaseEditsCommandInput,
232
+ options: __HttpHandlerOptions,
233
+ cb: (err: any, data?: ListCaseEditsCommandOutput) => void
234
+ ): void;
235
+ listCases(): Promise<ListCasesCommandOutput>;
236
+ listCases(
237
+ args: ListCasesCommandInput,
238
+ options?: __HttpHandlerOptions
239
+ ): Promise<ListCasesCommandOutput>;
240
+ listCases(
241
+ args: ListCasesCommandInput,
242
+ cb: (err: any, data?: ListCasesCommandOutput) => void
243
+ ): void;
244
+ listCases(
245
+ args: ListCasesCommandInput,
246
+ options: __HttpHandlerOptions,
247
+ cb: (err: any, data?: ListCasesCommandOutput) => void
248
+ ): void;
249
+ listComments(
250
+ args: ListCommentsCommandInput,
251
+ options?: __HttpHandlerOptions
252
+ ): Promise<ListCommentsCommandOutput>;
253
+ listComments(
254
+ args: ListCommentsCommandInput,
255
+ cb: (err: any, data?: ListCommentsCommandOutput) => void
256
+ ): void;
257
+ listComments(
258
+ args: ListCommentsCommandInput,
259
+ options: __HttpHandlerOptions,
260
+ cb: (err: any, data?: ListCommentsCommandOutput) => void
261
+ ): void;
262
+ listMemberships(): Promise<ListMembershipsCommandOutput>;
263
+ listMemberships(
264
+ args: ListMembershipsCommandInput,
265
+ options?: __HttpHandlerOptions
266
+ ): Promise<ListMembershipsCommandOutput>;
267
+ listMemberships(
268
+ args: ListMembershipsCommandInput,
269
+ cb: (err: any, data?: ListMembershipsCommandOutput) => void
270
+ ): void;
271
+ listMemberships(
272
+ args: ListMembershipsCommandInput,
273
+ options: __HttpHandlerOptions,
274
+ cb: (err: any, data?: ListMembershipsCommandOutput) => void
275
+ ): void;
276
+ listTagsForResource(
277
+ args: ListTagsForResourceCommandInput,
278
+ options?: __HttpHandlerOptions
279
+ ): Promise<ListTagsForResourceCommandOutput>;
280
+ listTagsForResource(
281
+ args: ListTagsForResourceCommandInput,
282
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
283
+ ): void;
284
+ listTagsForResource(
285
+ args: ListTagsForResourceCommandInput,
286
+ options: __HttpHandlerOptions,
287
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
288
+ ): void;
289
+ tagResource(
290
+ args: TagResourceCommandInput,
291
+ options?: __HttpHandlerOptions
292
+ ): Promise<TagResourceCommandOutput>;
293
+ tagResource(
294
+ args: TagResourceCommandInput,
295
+ cb: (err: any, data?: TagResourceCommandOutput) => void
296
+ ): void;
297
+ tagResource(
298
+ args: TagResourceCommandInput,
299
+ options: __HttpHandlerOptions,
300
+ cb: (err: any, data?: TagResourceCommandOutput) => void
301
+ ): void;
302
+ untagResource(
303
+ args: UntagResourceCommandInput,
304
+ options?: __HttpHandlerOptions
305
+ ): Promise<UntagResourceCommandOutput>;
306
+ untagResource(
307
+ args: UntagResourceCommandInput,
308
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
309
+ ): void;
310
+ untagResource(
311
+ args: UntagResourceCommandInput,
312
+ options: __HttpHandlerOptions,
313
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
314
+ ): void;
315
+ updateCase(
316
+ args: UpdateCaseCommandInput,
317
+ options?: __HttpHandlerOptions
318
+ ): Promise<UpdateCaseCommandOutput>;
319
+ updateCase(
320
+ args: UpdateCaseCommandInput,
321
+ cb: (err: any, data?: UpdateCaseCommandOutput) => void
322
+ ): void;
323
+ updateCase(
324
+ args: UpdateCaseCommandInput,
325
+ options: __HttpHandlerOptions,
326
+ cb: (err: any, data?: UpdateCaseCommandOutput) => void
327
+ ): void;
328
+ updateCaseComment(
329
+ args: UpdateCaseCommentCommandInput,
330
+ options?: __HttpHandlerOptions
331
+ ): Promise<UpdateCaseCommentCommandOutput>;
332
+ updateCaseComment(
333
+ args: UpdateCaseCommentCommandInput,
334
+ cb: (err: any, data?: UpdateCaseCommentCommandOutput) => void
335
+ ): void;
336
+ updateCaseComment(
337
+ args: UpdateCaseCommentCommandInput,
338
+ options: __HttpHandlerOptions,
339
+ cb: (err: any, data?: UpdateCaseCommentCommandOutput) => void
340
+ ): void;
341
+ updateCaseStatus(
342
+ args: UpdateCaseStatusCommandInput,
343
+ options?: __HttpHandlerOptions
344
+ ): Promise<UpdateCaseStatusCommandOutput>;
345
+ updateCaseStatus(
346
+ args: UpdateCaseStatusCommandInput,
347
+ cb: (err: any, data?: UpdateCaseStatusCommandOutput) => void
348
+ ): void;
349
+ updateCaseStatus(
350
+ args: UpdateCaseStatusCommandInput,
351
+ options: __HttpHandlerOptions,
352
+ cb: (err: any, data?: UpdateCaseStatusCommandOutput) => void
353
+ ): void;
354
+ updateMembership(
355
+ args: UpdateMembershipCommandInput,
356
+ options?: __HttpHandlerOptions
357
+ ): Promise<UpdateMembershipCommandOutput>;
358
+ updateMembership(
359
+ args: UpdateMembershipCommandInput,
360
+ cb: (err: any, data?: UpdateMembershipCommandOutput) => void
361
+ ): void;
362
+ updateMembership(
363
+ args: UpdateMembershipCommandInput,
364
+ options: __HttpHandlerOptions,
365
+ cb: (err: any, data?: UpdateMembershipCommandOutput) => void
366
+ ): void;
367
+ updateResolverType(
368
+ args: UpdateResolverTypeCommandInput,
369
+ options?: __HttpHandlerOptions
370
+ ): Promise<UpdateResolverTypeCommandOutput>;
371
+ updateResolverType(
372
+ args: UpdateResolverTypeCommandInput,
373
+ cb: (err: any, data?: UpdateResolverTypeCommandOutput) => void
374
+ ): void;
375
+ updateResolverType(
376
+ args: UpdateResolverTypeCommandInput,
377
+ options: __HttpHandlerOptions,
378
+ cb: (err: any, data?: UpdateResolverTypeCommandOutput) => void
379
+ ): void;
380
+ }
381
+ export declare class SecurityIR
382
+ extends SecurityIRClient
383
+ implements SecurityIR {}
@@ -0,0 +1,250 @@
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
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ BatchGetMemberAccountDetailsCommandInput,
50
+ BatchGetMemberAccountDetailsCommandOutput,
51
+ } from "./commands/BatchGetMemberAccountDetailsCommand";
52
+ import {
53
+ CancelMembershipCommandInput,
54
+ CancelMembershipCommandOutput,
55
+ } from "./commands/CancelMembershipCommand";
56
+ import {
57
+ CloseCaseCommandInput,
58
+ CloseCaseCommandOutput,
59
+ } from "./commands/CloseCaseCommand";
60
+ import {
61
+ CreateCaseCommandInput,
62
+ CreateCaseCommandOutput,
63
+ } from "./commands/CreateCaseCommand";
64
+ import {
65
+ CreateCaseCommentCommandInput,
66
+ CreateCaseCommentCommandOutput,
67
+ } from "./commands/CreateCaseCommentCommand";
68
+ import {
69
+ CreateMembershipCommandInput,
70
+ CreateMembershipCommandOutput,
71
+ } from "./commands/CreateMembershipCommand";
72
+ import {
73
+ GetCaseAttachmentDownloadUrlCommandInput,
74
+ GetCaseAttachmentDownloadUrlCommandOutput,
75
+ } from "./commands/GetCaseAttachmentDownloadUrlCommand";
76
+ import {
77
+ GetCaseAttachmentUploadUrlCommandInput,
78
+ GetCaseAttachmentUploadUrlCommandOutput,
79
+ } from "./commands/GetCaseAttachmentUploadUrlCommand";
80
+ import {
81
+ GetCaseCommandInput,
82
+ GetCaseCommandOutput,
83
+ } from "./commands/GetCaseCommand";
84
+ import {
85
+ GetMembershipCommandInput,
86
+ GetMembershipCommandOutput,
87
+ } from "./commands/GetMembershipCommand";
88
+ import {
89
+ ListCaseEditsCommandInput,
90
+ ListCaseEditsCommandOutput,
91
+ } from "./commands/ListCaseEditsCommand";
92
+ import {
93
+ ListCasesCommandInput,
94
+ ListCasesCommandOutput,
95
+ } from "./commands/ListCasesCommand";
96
+ import {
97
+ ListCommentsCommandInput,
98
+ ListCommentsCommandOutput,
99
+ } from "./commands/ListCommentsCommand";
100
+ import {
101
+ ListMembershipsCommandInput,
102
+ ListMembershipsCommandOutput,
103
+ } from "./commands/ListMembershipsCommand";
104
+ import {
105
+ ListTagsForResourceCommandInput,
106
+ ListTagsForResourceCommandOutput,
107
+ } from "./commands/ListTagsForResourceCommand";
108
+ import {
109
+ TagResourceCommandInput,
110
+ TagResourceCommandOutput,
111
+ } from "./commands/TagResourceCommand";
112
+ import {
113
+ UntagResourceCommandInput,
114
+ UntagResourceCommandOutput,
115
+ } from "./commands/UntagResourceCommand";
116
+ import {
117
+ UpdateCaseCommandInput,
118
+ UpdateCaseCommandOutput,
119
+ } from "./commands/UpdateCaseCommand";
120
+ import {
121
+ UpdateCaseCommentCommandInput,
122
+ UpdateCaseCommentCommandOutput,
123
+ } from "./commands/UpdateCaseCommentCommand";
124
+ import {
125
+ UpdateCaseStatusCommandInput,
126
+ UpdateCaseStatusCommandOutput,
127
+ } from "./commands/UpdateCaseStatusCommand";
128
+ import {
129
+ UpdateMembershipCommandInput,
130
+ UpdateMembershipCommandOutput,
131
+ } from "./commands/UpdateMembershipCommand";
132
+ import {
133
+ UpdateResolverTypeCommandInput,
134
+ UpdateResolverTypeCommandOutput,
135
+ } from "./commands/UpdateResolverTypeCommand";
136
+ import {
137
+ ClientInputEndpointParameters,
138
+ ClientResolvedEndpointParameters,
139
+ EndpointParameters,
140
+ } from "./endpoint/EndpointParameters";
141
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
142
+ export { __Client };
143
+ export type ServiceInputTypes =
144
+ | BatchGetMemberAccountDetailsCommandInput
145
+ | CancelMembershipCommandInput
146
+ | CloseCaseCommandInput
147
+ | CreateCaseCommandInput
148
+ | CreateCaseCommentCommandInput
149
+ | CreateMembershipCommandInput
150
+ | GetCaseAttachmentDownloadUrlCommandInput
151
+ | GetCaseAttachmentUploadUrlCommandInput
152
+ | GetCaseCommandInput
153
+ | GetMembershipCommandInput
154
+ | ListCaseEditsCommandInput
155
+ | ListCasesCommandInput
156
+ | ListCommentsCommandInput
157
+ | ListMembershipsCommandInput
158
+ | ListTagsForResourceCommandInput
159
+ | TagResourceCommandInput
160
+ | UntagResourceCommandInput
161
+ | UpdateCaseCommandInput
162
+ | UpdateCaseCommentCommandInput
163
+ | UpdateCaseStatusCommandInput
164
+ | UpdateMembershipCommandInput
165
+ | UpdateResolverTypeCommandInput;
166
+ export type ServiceOutputTypes =
167
+ | BatchGetMemberAccountDetailsCommandOutput
168
+ | CancelMembershipCommandOutput
169
+ | CloseCaseCommandOutput
170
+ | CreateCaseCommandOutput
171
+ | CreateCaseCommentCommandOutput
172
+ | CreateMembershipCommandOutput
173
+ | GetCaseAttachmentDownloadUrlCommandOutput
174
+ | GetCaseAttachmentUploadUrlCommandOutput
175
+ | GetCaseCommandOutput
176
+ | GetMembershipCommandOutput
177
+ | ListCaseEditsCommandOutput
178
+ | ListCasesCommandOutput
179
+ | ListCommentsCommandOutput
180
+ | ListMembershipsCommandOutput
181
+ | ListTagsForResourceCommandOutput
182
+ | TagResourceCommandOutput
183
+ | UntagResourceCommandOutput
184
+ | UpdateCaseCommandOutput
185
+ | UpdateCaseCommentCommandOutput
186
+ | UpdateCaseStatusCommandOutput
187
+ | UpdateMembershipCommandOutput
188
+ | UpdateResolverTypeCommandOutput;
189
+ export interface ClientDefaults
190
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
191
+ requestHandler?: __HttpHandlerUserInput;
192
+ sha256?: __ChecksumConstructor | __HashConstructor;
193
+ urlParser?: __UrlParser;
194
+ bodyLengthChecker?: __BodyLengthCalculator;
195
+ streamCollector?: __StreamCollector;
196
+ base64Decoder?: __Decoder;
197
+ base64Encoder?: __Encoder;
198
+ utf8Decoder?: __Decoder;
199
+ utf8Encoder?: __Encoder;
200
+ runtime?: string;
201
+ disableHostPrefix?: boolean;
202
+ serviceId?: string;
203
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
204
+ useFipsEndpoint?: boolean | __Provider<boolean>;
205
+ region?: string | __Provider<string>;
206
+ defaultUserAgentProvider?: Provider<__UserAgent>;
207
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
208
+ maxAttempts?: number | __Provider<number>;
209
+ retryMode?: string | __Provider<string>;
210
+ logger?: __Logger;
211
+ extensions?: RuntimeExtension[];
212
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
213
+ }
214
+ export type SecurityIRClientConfigType = Partial<
215
+ __SmithyConfiguration<__HttpHandlerOptions>
216
+ > &
217
+ ClientDefaults &
218
+ UserAgentInputConfig &
219
+ RetryInputConfig &
220
+ RegionInputConfig &
221
+ HostHeaderInputConfig &
222
+ EndpointInputConfig<EndpointParameters> &
223
+ HttpAuthSchemeInputConfig &
224
+ ClientInputEndpointParameters;
225
+ export interface SecurityIRClientConfig extends SecurityIRClientConfigType {}
226
+ export type SecurityIRClientResolvedConfigType =
227
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
228
+ Required<ClientDefaults> &
229
+ RuntimeExtensionsConfig &
230
+ UserAgentResolvedConfig &
231
+ RetryResolvedConfig &
232
+ RegionResolvedConfig &
233
+ HostHeaderResolvedConfig &
234
+ EndpointResolvedConfig<EndpointParameters> &
235
+ HttpAuthSchemeResolvedConfig &
236
+ ClientResolvedEndpointParameters;
237
+ export interface SecurityIRClientResolvedConfig
238
+ extends SecurityIRClientResolvedConfigType {}
239
+ export declare class SecurityIRClient extends __Client<
240
+ __HttpHandlerOptions,
241
+ ServiceInputTypes,
242
+ ServiceOutputTypes,
243
+ SecurityIRClientResolvedConfig
244
+ > {
245
+ readonly config: SecurityIRClientResolvedConfig;
246
+ constructor(
247
+ ...[configuration]: __CheckOptionalClientConfig<SecurityIRClientConfig>
248
+ );
249
+ destroy(): void;
250
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { SecurityIRHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: SecurityIRHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): SecurityIRHttpAuthSchemeProvider;
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: SecurityIRHttpAuthSchemeProvider;
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,44 @@
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
+ } from "@smithy/types";
13
+ import { SecurityIRClientResolvedConfig } from "../SecurityIRClient";
14
+ export interface SecurityIRHttpAuthSchemeParameters
15
+ extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface SecurityIRHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ SecurityIRClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ SecurityIRHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultSecurityIRHttpAuthSchemeParametersProvider: (
26
+ config: SecurityIRClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<SecurityIRHttpAuthSchemeParameters>;
30
+ export interface SecurityIRHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<SecurityIRHttpAuthSchemeParameters> {}
32
+ export declare const defaultSecurityIRHttpAuthSchemeProvider: SecurityIRHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ httpAuthSchemes?: HttpAuthScheme[];
35
+ httpAuthSchemeProvider?: SecurityIRHttpAuthSchemeProvider;
36
+ }
37
+ export interface HttpAuthSchemeResolvedConfig
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
+ readonly httpAuthSchemes: HttpAuthScheme[];
40
+ readonly httpAuthSchemeProvider: SecurityIRHttpAuthSchemeProvider;
41
+ }
42
+ export declare const resolveHttpAuthSchemeConfig: <T>(
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
+ ) => T & HttpAuthSchemeResolvedConfig;