@aws-sdk/client-arc-region-switch 3.934.0 → 3.935.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.
- package/dist-cjs/index.js +139 -138
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +138 -0
- package/dist-es/models/errors.js +61 -0
- package/dist-es/models/models_0.js +1 -199
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +322 -0
- package/dist-types/models/errors.d.ts +62 -0
- package/dist-types/models/models_0.d.ts +1 -384
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +179 -0
- package/dist-types/ts3.4/models/errors.d.ts +37 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -216
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ARCRegionSwitchServiceException as __BaseException } from "./ARCRegionSwitchServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
11
|
+
readonly name: "ResourceNotFoundException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class IllegalStateException extends __BaseException {
|
|
25
|
+
readonly name: "IllegalStateException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<IllegalStateException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class IllegalArgumentException extends __BaseException {
|
|
32
|
+
readonly name: "IllegalArgumentException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
@@ -1,31 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
readonly UNGRACEFUL: "ungraceful";
|
|
27
|
-
};
|
|
28
|
-
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
1
|
+
import {
|
|
2
|
+
AlarmCondition,
|
|
3
|
+
AlarmType,
|
|
4
|
+
Approval,
|
|
5
|
+
Ec2AsgCapacityMonitoringApproach,
|
|
6
|
+
EcsCapacityMonitoringApproach,
|
|
7
|
+
EksCapacityMonitoringApproach,
|
|
8
|
+
EvaluationStatus,
|
|
9
|
+
ExecutionAction,
|
|
10
|
+
ExecutionBlockType,
|
|
11
|
+
ExecutionEventType,
|
|
12
|
+
ExecutionMode,
|
|
13
|
+
ExecutionState,
|
|
14
|
+
GlobalAuroraDefaultBehavior,
|
|
15
|
+
GlobalAuroraUngracefulBehavior,
|
|
16
|
+
LambdaUngracefulBehavior,
|
|
17
|
+
RecoveryApproach,
|
|
18
|
+
RegionToRunIn,
|
|
19
|
+
ResourceWarningStatus,
|
|
20
|
+
RoutingControlStateChange,
|
|
21
|
+
StepStatus,
|
|
22
|
+
UpdatePlanExecutionAction,
|
|
23
|
+
UpdatePlanExecutionStepAction,
|
|
24
|
+
WorkflowTargetAction,
|
|
25
|
+
} from "./enums";
|
|
29
26
|
export interface AbbreviatedExecution {
|
|
30
27
|
planArn: string | undefined;
|
|
31
28
|
executionId: string | undefined;
|
|
@@ -40,12 +37,6 @@ export interface AbbreviatedExecution {
|
|
|
40
37
|
executionRegion: string | undefined;
|
|
41
38
|
actualRecoveryTime?: string | undefined;
|
|
42
39
|
}
|
|
43
|
-
export declare const RecoveryApproach: {
|
|
44
|
-
readonly ACTIVE_ACTIVE: "activeActive";
|
|
45
|
-
readonly ACTIVE_PASSIVE: "activePassive";
|
|
46
|
-
};
|
|
47
|
-
export type RecoveryApproach =
|
|
48
|
-
(typeof RecoveryApproach)[keyof typeof RecoveryApproach];
|
|
49
40
|
export interface AbbreviatedPlan {
|
|
50
41
|
arn: string | undefined;
|
|
51
42
|
owner: string | undefined;
|
|
@@ -60,29 +51,6 @@ export interface AbbreviatedPlan {
|
|
|
60
51
|
activePlanExecution?: string | undefined;
|
|
61
52
|
recoveryTimeObjectiveMinutes?: number | undefined;
|
|
62
53
|
}
|
|
63
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
64
|
-
readonly name: "AccessDeniedException";
|
|
65
|
-
readonly $fault: "client";
|
|
66
|
-
constructor(
|
|
67
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
68
|
-
);
|
|
69
|
-
}
|
|
70
|
-
export declare const AlarmCondition: {
|
|
71
|
-
readonly GREEN: "green";
|
|
72
|
-
readonly RED: "red";
|
|
73
|
-
};
|
|
74
|
-
export type AlarmCondition =
|
|
75
|
-
(typeof AlarmCondition)[keyof typeof AlarmCondition];
|
|
76
|
-
export declare const AlarmType: {
|
|
77
|
-
readonly APPLICATION_HEALTH: "applicationHealth";
|
|
78
|
-
readonly TRIGGER: "trigger";
|
|
79
|
-
};
|
|
80
|
-
export type AlarmType = (typeof AlarmType)[keyof typeof AlarmType];
|
|
81
|
-
export declare const Approval: {
|
|
82
|
-
readonly APPROVE: "approve";
|
|
83
|
-
readonly DECLINE: "decline";
|
|
84
|
-
};
|
|
85
|
-
export type Approval = (typeof Approval)[keyof typeof Approval];
|
|
86
54
|
export interface ApprovePlanExecutionStepRequest {
|
|
87
55
|
planArn: string | undefined;
|
|
88
56
|
executionId: string | undefined;
|
|
@@ -91,13 +59,6 @@ export interface ApprovePlanExecutionStepRequest {
|
|
|
91
59
|
comment?: string | undefined;
|
|
92
60
|
}
|
|
93
61
|
export interface ApprovePlanExecutionStepResponse {}
|
|
94
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
95
|
-
readonly name: "ResourceNotFoundException";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
constructor(
|
|
98
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
99
|
-
);
|
|
100
|
-
}
|
|
101
62
|
export interface CancelPlanExecutionRequest {
|
|
102
63
|
planArn: string | undefined;
|
|
103
64
|
executionId: string | undefined;
|
|
@@ -109,20 +70,6 @@ export interface GetPlanEvaluationStatusRequest {
|
|
|
109
70
|
maxResults?: number | undefined;
|
|
110
71
|
nextToken?: string | undefined;
|
|
111
72
|
}
|
|
112
|
-
export declare const EvaluationStatus: {
|
|
113
|
-
readonly ACTION_REQUIRED: "actionRequired";
|
|
114
|
-
readonly PASSED: "passed";
|
|
115
|
-
readonly PENDING_EVALUATION: "pendingEvaluation";
|
|
116
|
-
readonly UNKNOWN: "unknown";
|
|
117
|
-
};
|
|
118
|
-
export type EvaluationStatus =
|
|
119
|
-
(typeof EvaluationStatus)[keyof typeof EvaluationStatus];
|
|
120
|
-
export declare const ResourceWarningStatus: {
|
|
121
|
-
readonly ACTIVE: "active";
|
|
122
|
-
readonly RESOLVED: "resolved";
|
|
123
|
-
};
|
|
124
|
-
export type ResourceWarningStatus =
|
|
125
|
-
(typeof ResourceWarningStatus)[keyof typeof ResourceWarningStatus];
|
|
126
73
|
export interface MinimalWorkflow {
|
|
127
74
|
action?: ExecutionAction | undefined;
|
|
128
75
|
name?: string | undefined;
|
|
@@ -157,12 +104,6 @@ export interface AssociatedAlarm {
|
|
|
157
104
|
resourceIdentifier: string | undefined;
|
|
158
105
|
alarmType: AlarmType | undefined;
|
|
159
106
|
}
|
|
160
|
-
export declare const WorkflowTargetAction: {
|
|
161
|
-
readonly ACTIVATE: "activate";
|
|
162
|
-
readonly DEACTIVATE: "deactivate";
|
|
163
|
-
};
|
|
164
|
-
export type WorkflowTargetAction =
|
|
165
|
-
(typeof WorkflowTargetAction)[keyof typeof WorkflowTargetAction];
|
|
166
107
|
export interface TriggerCondition {
|
|
167
108
|
associatedAlarmName: string | undefined;
|
|
168
109
|
condition: AlarmCondition | undefined;
|
|
@@ -174,12 +115,6 @@ export interface Trigger {
|
|
|
174
115
|
conditions: TriggerCondition[] | undefined;
|
|
175
116
|
minDelayMinutesBetweenExecutions: number | undefined;
|
|
176
117
|
}
|
|
177
|
-
export declare const RoutingControlStateChange: {
|
|
178
|
-
readonly OFF: "Off";
|
|
179
|
-
readonly ON: "On";
|
|
180
|
-
};
|
|
181
|
-
export type RoutingControlStateChange =
|
|
182
|
-
(typeof RoutingControlStateChange)[keyof typeof RoutingControlStateChange];
|
|
183
118
|
export interface ArcRoutingControlState {
|
|
184
119
|
routingControlArn: string | undefined;
|
|
185
120
|
state: RoutingControlStateChange | undefined;
|
|
@@ -197,16 +132,6 @@ export interface Lambdas {
|
|
|
197
132
|
externalId?: string | undefined;
|
|
198
133
|
arn?: string | undefined;
|
|
199
134
|
}
|
|
200
|
-
export declare const RegionToRunIn: {
|
|
201
|
-
readonly ACTIVATING_REGION: "activatingRegion";
|
|
202
|
-
readonly DEACTIVATING_REGION: "deactivatingRegion";
|
|
203
|
-
};
|
|
204
|
-
export type RegionToRunIn = (typeof RegionToRunIn)[keyof typeof RegionToRunIn];
|
|
205
|
-
export declare const LambdaUngracefulBehavior: {
|
|
206
|
-
readonly SKIP: "skip";
|
|
207
|
-
};
|
|
208
|
-
export type LambdaUngracefulBehavior =
|
|
209
|
-
(typeof LambdaUngracefulBehavior)[keyof typeof LambdaUngracefulBehavior];
|
|
210
135
|
export interface LambdaUngraceful {
|
|
211
136
|
behavior?: LambdaUngracefulBehavior | undefined;
|
|
212
137
|
}
|
|
@@ -222,12 +147,6 @@ export interface Asg {
|
|
|
222
147
|
externalId?: string | undefined;
|
|
223
148
|
arn?: string | undefined;
|
|
224
149
|
}
|
|
225
|
-
export declare const Ec2AsgCapacityMonitoringApproach: {
|
|
226
|
-
readonly AUTOSCALING_MAX_IN_LAST_24_HOURS: "autoscalingMaxInLast24Hours";
|
|
227
|
-
readonly SAMPLED_MAX_IN_LAST_24_HOURS: "sampledMaxInLast24Hours";
|
|
228
|
-
};
|
|
229
|
-
export type Ec2AsgCapacityMonitoringApproach =
|
|
230
|
-
(typeof Ec2AsgCapacityMonitoringApproach)[keyof typeof Ec2AsgCapacityMonitoringApproach];
|
|
231
150
|
export interface Ec2Ungraceful {
|
|
232
151
|
minimumSuccessPercentage: number | undefined;
|
|
233
152
|
}
|
|
@@ -238,12 +157,6 @@ export interface Ec2AsgCapacityIncreaseConfiguration {
|
|
|
238
157
|
targetPercent?: number | undefined;
|
|
239
158
|
capacityMonitoringApproach?: Ec2AsgCapacityMonitoringApproach | undefined;
|
|
240
159
|
}
|
|
241
|
-
export declare const EcsCapacityMonitoringApproach: {
|
|
242
|
-
readonly CONTAINER_INSIGHTS_MAX_IN_LAST_24_HOURS: "containerInsightsMaxInLast24Hours";
|
|
243
|
-
readonly SAMPLED_MAX_IN_LAST_24_HOURS: "sampledMaxInLast24Hours";
|
|
244
|
-
};
|
|
245
|
-
export type EcsCapacityMonitoringApproach =
|
|
246
|
-
(typeof EcsCapacityMonitoringApproach)[keyof typeof EcsCapacityMonitoringApproach];
|
|
247
160
|
export interface Service {
|
|
248
161
|
crossAccountRole?: string | undefined;
|
|
249
162
|
externalId?: string | undefined;
|
|
@@ -260,11 +173,6 @@ export interface EcsCapacityIncreaseConfiguration {
|
|
|
260
173
|
targetPercent?: number | undefined;
|
|
261
174
|
capacityMonitoringApproach?: EcsCapacityMonitoringApproach | undefined;
|
|
262
175
|
}
|
|
263
|
-
export declare const EksCapacityMonitoringApproach: {
|
|
264
|
-
readonly SAMPLED_MAX_IN_LAST_24_HOURS: "sampledMaxInLast24Hours";
|
|
265
|
-
};
|
|
266
|
-
export type EksCapacityMonitoringApproach =
|
|
267
|
-
(typeof EksCapacityMonitoringApproach)[keyof typeof EksCapacityMonitoringApproach];
|
|
268
176
|
export interface EksCluster {
|
|
269
177
|
crossAccountRole?: string | undefined;
|
|
270
178
|
externalId?: string | undefined;
|
|
@@ -297,17 +205,6 @@ export interface ExecutionApprovalConfiguration {
|
|
|
297
205
|
timeoutMinutes?: number | undefined;
|
|
298
206
|
approvalRole: string | undefined;
|
|
299
207
|
}
|
|
300
|
-
export declare const GlobalAuroraDefaultBehavior: {
|
|
301
|
-
readonly FAILOVER: "failover";
|
|
302
|
-
readonly SWITCHOVER_ONLY: "switchoverOnly";
|
|
303
|
-
};
|
|
304
|
-
export type GlobalAuroraDefaultBehavior =
|
|
305
|
-
(typeof GlobalAuroraDefaultBehavior)[keyof typeof GlobalAuroraDefaultBehavior];
|
|
306
|
-
export declare const GlobalAuroraUngracefulBehavior: {
|
|
307
|
-
readonly FAILOVER: "failover";
|
|
308
|
-
};
|
|
309
|
-
export type GlobalAuroraUngracefulBehavior =
|
|
310
|
-
(typeof GlobalAuroraUngracefulBehavior)[keyof typeof GlobalAuroraUngracefulBehavior];
|
|
311
208
|
export interface GlobalAuroraUngraceful {
|
|
312
209
|
ungraceful?: GlobalAuroraUngracefulBehavior | undefined;
|
|
313
210
|
}
|
|
@@ -337,30 +234,6 @@ export interface Route53HealthCheckConfiguration {
|
|
|
337
234
|
recordName: string | undefined;
|
|
338
235
|
recordSets?: Route53ResourceRecordSet[] | undefined;
|
|
339
236
|
}
|
|
340
|
-
export declare const ExecutionBlockType: {
|
|
341
|
-
readonly AURORA: "AuroraGlobalDatabase";
|
|
342
|
-
readonly CUSTOM_ACTION_LAMBDA: "CustomActionLambda";
|
|
343
|
-
readonly EC2_ASG: "EC2AutoScaling";
|
|
344
|
-
readonly ECS: "ECSServiceScaling";
|
|
345
|
-
readonly EKS_RESOURCE_SCALING: "EKSResourceScaling";
|
|
346
|
-
readonly EXECUTION_APPROVAL: "ManualApproval";
|
|
347
|
-
readonly PARALLEL: "Parallel";
|
|
348
|
-
readonly REGION_SWITCH: "ARCRegionSwitchPlan";
|
|
349
|
-
readonly ROUTE53_HEALTH_CHECK: "Route53HealthCheck";
|
|
350
|
-
readonly ROUTING_CONTROL: "ARCRoutingControl";
|
|
351
|
-
};
|
|
352
|
-
export type ExecutionBlockType =
|
|
353
|
-
(typeof ExecutionBlockType)[keyof typeof ExecutionBlockType];
|
|
354
|
-
export declare const StepStatus: {
|
|
355
|
-
readonly CANCELLED: "canceled";
|
|
356
|
-
readonly COMPLETED: "completed";
|
|
357
|
-
readonly FAILED: "failed";
|
|
358
|
-
readonly NOT_STARTED: "notStarted";
|
|
359
|
-
readonly PENDING_APPROVAL: "pendingApproval";
|
|
360
|
-
readonly RUNNING: "running";
|
|
361
|
-
readonly SKIPPED: "skipped";
|
|
362
|
-
};
|
|
363
|
-
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
364
237
|
export interface StepState {
|
|
365
238
|
name?: string | undefined;
|
|
366
239
|
status?: StepStatus | undefined;
|
|
@@ -378,35 +251,6 @@ export interface ListPlanExecutionEventsRequest {
|
|
|
378
251
|
nextToken?: string | undefined;
|
|
379
252
|
name?: string | undefined;
|
|
380
253
|
}
|
|
381
|
-
export declare const ExecutionEventType: {
|
|
382
|
-
readonly EXECUTION_BEHAVIOR_CHANGED_TO_GRACEFUL: "executionBehaviorChangedToGraceful";
|
|
383
|
-
readonly EXECUTION_BEHAVIOR_CHANGED_TO_UNGRACEFUL: "executionBehaviorChangedToUngraceful";
|
|
384
|
-
readonly EXECUTION_CANCELED: "executionCanceled";
|
|
385
|
-
readonly EXECUTION_CANCELING: "executionCanceling";
|
|
386
|
-
readonly EXECUTION_FAILED: "executionFailed";
|
|
387
|
-
readonly EXECUTION_PAUSED: "executionPaused";
|
|
388
|
-
readonly EXECUTION_PAUSING: "executionPausing";
|
|
389
|
-
readonly EXECUTION_PENDING: "executionPending";
|
|
390
|
-
readonly EXECUTION_PENDING_APPROVAL: "executionPendingApproval";
|
|
391
|
-
readonly EXECUTION_PENDING_CHILD_PLAN_MANUAL_APPROVAL: "executionPendingChildPlanManualApproval";
|
|
392
|
-
readonly EXECUTION_STARTED: "executionStarted";
|
|
393
|
-
readonly EXECUTION_SUCCEEDED: "executionSucceeded";
|
|
394
|
-
readonly EXECUTION_SUCCESS_MONITORING_APPLICATION_HEALTH: "executionSuccessMonitoringApplicationHealth";
|
|
395
|
-
readonly STEP_CANCELED: "stepCanceled";
|
|
396
|
-
readonly STEP_EXECUTION_BEHAVIOR_CHANGED_TO_UNGRACEFUL: "stepExecutionBehaviorChangedToUngraceful";
|
|
397
|
-
readonly STEP_FAILED: "stepFailed";
|
|
398
|
-
readonly STEP_PAUSED_BY_ERROR: "stepPausedByError";
|
|
399
|
-
readonly STEP_PAUSED_BY_OPERATOR: "stepPausedByOperator";
|
|
400
|
-
readonly STEP_PENDING_APPLICATION_HEALTH_MONITOR: "stepPendingApplicationHealthMonitor";
|
|
401
|
-
readonly STEP_PENDING_APPROVAL: "stepPendingApproval";
|
|
402
|
-
readonly STEP_SKIPPED: "stepSkipped";
|
|
403
|
-
readonly STEP_STARTED: "stepStarted";
|
|
404
|
-
readonly STEP_SUCCEEDED: "stepSucceeded";
|
|
405
|
-
readonly STEP_UPDATE: "stepUpdate";
|
|
406
|
-
readonly UNKNOWN: "unknown";
|
|
407
|
-
};
|
|
408
|
-
export type ExecutionEventType =
|
|
409
|
-
(typeof ExecutionEventType)[keyof typeof ExecutionEventType];
|
|
410
254
|
export interface ExecutionEvent {
|
|
411
255
|
timestamp?: Date | undefined;
|
|
412
256
|
type?: ExecutionEventType | undefined;
|
|
@@ -440,13 +284,6 @@ export interface ListPlansInRegionResponse {
|
|
|
440
284
|
plans?: AbbreviatedPlan[] | undefined;
|
|
441
285
|
nextToken?: string | undefined;
|
|
442
286
|
}
|
|
443
|
-
export declare class InternalServerException extends __BaseException {
|
|
444
|
-
readonly name: "InternalServerException";
|
|
445
|
-
readonly $fault: "server";
|
|
446
|
-
constructor(
|
|
447
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
448
|
-
);
|
|
449
|
-
}
|
|
450
287
|
export interface ListRoute53HealthChecksRequest {
|
|
451
288
|
arn: string | undefined;
|
|
452
289
|
hostedZoneId?: string | undefined;
|
|
@@ -468,13 +305,6 @@ export interface DeletePlanRequest {
|
|
|
468
305
|
arn: string | undefined;
|
|
469
306
|
}
|
|
470
307
|
export interface DeletePlanResponse {}
|
|
471
|
-
export declare class IllegalStateException extends __BaseException {
|
|
472
|
-
readonly name: "IllegalStateException";
|
|
473
|
-
readonly $fault: "client";
|
|
474
|
-
constructor(
|
|
475
|
-
opts: __ExceptionOptionType<IllegalStateException, __BaseException>
|
|
476
|
-
);
|
|
477
|
-
}
|
|
478
308
|
export interface GetPlanRequest {
|
|
479
309
|
arn: string | undefined;
|
|
480
310
|
}
|
|
@@ -502,13 +332,6 @@ export interface UntagResourceRequest {
|
|
|
502
332
|
resourceTagKeys: string[] | undefined;
|
|
503
333
|
}
|
|
504
334
|
export interface UntagResourceResponse {}
|
|
505
|
-
export declare class IllegalArgumentException extends __BaseException {
|
|
506
|
-
readonly name: "IllegalArgumentException";
|
|
507
|
-
readonly $fault: "client";
|
|
508
|
-
constructor(
|
|
509
|
-
opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>
|
|
510
|
-
);
|
|
511
|
-
}
|
|
512
335
|
export interface StartPlanExecutionRequest {
|
|
513
336
|
planArn: string | undefined;
|
|
514
337
|
targetRegion: string | undefined;
|
|
@@ -524,14 +347,6 @@ export interface StartPlanExecutionResponse {
|
|
|
524
347
|
activateRegion?: string | undefined;
|
|
525
348
|
deactivateRegion?: string | undefined;
|
|
526
349
|
}
|
|
527
|
-
export declare const UpdatePlanExecutionAction: {
|
|
528
|
-
readonly PAUSE: "pause";
|
|
529
|
-
readonly RESUME: "resume";
|
|
530
|
-
readonly SWITCH_TO_GRACEFUL: "switchToGraceful";
|
|
531
|
-
readonly SWITCH_TO_UNGRACEFUL: "switchToUngraceful";
|
|
532
|
-
};
|
|
533
|
-
export type UpdatePlanExecutionAction =
|
|
534
|
-
(typeof UpdatePlanExecutionAction)[keyof typeof UpdatePlanExecutionAction];
|
|
535
350
|
export interface UpdatePlanExecutionRequest {
|
|
536
351
|
planArn: string | undefined;
|
|
537
352
|
executionId: string | undefined;
|
|
@@ -539,12 +354,6 @@ export interface UpdatePlanExecutionRequest {
|
|
|
539
354
|
comment?: string | undefined;
|
|
540
355
|
}
|
|
541
356
|
export interface UpdatePlanExecutionResponse {}
|
|
542
|
-
export declare const UpdatePlanExecutionStepAction: {
|
|
543
|
-
readonly SKIP: "skip";
|
|
544
|
-
readonly SWITCH_TO_UNGRACEFUL: "switchToUngraceful";
|
|
545
|
-
};
|
|
546
|
-
export type UpdatePlanExecutionStepAction =
|
|
547
|
-
(typeof UpdatePlanExecutionStepAction)[keyof typeof UpdatePlanExecutionStepAction];
|
|
548
357
|
export interface UpdatePlanExecutionStepRequest {
|
|
549
358
|
planArn: string | undefined;
|
|
550
359
|
executionId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-arc-region-switch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Arc Region Switch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-arc-region-switch",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|