@aws-sdk/client-mpa 3.831.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 (195) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +373 -0
  3. package/dist-cjs/MPA.js +53 -0
  4. package/dist-cjs/MPAClient.js +52 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CancelSessionCommand.js +26 -0
  8. package/dist-cjs/commands/CreateApprovalTeamCommand.js +27 -0
  9. package/dist-cjs/commands/CreateIdentitySourceCommand.js +27 -0
  10. package/dist-cjs/commands/DeleteIdentitySourceCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteInactiveApprovalTeamVersionCommand.js +26 -0
  12. package/dist-cjs/commands/GetApprovalTeamCommand.js +27 -0
  13. package/dist-cjs/commands/GetIdentitySourceCommand.js +26 -0
  14. package/dist-cjs/commands/GetPolicyVersionCommand.js +27 -0
  15. package/dist-cjs/commands/GetResourcePolicyCommand.js +27 -0
  16. package/dist-cjs/commands/GetSessionCommand.js +27 -0
  17. package/dist-cjs/commands/ListApprovalTeamsCommand.js +27 -0
  18. package/dist-cjs/commands/ListIdentitySourcesCommand.js +26 -0
  19. package/dist-cjs/commands/ListPoliciesCommand.js +26 -0
  20. package/dist-cjs/commands/ListPolicyVersionsCommand.js +26 -0
  21. package/dist-cjs/commands/ListResourcePoliciesCommand.js +26 -0
  22. package/dist-cjs/commands/ListSessionsCommand.js +27 -0
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +27 -0
  24. package/dist-cjs/commands/StartActiveApprovalTeamDeletionCommand.js +26 -0
  25. package/dist-cjs/commands/TagResourceCommand.js +27 -0
  26. package/dist-cjs/commands/UntagResourceCommand.js +27 -0
  27. package/dist-cjs/commands/UpdateApprovalTeamCommand.js +27 -0
  28. package/dist-cjs/commands/index.js +24 -0
  29. package/dist-cjs/endpoint/EndpointParameters.js +15 -0
  30. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  31. package/dist-cjs/endpoint/ruleset.js +7 -0
  32. package/dist-cjs/extensionConfiguration.js +2 -0
  33. package/dist-cjs/index.js +11 -0
  34. package/dist-cjs/models/MPAServiceException.js +12 -0
  35. package/dist-cjs/models/index.js +4 -0
  36. package/dist-cjs/models/models_0.js +354 -0
  37. package/dist-cjs/pagination/Interfaces.js +2 -0
  38. package/dist-cjs/pagination/ListApprovalTeamsPaginator.js +7 -0
  39. package/dist-cjs/pagination/ListIdentitySourcesPaginator.js +7 -0
  40. package/dist-cjs/pagination/ListPoliciesPaginator.js +7 -0
  41. package/dist-cjs/pagination/ListPolicyVersionsPaginator.js +7 -0
  42. package/dist-cjs/pagination/ListResourcePoliciesPaginator.js +7 -0
  43. package/dist-cjs/pagination/ListSessionsPaginator.js +7 -0
  44. package/dist-cjs/pagination/index.js +10 -0
  45. package/dist-cjs/protocols/Aws_restJson1.js +976 -0
  46. package/dist-cjs/runtimeConfig.browser.js +39 -0
  47. package/dist-cjs/runtimeConfig.js +56 -0
  48. package/dist-cjs/runtimeConfig.native.js +15 -0
  49. package/dist-cjs/runtimeConfig.shared.js +34 -0
  50. package/dist-cjs/runtimeExtensions.js +13 -0
  51. package/dist-es/MPA.js +49 -0
  52. package/dist-es/MPAClient.js +48 -0
  53. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  54. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  55. package/dist-es/commands/CancelSessionCommand.js +22 -0
  56. package/dist-es/commands/CreateApprovalTeamCommand.js +23 -0
  57. package/dist-es/commands/CreateIdentitySourceCommand.js +23 -0
  58. package/dist-es/commands/DeleteIdentitySourceCommand.js +22 -0
  59. package/dist-es/commands/DeleteInactiveApprovalTeamVersionCommand.js +22 -0
  60. package/dist-es/commands/GetApprovalTeamCommand.js +23 -0
  61. package/dist-es/commands/GetIdentitySourceCommand.js +22 -0
  62. package/dist-es/commands/GetPolicyVersionCommand.js +23 -0
  63. package/dist-es/commands/GetResourcePolicyCommand.js +23 -0
  64. package/dist-es/commands/GetSessionCommand.js +23 -0
  65. package/dist-es/commands/ListApprovalTeamsCommand.js +23 -0
  66. package/dist-es/commands/ListIdentitySourcesCommand.js +22 -0
  67. package/dist-es/commands/ListPoliciesCommand.js +22 -0
  68. package/dist-es/commands/ListPolicyVersionsCommand.js +22 -0
  69. package/dist-es/commands/ListResourcePoliciesCommand.js +22 -0
  70. package/dist-es/commands/ListSessionsCommand.js +23 -0
  71. package/dist-es/commands/ListTagsForResourceCommand.js +23 -0
  72. package/dist-es/commands/StartActiveApprovalTeamDeletionCommand.js +22 -0
  73. package/dist-es/commands/TagResourceCommand.js +23 -0
  74. package/dist-es/commands/UntagResourceCommand.js +23 -0
  75. package/dist-es/commands/UpdateApprovalTeamCommand.js +23 -0
  76. package/dist-es/commands/index.js +21 -0
  77. package/dist-es/endpoint/EndpointParameters.js +11 -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/MPAServiceException.js +8 -0
  83. package/dist-es/models/index.js +1 -0
  84. package/dist-es/models/models_0.js +327 -0
  85. package/dist-es/pagination/Interfaces.js +1 -0
  86. package/dist-es/pagination/ListApprovalTeamsPaginator.js +4 -0
  87. package/dist-es/pagination/ListIdentitySourcesPaginator.js +4 -0
  88. package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
  89. package/dist-es/pagination/ListPolicyVersionsPaginator.js +4 -0
  90. package/dist-es/pagination/ListResourcePoliciesPaginator.js +4 -0
  91. package/dist-es/pagination/ListSessionsPaginator.js +4 -0
  92. package/dist-es/pagination/index.js +7 -0
  93. package/dist-es/protocols/Aws_restJson1.js +931 -0
  94. package/dist-es/runtimeConfig.browser.js +34 -0
  95. package/dist-es/runtimeConfig.js +51 -0
  96. package/dist-es/runtimeConfig.native.js +11 -0
  97. package/dist-es/runtimeConfig.shared.js +30 -0
  98. package/dist-es/runtimeExtensions.js +9 -0
  99. package/dist-types/MPA.d.ts +160 -0
  100. package/dist-types/MPAClient.d.ts +208 -0
  101. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  102. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  103. package/dist-types/commands/CancelSessionCommand.d.ts +88 -0
  104. package/dist-types/commands/CreateApprovalTeamCommand.d.ts +114 -0
  105. package/dist-types/commands/CreateIdentitySourceCommand.d.ts +98 -0
  106. package/dist-types/commands/DeleteIdentitySourceCommand.d.ts +85 -0
  107. package/dist-types/commands/DeleteInactiveApprovalTeamVersionCommand.d.ts +89 -0
  108. package/dist-types/commands/GetApprovalTeamCommand.d.ts +139 -0
  109. package/dist-types/commands/GetIdentitySourceCommand.d.ts +99 -0
  110. package/dist-types/commands/GetPolicyVersionCommand.d.ts +98 -0
  111. package/dist-types/commands/GetResourcePolicyCommand.d.ts +93 -0
  112. package/dist-types/commands/GetSessionCommand.d.ts +123 -0
  113. package/dist-types/commands/ListApprovalTeamsCommand.d.ts +102 -0
  114. package/dist-types/commands/ListIdentitySourcesCommand.d.ts +102 -0
  115. package/dist-types/commands/ListPoliciesCommand.d.ts +93 -0
  116. package/dist-types/commands/ListPolicyVersionsCommand.d.ts +102 -0
  117. package/dist-types/commands/ListResourcePoliciesCommand.d.ts +96 -0
  118. package/dist-types/commands/ListSessionsCommand.d.ts +117 -0
  119. package/dist-types/commands/ListTagsForResourceCommand.d.ts +89 -0
  120. package/dist-types/commands/StartActiveApprovalTeamDeletionCommand.d.ts +92 -0
  121. package/dist-types/commands/TagResourceCommand.d.ts +91 -0
  122. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  123. package/dist-types/commands/UpdateApprovalTeamCommand.d.ts +105 -0
  124. package/dist-types/commands/index.d.ts +21 -0
  125. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  126. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  127. package/dist-types/endpoint/ruleset.d.ts +2 -0
  128. package/dist-types/extensionConfiguration.d.ts +9 -0
  129. package/dist-types/index.d.ts +14 -0
  130. package/dist-types/models/MPAServiceException.d.ts +14 -0
  131. package/dist-types/models/index.d.ts +1 -0
  132. package/dist-types/models/models_0.d.ts +1947 -0
  133. package/dist-types/pagination/Interfaces.d.ts +8 -0
  134. package/dist-types/pagination/ListApprovalTeamsPaginator.d.ts +7 -0
  135. package/dist-types/pagination/ListIdentitySourcesPaginator.d.ts +7 -0
  136. package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
  137. package/dist-types/pagination/ListPolicyVersionsPaginator.d.ts +7 -0
  138. package/dist-types/pagination/ListResourcePoliciesPaginator.d.ts +7 -0
  139. package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
  140. package/dist-types/pagination/index.d.ts +7 -0
  141. package/dist-types/protocols/Aws_restJson1.d.ts +191 -0
  142. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  143. package/dist-types/runtimeConfig.d.ts +50 -0
  144. package/dist-types/runtimeConfig.native.d.ts +49 -0
  145. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  146. package/dist-types/runtimeExtensions.d.ts +17 -0
  147. package/dist-types/ts3.4/MPA.d.ts +371 -0
  148. package/dist-types/ts3.4/MPAClient.d.ts +242 -0
  149. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  150. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
  151. package/dist-types/ts3.4/commands/CancelSessionCommand.d.ts +50 -0
  152. package/dist-types/ts3.4/commands/CreateApprovalTeamCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/CreateIdentitySourceCommand.d.ts +51 -0
  154. package/dist-types/ts3.4/commands/DeleteIdentitySourceCommand.d.ts +46 -0
  155. package/dist-types/ts3.4/commands/DeleteInactiveApprovalTeamVersionCommand.d.ts +51 -0
  156. package/dist-types/ts3.4/commands/GetApprovalTeamCommand.d.ts +50 -0
  157. package/dist-types/ts3.4/commands/GetIdentitySourceCommand.d.ts +51 -0
  158. package/dist-types/ts3.4/commands/GetPolicyVersionCommand.d.ts +50 -0
  159. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
  160. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +47 -0
  161. package/dist-types/ts3.4/commands/ListApprovalTeamsCommand.d.ts +51 -0
  162. package/dist-types/ts3.4/commands/ListIdentitySourcesCommand.d.ts +51 -0
  163. package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +47 -0
  164. package/dist-types/ts3.4/commands/ListPolicyVersionsCommand.d.ts +51 -0
  165. package/dist-types/ts3.4/commands/ListResourcePoliciesCommand.d.ts +51 -0
  166. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +47 -0
  167. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/StartActiveApprovalTeamDeletionCommand.d.ts +51 -0
  169. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  170. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  171. package/dist-types/ts3.4/commands/UpdateApprovalTeamCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/index.d.ts +21 -0
  173. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +42 -0
  174. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  175. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  176. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  177. package/dist-types/ts3.4/index.d.ts +9 -0
  178. package/dist-types/ts3.4/models/MPAServiceException.d.ts +9 -0
  179. package/dist-types/ts3.4/models/index.d.ts +1 -0
  180. package/dist-types/ts3.4/models/models_0.d.ts +645 -0
  181. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  182. package/dist-types/ts3.4/pagination/ListApprovalTeamsPaginator.d.ts +11 -0
  183. package/dist-types/ts3.4/pagination/ListIdentitySourcesPaginator.d.ts +11 -0
  184. package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
  185. package/dist-types/ts3.4/pagination/ListPolicyVersionsPaginator.d.ts +11 -0
  186. package/dist-types/ts3.4/pagination/ListResourcePoliciesPaginator.d.ts +11 -0
  187. package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
  188. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  189. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -0
  190. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  191. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  192. package/dist-types/ts3.4/runtimeConfig.native.d.ts +95 -0
  193. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  194. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  195. package/package.json +101 -0
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListResourcePoliciesCommandInput,
4
+ ListResourcePoliciesCommandOutput,
5
+ } from "../commands/ListResourcePoliciesCommand";
6
+ import { MPAPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListResourcePolicies: (
8
+ config: MPAPaginationConfiguration,
9
+ input: ListResourcePoliciesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListResourcePoliciesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListSessionsCommandInput,
4
+ ListSessionsCommandOutput,
5
+ } from "../commands/ListSessionsCommand";
6
+ import { MPAPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListSessions: (
8
+ config: MPAPaginationConfiguration,
9
+ input: ListSessionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListSessionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListApprovalTeamsPaginator";
3
+ export * from "./ListIdentitySourcesPaginator";
4
+ export * from "./ListPoliciesPaginator";
5
+ export * from "./ListPolicyVersionsPaginator";
6
+ export * from "./ListResourcePoliciesPaginator";
7
+ export * from "./ListSessionsPaginator";
@@ -0,0 +1,257 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CancelSessionCommandInput,
8
+ CancelSessionCommandOutput,
9
+ } from "../commands/CancelSessionCommand";
10
+ import {
11
+ CreateApprovalTeamCommandInput,
12
+ CreateApprovalTeamCommandOutput,
13
+ } from "../commands/CreateApprovalTeamCommand";
14
+ import {
15
+ CreateIdentitySourceCommandInput,
16
+ CreateIdentitySourceCommandOutput,
17
+ } from "../commands/CreateIdentitySourceCommand";
18
+ import {
19
+ DeleteIdentitySourceCommandInput,
20
+ DeleteIdentitySourceCommandOutput,
21
+ } from "../commands/DeleteIdentitySourceCommand";
22
+ import {
23
+ DeleteInactiveApprovalTeamVersionCommandInput,
24
+ DeleteInactiveApprovalTeamVersionCommandOutput,
25
+ } from "../commands/DeleteInactiveApprovalTeamVersionCommand";
26
+ import {
27
+ GetApprovalTeamCommandInput,
28
+ GetApprovalTeamCommandOutput,
29
+ } from "../commands/GetApprovalTeamCommand";
30
+ import {
31
+ GetIdentitySourceCommandInput,
32
+ GetIdentitySourceCommandOutput,
33
+ } from "../commands/GetIdentitySourceCommand";
34
+ import {
35
+ GetPolicyVersionCommandInput,
36
+ GetPolicyVersionCommandOutput,
37
+ } from "../commands/GetPolicyVersionCommand";
38
+ import {
39
+ GetResourcePolicyCommandInput,
40
+ GetResourcePolicyCommandOutput,
41
+ } from "../commands/GetResourcePolicyCommand";
42
+ import {
43
+ GetSessionCommandInput,
44
+ GetSessionCommandOutput,
45
+ } from "../commands/GetSessionCommand";
46
+ import {
47
+ ListApprovalTeamsCommandInput,
48
+ ListApprovalTeamsCommandOutput,
49
+ } from "../commands/ListApprovalTeamsCommand";
50
+ import {
51
+ ListIdentitySourcesCommandInput,
52
+ ListIdentitySourcesCommandOutput,
53
+ } from "../commands/ListIdentitySourcesCommand";
54
+ import {
55
+ ListPoliciesCommandInput,
56
+ ListPoliciesCommandOutput,
57
+ } from "../commands/ListPoliciesCommand";
58
+ import {
59
+ ListPolicyVersionsCommandInput,
60
+ ListPolicyVersionsCommandOutput,
61
+ } from "../commands/ListPolicyVersionsCommand";
62
+ import {
63
+ ListResourcePoliciesCommandInput,
64
+ ListResourcePoliciesCommandOutput,
65
+ } from "../commands/ListResourcePoliciesCommand";
66
+ import {
67
+ ListSessionsCommandInput,
68
+ ListSessionsCommandOutput,
69
+ } from "../commands/ListSessionsCommand";
70
+ import {
71
+ ListTagsForResourceCommandInput,
72
+ ListTagsForResourceCommandOutput,
73
+ } from "../commands/ListTagsForResourceCommand";
74
+ import {
75
+ StartActiveApprovalTeamDeletionCommandInput,
76
+ StartActiveApprovalTeamDeletionCommandOutput,
77
+ } from "../commands/StartActiveApprovalTeamDeletionCommand";
78
+ import {
79
+ TagResourceCommandInput,
80
+ TagResourceCommandOutput,
81
+ } from "../commands/TagResourceCommand";
82
+ import {
83
+ UntagResourceCommandInput,
84
+ UntagResourceCommandOutput,
85
+ } from "../commands/UntagResourceCommand";
86
+ import {
87
+ UpdateApprovalTeamCommandInput,
88
+ UpdateApprovalTeamCommandOutput,
89
+ } from "../commands/UpdateApprovalTeamCommand";
90
+ export declare const se_CancelSessionCommand: (
91
+ input: CancelSessionCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const se_CreateApprovalTeamCommand: (
95
+ input: CreateApprovalTeamCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const se_CreateIdentitySourceCommand: (
99
+ input: CreateIdentitySourceCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const se_DeleteIdentitySourceCommand: (
103
+ input: DeleteIdentitySourceCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const se_DeleteInactiveApprovalTeamVersionCommand: (
107
+ input: DeleteInactiveApprovalTeamVersionCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const se_GetApprovalTeamCommand: (
111
+ input: GetApprovalTeamCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const se_GetIdentitySourceCommand: (
115
+ input: GetIdentitySourceCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const se_GetPolicyVersionCommand: (
119
+ input: GetPolicyVersionCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const se_GetResourcePolicyCommand: (
123
+ input: GetResourcePolicyCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_GetSessionCommand: (
127
+ input: GetSessionCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_ListApprovalTeamsCommand: (
131
+ input: ListApprovalTeamsCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const se_ListIdentitySourcesCommand: (
135
+ input: ListIdentitySourcesCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const se_ListPoliciesCommand: (
139
+ input: ListPoliciesCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const se_ListPolicyVersionsCommand: (
143
+ input: ListPolicyVersionsCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const se_ListResourcePoliciesCommand: (
147
+ input: ListResourcePoliciesCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const se_ListSessionsCommand: (
151
+ input: ListSessionsCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const se_ListTagsForResourceCommand: (
155
+ input: ListTagsForResourceCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const se_StartActiveApprovalTeamDeletionCommand: (
159
+ input: StartActiveApprovalTeamDeletionCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const se_TagResourceCommand: (
163
+ input: TagResourceCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const se_UntagResourceCommand: (
167
+ input: UntagResourceCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const se_UpdateApprovalTeamCommand: (
171
+ input: UpdateApprovalTeamCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const de_CancelSessionCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<CancelSessionCommandOutput>;
178
+ export declare const de_CreateApprovalTeamCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<CreateApprovalTeamCommandOutput>;
182
+ export declare const de_CreateIdentitySourceCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<CreateIdentitySourceCommandOutput>;
186
+ export declare const de_DeleteIdentitySourceCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<DeleteIdentitySourceCommandOutput>;
190
+ export declare const de_DeleteInactiveApprovalTeamVersionCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<DeleteInactiveApprovalTeamVersionCommandOutput>;
194
+ export declare const de_GetApprovalTeamCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<GetApprovalTeamCommandOutput>;
198
+ export declare const de_GetIdentitySourceCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<GetIdentitySourceCommandOutput>;
202
+ export declare const de_GetPolicyVersionCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<GetPolicyVersionCommandOutput>;
206
+ export declare const de_GetResourcePolicyCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<GetResourcePolicyCommandOutput>;
210
+ export declare const de_GetSessionCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<GetSessionCommandOutput>;
214
+ export declare const de_ListApprovalTeamsCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<ListApprovalTeamsCommandOutput>;
218
+ export declare const de_ListIdentitySourcesCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<ListIdentitySourcesCommandOutput>;
222
+ export declare const de_ListPoliciesCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<ListPoliciesCommandOutput>;
226
+ export declare const de_ListPolicyVersionsCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<ListPolicyVersionsCommandOutput>;
230
+ export declare const de_ListResourcePoliciesCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<ListResourcePoliciesCommandOutput>;
234
+ export declare const de_ListSessionsCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<ListSessionsCommandOutput>;
238
+ export declare const de_ListTagsForResourceCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<ListTagsForResourceCommandOutput>;
242
+ export declare const de_StartActiveApprovalTeamDeletionCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<StartActiveApprovalTeamDeletionCommandOutput>;
246
+ export declare const de_TagResourceCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<TagResourceCommandOutput>;
250
+ export declare const de_UntagResourceCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<UntagResourceCommandOutput>;
254
+ export declare const de_UpdateApprovalTeamCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<UpdateApprovalTeamCommandOutput>;
@@ -0,0 +1,91 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { MPAClientConfig } from "./MPAClient";
3
+ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
+ defaultUserAgentProvider: (
15
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
16
+ ) => Promise<import("@smithy/types").UserAgent>;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | import("@smithy/protocol-http").HttpHandler<any>
21
+ | RequestHandler;
22
+ retryMode: string | import("@smithy/types").Provider<string>;
23
+ sha256: import("@smithy/types").HashConstructor;
24
+ streamCollector: import("@smithy/types").StreamCollector;
25
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
27
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
28
+ apiVersion: string;
29
+ cacheMiddleware?: boolean | undefined;
30
+ urlParser: import("@smithy/types").UrlParser;
31
+ base64Decoder: import("@smithy/types").Decoder;
32
+ base64Encoder: (_input: Uint8Array | string) => string;
33
+ utf8Decoder: import("@smithy/types").Decoder;
34
+ utf8Encoder: (input: Uint8Array | string) => string;
35
+ disableHostPrefix: boolean;
36
+ serviceId: string;
37
+ profile?: string;
38
+ logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ customUserAgent?: string | import("@smithy/types").UserAgent;
41
+ userAgentAppId?:
42
+ | string
43
+ | undefined
44
+ | import("@smithy/types").Provider<string | undefined>;
45
+ retryStrategy?:
46
+ | import("@smithy/types").RetryStrategy
47
+ | import("@smithy/types").RetryStrategyV2;
48
+ endpoint?:
49
+ | ((
50
+ | string
51
+ | import("@smithy/types").Endpoint
52
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
53
+ | import("@smithy/types").EndpointV2
54
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ ) &
56
+ (
57
+ | string
58
+ | import("@smithy/types").Provider<string>
59
+ | import("@smithy/types").Endpoint
60
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
61
+ | import("@smithy/types").EndpointV2
62
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
63
+ ))
64
+ | undefined;
65
+ endpointProvider: (
66
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
67
+ context?: {
68
+ logger?: import("@smithy/types").Logger;
69
+ }
70
+ ) => import("@smithy/types").EndpointV2;
71
+ tls?: boolean;
72
+ serviceConfiguredEndpoint?: never;
73
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
74
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
75
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MPAHttpAuthSchemeProvider;
76
+ credentials?:
77
+ | import("@smithy/types").AwsCredentialIdentity
78
+ | import("@smithy/types").AwsCredentialIdentityProvider;
79
+ signer?:
80
+ | import("@smithy/types").RequestSigner
81
+ | ((
82
+ authScheme?: import("@smithy/types").AuthScheme
83
+ ) => Promise<import("@smithy/types").RequestSigner>);
84
+ signingEscapePath?: boolean;
85
+ systemClockOffset?: number;
86
+ signingRegion?: string;
87
+ signerConstructor?: new (
88
+ options: import("@smithy/signature-v4").SignatureV4Init &
89
+ import("@smithy/signature-v4").SignatureV4CryptoInit
90
+ ) => import("@smithy/types").RequestSigner;
91
+ };
@@ -0,0 +1,89 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { MPAClientConfig } from "./MPAClient";
3
+ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider:
11
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
+ | ((
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ ) => import("@smithy/types").MemoizedProvider<
15
+ import("@smithy/types").AwsCredentialIdentity
16
+ >);
17
+ defaultUserAgentProvider: (
18
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
19
+ ) => Promise<import("@smithy/types").UserAgent>;
20
+ maxAttempts: number | import("@smithy/types").Provider<number>;
21
+ region: string | import("@smithy/types").Provider<string>;
22
+ requestHandler:
23
+ | RequestHandler
24
+ | import("@smithy/protocol-http").HttpHandler<any>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ streamCollector: import("@smithy/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
31
+ apiVersion: string;
32
+ cacheMiddleware?: boolean | undefined;
33
+ urlParser: import("@smithy/types").UrlParser;
34
+ base64Decoder: import("@smithy/types").Decoder;
35
+ base64Encoder: (_input: Uint8Array | string) => string;
36
+ utf8Decoder: import("@smithy/types").Decoder;
37
+ utf8Encoder: (input: Uint8Array | string) => string;
38
+ disableHostPrefix: boolean;
39
+ serviceId: string;
40
+ profile?: string;
41
+ logger: import("@smithy/types").Logger;
42
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ customUserAgent?: string | import("@smithy/types").UserAgent;
44
+ retryStrategy?:
45
+ | import("@smithy/types").RetryStrategy
46
+ | import("@smithy/types").RetryStrategyV2;
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean;
71
+ serviceConfiguredEndpoint?: never;
72
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
73
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MPAHttpAuthSchemeProvider;
74
+ credentials?:
75
+ | import("@smithy/types").AwsCredentialIdentity
76
+ | import("@smithy/types").AwsCredentialIdentityProvider;
77
+ signer?:
78
+ | import("@smithy/types").RequestSigner
79
+ | ((
80
+ authScheme?: import("@smithy/types").AuthScheme
81
+ ) => Promise<import("@smithy/types").RequestSigner>);
82
+ signingEscapePath?: boolean;
83
+ systemClockOffset?: number;
84
+ signingRegion?: string;
85
+ signerConstructor?: new (
86
+ options: import("@smithy/signature-v4").SignatureV4Init &
87
+ import("@smithy/signature-v4").SignatureV4CryptoInit
88
+ ) => import("@smithy/types").RequestSigner;
89
+ };
@@ -0,0 +1,95 @@
1
+ import { MPAClientConfig } from "./MPAClient";
2
+ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
10
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
+ apiVersion: string;
12
+ cacheMiddleware?: boolean;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: (_input: Uint8Array | string) => string;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: (input: Uint8Array | string) => string;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
24
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
25
+ region: string | import("@smithy/types").Provider<any>;
26
+ profile?: string;
27
+ defaultUserAgentProvider: (
28
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
+ ) => Promise<import("@smithy/types").UserAgent>;
30
+ credentialDefaultProvider:
31
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
32
+ | ((
33
+ _: unknown
34
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
35
+ maxAttempts: number | import("@smithy/types").Provider<number>;
36
+ retryMode: string | import("@smithy/types").Provider<string>;
37
+ logger: import("@smithy/types").Logger;
38
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
39
+ defaultsMode:
40
+ | import("@smithy/smithy-client").DefaultsMode
41
+ | import("@smithy/types").Provider<
42
+ import("@smithy/smithy-client").DefaultsMode
43
+ >;
44
+ customUserAgent?: string | import("@smithy/types").UserAgent;
45
+ userAgentAppId?:
46
+ | string
47
+ | undefined
48
+ | import("@smithy/types").Provider<string | undefined>;
49
+ retryStrategy?:
50
+ | import("@smithy/types").RetryStrategy
51
+ | import("@smithy/types").RetryStrategyV2;
52
+ endpoint?:
53
+ | ((
54
+ | string
55
+ | import("@smithy/types").Endpoint
56
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
57
+ | import("@smithy/types").EndpointV2
58
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
59
+ ) &
60
+ (
61
+ | string
62
+ | import("@smithy/types").Provider<string>
63
+ | import("@smithy/types").Endpoint
64
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
65
+ | import("@smithy/types").EndpointV2
66
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
67
+ ))
68
+ | undefined;
69
+ endpointProvider: (
70
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
71
+ context?: {
72
+ logger?: import("@smithy/types").Logger;
73
+ }
74
+ ) => import("@smithy/types").EndpointV2;
75
+ tls?: boolean;
76
+ serviceConfiguredEndpoint?: never;
77
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
78
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
79
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MPAHttpAuthSchemeProvider;
80
+ credentials?:
81
+ | import("@smithy/types").AwsCredentialIdentity
82
+ | import("@smithy/types").AwsCredentialIdentityProvider;
83
+ signer?:
84
+ | import("@smithy/types").RequestSigner
85
+ | ((
86
+ authScheme?: import("@smithy/types").AuthScheme
87
+ ) => Promise<import("@smithy/types").RequestSigner>);
88
+ signingEscapePath?: boolean;
89
+ systemClockOffset?: number;
90
+ signingRegion?: string;
91
+ signerConstructor?: new (
92
+ options: import("@smithy/signature-v4").SignatureV4Init &
93
+ import("@smithy/signature-v4").SignatureV4CryptoInit
94
+ ) => import("@smithy/types").RequestSigner;
95
+ };
@@ -0,0 +1,21 @@
1
+ import { MPAClientConfig } from "./MPAClient";
2
+ export declare const getRuntimeConfig: (config: MPAClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: (_input: Uint8Array | string) => string;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MPAHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: Uint8Array | string) => string;
21
+ };
@@ -0,0 +1,11 @@
1
+ import { MPAExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: MPAExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;