@aws-sdk/client-arc-region-switch 3.859.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 (207) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +365 -0
  3. package/dist-cjs/ARCRegionSwitch.js +51 -0
  4. package/dist-cjs/ARCRegionSwitchClient.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/ApprovePlanExecutionStepCommand.js +26 -0
  8. package/dist-cjs/commands/CancelPlanExecutionCommand.js +26 -0
  9. package/dist-cjs/commands/CreatePlanCommand.js +29 -0
  10. package/dist-cjs/commands/DeletePlanCommand.js +29 -0
  11. package/dist-cjs/commands/GetPlanCommand.js +29 -0
  12. package/dist-cjs/commands/GetPlanEvaluationStatusCommand.js +26 -0
  13. package/dist-cjs/commands/GetPlanExecutionCommand.js +26 -0
  14. package/dist-cjs/commands/GetPlanInRegionCommand.js +26 -0
  15. package/dist-cjs/commands/ListPlanExecutionEventsCommand.js +26 -0
  16. package/dist-cjs/commands/ListPlanExecutionsCommand.js +26 -0
  17. package/dist-cjs/commands/ListPlansCommand.js +29 -0
  18. package/dist-cjs/commands/ListPlansInRegionCommand.js +26 -0
  19. package/dist-cjs/commands/ListRoute53HealthChecksCommand.js +29 -0
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +29 -0
  21. package/dist-cjs/commands/StartPlanExecutionCommand.js +26 -0
  22. package/dist-cjs/commands/TagResourceCommand.js +29 -0
  23. package/dist-cjs/commands/UntagResourceCommand.js +29 -0
  24. package/dist-cjs/commands/UpdatePlanCommand.js +29 -0
  25. package/dist-cjs/commands/UpdatePlanExecutionCommand.js +26 -0
  26. package/dist-cjs/commands/UpdatePlanExecutionStepCommand.js +26 -0
  27. package/dist-cjs/commands/index.js +23 -0
  28. package/dist-cjs/endpoint/EndpointParameters.js +15 -0
  29. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  30. package/dist-cjs/endpoint/ruleset.js +7 -0
  31. package/dist-cjs/extensionConfiguration.js +2 -0
  32. package/dist-cjs/index.js +12 -0
  33. package/dist-cjs/models/ARCRegionSwitchServiceException.js +12 -0
  34. package/dist-cjs/models/index.js +4 -0
  35. package/dist-cjs/models/models_0.js +233 -0
  36. package/dist-cjs/pagination/GetPlanEvaluationStatusPaginator.js +7 -0
  37. package/dist-cjs/pagination/GetPlanExecutionPaginator.js +7 -0
  38. package/dist-cjs/pagination/Interfaces.js +2 -0
  39. package/dist-cjs/pagination/ListPlanExecutionEventsPaginator.js +7 -0
  40. package/dist-cjs/pagination/ListPlanExecutionsPaginator.js +7 -0
  41. package/dist-cjs/pagination/ListPlansInRegionPaginator.js +7 -0
  42. package/dist-cjs/pagination/ListPlansPaginator.js +7 -0
  43. package/dist-cjs/pagination/ListRoute53HealthChecksPaginator.js +7 -0
  44. package/dist-cjs/pagination/index.js +11 -0
  45. package/dist-cjs/protocols/Aws_json1_0.js +919 -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-cjs/waiters/index.js +5 -0
  52. package/dist-cjs/waiters/waitForPlanEvaluationStatusPassed.js +54 -0
  53. package/dist-cjs/waiters/waitForPlanExecutionCompleted.js +72 -0
  54. package/dist-es/ARCRegionSwitch.js +47 -0
  55. package/dist-es/ARCRegionSwitchClient.js +48 -0
  56. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  57. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  58. package/dist-es/commands/ApprovePlanExecutionStepCommand.js +22 -0
  59. package/dist-es/commands/CancelPlanExecutionCommand.js +22 -0
  60. package/dist-es/commands/CreatePlanCommand.js +25 -0
  61. package/dist-es/commands/DeletePlanCommand.js +25 -0
  62. package/dist-es/commands/GetPlanCommand.js +25 -0
  63. package/dist-es/commands/GetPlanEvaluationStatusCommand.js +22 -0
  64. package/dist-es/commands/GetPlanExecutionCommand.js +22 -0
  65. package/dist-es/commands/GetPlanInRegionCommand.js +22 -0
  66. package/dist-es/commands/ListPlanExecutionEventsCommand.js +22 -0
  67. package/dist-es/commands/ListPlanExecutionsCommand.js +22 -0
  68. package/dist-es/commands/ListPlansCommand.js +25 -0
  69. package/dist-es/commands/ListPlansInRegionCommand.js +22 -0
  70. package/dist-es/commands/ListRoute53HealthChecksCommand.js +25 -0
  71. package/dist-es/commands/ListTagsForResourceCommand.js +25 -0
  72. package/dist-es/commands/StartPlanExecutionCommand.js +22 -0
  73. package/dist-es/commands/TagResourceCommand.js +25 -0
  74. package/dist-es/commands/UntagResourceCommand.js +25 -0
  75. package/dist-es/commands/UpdatePlanCommand.js +25 -0
  76. package/dist-es/commands/UpdatePlanExecutionCommand.js +22 -0
  77. package/dist-es/commands/UpdatePlanExecutionStepCommand.js +22 -0
  78. package/dist-es/commands/index.js +20 -0
  79. package/dist-es/endpoint/EndpointParameters.js +11 -0
  80. package/dist-es/endpoint/endpointResolver.js +14 -0
  81. package/dist-es/endpoint/ruleset.js +4 -0
  82. package/dist-es/extensionConfiguration.js +1 -0
  83. package/dist-es/index.js +7 -0
  84. package/dist-es/models/ARCRegionSwitchServiceException.js +8 -0
  85. package/dist-es/models/index.js +1 -0
  86. package/dist-es/models/models_0.js +225 -0
  87. package/dist-es/pagination/GetPlanEvaluationStatusPaginator.js +4 -0
  88. package/dist-es/pagination/GetPlanExecutionPaginator.js +4 -0
  89. package/dist-es/pagination/Interfaces.js +1 -0
  90. package/dist-es/pagination/ListPlanExecutionEventsPaginator.js +4 -0
  91. package/dist-es/pagination/ListPlanExecutionsPaginator.js +4 -0
  92. package/dist-es/pagination/ListPlansInRegionPaginator.js +4 -0
  93. package/dist-es/pagination/ListPlansPaginator.js +4 -0
  94. package/dist-es/pagination/ListRoute53HealthChecksPaginator.js +4 -0
  95. package/dist-es/pagination/index.js +8 -0
  96. package/dist-es/protocols/Aws_json1_0.js +876 -0
  97. package/dist-es/runtimeConfig.browser.js +34 -0
  98. package/dist-es/runtimeConfig.js +51 -0
  99. package/dist-es/runtimeConfig.native.js +11 -0
  100. package/dist-es/runtimeConfig.shared.js +30 -0
  101. package/dist-es/runtimeExtensions.js +9 -0
  102. package/dist-es/waiters/index.js +2 -0
  103. package/dist-es/waiters/waitForPlanEvaluationStatusPassed.js +49 -0
  104. package/dist-es/waiters/waitForPlanExecutionCompleted.js +67 -0
  105. package/dist-types/ARCRegionSwitch.d.ts +152 -0
  106. package/dist-types/ARCRegionSwitchClient.d.ts +207 -0
  107. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  108. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  109. package/dist-types/commands/ApprovePlanExecutionStepCommand.d.ts +80 -0
  110. package/dist-types/commands/CancelPlanExecutionCommand.d.ts +78 -0
  111. package/dist-types/commands/CreatePlanCommand.d.ts +697 -0
  112. package/dist-types/commands/DeletePlanCommand.d.ts +76 -0
  113. package/dist-types/commands/GetPlanCommand.d.ts +389 -0
  114. package/dist-types/commands/GetPlanEvaluationStatusCommand.d.ts +99 -0
  115. package/dist-types/commands/GetPlanExecutionCommand.d.ts +417 -0
  116. package/dist-types/commands/GetPlanInRegionCommand.d.ts +392 -0
  117. package/dist-types/commands/ListPlanExecutionEventsCommand.d.ts +97 -0
  118. package/dist-types/commands/ListPlanExecutionsCommand.d.ts +97 -0
  119. package/dist-types/commands/ListPlansCommand.d.ts +91 -0
  120. package/dist-types/commands/ListPlansInRegionCommand.d.ts +94 -0
  121. package/dist-types/commands/ListRoute53HealthChecksCommand.d.ts +93 -0
  122. package/dist-types/commands/ListTagsForResourceCommand.d.ts +80 -0
  123. package/dist-types/commands/StartPlanExecutionCommand.d.ts +93 -0
  124. package/dist-types/commands/TagResourceCommand.d.ts +79 -0
  125. package/dist-types/commands/UntagResourceCommand.d.ts +79 -0
  126. package/dist-types/commands/UpdatePlanCommand.d.ts +692 -0
  127. package/dist-types/commands/UpdatePlanExecutionCommand.d.ts +82 -0
  128. package/dist-types/commands/UpdatePlanExecutionStepCommand.d.ts +80 -0
  129. package/dist-types/commands/index.d.ts +20 -0
  130. package/dist-types/endpoint/EndpointParameters.d.ts +33 -0
  131. package/dist-types/endpoint/endpointResolver.d.ts +5 -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 +15 -0
  135. package/dist-types/models/ARCRegionSwitchServiceException.d.ts +14 -0
  136. package/dist-types/models/index.d.ts +1 -0
  137. package/dist-types/models/models_0.d.ts +2370 -0
  138. package/dist-types/pagination/GetPlanEvaluationStatusPaginator.d.ts +7 -0
  139. package/dist-types/pagination/GetPlanExecutionPaginator.d.ts +7 -0
  140. package/dist-types/pagination/Interfaces.d.ts +8 -0
  141. package/dist-types/pagination/ListPlanExecutionEventsPaginator.d.ts +7 -0
  142. package/dist-types/pagination/ListPlanExecutionsPaginator.d.ts +7 -0
  143. package/dist-types/pagination/ListPlansInRegionPaginator.d.ts +7 -0
  144. package/dist-types/pagination/ListPlansPaginator.d.ts +7 -0
  145. package/dist-types/pagination/ListRoute53HealthChecksPaginator.d.ts +7 -0
  146. package/dist-types/pagination/index.d.ts +8 -0
  147. package/dist-types/protocols/Aws_json1_0.d.ts +182 -0
  148. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  149. package/dist-types/runtimeConfig.d.ts +50 -0
  150. package/dist-types/runtimeConfig.native.d.ts +49 -0
  151. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  152. package/dist-types/runtimeExtensions.d.ts +17 -0
  153. package/dist-types/ts3.4/ARCRegionSwitch.d.ts +349 -0
  154. package/dist-types/ts3.4/ARCRegionSwitchClient.d.ts +240 -0
  155. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  156. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  157. package/dist-types/ts3.4/commands/ApprovePlanExecutionStepCommand.d.ts +51 -0
  158. package/dist-types/ts3.4/commands/CancelPlanExecutionCommand.d.ts +51 -0
  159. package/dist-types/ts3.4/commands/CreatePlanCommand.d.ts +47 -0
  160. package/dist-types/ts3.4/commands/DeletePlanCommand.d.ts +47 -0
  161. package/dist-types/ts3.4/commands/GetPlanCommand.d.ts +43 -0
  162. package/dist-types/ts3.4/commands/GetPlanEvaluationStatusCommand.d.ts +51 -0
  163. package/dist-types/ts3.4/commands/GetPlanExecutionCommand.d.ts +50 -0
  164. package/dist-types/ts3.4/commands/GetPlanInRegionCommand.d.ts +50 -0
  165. package/dist-types/ts3.4/commands/ListPlanExecutionEventsCommand.d.ts +51 -0
  166. package/dist-types/ts3.4/commands/ListPlanExecutionsCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/ListPlansCommand.d.ts +47 -0
  168. package/dist-types/ts3.4/commands/ListPlansInRegionCommand.d.ts +51 -0
  169. package/dist-types/ts3.4/commands/ListRoute53HealthChecksCommand.d.ts +51 -0
  170. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/StartPlanExecutionCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  173. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  174. package/dist-types/ts3.4/commands/UpdatePlanCommand.d.ts +47 -0
  175. package/dist-types/ts3.4/commands/UpdatePlanExecutionCommand.d.ts +51 -0
  176. package/dist-types/ts3.4/commands/UpdatePlanExecutionStepCommand.d.ts +51 -0
  177. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  178. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +46 -0
  179. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  180. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  181. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  182. package/dist-types/ts3.4/index.d.ts +10 -0
  183. package/dist-types/ts3.4/models/ARCRegionSwitchServiceException.d.ts +9 -0
  184. package/dist-types/ts3.4/models/index.d.ts +1 -0
  185. package/dist-types/ts3.4/models/models_0.d.ts +813 -0
  186. package/dist-types/ts3.4/pagination/GetPlanEvaluationStatusPaginator.d.ts +11 -0
  187. package/dist-types/ts3.4/pagination/GetPlanExecutionPaginator.d.ts +11 -0
  188. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  189. package/dist-types/ts3.4/pagination/ListPlanExecutionEventsPaginator.d.ts +11 -0
  190. package/dist-types/ts3.4/pagination/ListPlanExecutionsPaginator.d.ts +11 -0
  191. package/dist-types/ts3.4/pagination/ListPlansInRegionPaginator.d.ts +11 -0
  192. package/dist-types/ts3.4/pagination/ListPlansPaginator.d.ts +11 -0
  193. package/dist-types/ts3.4/pagination/ListRoute53HealthChecksPaginator.d.ts +11 -0
  194. package/dist-types/ts3.4/pagination/index.d.ts +8 -0
  195. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +245 -0
  196. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  197. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  198. package/dist-types/ts3.4/runtimeConfig.native.d.ts +97 -0
  199. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  200. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  201. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  202. package/dist-types/ts3.4/waiters/waitForPlanEvaluationStatusPassed.d.ts +11 -0
  203. package/dist-types/ts3.4/waiters/waitForPlanExecutionCompleted.d.ts +11 -0
  204. package/dist-types/waiters/index.d.ts +2 -0
  205. package/dist-types/waiters/waitForPlanEvaluationStatusPassed.d.ts +14 -0
  206. package/dist-types/waiters/waitForPlanExecutionCompleted.d.ts +14 -0
  207. package/package.json +100 -0
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ GetPlanEvaluationStatusCommandInput,
4
+ GetPlanEvaluationStatusCommandOutput,
5
+ } from "../commands/GetPlanEvaluationStatusCommand";
6
+ import { ARCRegionSwitchPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateGetPlanEvaluationStatus: (
8
+ config: ARCRegionSwitchPaginationConfiguration,
9
+ input: GetPlanEvaluationStatusCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<GetPlanEvaluationStatusCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ GetPlanExecutionCommandInput,
4
+ GetPlanExecutionCommandOutput,
5
+ } from "../commands/GetPlanExecutionCommand";
6
+ import { ARCRegionSwitchPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateGetPlanExecution: (
8
+ config: ARCRegionSwitchPaginationConfiguration,
9
+ input: GetPlanExecutionCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<GetPlanExecutionCommandOutput>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient";
3
+ export interface ARCRegionSwitchPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: ARCRegionSwitchClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListPlanExecutionEventsCommandInput,
4
+ ListPlanExecutionEventsCommandOutput,
5
+ } from "../commands/ListPlanExecutionEventsCommand";
6
+ import { ARCRegionSwitchPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListPlanExecutionEvents: (
8
+ config: ARCRegionSwitchPaginationConfiguration,
9
+ input: ListPlanExecutionEventsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListPlanExecutionEventsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListPlanExecutionsCommandInput,
4
+ ListPlanExecutionsCommandOutput,
5
+ } from "../commands/ListPlanExecutionsCommand";
6
+ import { ARCRegionSwitchPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListPlanExecutions: (
8
+ config: ARCRegionSwitchPaginationConfiguration,
9
+ input: ListPlanExecutionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListPlanExecutionsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListPlansInRegionCommandInput,
4
+ ListPlansInRegionCommandOutput,
5
+ } from "../commands/ListPlansInRegionCommand";
6
+ import { ARCRegionSwitchPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListPlansInRegion: (
8
+ config: ARCRegionSwitchPaginationConfiguration,
9
+ input: ListPlansInRegionCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListPlansInRegionCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListPlansCommandInput,
4
+ ListPlansCommandOutput,
5
+ } from "../commands/ListPlansCommand";
6
+ import { ARCRegionSwitchPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListPlans: (
8
+ config: ARCRegionSwitchPaginationConfiguration,
9
+ input: ListPlansCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListPlansCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListRoute53HealthChecksCommandInput,
4
+ ListRoute53HealthChecksCommandOutput,
5
+ } from "../commands/ListRoute53HealthChecksCommand";
6
+ import { ARCRegionSwitchPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListRoute53HealthChecks: (
8
+ config: ARCRegionSwitchPaginationConfiguration,
9
+ input: ListRoute53HealthChecksCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListRoute53HealthChecksCommandOutput>;
@@ -0,0 +1,8 @@
1
+ export * from "./GetPlanEvaluationStatusPaginator";
2
+ export * from "./GetPlanExecutionPaginator";
3
+ export * from "./Interfaces";
4
+ export * from "./ListPlanExecutionEventsPaginator";
5
+ export * from "./ListPlanExecutionsPaginator";
6
+ export * from "./ListPlansInRegionPaginator";
7
+ export * from "./ListPlansPaginator";
8
+ export * from "./ListRoute53HealthChecksPaginator";
@@ -0,0 +1,245 @@
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
+ ApprovePlanExecutionStepCommandInput,
8
+ ApprovePlanExecutionStepCommandOutput,
9
+ } from "../commands/ApprovePlanExecutionStepCommand";
10
+ import {
11
+ CancelPlanExecutionCommandInput,
12
+ CancelPlanExecutionCommandOutput,
13
+ } from "../commands/CancelPlanExecutionCommand";
14
+ import {
15
+ CreatePlanCommandInput,
16
+ CreatePlanCommandOutput,
17
+ } from "../commands/CreatePlanCommand";
18
+ import {
19
+ DeletePlanCommandInput,
20
+ DeletePlanCommandOutput,
21
+ } from "../commands/DeletePlanCommand";
22
+ import {
23
+ GetPlanCommandInput,
24
+ GetPlanCommandOutput,
25
+ } from "../commands/GetPlanCommand";
26
+ import {
27
+ GetPlanEvaluationStatusCommandInput,
28
+ GetPlanEvaluationStatusCommandOutput,
29
+ } from "../commands/GetPlanEvaluationStatusCommand";
30
+ import {
31
+ GetPlanExecutionCommandInput,
32
+ GetPlanExecutionCommandOutput,
33
+ } from "../commands/GetPlanExecutionCommand";
34
+ import {
35
+ GetPlanInRegionCommandInput,
36
+ GetPlanInRegionCommandOutput,
37
+ } from "../commands/GetPlanInRegionCommand";
38
+ import {
39
+ ListPlanExecutionEventsCommandInput,
40
+ ListPlanExecutionEventsCommandOutput,
41
+ } from "../commands/ListPlanExecutionEventsCommand";
42
+ import {
43
+ ListPlanExecutionsCommandInput,
44
+ ListPlanExecutionsCommandOutput,
45
+ } from "../commands/ListPlanExecutionsCommand";
46
+ import {
47
+ ListPlansCommandInput,
48
+ ListPlansCommandOutput,
49
+ } from "../commands/ListPlansCommand";
50
+ import {
51
+ ListPlansInRegionCommandInput,
52
+ ListPlansInRegionCommandOutput,
53
+ } from "../commands/ListPlansInRegionCommand";
54
+ import {
55
+ ListRoute53HealthChecksCommandInput,
56
+ ListRoute53HealthChecksCommandOutput,
57
+ } from "../commands/ListRoute53HealthChecksCommand";
58
+ import {
59
+ ListTagsForResourceCommandInput,
60
+ ListTagsForResourceCommandOutput,
61
+ } from "../commands/ListTagsForResourceCommand";
62
+ import {
63
+ StartPlanExecutionCommandInput,
64
+ StartPlanExecutionCommandOutput,
65
+ } from "../commands/StartPlanExecutionCommand";
66
+ import {
67
+ TagResourceCommandInput,
68
+ TagResourceCommandOutput,
69
+ } from "../commands/TagResourceCommand";
70
+ import {
71
+ UntagResourceCommandInput,
72
+ UntagResourceCommandOutput,
73
+ } from "../commands/UntagResourceCommand";
74
+ import {
75
+ UpdatePlanCommandInput,
76
+ UpdatePlanCommandOutput,
77
+ } from "../commands/UpdatePlanCommand";
78
+ import {
79
+ UpdatePlanExecutionCommandInput,
80
+ UpdatePlanExecutionCommandOutput,
81
+ } from "../commands/UpdatePlanExecutionCommand";
82
+ import {
83
+ UpdatePlanExecutionStepCommandInput,
84
+ UpdatePlanExecutionStepCommandOutput,
85
+ } from "../commands/UpdatePlanExecutionStepCommand";
86
+ export declare const se_ApprovePlanExecutionStepCommand: (
87
+ input: ApprovePlanExecutionStepCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const se_CancelPlanExecutionCommand: (
91
+ input: CancelPlanExecutionCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const se_CreatePlanCommand: (
95
+ input: CreatePlanCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const se_DeletePlanCommand: (
99
+ input: DeletePlanCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const se_GetPlanCommand: (
103
+ input: GetPlanCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const se_GetPlanEvaluationStatusCommand: (
107
+ input: GetPlanEvaluationStatusCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const se_GetPlanExecutionCommand: (
111
+ input: GetPlanExecutionCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const se_GetPlanInRegionCommand: (
115
+ input: GetPlanInRegionCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const se_ListPlanExecutionEventsCommand: (
119
+ input: ListPlanExecutionEventsCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const se_ListPlanExecutionsCommand: (
123
+ input: ListPlanExecutionsCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_ListPlansCommand: (
127
+ input: ListPlansCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_ListPlansInRegionCommand: (
131
+ input: ListPlansInRegionCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const se_ListRoute53HealthChecksCommand: (
135
+ input: ListRoute53HealthChecksCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const se_ListTagsForResourceCommand: (
139
+ input: ListTagsForResourceCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const se_StartPlanExecutionCommand: (
143
+ input: StartPlanExecutionCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const se_TagResourceCommand: (
147
+ input: TagResourceCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const se_UntagResourceCommand: (
151
+ input: UntagResourceCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const se_UpdatePlanCommand: (
155
+ input: UpdatePlanCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const se_UpdatePlanExecutionCommand: (
159
+ input: UpdatePlanExecutionCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const se_UpdatePlanExecutionStepCommand: (
163
+ input: UpdatePlanExecutionStepCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const de_ApprovePlanExecutionStepCommand: (
167
+ output: __HttpResponse,
168
+ context: __SerdeContext
169
+ ) => Promise<ApprovePlanExecutionStepCommandOutput>;
170
+ export declare const de_CancelPlanExecutionCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<CancelPlanExecutionCommandOutput>;
174
+ export declare const de_CreatePlanCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<CreatePlanCommandOutput>;
178
+ export declare const de_DeletePlanCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<DeletePlanCommandOutput>;
182
+ export declare const de_GetPlanCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<GetPlanCommandOutput>;
186
+ export declare const de_GetPlanEvaluationStatusCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<GetPlanEvaluationStatusCommandOutput>;
190
+ export declare const de_GetPlanExecutionCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<GetPlanExecutionCommandOutput>;
194
+ export declare const de_GetPlanInRegionCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<GetPlanInRegionCommandOutput>;
198
+ export declare const de_ListPlanExecutionEventsCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<ListPlanExecutionEventsCommandOutput>;
202
+ export declare const de_ListPlanExecutionsCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<ListPlanExecutionsCommandOutput>;
206
+ export declare const de_ListPlansCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<ListPlansCommandOutput>;
210
+ export declare const de_ListPlansInRegionCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<ListPlansInRegionCommandOutput>;
214
+ export declare const de_ListRoute53HealthChecksCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<ListRoute53HealthChecksCommandOutput>;
218
+ export declare const de_ListTagsForResourceCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<ListTagsForResourceCommandOutput>;
222
+ export declare const de_StartPlanExecutionCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<StartPlanExecutionCommandOutput>;
226
+ export declare const de_TagResourceCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<TagResourceCommandOutput>;
230
+ export declare const de_UntagResourceCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<UntagResourceCommandOutput>;
234
+ export declare const de_UpdatePlanCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<UpdatePlanCommandOutput>;
238
+ export declare const de_UpdatePlanExecutionCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<UpdatePlanExecutionCommandOutput>;
242
+ export declare const de_UpdatePlanExecutionStepCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<UpdatePlanExecutionStepCommandOutput>;
@@ -0,0 +1,93 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: ARCRegionSwitchClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider:
12
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
13
+ | ((
14
+ _: unknown
15
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
16
+ defaultUserAgentProvider: (
17
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
18
+ ) => Promise<import("@smithy/types").UserAgent>;
19
+ maxAttempts: number | import("@smithy/types").Provider<number>;
20
+ region: string | import("@smithy/types").Provider<any>;
21
+ requestHandler:
22
+ | import("@smithy/protocol-http").HttpHandler<any>
23
+ | RequestHandler;
24
+ retryMode: string | import("@smithy/types").Provider<string>;
25
+ sha256: import("@smithy/types").HashConstructor;
26
+ streamCollector: import("@smithy/types").StreamCollector;
27
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
29
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
30
+ apiVersion: string;
31
+ cacheMiddleware?: boolean | undefined;
32
+ urlParser: import("@smithy/types").UrlParser;
33
+ base64Decoder: import("@smithy/types").Decoder;
34
+ base64Encoder: (_input: Uint8Array | string) => string;
35
+ utf8Decoder: import("@smithy/types").Decoder;
36
+ utf8Encoder: (input: Uint8Array | string) => string;
37
+ disableHostPrefix: boolean;
38
+ serviceId: string;
39
+ profile?: string;
40
+ logger: import("@smithy/types").Logger;
41
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ customUserAgent?: string | import("@smithy/types").UserAgent;
43
+ userAgentAppId?:
44
+ | string
45
+ | undefined
46
+ | import("@smithy/types").Provider<string | undefined>;
47
+ retryStrategy?:
48
+ | import("@smithy/types").RetryStrategy
49
+ | import("@smithy/types").RetryStrategyV2;
50
+ endpoint?:
51
+ | ((
52
+ | string
53
+ | import("@smithy/types").Endpoint
54
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
55
+ | import("@smithy/types").EndpointV2
56
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
+ ) &
58
+ (
59
+ | string
60
+ | import("@smithy/types").Provider<string>
61
+ | import("@smithy/types").Endpoint
62
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
63
+ | import("@smithy/types").EndpointV2
64
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
65
+ ))
66
+ | undefined;
67
+ endpointProvider: (
68
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
69
+ context?: {
70
+ logger?: import("@smithy/types").Logger;
71
+ }
72
+ ) => import("@smithy/types").EndpointV2;
73
+ tls?: boolean;
74
+ serviceConfiguredEndpoint?: never;
75
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
76
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
77
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCRegionSwitchHttpAuthSchemeProvider;
78
+ credentials?:
79
+ | import("@smithy/types").AwsCredentialIdentity
80
+ | import("@smithy/types").AwsCredentialIdentityProvider;
81
+ signer?:
82
+ | import("@smithy/types").RequestSigner
83
+ | ((
84
+ authScheme?: import("@smithy/types").AuthScheme
85
+ ) => Promise<import("@smithy/types").RequestSigner>);
86
+ signingEscapePath?: boolean;
87
+ systemClockOffset?: number;
88
+ signingRegion?: string;
89
+ signerConstructor?: new (
90
+ options: import("@smithy/signature-v4").SignatureV4Init &
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit
92
+ ) => import("@smithy/types").RequestSigner;
93
+ };
@@ -0,0 +1,91 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: ARCRegionSwitchClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
11
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
+ credentialDefaultProvider:
13
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
14
+ | ((
15
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
16
+ ) => import("@smithy/types").MemoizedProvider<
17
+ import("@smithy/types").AwsCredentialIdentity
18
+ >);
19
+ defaultUserAgentProvider: (
20
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
21
+ ) => Promise<import("@smithy/types").UserAgent>;
22
+ maxAttempts: number | import("@smithy/types").Provider<number>;
23
+ region: string | import("@smithy/types").Provider<string>;
24
+ requestHandler:
25
+ | RequestHandler
26
+ | import("@smithy/protocol-http").HttpHandler<any>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ sha256: import("@smithy/types").HashConstructor;
29
+ streamCollector: import("@smithy/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
33
+ apiVersion: string;
34
+ cacheMiddleware?: boolean | undefined;
35
+ urlParser: import("@smithy/types").UrlParser;
36
+ base64Decoder: import("@smithy/types").Decoder;
37
+ base64Encoder: (_input: Uint8Array | string) => string;
38
+ utf8Decoder: import("@smithy/types").Decoder;
39
+ utf8Encoder: (input: Uint8Array | string) => string;
40
+ disableHostPrefix: boolean;
41
+ serviceId: string;
42
+ profile?: string;
43
+ logger: import("@smithy/types").Logger;
44
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
45
+ customUserAgent?: string | import("@smithy/types").UserAgent;
46
+ retryStrategy?:
47
+ | import("@smithy/types").RetryStrategy
48
+ | import("@smithy/types").RetryStrategyV2;
49
+ endpoint?:
50
+ | ((
51
+ | string
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ) &
57
+ (
58
+ | string
59
+ | import("@smithy/types").Provider<string>
60
+ | import("@smithy/types").Endpoint
61
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
62
+ | import("@smithy/types").EndpointV2
63
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
64
+ ))
65
+ | undefined;
66
+ endpointProvider: (
67
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
68
+ context?: {
69
+ logger?: import("@smithy/types").Logger;
70
+ }
71
+ ) => import("@smithy/types").EndpointV2;
72
+ tls?: boolean;
73
+ serviceConfiguredEndpoint?: never;
74
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
75
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCRegionSwitchHttpAuthSchemeProvider;
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,97 @@
1
+ import { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: ARCRegionSwitchClientConfig
4
+ ) => {
5
+ runtime: string;
6
+ sha256: import("@smithy/types").HashConstructor;
7
+ requestHandler:
8
+ | import("@smithy/types").NodeHttpHandlerOptions
9
+ | import("@smithy/types").FetchHttpHandlerOptions
10
+ | Record<string, unknown>
11
+ | import("@smithy/protocol-http").HttpHandler<any>
12
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
13
+ apiVersion: string;
14
+ cacheMiddleware?: boolean;
15
+ urlParser: import("@smithy/types").UrlParser;
16
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ base64Decoder: import("@smithy/types").Decoder;
19
+ base64Encoder: (_input: Uint8Array | string) => string;
20
+ utf8Decoder: import("@smithy/types").Decoder;
21
+ utf8Encoder: (input: Uint8Array | string) => string;
22
+ disableHostPrefix: boolean;
23
+ serviceId: string;
24
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
26
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
+ region: string | import("@smithy/types").Provider<any>;
28
+ profile?: string;
29
+ defaultUserAgentProvider: (
30
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
31
+ ) => Promise<import("@smithy/types").UserAgent>;
32
+ credentialDefaultProvider:
33
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
34
+ | ((
35
+ _: unknown
36
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
37
+ maxAttempts: number | import("@smithy/types").Provider<number>;
38
+ retryMode: string | import("@smithy/types").Provider<string>;
39
+ logger: import("@smithy/types").Logger;
40
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ defaultsMode:
42
+ | import("@smithy/smithy-client").DefaultsMode
43
+ | import("@smithy/types").Provider<
44
+ import("@smithy/smithy-client").DefaultsMode
45
+ >;
46
+ customUserAgent?: string | import("@smithy/types").UserAgent;
47
+ userAgentAppId?:
48
+ | string
49
+ | undefined
50
+ | import("@smithy/types").Provider<string | undefined>;
51
+ retryStrategy?:
52
+ | import("@smithy/types").RetryStrategy
53
+ | import("@smithy/types").RetryStrategyV2;
54
+ endpoint?:
55
+ | ((
56
+ | string
57
+ | import("@smithy/types").Endpoint
58
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
+ | import("@smithy/types").EndpointV2
60
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
+ ) &
62
+ (
63
+ | string
64
+ | import("@smithy/types").Provider<string>
65
+ | import("@smithy/types").Endpoint
66
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
+ | import("@smithy/types").EndpointV2
68
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
+ ))
70
+ | undefined;
71
+ endpointProvider: (
72
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
73
+ context?: {
74
+ logger?: import("@smithy/types").Logger;
75
+ }
76
+ ) => import("@smithy/types").EndpointV2;
77
+ tls?: boolean;
78
+ serviceConfiguredEndpoint?: never;
79
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
80
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
81
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCRegionSwitchHttpAuthSchemeProvider;
82
+ credentials?:
83
+ | import("@smithy/types").AwsCredentialIdentity
84
+ | import("@smithy/types").AwsCredentialIdentityProvider;
85
+ signer?:
86
+ | import("@smithy/types").RequestSigner
87
+ | ((
88
+ authScheme?: import("@smithy/types").AuthScheme
89
+ ) => Promise<import("@smithy/types").RequestSigner>);
90
+ signingEscapePath?: boolean;
91
+ systemClockOffset?: number;
92
+ signingRegion?: string;
93
+ signerConstructor?: new (
94
+ options: import("@smithy/signature-v4").SignatureV4Init &
95
+ import("@smithy/signature-v4").SignatureV4CryptoInit
96
+ ) => import("@smithy/types").RequestSigner;
97
+ };
@@ -0,0 +1,23 @@
1
+ import { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: ARCRegionSwitchClientConfig
4
+ ) => {
5
+ apiVersion: string;
6
+ base64Decoder: import("@smithy/types").Decoder;
7
+ base64Encoder: (_input: Uint8Array | string) => string;
8
+ disableHostPrefix: boolean;
9
+ endpointProvider: (
10
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
11
+ context?: {
12
+ logger?: import("@smithy/types").Logger;
13
+ }
14
+ ) => import("@smithy/types").EndpointV2;
15
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
16
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCRegionSwitchHttpAuthSchemeProvider;
17
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
+ logger: import("@smithy/types").Logger;
19
+ serviceId: string;
20
+ urlParser: import("@smithy/types").UrlParser;
21
+ utf8Decoder: import("@smithy/types").Decoder;
22
+ utf8Encoder: (input: Uint8Array | string) => string;
23
+ };
@@ -0,0 +1,13 @@
1
+ import { ARCRegionSwitchExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(
4
+ extensionConfiguration: ARCRegionSwitchExtensionConfiguration
5
+ ): void;
6
+ }
7
+ export interface RuntimeExtensionsConfig {
8
+ extensions: RuntimeExtension[];
9
+ }
10
+ export declare const resolveRuntimeExtensions: (
11
+ runtimeConfig: any,
12
+ extensions: RuntimeExtension[]
13
+ ) => any;