@aws-sdk/client-arc-region-switch 3.927.0 → 3.929.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 (41) hide show
  1. package/dist-cjs/index.js +799 -1027
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/ARCRegionSwitchClient.js +2 -0
  4. package/dist-es/commands/ApprovePlanExecutionStepCommand.js +3 -9
  5. package/dist-es/commands/CancelPlanExecutionCommand.js +3 -9
  6. package/dist-es/commands/CreatePlanCommand.js +3 -9
  7. package/dist-es/commands/DeletePlanCommand.js +3 -9
  8. package/dist-es/commands/GetPlanCommand.js +3 -9
  9. package/dist-es/commands/GetPlanEvaluationStatusCommand.js +3 -9
  10. package/dist-es/commands/GetPlanExecutionCommand.js +3 -9
  11. package/dist-es/commands/GetPlanInRegionCommand.js +3 -9
  12. package/dist-es/commands/ListPlanExecutionEventsCommand.js +3 -9
  13. package/dist-es/commands/ListPlanExecutionsCommand.js +3 -9
  14. package/dist-es/commands/ListPlansCommand.js +3 -9
  15. package/dist-es/commands/ListPlansInRegionCommand.js +3 -9
  16. package/dist-es/commands/ListRoute53HealthChecksCommand.js +3 -9
  17. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  18. package/dist-es/commands/StartPlanExecutionCommand.js +3 -9
  19. package/dist-es/commands/TagResourceCommand.js +3 -9
  20. package/dist-es/commands/UntagResourceCommand.js +3 -9
  21. package/dist-es/commands/UpdatePlanCommand.js +3 -9
  22. package/dist-es/commands/UpdatePlanExecutionCommand.js +3 -9
  23. package/dist-es/commands/UpdatePlanExecutionStepCommand.js +3 -9
  24. package/dist-es/runtimeConfig.shared.js +7 -0
  25. package/dist-es/schemas/schemas_0.js +748 -0
  26. package/dist-types/ARCRegionSwitchClient.d.ts +10 -1
  27. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  28. package/dist-types/runtimeConfig.d.ts +1 -0
  29. package/dist-types/runtimeConfig.native.d.ts +1 -0
  30. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  31. package/dist-types/schemas/schemas_0.d.ts +131 -0
  32. package/dist-types/ts3.4/ARCRegionSwitchClient.d.ts +4 -0
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  37. package/dist-types/ts3.4/schemas/schemas_0.d.ts +137 -0
  38. package/package.json +5 -5
  39. package/dist-es/protocols/Aws_json1_0.js +0 -876
  40. package/dist-types/protocols/Aws_json1_0.d.ts +0 -182
  41. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -245
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { ApprovePlanExecutionStepCommandInput, ApprovePlanExecutionStepCommandOutput } from "./commands/ApprovePlanExecutionStepCommand";
11
11
  import { CancelPlanExecutionCommandInput, CancelPlanExecutionCommandOutput } from "./commands/CancelPlanExecutionCommand";
@@ -161,6 +161,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
161
161
  * Optional extensions
162
162
  */
163
163
  extensions?: RuntimeExtension[];
