@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,692 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient";
4
+ import { UpdatePlanRequest, UpdatePlanResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdatePlanCommand}.
14
+ */
15
+ export interface UpdatePlanCommandInput extends UpdatePlanRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdatePlanCommand}.
21
+ */
22
+ export interface UpdatePlanCommandOutput extends UpdatePlanResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdatePlanCommand_base: {
25
+ new (input: UpdatePlanCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePlanCommandInput, UpdatePlanCommandOutput, ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdatePlanCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePlanCommandInput, UpdatePlanCommandOutput, ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates an existing Region switch plan. You can modify the plan's description, workflows, execution role, recovery time objective, associated alarms, and triggers.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { ARCRegionSwitchClient, UpdatePlanCommand } from "@aws-sdk/client-arc-region-switch"; // ES Modules import
35
+ * // const { ARCRegionSwitchClient, UpdatePlanCommand } = require("@aws-sdk/client-arc-region-switch"); // CommonJS import
36
+ * const client = new ARCRegionSwitchClient(config);
37
+ * const input = { // UpdatePlanRequest
38
+ * arn: "STRING_VALUE", // required
39
+ * description: "STRING_VALUE",
40
+ * workflows: [ // WorkflowList // required
41
+ * { // Workflow
42
+ * steps: [ // Steps
43
+ * { // Step
44
+ * name: "STRING_VALUE", // required
45
+ * description: "STRING_VALUE",
46
+ * executionBlockConfiguration: { // ExecutionBlockConfiguration Union: only one key present
47
+ * customActionLambdaConfig: { // CustomActionLambdaConfiguration
48
+ * timeoutMinutes: Number("int"),
49
+ * lambdas: [ // LambdaList // required
50
+ * { // Lambdas
51
+ * crossAccountRole: "STRING_VALUE",
52
+ * externalId: "STRING_VALUE",
53
+ * arn: "STRING_VALUE",
54
+ * },
55
+ * ],
56
+ * retryIntervalMinutes: Number("float"), // required
57
+ * regionToRun: "activatingRegion" || "deactivatingRegion", // required
58
+ * ungraceful: { // LambdaUngraceful
59
+ * behavior: "skip",
60
+ * },
61
+ * },
62
+ * ec2AsgCapacityIncreaseConfig: { // Ec2AsgCapacityIncreaseConfiguration
63
+ * timeoutMinutes: Number("int"),
64
+ * asgs: [ // AsgList // required
65
+ * { // Asg
66
+ * crossAccountRole: "STRING_VALUE",
67
+ * externalId: "STRING_VALUE",
68
+ * arn: "STRING_VALUE",
69
+ * },
70
+ * ],
71
+ * ungraceful: { // Ec2Ungraceful
72
+ * minimumSuccessPercentage: Number("int"), // required
73
+ * },
74
+ * targetPercent: Number("int"),
75
+ * capacityMonitoringApproach: "sampledMaxInLast24Hours" || "autoscalingMaxInLast24Hours",
76
+ * },
77
+ * executionApprovalConfig: { // ExecutionApprovalConfiguration
78
+ * timeoutMinutes: Number("int"),
79
+ * approvalRole: "STRING_VALUE", // required
80
+ * },
81
+ * arcRoutingControlConfig: { // ArcRoutingControlConfiguration
82
+ * timeoutMinutes: Number("int"),
83
+ * crossAccountRole: "STRING_VALUE",
84
+ * externalId: "STRING_VALUE",
85
+ * regionAndRoutingControls: { // RegionAndRoutingControls // required
86
+ * "<keys>": [ // ArcRoutingControlStates
87
+ * { // ArcRoutingControlState
88
+ * routingControlArn: "STRING_VALUE", // required
89
+ * state: "On" || "Off", // required
90
+ * },
91
+ * ],
92
+ * },
93
+ * },
94
+ * globalAuroraConfig: { // GlobalAuroraConfiguration
95
+ * timeoutMinutes: Number("int"),
96
+ * crossAccountRole: "STRING_VALUE",
97
+ * externalId: "STRING_VALUE",
98
+ * behavior: "switchoverOnly" || "failover", // required
99
+ * ungraceful: { // GlobalAuroraUngraceful
100
+ * ungraceful: "failover",
101
+ * },
102
+ * globalClusterIdentifier: "STRING_VALUE", // required
103
+ * databaseClusterArns: [ // AuroraClusterArns // required
104
+ * "STRING_VALUE",
105
+ * ],
106
+ * },
107
+ * parallelConfig: { // ParallelExecutionBlockConfiguration
108
+ * steps: [ // required
109
+ * {
110
+ * name: "STRING_VALUE", // required
111
+ * description: "STRING_VALUE",
112
+ * executionBlockConfiguration: {// Union: only one key present
113
+ * customActionLambdaConfig: {
114
+ * timeoutMinutes: Number("int"),
115
+ * lambdas: [ // required
116
+ * {
117
+ * crossAccountRole: "STRING_VALUE",
118
+ * externalId: "STRING_VALUE",
119
+ * arn: "STRING_VALUE",
120
+ * },
121
+ * ],
122
+ * retryIntervalMinutes: Number("float"), // required
123
+ * regionToRun: "activatingRegion" || "deactivatingRegion", // required
124
+ * ungraceful: {
125
+ * behavior: "skip",
126
+ * },
127
+ * },
128
+ * ec2AsgCapacityIncreaseConfig: {
129
+ * timeoutMinutes: Number("int"),
130
+ * asgs: [ // required
131
+ * {
132
+ * crossAccountRole: "STRING_VALUE",
133
+ * externalId: "STRING_VALUE",
134
+ * arn: "STRING_VALUE",
135
+ * },
136
+ * ],
137
+ * ungraceful: {
138
+ * minimumSuccessPercentage: Number("int"), // required
139
+ * },
140
+ * targetPercent: Number("int"),
141
+ * capacityMonitoringApproach: "sampledMaxInLast24Hours" || "autoscalingMaxInLast24Hours",
142
+ * },
143
+ * executionApprovalConfig: {
144
+ * timeoutMinutes: Number("int"),
145
+ * approvalRole: "STRING_VALUE", // required
146
+ * },
147
+ * arcRoutingControlConfig: {
148
+ * timeoutMinutes: Number("int"),
149
+ * crossAccountRole: "STRING_VALUE",
150
+ * externalId: "STRING_VALUE",
151
+ * regionAndRoutingControls: { // required
152
+ * "<keys>": [
153
+ * {
154
+ * routingControlArn: "STRING_VALUE", // required
155
+ * state: "On" || "Off", // required
156
+ * },
157
+ * ],
158
+ * },
159
+ * },
160
+ * globalAuroraConfig: {
161
+ * timeoutMinutes: Number("int"),
162
+ * crossAccountRole: "STRING_VALUE",
163
+ * externalId: "STRING_VALUE",
164
+ * behavior: "switchoverOnly" || "failover", // required
165
+ * ungraceful: {
166
+ * ungraceful: "failover",
167
+ * },
168
+ * globalClusterIdentifier: "STRING_VALUE", // required
169
+ * databaseClusterArns: [ // required
170
+ * "STRING_VALUE",
171
+ * ],
172
+ * },
173
+ * parallelConfig: {
174
+ * steps: "<Steps>", // required
175
+ * },
176
+ * regionSwitchPlanConfig: { // RegionSwitchPlanConfiguration
177
+ * crossAccountRole: "STRING_VALUE",
178
+ * externalId: "STRING_VALUE",
179
+ * arn: "STRING_VALUE", // required
180
+ * },
181
+ * ecsCapacityIncreaseConfig: { // EcsCapacityIncreaseConfiguration
182
+ * timeoutMinutes: Number("int"),
183
+ * services: [ // ServiceList // required
184
+ * { // Service
185
+ * crossAccountRole: "STRING_VALUE",
186
+ * externalId: "STRING_VALUE",
187
+ * clusterArn: "STRING_VALUE",
188
+ * serviceArn: "STRING_VALUE",
189
+ * },
190
+ * ],
191
+ * ungraceful: { // EcsUngraceful
192
+ * minimumSuccessPercentage: Number("int"), // required
193
+ * },
194
+ * targetPercent: Number("int"),
195
+ * capacityMonitoringApproach: "sampledMaxInLast24Hours" || "containerInsightsMaxInLast24Hours",
196
+ * },
197
+ * eksResourceScalingConfig: { // EksResourceScalingConfiguration
198
+ * timeoutMinutes: Number("int"),
199
+ * kubernetesResourceType: { // KubernetesResourceType
200
+ * apiVersion: "STRING_VALUE", // required
201
+ * kind: "STRING_VALUE", // required
202
+ * },
203
+ * scalingResources: [ // KubernetesScalingApps
204
+ * { // KubernetesScalingApplication
205
+ * "<keys>": { // RegionalScalingResource
206
+ * "<keys>": { // KubernetesScalingResource
207
+ * namespace: "STRING_VALUE", // required
208
+ * name: "STRING_VALUE", // required
209
+ * hpaName: "STRING_VALUE",
210
+ * },
211
+ * },
212
+ * },
213
+ * ],
214
+ * eksClusters: [ // EksClusters
215
+ * { // EksCluster
216
+ * crossAccountRole: "STRING_VALUE",
217
+ * externalId: "STRING_VALUE",
218
+ * clusterArn: "STRING_VALUE", // required
219
+ * },
220
+ * ],
221
+ * ungraceful: { // EksResourceScalingUngraceful
222
+ * minimumSuccessPercentage: Number("int"), // required
223
+ * },
224
+ * targetPercent: Number("int"),
225
+ * capacityMonitoringApproach: "sampledMaxInLast24Hours",
226
+ * },
227
+ * route53HealthCheckConfig: { // Route53HealthCheckConfiguration
228
+ * timeoutMinutes: Number("int"),
229
+ * crossAccountRole: "STRING_VALUE",
230
+ * externalId: "STRING_VALUE",
231
+ * hostedZoneId: "STRING_VALUE", // required
232
+ * recordName: "STRING_VALUE", // required
233
+ * recordSets: [ // Route53ResourceRecordSetList
234
+ * { // Route53ResourceRecordSet
235
+ * recordSetIdentifier: "STRING_VALUE",
236
+ * region: "STRING_VALUE",
237
+ * },
238
+ * ],
239
+ * },
240
+ * },
241
+ * executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
242
+ * },
243
+ * ],
244
+ * },
245
+ * regionSwitchPlanConfig: {
246
+ * crossAccountRole: "STRING_VALUE",
247
+ * externalId: "STRING_VALUE",
248
+ * arn: "STRING_VALUE", // required
249
+ * },
250
+ * ecsCapacityIncreaseConfig: {
251
+ * timeoutMinutes: Number("int"),
252
+ * services: [ // required
253
+ * {
254
+ * crossAccountRole: "STRING_VALUE",
255
+ * externalId: "STRING_VALUE",
256
+ * clusterArn: "STRING_VALUE",
257
+ * serviceArn: "STRING_VALUE",
258
+ * },
259
+ * ],
260
+ * ungraceful: {
261
+ * minimumSuccessPercentage: Number("int"), // required
262
+ * },
263
+ * targetPercent: Number("int"),
264
+ * capacityMonitoringApproach: "sampledMaxInLast24Hours" || "containerInsightsMaxInLast24Hours",
265
+ * },
266
+ * eksResourceScalingConfig: {
267
+ * timeoutMinutes: Number("int"),
268
+ * kubernetesResourceType: {
269
+ * apiVersion: "STRING_VALUE", // required
270
+ * kind: "STRING_VALUE", // required
271
+ * },
272
+ * scalingResources: [
273
+ * {
274
+ * "<keys>": {
275
+ * "<keys>": {
276
+ * namespace: "STRING_VALUE", // required
277
+ * name: "STRING_VALUE", // required
278
+ * hpaName: "STRING_VALUE",
279
+ * },
280
+ * },
281
+ * },
282
+ * ],
283
+ * eksClusters: [
284
+ * {
285
+ * crossAccountRole: "STRING_VALUE",
286
+ * externalId: "STRING_VALUE",
287
+ * clusterArn: "STRING_VALUE", // required
288
+ * },
289
+ * ],
290
+ * ungraceful: {
291
+ * minimumSuccessPercentage: Number("int"), // required
292
+ * },
293
+ * targetPercent: Number("int"),
294
+ * capacityMonitoringApproach: "sampledMaxInLast24Hours",
295
+ * },
296
+ * route53HealthCheckConfig: {
297
+ * timeoutMinutes: Number("int"),
298
+ * crossAccountRole: "STRING_VALUE",
299
+ * externalId: "STRING_VALUE",
300
+ * hostedZoneId: "STRING_VALUE", // required
301
+ * recordName: "STRING_VALUE", // required
302
+ * recordSets: [
303
+ * {
304
+ * recordSetIdentifier: "STRING_VALUE",
305
+ * region: "STRING_VALUE",
306
+ * },
307
+ * ],
308
+ * },
309
+ * },
310
+ * executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
311
+ * },
312
+ * ],
313
+ * workflowTargetAction: "activate" || "deactivate", // required
314
+ * workflowTargetRegion: "STRING_VALUE",
315
+ * workflowDescription: "STRING_VALUE",
316
+ * },
317
+ * ],
318
+ * executionRole: "STRING_VALUE", // required
319
+ * recoveryTimeObjectiveMinutes: Number("int"),
320
+ * associatedAlarms: { // AssociatedAlarmMap
321
+ * "<keys>": { // AssociatedAlarm
322
+ * crossAccountRole: "STRING_VALUE",
323
+ * externalId: "STRING_VALUE",
324
+ * resourceIdentifier: "STRING_VALUE", // required
325
+ * alarmType: "applicationHealth" || "trigger", // required
326
+ * },
327
+ * },
328
+ * triggers: [ // TriggerList
329
+ * { // Trigger
330
+ * description: "STRING_VALUE",
331
+ * targetRegion: "STRING_VALUE", // required
332
+ * action: "activate" || "deactivate", // required
333
+ * conditions: [ // TriggerConditionList // required
334
+ * { // TriggerCondition
335
+ * associatedAlarmName: "STRING_VALUE", // required
336
+ * condition: "red" || "green", // required
337
+ * },
338
+ * ],
339
+ * minDelayMinutesBetweenExecutions: Number("int"), // required
340
+ * },
341
+ * ],
342
+ * };
343
+ * const command = new UpdatePlanCommand(input);
344
+ * const response = await client.send(command);
345
+ * // { // UpdatePlanResponse
346
+ * // plan: { // Plan
347
+ * // arn: "STRING_VALUE", // required
348
+ * // description: "STRING_VALUE",
349
+ * // workflows: [ // WorkflowList // required
350
+ * // { // Workflow
351
+ * // steps: [ // Steps
352
+ * // { // Step
353
+ * // name: "STRING_VALUE", // required
354
+ * // description: "STRING_VALUE",
355
+ * // executionBlockConfiguration: { // ExecutionBlockConfiguration Union: only one key present
356
+ * // customActionLambdaConfig: { // CustomActionLambdaConfiguration
357
+ * // timeoutMinutes: Number("int"),
358
+ * // lambdas: [ // LambdaList // required
359
+ * // { // Lambdas
360
+ * // crossAccountRole: "STRING_VALUE",
361
+ * // externalId: "STRING_VALUE",
362
+ * // arn: "STRING_VALUE",
363
+ * // },
364
+ * // ],
365
+ * // retryIntervalMinutes: Number("float"), // required
366
+ * // regionToRun: "activatingRegion" || "deactivatingRegion", // required
367
+ * // ungraceful: { // LambdaUngraceful
368
+ * // behavior: "skip",
369
+ * // },
370
+ * // },
371
+ * // ec2AsgCapacityIncreaseConfig: { // Ec2AsgCapacityIncreaseConfiguration
372
+ * // timeoutMinutes: Number("int"),
373
+ * // asgs: [ // AsgList // required
374
+ * // { // Asg
375
+ * // crossAccountRole: "STRING_VALUE",
376
+ * // externalId: "STRING_VALUE",
377
+ * // arn: "STRING_VALUE",
378
+ * // },
379
+ * // ],
380
+ * // ungraceful: { // Ec2Ungraceful
381
+ * // minimumSuccessPercentage: Number("int"), // required
382
+ * // },
383
+ * // targetPercent: Number("int"),
384
+ * // capacityMonitoringApproach: "sampledMaxInLast24Hours" || "autoscalingMaxInLast24Hours",
385
+ * // },
386
+ * // executionApprovalConfig: { // ExecutionApprovalConfiguration
387
+ * // timeoutMinutes: Number("int"),
388
+ * // approvalRole: "STRING_VALUE", // required
389
+ * // },
390
+ * // arcRoutingControlConfig: { // ArcRoutingControlConfiguration
391
+ * // timeoutMinutes: Number("int"),
392
+ * // crossAccountRole: "STRING_VALUE",
393
+ * // externalId: "STRING_VALUE",
394
+ * // regionAndRoutingControls: { // RegionAndRoutingControls // required
395
+ * // "<keys>": [ // ArcRoutingControlStates
396
+ * // { // ArcRoutingControlState
397
+ * // routingControlArn: "STRING_VALUE", // required
398
+ * // state: "On" || "Off", // required
399
+ * // },
400
+ * // ],
401
+ * // },
402
+ * // },
403
+ * // globalAuroraConfig: { // GlobalAuroraConfiguration
404
+ * // timeoutMinutes: Number("int"),
405
+ * // crossAccountRole: "STRING_VALUE",
406
+ * // externalId: "STRING_VALUE",
407
+ * // behavior: "switchoverOnly" || "failover", // required
408
+ * // ungraceful: { // GlobalAuroraUngraceful
409
+ * // ungraceful: "failover",
410
+ * // },
411
+ * // globalClusterIdentifier: "STRING_VALUE", // required
412
+ * // databaseClusterArns: [ // AuroraClusterArns // required
413
+ * // "STRING_VALUE",
414
+ * // ],
415
+ * // },
416
+ * // parallelConfig: { // ParallelExecutionBlockConfiguration
417
+ * // steps: [ // required
418
+ * // {
419
+ * // name: "STRING_VALUE", // required
420
+ * // description: "STRING_VALUE",
421
+ * // executionBlockConfiguration: {// Union: only one key present
422
+ * // customActionLambdaConfig: {
423
+ * // timeoutMinutes: Number("int"),
424
+ * // lambdas: [ // required
425
+ * // {
426
+ * // crossAccountRole: "STRING_VALUE",
427
+ * // externalId: "STRING_VALUE",
428
+ * // arn: "STRING_VALUE",
429
+ * // },
430
+ * // ],
431
+ * // retryIntervalMinutes: Number("float"), // required
432
+ * // regionToRun: "activatingRegion" || "deactivatingRegion", // required
433
+ * // ungraceful: {
434
+ * // behavior: "skip",
435
+ * // },
436
+ * // },
437
+ * // ec2AsgCapacityIncreaseConfig: {
438
+ * // timeoutMinutes: Number("int"),
439
+ * // asgs: [ // required
440
+ * // {
441
+ * // crossAccountRole: "STRING_VALUE",
442
+ * // externalId: "STRING_VALUE",
443
+ * // arn: "STRING_VALUE",
444
+ * // },
445
+ * // ],
446
+ * // ungraceful: {
447
+ * // minimumSuccessPercentage: Number("int"), // required
448
+ * // },
449
+ * // targetPercent: Number("int"),
450
+ * // capacityMonitoringApproach: "sampledMaxInLast24Hours" || "autoscalingMaxInLast24Hours",
451
+ * // },
452
+ * // executionApprovalConfig: {
453
+ * // timeoutMinutes: Number("int"),
454
+ * // approvalRole: "STRING_VALUE", // required
455
+ * // },
456
+ * // arcRoutingControlConfig: {
457
+ * // timeoutMinutes: Number("int"),
458
+ * // crossAccountRole: "STRING_VALUE",
459
+ * // externalId: "STRING_VALUE",
460
+ * // regionAndRoutingControls: { // required
461
+ * // "<keys>": [
462
+ * // {
463
+ * // routingControlArn: "STRING_VALUE", // required
464
+ * // state: "On" || "Off", // required
465
+ * // },
466
+ * // ],
467
+ * // },
468
+ * // },
469
+ * // globalAuroraConfig: {
470
+ * // timeoutMinutes: Number("int"),
471
+ * // crossAccountRole: "STRING_VALUE",
472
+ * // externalId: "STRING_VALUE",
473
+ * // behavior: "switchoverOnly" || "failover", // required
474
+ * // ungraceful: {
475
+ * // ungraceful: "failover",
476
+ * // },
477
+ * // globalClusterIdentifier: "STRING_VALUE", // required
478
+ * // databaseClusterArns: [ // required
479
+ * // "STRING_VALUE",
480
+ * // ],
481
+ * // },
482
+ * // parallelConfig: {
483
+ * // steps: "<Steps>", // required
484
+ * // },
485
+ * // regionSwitchPlanConfig: { // RegionSwitchPlanConfiguration
486
+ * // crossAccountRole: "STRING_VALUE",
487
+ * // externalId: "STRING_VALUE",
488
+ * // arn: "STRING_VALUE", // required
489
+ * // },
490
+ * // ecsCapacityIncreaseConfig: { // EcsCapacityIncreaseConfiguration
491
+ * // timeoutMinutes: Number("int"),
492
+ * // services: [ // ServiceList // required
493
+ * // { // Service
494
+ * // crossAccountRole: "STRING_VALUE",
495
+ * // externalId: "STRING_VALUE",
496
+ * // clusterArn: "STRING_VALUE",
497
+ * // serviceArn: "STRING_VALUE",
498
+ * // },
499
+ * // ],
500
+ * // ungraceful: { // EcsUngraceful
501
+ * // minimumSuccessPercentage: Number("int"), // required
502
+ * // },
503
+ * // targetPercent: Number("int"),
504
+ * // capacityMonitoringApproach: "sampledMaxInLast24Hours" || "containerInsightsMaxInLast24Hours",
505
+ * // },
506
+ * // eksResourceScalingConfig: { // EksResourceScalingConfiguration
507
+ * // timeoutMinutes: Number("int"),
508
+ * // kubernetesResourceType: { // KubernetesResourceType
509
+ * // apiVersion: "STRING_VALUE", // required
510
+ * // kind: "STRING_VALUE", // required
511
+ * // },
512
+ * // scalingResources: [ // KubernetesScalingApps
513
+ * // { // KubernetesScalingApplication
514
+ * // "<keys>": { // RegionalScalingResource
515
+ * // "<keys>": { // KubernetesScalingResource
516
+ * // namespace: "STRING_VALUE", // required
517
+ * // name: "STRING_VALUE", // required
518
+ * // hpaName: "STRING_VALUE",
519
+ * // },
520
+ * // },
521
+ * // },
522
+ * // ],
523
+ * // eksClusters: [ // EksClusters
524
+ * // { // EksCluster
525
+ * // crossAccountRole: "STRING_VALUE",
526
+ * // externalId: "STRING_VALUE",
527
+ * // clusterArn: "STRING_VALUE", // required
528
+ * // },
529
+ * // ],
530
+ * // ungraceful: { // EksResourceScalingUngraceful
531
+ * // minimumSuccessPercentage: Number("int"), // required
532
+ * // },
533
+ * // targetPercent: Number("int"),
534
+ * // capacityMonitoringApproach: "sampledMaxInLast24Hours",
535
+ * // },
536
+ * // route53HealthCheckConfig: { // Route53HealthCheckConfiguration
537
+ * // timeoutMinutes: Number("int"),
538
+ * // crossAccountRole: "STRING_VALUE",
539
+ * // externalId: "STRING_VALUE",
540
+ * // hostedZoneId: "STRING_VALUE", // required
541
+ * // recordName: "STRING_VALUE", // required
542
+ * // recordSets: [ // Route53ResourceRecordSetList
543
+ * // { // Route53ResourceRecordSet
544
+ * // recordSetIdentifier: "STRING_VALUE",
545
+ * // region: "STRING_VALUE",
546
+ * // },
547
+ * // ],
548
+ * // },
549
+ * // },
550
+ * // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
551
+ * // },
552
+ * // ],
553
+ * // },
554
+ * // regionSwitchPlanConfig: {
555
+ * // crossAccountRole: "STRING_VALUE",
556
+ * // externalId: "STRING_VALUE",
557
+ * // arn: "STRING_VALUE", // required
558
+ * // },
559
+ * // ecsCapacityIncreaseConfig: {
560
+ * // timeoutMinutes: Number("int"),
561
+ * // services: [ // required
562
+ * // {
563
+ * // crossAccountRole: "STRING_VALUE",
564
+ * // externalId: "STRING_VALUE",
565
+ * // clusterArn: "STRING_VALUE",
566
+ * // serviceArn: "STRING_VALUE",
567
+ * // },
568
+ * // ],
569
+ * // ungraceful: {
570
+ * // minimumSuccessPercentage: Number("int"), // required
571
+ * // },
572
+ * // targetPercent: Number("int"),
573
+ * // capacityMonitoringApproach: "sampledMaxInLast24Hours" || "containerInsightsMaxInLast24Hours",
574
+ * // },
575
+ * // eksResourceScalingConfig: {
576
+ * // timeoutMinutes: Number("int"),
577
+ * // kubernetesResourceType: {
578
+ * // apiVersion: "STRING_VALUE", // required
579
+ * // kind: "STRING_VALUE", // required
580
+ * // },
581
+ * // scalingResources: [
582
+ * // {
583
+ * // "<keys>": {
584
+ * // "<keys>": {
585
+ * // namespace: "STRING_VALUE", // required
586
+ * // name: "STRING_VALUE", // required
587
+ * // hpaName: "STRING_VALUE",
588
+ * // },
589
+ * // },
590
+ * // },
591
+ * // ],
592
+ * // eksClusters: [
593
+ * // {
594
+ * // crossAccountRole: "STRING_VALUE",
595
+ * // externalId: "STRING_VALUE",
596
+ * // clusterArn: "STRING_VALUE", // required
597
+ * // },
598
+ * // ],
599
+ * // ungraceful: {
600
+ * // minimumSuccessPercentage: Number("int"), // required
601
+ * // },
602
+ * // targetPercent: Number("int"),
603
+ * // capacityMonitoringApproach: "sampledMaxInLast24Hours",
604
+ * // },
605
+ * // route53HealthCheckConfig: {
606
+ * // timeoutMinutes: Number("int"),
607
+ * // crossAccountRole: "STRING_VALUE",
608
+ * // externalId: "STRING_VALUE",
609
+ * // hostedZoneId: "STRING_VALUE", // required
610
+ * // recordName: "STRING_VALUE", // required
611
+ * // recordSets: [
612
+ * // {
613
+ * // recordSetIdentifier: "STRING_VALUE",
614
+ * // region: "STRING_VALUE",
615
+ * // },
616
+ * // ],
617
+ * // },
618
+ * // },
619
+ * // executionBlockType: "CustomActionLambda" || "ManualApproval" || "AuroraGlobalDatabase" || "EC2AutoScaling" || "ARCRoutingControl" || "ARCRegionSwitchPlan" || "Parallel" || "ECSServiceScaling" || "EKSResourceScaling" || "Route53HealthCheck", // required
620
+ * // },
621
+ * // ],
622
+ * // workflowTargetAction: "activate" || "deactivate", // required
623
+ * // workflowTargetRegion: "STRING_VALUE",
624
+ * // workflowDescription: "STRING_VALUE",
625
+ * // },
626
+ * // ],
627
+ * // executionRole: "STRING_VALUE", // required
628
+ * // recoveryTimeObjectiveMinutes: Number("int"),
629
+ * // associatedAlarms: { // AssociatedAlarmMap
630
+ * // "<keys>": { // AssociatedAlarm
631
+ * // crossAccountRole: "STRING_VALUE",
632
+ * // externalId: "STRING_VALUE",
633
+ * // resourceIdentifier: "STRING_VALUE", // required
634
+ * // alarmType: "applicationHealth" || "trigger", // required
635
+ * // },
636
+ * // },
637
+ * // triggers: [ // TriggerList
638
+ * // { // Trigger
639
+ * // description: "STRING_VALUE",
640
+ * // targetRegion: "STRING_VALUE", // required
641
+ * // action: "activate" || "deactivate", // required
642
+ * // conditions: [ // TriggerConditionList // required
643
+ * // { // TriggerCondition
644
+ * // associatedAlarmName: "STRING_VALUE", // required
645
+ * // condition: "red" || "green", // required
646
+ * // },
647
+ * // ],
648
+ * // minDelayMinutesBetweenExecutions: Number("int"), // required
649
+ * // },
650
+ * // ],
651
+ * // name: "STRING_VALUE", // required
652
+ * // regions: [ // RegionList // required
653
+ * // "STRING_VALUE",
654
+ * // ],
655
+ * // recoveryApproach: "activeActive" || "activePassive", // required
656
+ * // primaryRegion: "STRING_VALUE",
657
+ * // owner: "STRING_VALUE", // required
658
+ * // version: "STRING_VALUE",
659
+ * // updatedAt: new Date("TIMESTAMP"),
660
+ * // },
661
+ * // };
662
+ *
663
+ * ```
664
+ *
665
+ * @param UpdatePlanCommandInput - {@link UpdatePlanCommandInput}
666
+ * @returns {@link UpdatePlanCommandOutput}
667
+ * @see {@link UpdatePlanCommandInput} for command's `input` shape.
668
+ * @see {@link UpdatePlanCommandOutput} for command's `response` shape.
669
+ * @see {@link ARCRegionSwitchClientResolvedConfig | config} for ARCRegionSwitchClient's `config` shape.
670
+ *
671
+ * @throws {@link ResourceNotFoundException} (client fault)
672
+ * <p>The specified resource was not found.</p> <p>HTTP Status Code: 404</p>
673
+ *
674
+ * @throws {@link ARCRegionSwitchServiceException}
675
+ * <p>Base exception class for all service exceptions from ARCRegionSwitch service.</p>
676
+ *
677
+ *
678
+ * @public
679
+ */
680
+ export declare class UpdatePlanCommand extends UpdatePlanCommand_base {
681
+ /** @internal type navigation helper, not in runtime. */
682
+ protected static __types: {
683
+ api: {
684
+ input: UpdatePlanRequest;
685
+ output: UpdatePlanResponse;
686
+ };
687
+ sdk: {
688
+ input: UpdatePlanCommandInput;
689
+ output: UpdatePlanCommandOutput;
690
+ };
691
+ };
692
+ }