164
+ /**
165
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
166
+ * may be overridden. A default will always be set by the client.
167
+ * Available options depend on the service's supported protocols and will not be validated by
168
+ * the client.
169
+ * @alpha
170
+ *
171
+ */
172
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
164
173
  /**
165
174
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
166
175
  */
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ARCRegionSwitchClientConfig) =>
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ARCRegionSwitchClientConfig) =>
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ARCRegionSwitchClientConfig) =>
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: ARCRegionSwitchClientConfig) =>
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCRegionSwitchHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,131 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AbbreviatedExecution: StaticStructureSchema;
3
+ export declare var AbbreviatedPlan: StaticStructureSchema;
4
+ export declare var AccessDeniedException: StaticErrorSchema;
5
+ export declare var ApprovePlanExecutionStepRequest: StaticStructureSchema;
6
+ export declare var ApprovePlanExecutionStepResponse: StaticStructureSchema;
7
+ export declare var ArcRoutingControlConfiguration: StaticStructureSchema;
8
+ export declare var ArcRoutingControlState: StaticStructureSchema;
9
+ export declare var Asg: StaticStructureSchema;
10
+ export declare var AssociatedAlarm: StaticStructureSchema;
11
+ export declare var CancelPlanExecutionRequest: StaticStructureSchema;
12
+ export declare var CancelPlanExecutionResponse: StaticStructureSchema;
13
+ export declare var CreatePlanRequest: StaticStructureSchema;
14
+ export declare var CreatePlanResponse: StaticStructureSchema;
15
+ export declare var CustomActionLambdaConfiguration: StaticStructureSchema;
16
+ export declare var DeletePlanRequest: StaticStructureSchema;
17
+ export declare var DeletePlanResponse: StaticStructureSchema;
18
+ export declare var Ec2AsgCapacityIncreaseConfiguration: StaticStructureSchema;
19
+ export declare var Ec2Ungraceful: StaticStructureSchema;
20
+ export declare var EcsCapacityIncreaseConfiguration: StaticStructureSchema;
21
+ export declare var EcsUngraceful: StaticStructureSchema;
22
+ export declare var EksCluster: StaticStructureSchema;
23
+ export declare var EksResourceScalingConfiguration: StaticStructureSchema;
24
+ export declare var EksResourceScalingUngraceful: StaticStructureSchema;
25
+ export declare var ExecutionApprovalConfiguration: StaticStructureSchema;
26
+ export declare var ExecutionEvent: StaticStructureSchema;
27
+ export declare var GetPlanEvaluationStatusRequest: StaticStructureSchema;
28
+ export declare var GetPlanEvaluationStatusResponse: StaticStructureSchema;
29
+ export declare var GetPlanExecutionRequest: StaticStructureSchema;
30
+ export declare var GetPlanExecutionResponse: StaticStructureSchema;
31
+ export declare var GetPlanInRegionRequest: StaticStructureSchema;
32
+ export declare var GetPlanInRegionResponse: StaticStructureSchema;
33
+ export declare var GetPlanRequest: StaticStructureSchema;
34
+ export declare var GetPlanResponse: StaticStructureSchema;
35
+ export declare var GlobalAuroraConfiguration: StaticStructureSchema;
36
+ export declare var GlobalAuroraUngraceful: StaticStructureSchema;
37
+ export declare var IllegalArgumentException: StaticErrorSchema;
38
+ export declare var IllegalStateException: StaticErrorSchema;
39
+ export declare var InternalServerException: StaticErrorSchema;
40
+ export declare var KubernetesResourceType: StaticStructureSchema;
41
+ export declare var KubernetesScalingResource: StaticStructureSchema;
42
+ export declare var Lambdas: StaticStructureSchema;
43
+ export declare var LambdaUngraceful: StaticStructureSchema;
44
+ export declare var ListPlanExecutionEventsRequest: StaticStructureSchema;
45
+ export declare var ListPlanExecutionEventsResponse: StaticStructureSchema;
46
+ export declare var ListPlanExecutionsRequest: StaticStructureSchema;
47
+ export declare var ListPlanExecutionsResponse: StaticStructureSchema;
48
+ export declare var ListPlansInRegionRequest: StaticStructureSchema;
49
+ export declare var ListPlansInRegionResponse: StaticStructureSchema;
50
+ export declare var ListPlansRequest: StaticStructureSchema;
51
+ export declare var ListPlansResponse: StaticStructureSchema;
52
+ export declare var ListRoute53HealthChecksRequest: StaticStructureSchema;
53
+ export declare var ListRoute53HealthChecksResponse: StaticStructureSchema;
54
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
55
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
56
+ export declare var MinimalWorkflow: StaticStructureSchema;
57
+ export declare var ParallelExecutionBlockConfiguration: StaticStructureSchema;
58
+ export declare var Plan: StaticStructureSchema;
59
+ export declare var RegionSwitchPlanConfiguration: StaticStructureSchema;
60
+ export declare var ResourceNotFoundException: StaticErrorSchema;
61
+ export declare var ResourceWarning: StaticStructureSchema;
62
+ export declare var Route53HealthCheck: StaticStructureSchema;
63
+ export declare var Route53HealthCheckConfiguration: StaticStructureSchema;
64
+ export declare var Route53ResourceRecordSet: StaticStructureSchema;
65
+ export declare var Service: StaticStructureSchema;
66
+ export declare var StartPlanExecutionRequest: StaticStructureSchema;
67
+ export declare var StartPlanExecutionResponse: StaticStructureSchema;
68
+ export declare var Step: StaticStructureSchema;
69
+ export declare var StepState: StaticStructureSchema;
70
+ export declare var TagResourceRequest: StaticStructureSchema;
71
+ export declare var TagResourceResponse: StaticStructureSchema;
72
+ export declare var Trigger: StaticStructureSchema;
73
+ export declare var TriggerCondition: StaticStructureSchema;
74
+ export declare var UntagResourceRequest: StaticStructureSchema;
75
+ export declare var UntagResourceResponse: StaticStructureSchema;
76
+ export declare var UpdatePlanExecutionRequest: StaticStructureSchema;
77
+ export declare var UpdatePlanExecutionResponse: StaticStructureSchema;
78
+ export declare var UpdatePlanExecutionStepRequest: StaticStructureSchema;
79
+ export declare var UpdatePlanExecutionStepResponse: StaticStructureSchema;
80
+ export declare var UpdatePlanRequest: StaticStructureSchema;
81
+ export declare var UpdatePlanResponse: StaticStructureSchema;
82
+ export declare var Workflow: StaticStructureSchema;
83
+ export declare var __Unit: "unit";
84
+ export declare var ARCRegionSwitchServiceException: StaticErrorSchema;
85
+ export declare var AbbreviatedExecutionsList: StaticListSchema;
86
+ export declare var ArcRoutingControlStates: StaticListSchema;
87
+ export declare var AsgList: StaticListSchema;
88
+ export declare var AuroraClusterArns: number;
89
+ export declare var EksClusters: StaticListSchema;
90
+ export declare var ExecutionEventList: StaticListSchema;
91
+ export declare var KubernetesScalingApps: StaticListSchema;
92
+ export declare var LambdaList: StaticListSchema;
93
+ export declare var PlanList: StaticListSchema;
94
+ export declare var PlanWarnings: StaticListSchema;
95
+ export declare var RegionList: number;
96
+ export declare var Resources: number;
97
+ export declare var Route53HealthCheckList: StaticListSchema;
98
+ export declare var Route53ResourceRecordSetList: StaticListSchema;
99
+ export declare var ServiceList: StaticListSchema;
100
+ export declare var Steps: StaticListSchema;
101
+ export declare var StepStates: StaticListSchema;
102
+ export declare var TagKeys: number;
103
+ export declare var TriggerConditionList: StaticListSchema;
104
+ export declare var TriggerList: StaticListSchema;
105
+ export declare var WorkflowList: StaticListSchema;
106
+ export declare var AssociatedAlarmMap: StaticMapSchema;
107
+ export declare var KubernetesScalingApplication: StaticMapSchema;
108
+ export declare var RegionalScalingResource: StaticMapSchema;
109
+ export declare var RegionAndRoutingControls: StaticMapSchema;
110
+ export declare var Tags: number;
111
+ export declare var ExecutionBlockConfiguration: StaticStructureSchema;
112
+ export declare var ApprovePlanExecutionStep: StaticOperationSchema;
113
+ export declare var CancelPlanExecution: StaticOperationSchema;
114
+ export declare var CreatePlan: StaticOperationSchema;
115
+ export declare var DeletePlan: StaticOperationSchema;
116
+ export declare var GetPlan: StaticOperationSchema;
117
+ export declare var GetPlanEvaluationStatus: StaticOperationSchema;
118
+ export declare var GetPlanExecution: StaticOperationSchema;
119
+ export declare var GetPlanInRegion: StaticOperationSchema;
120
+ export declare var ListPlanExecutionEvents: StaticOperationSchema;
121
+ export declare var ListPlanExecutions: StaticOperationSchema;
122
+ export declare var ListPlans: StaticOperationSchema;
123
+ export declare var ListPlansInRegion: StaticOperationSchema;
124
+ export declare var ListRoute53HealthChecks: StaticOperationSchema;
125
+ export declare var ListTagsForResource: StaticOperationSchema;
126
+ export declare var StartPlanExecution: StaticOperationSchema;
127
+ export declare var TagResource: StaticOperationSchema;
128
+ export declare var UntagResource: StaticOperationSchema;
129
+ export declare var UpdatePlan: StaticOperationSchema;
130
+ export declare var UpdatePlanExecution: StaticOperationSchema;
131
+ export declare var UpdatePlanExecutionStep: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -198,6 +201,7 @@ export interface ClientDefaults
198
201
  retryMode?: string | __Provider<string>;
199
202
  logger?: __Logger;
200
203
  extensions?: RuntimeExtension[];
204
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
201
205
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
202
206
  }
203
207
  export type ARCRegionSwitchClientConfigType = Partial<
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  profile?: string;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  customUserAgent?: string | import("@smithy/types").UserAgent;
43
47
  userAgentAppId?:
44
48
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (
38
38
  retryMode: string | import("@smithy/types").Provider<string>;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  defaultsMode:
42
46
  | import("@smithy/smithy-client").DefaultsMode
43
47
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCRegionSwitchHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,137 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticMapSchema,
5
+ StaticOperationSchema,
6
+ StaticStructureSchema,
7
+ } from "@smithy/types";
8
+ export declare var AbbreviatedExecution: StaticStructureSchema;
9
+ export declare var AbbreviatedPlan: StaticStructureSchema;
10
+ export declare var AccessDeniedException: StaticErrorSchema;
11
+ export declare var ApprovePlanExecutionStepRequest: StaticStructureSchema;
12
+ export declare var ApprovePlanExecutionStepResponse: StaticStructureSchema;
13
+ export declare var ArcRoutingControlConfiguration: StaticStructureSchema;
14
+ export declare var ArcRoutingControlState: StaticStructureSchema;
15
+ export declare var Asg: StaticStructureSchema;
16
+ export declare var AssociatedAlarm: StaticStructureSchema;
17
+ export declare var CancelPlanExecutionRequest: StaticStructureSchema;
18
+ export declare var CancelPlanExecutionResponse: StaticStructureSchema;
19
+ export declare var CreatePlanRequest: StaticStructureSchema;
20
+ export declare var CreatePlanResponse: StaticStructureSchema;
21
+ export declare var CustomActionLambdaConfiguration: StaticStructureSchema;
22
+ export declare var DeletePlanRequest: StaticStructureSchema;
23
+ export declare var DeletePlanResponse: StaticStructureSchema;
24
+ export declare var Ec2AsgCapacityIncreaseConfiguration: StaticStructureSchema;
25
+ export declare var Ec2Ungraceful: StaticStructureSchema;
26
+ export declare var EcsCapacityIncreaseConfiguration: StaticStructureSchema;
27
+ export declare var EcsUngraceful: StaticStructureSchema;
28
+ export declare var EksCluster: StaticStructureSchema;
29
+ export declare var EksResourceScalingConfiguration: StaticStructureSchema;
30
+ export declare var EksResourceScalingUngraceful: StaticStructureSchema;
31
+ export declare var ExecutionApprovalConfiguration: StaticStructureSchema;
32
+ export declare var ExecutionEvent: StaticStructureSchema;
33
+ export declare var GetPlanEvaluationStatusRequest: StaticStructureSchema;
34
+ export declare var GetPlanEvaluationStatusResponse: StaticStructureSchema;
35
+ export declare var GetPlanExecutionRequest: StaticStructureSchema;
36
+ export declare var GetPlanExecutionResponse: StaticStructureSchema;
37
+ export declare var GetPlanInRegionRequest: StaticStructureSchema;
38
+ export declare var GetPlanInRegionResponse: StaticStructureSchema;
39
+ export declare var GetPlanRequest: StaticStructureSchema;
40
+ export declare var GetPlanResponse: StaticStructureSchema;
41
+ export declare var GlobalAuroraConfiguration: StaticStructureSchema;
42
+ export declare var GlobalAuroraUngraceful: StaticStructureSchema;
43
+ export declare var IllegalArgumentException: StaticErrorSchema;
44
+ export declare var IllegalStateException: StaticErrorSchema;
45
+ export declare var InternalServerException: StaticErrorSchema;
46
+ export declare var KubernetesResourceType: StaticStructureSchema;
47
+ export declare var KubernetesScalingResource: StaticStructureSchema;
48
+ export declare var Lambdas: StaticStructureSchema;
49
+ export declare var LambdaUngraceful: StaticStructureSchema;
50
+ export declare var ListPlanExecutionEventsRequest: StaticStructureSchema;
51
+ export declare var ListPlanExecutionEventsResponse: StaticStructureSchema;
52
+ export declare var ListPlanExecutionsRequest: StaticStructureSchema;
53
+ export declare var ListPlanExecutionsResponse: StaticStructureSchema;
54
+ export declare var ListPlansInRegionRequest: StaticStructureSchema;
55
+ export declare var ListPlansInRegionResponse: StaticStructureSchema;
56
+ export declare var ListPlansRequest: StaticStructureSchema;
57
+ export declare var ListPlansResponse: StaticStructureSchema;
58
+ export declare var ListRoute53HealthChecksRequest: StaticStructureSchema;
59
+ export declare var ListRoute53HealthChecksResponse: StaticStructureSchema;
60
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
61
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
62
+ export declare var MinimalWorkflow: StaticStructureSchema;
63
+ export declare var ParallelExecutionBlockConfiguration: StaticStructureSchema;
64
+ export declare var Plan: StaticStructureSchema;
65
+ export declare var RegionSwitchPlanConfiguration: StaticStructureSchema;
66
+ export declare var ResourceNotFoundException: StaticErrorSchema;
67
+ export declare var ResourceWarning: StaticStructureSchema;
68
+ export declare var Route53HealthCheck: StaticStructureSchema;
69
+ export declare var Route53HealthCheckConfiguration: StaticStructureSchema;
70
+ export declare var Route53ResourceRecordSet: StaticStructureSchema;
71
+ export declare var Service: StaticStructureSchema;
72
+ export declare var StartPlanExecutionRequest: StaticStructureSchema;
73
+ export declare var StartPlanExecutionResponse: StaticStructureSchema;
74
+ export declare var Step: StaticStructureSchema;
75
+ export declare var StepState: StaticStructureSchema;
76
+ export declare var TagResourceRequest: StaticStructureSchema;
77
+ export declare var TagResourceResponse: StaticStructureSchema;
78
+ export declare var Trigger: StaticStructureSchema;
79
+ export declare var TriggerCondition: StaticStructureSchema;
80
+ export declare var UntagResourceRequest: StaticStructureSchema;
81
+ export declare var UntagResourceResponse: StaticStructureSchema;
82
+ export declare var UpdatePlanExecutionRequest: StaticStructureSchema;
83
+ export declare var UpdatePlanExecutionResponse: StaticStructureSchema;
84
+ export declare var UpdatePlanExecutionStepRequest: StaticStructureSchema;
85
+ export declare var UpdatePlanExecutionStepResponse: StaticStructureSchema;
86
+ export declare var UpdatePlanRequest: StaticStructureSchema;
87
+ export declare var UpdatePlanResponse: StaticStructureSchema;
88
+ export declare var Workflow: StaticStructureSchema;
89
+ export declare var __Unit: "unit";
90
+ export declare var ARCRegionSwitchServiceException: StaticErrorSchema;
91
+ export declare var AbbreviatedExecutionsList: StaticListSchema;
92
+ export declare var ArcRoutingControlStates: StaticListSchema;
93
+ export declare var AsgList: StaticListSchema;
94
+ export declare var AuroraClusterArns: number;
95
+ export declare var EksClusters: StaticListSchema;
96
+ export declare var ExecutionEventList: StaticListSchema;
97
+ export declare var KubernetesScalingApps: StaticListSchema;
98
+ export declare var LambdaList: StaticListSchema;
99
+ export declare var PlanList: StaticListSchema;
100
+ export declare var PlanWarnings: StaticListSchema;
101
+ export declare var RegionList: number;
102
+ export declare var Resources: number;
103
+ export declare var Route53HealthCheckList: StaticListSchema;
104
+ export declare var Route53ResourceRecordSetList: StaticListSchema;
105
+ export declare var ServiceList: StaticListSchema;
106
+ export declare var Steps: StaticListSchema;
107
+ export declare var StepStates: StaticListSchema;
108
+ export declare var TagKeys: number;
109
+ export declare var TriggerConditionList: StaticListSchema;
110
+ export declare var TriggerList: StaticListSchema;
111
+ export declare var WorkflowList: StaticListSchema;
112
+ export declare var AssociatedAlarmMap: StaticMapSchema;
113
+ export declare var KubernetesScalingApplication: StaticMapSchema;
114
+ export declare var RegionalScalingResource: StaticMapSchema;
115
+ export declare var RegionAndRoutingControls: StaticMapSchema;
116
+ export declare var Tags: number;
117
+ export declare var ExecutionBlockConfiguration: StaticStructureSchema;
118
+ export declare var ApprovePlanExecutionStep: StaticOperationSchema;
119
+ export declare var CancelPlanExecution: StaticOperationSchema;
120
+ export declare var CreatePlan: StaticOperationSchema;
121
+ export declare var DeletePlan: StaticOperationSchema;
122
+ export declare var GetPlan: StaticOperationSchema;
123
+ export declare var GetPlanEvaluationStatus: StaticOperationSchema;
124
+ export declare var GetPlanExecution: StaticOperationSchema;
125
+ export declare var GetPlanInRegion: StaticOperationSchema;
126
+ export declare var ListPlanExecutionEvents: StaticOperationSchema;
127
+ export declare var ListPlanExecutions: StaticOperationSchema;
128
+ export declare var ListPlans: StaticOperationSchema;
129
+ export declare var ListPlansInRegion: StaticOperationSchema;
130
+ export declare var ListRoute53HealthChecks: StaticOperationSchema;
131
+ export declare var ListTagsForResource: StaticOperationSchema;
132
+ export declare var StartPlanExecution: StaticOperationSchema;
133
+ export declare var TagResource: StaticOperationSchema;
134
+ export declare var UntagResource: StaticOperationSchema;
135
+ export declare var UpdatePlan: StaticOperationSchema;
136
+ export declare var UpdatePlanExecution: StaticOperationSchema;
137
+ export declare var UpdatePlanExecutionStep: StaticOperationSchema;
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.927.0",
4
+ "version": "3.929.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,17 +20,17 @@
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.927.0",
24
- "@aws-sdk/credential-provider-node": "3.927.0",
23
+ "@aws-sdk/core": "3.928.0",
24
+ "@aws-sdk/credential-provider-node": "3.929.0",
25
25
  "@aws-sdk/middleware-host-header": "3.922.0",
26
26
  "@aws-sdk/middleware-logger": "3.922.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.927.0",
28
+ "@aws-sdk/middleware-user-agent": "3.928.0",
29
29
  "@aws-sdk/region-config-resolver": "3.925.0",
30
30
  "@aws-sdk/types": "3.922.0",
31
31
  "@aws-sdk/util-endpoints": "3.922.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.927.0",
33
+ "@aws-sdk/util-user-agent-node": "3.928.0",
34
34
  "@smithy/config-resolver": "^4.4.2",
35
35
  "@smithy/core": "^3.17.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.5",