@aws-sdk/client-arc-zonal-shift 3.478.0 → 3.481.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 (49) hide show
  1. package/dist-cjs/commands/CancelZonalShiftCommand.js +18 -41
  2. package/dist-cjs/commands/CreatePracticeRunConfigurationCommand.js +18 -41
  3. package/dist-cjs/commands/DeletePracticeRunConfigurationCommand.js +18 -41
  4. package/dist-cjs/commands/GetManagedResourceCommand.js +18 -41
  5. package/dist-cjs/commands/ListAutoshiftsCommand.js +18 -41
  6. package/dist-cjs/commands/ListManagedResourcesCommand.js +18 -41
  7. package/dist-cjs/commands/ListZonalShiftsCommand.js +18 -41
  8. package/dist-cjs/commands/StartZonalShiftCommand.js +18 -41
  9. package/dist-cjs/commands/UpdatePracticeRunConfigurationCommand.js +18 -41
  10. package/dist-cjs/commands/UpdateZonalAutoshiftConfigurationCommand.js +18 -41
  11. package/dist-cjs/commands/UpdateZonalShiftCommand.js +18 -41
  12. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  13. package/dist-es/commands/CancelZonalShiftCommand.js +18 -41
  14. package/dist-es/commands/CreatePracticeRunConfigurationCommand.js +18 -41
  15. package/dist-es/commands/DeletePracticeRunConfigurationCommand.js +18 -41
  16. package/dist-es/commands/GetManagedResourceCommand.js +18 -41
  17. package/dist-es/commands/ListAutoshiftsCommand.js +18 -41
  18. package/dist-es/commands/ListManagedResourcesCommand.js +18 -41
  19. package/dist-es/commands/ListZonalShiftsCommand.js +18 -41
  20. package/dist-es/commands/StartZonalShiftCommand.js +18 -41
  21. package/dist-es/commands/UpdatePracticeRunConfigurationCommand.js +18 -41
  22. package/dist-es/commands/UpdateZonalAutoshiftConfigurationCommand.js +18 -41
  23. package/dist-es/commands/UpdateZonalShiftCommand.js +18 -41
  24. package/dist-es/endpoint/EndpointParameters.js +6 -0
  25. package/dist-types/commands/CancelZonalShiftCommand.d.ts +6 -21
  26. package/dist-types/commands/CreatePracticeRunConfigurationCommand.d.ts +6 -21
  27. package/dist-types/commands/DeletePracticeRunConfigurationCommand.d.ts +6 -21
  28. package/dist-types/commands/GetManagedResourceCommand.d.ts +6 -21
  29. package/dist-types/commands/ListAutoshiftsCommand.d.ts +6 -21
  30. package/dist-types/commands/ListManagedResourcesCommand.d.ts +6 -21
  31. package/dist-types/commands/ListZonalShiftsCommand.d.ts +6 -21
  32. package/dist-types/commands/StartZonalShiftCommand.d.ts +6 -21
  33. package/dist-types/commands/UpdatePracticeRunConfigurationCommand.d.ts +6 -21
  34. package/dist-types/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +6 -21
  35. package/dist-types/commands/UpdateZonalShiftCommand.d.ts +6 -21
  36. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  37. package/dist-types/ts3.4/commands/CancelZonalShiftCommand.d.ts +14 -23
  38. package/dist-types/ts3.4/commands/CreatePracticeRunConfigurationCommand.d.ts +12 -24
  39. package/dist-types/ts3.4/commands/DeletePracticeRunConfigurationCommand.d.ts +12 -24
  40. package/dist-types/ts3.4/commands/GetManagedResourceCommand.d.ts +14 -23
  41. package/dist-types/ts3.4/commands/ListAutoshiftsCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/ListManagedResourcesCommand.d.ts +12 -24
  43. package/dist-types/ts3.4/commands/ListZonalShiftsCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/commands/StartZonalShiftCommand.d.ts +14 -23
  45. package/dist-types/ts3.4/commands/UpdatePracticeRunConfigurationCommand.d.ts +12 -24
  46. package/dist-types/ts3.4/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +12 -24
  47. package/dist-types/ts3.4/commands/UpdateZonalShiftCommand.d.ts +14 -23
  48. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  49. package/package.json +9 -9
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_StartZonalShiftCommand, se_StartZonalShiftCommand } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class StartZonalShiftCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, StartZonalShiftCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ARCZonalShiftClient";
26
- const commandName = "StartZonalShiftCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "PercDataPlane",
35
- operation: "StartZonalShift",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_StartZonalShiftCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_StartZonalShiftCommand(output, context);
46
- }
7
+ export class StartZonalShiftCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("PercDataPlane", "StartZonalShift", {})
19
+ .n("ARCZonalShiftClient", "StartZonalShiftCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_StartZonalShiftCommand)
22
+ .de(de_StartZonalShiftCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UpdatePracticeRunConfigurationCommand, se_UpdatePracticeRunConfigurationCommand, } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class UpdatePracticeRunConfigurationCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdatePracticeRunConfigurationCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ARCZonalShiftClient";
26
- const commandName = "UpdatePracticeRunConfigurationCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "PercDataPlane",
35
- operation: "UpdatePracticeRunConfiguration",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_UpdatePracticeRunConfigurationCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_UpdatePracticeRunConfigurationCommand(output, context);
46
- }
7
+ export class UpdatePracticeRunConfigurationCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("PercDataPlane", "UpdatePracticeRunConfiguration", {})
19
+ .n("ARCZonalShiftClient", "UpdatePracticeRunConfigurationCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UpdatePracticeRunConfigurationCommand)
22
+ .de(de_UpdatePracticeRunConfigurationCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UpdateZonalAutoshiftConfigurationCommand, se_UpdateZonalAutoshiftConfigurationCommand, } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class UpdateZonalAutoshiftConfigurationCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdateZonalAutoshiftConfigurationCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ARCZonalShiftClient";
26
- const commandName = "UpdateZonalAutoshiftConfigurationCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "PercDataPlane",
35
- operation: "UpdateZonalAutoshiftConfiguration",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_UpdateZonalAutoshiftConfigurationCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_UpdateZonalAutoshiftConfigurationCommand(output, context);
46
- }
7
+ export class UpdateZonalAutoshiftConfigurationCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("PercDataPlane", "UpdateZonalAutoshiftConfiguration", {})
19
+ .n("ARCZonalShiftClient", "UpdateZonalAutoshiftConfigurationCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UpdateZonalAutoshiftConfigurationCommand)
22
+ .de(de_UpdateZonalAutoshiftConfigurationCommand)
23
+ .build() {
47
24
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UpdateZonalShiftCommand, se_UpdateZonalShiftCommand } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class UpdateZonalShiftCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdateZonalShiftCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "ARCZonalShiftClient";
26
- const commandName = "UpdateZonalShiftCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "PercDataPlane",
35
- operation: "UpdateZonalShift",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_UpdateZonalShiftCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_UpdateZonalShiftCommand(output, context);
46
- }
7
+ export class UpdateZonalShiftCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("PercDataPlane", "UpdateZonalShift", {})
19
+ .n("ARCZonalShiftClient", "UpdateZonalShiftCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UpdateZonalShiftCommand)
22
+ .de(de_UpdateZonalShiftCommand)
23
+ .build() {
47
24
  }
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
6
6
  defaultSigningName: "arc-zonal-shift",
7
7
  };
8
8
  };
9
+ export const commonParams = {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
5
4
  import { CancelZonalShiftRequest, ZonalShift } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CancelZonalShiftCommandInput extends CancelZonalShiftRequest {
21
20
  */
22
21
  export interface CancelZonalShiftCommandOutput extends ZonalShift, __MetadataBearer {
23
22
  }
23
+ declare const CancelZonalShiftCommand_base: {
24
+ new (input: CancelZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Cancel a zonal shift in Amazon Route 53 Application Recovery Controller. To cancel the zonal shift, specify the zonal shift ID.</p>
@@ -78,23 +81,5 @@ export interface CancelZonalShiftCommandOutput extends ZonalShift, __MetadataBea
78
81
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
79
82
  *
80
83
  */
81
- export declare class CancelZonalShiftCommand extends $Command<CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig> {
82
- readonly input: CancelZonalShiftCommandInput;
83
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
84
- /**
85
- * @public
86
- */
87
- constructor(input: CancelZonalShiftCommandInput);
88
- /**
89
- * @internal
90
- */
91
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput>;
92
- /**
93
- * @internal
94
- */
95
- private serialize;
96
- /**
97
- * @internal
98
- */
99
- private deserialize;
84
+ export declare class CancelZonalShiftCommand extends CancelZonalShiftCommand_base {
100
85
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
5
4
  import { CreatePracticeRunConfigurationRequest, CreatePracticeRunConfigurationResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CreatePracticeRunConfigurationCommandInput extends CreatePracti
21
20
  */
22
21
  export interface CreatePracticeRunConfigurationCommandOutput extends CreatePracticeRunConfigurationResponse, __MetadataBearer {
23
22
  }
23
+ declare const CreatePracticeRunConfigurationCommand_base: {
24
+ new (input: CreatePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePracticeRunConfigurationCommandInput, CreatePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>A practice run configuration for zonal autoshift is required when you enable zonal autoshift.
@@ -116,23 +119,5 @@ export interface CreatePracticeRunConfigurationCommandOutput extends CreatePract
116
119
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
117
120
  *
118
121
  */
119
- export declare class CreatePracticeRunConfigurationCommand extends $Command<CreatePracticeRunConfigurationCommandInput, CreatePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig> {
120
- readonly input: CreatePracticeRunConfigurationCommandInput;
121
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
122
- /**
123
- * @public
124
- */
125
- constructor(input: CreatePracticeRunConfigurationCommandInput);
126
- /**
127
- * @internal
128
- */
129
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePracticeRunConfigurationCommandInput, CreatePracticeRunConfigurationCommandOutput>;
130
- /**
131
- * @internal
132
- */
133
- private serialize;
134
- /**
135
- * @internal
136
- */
137
- private deserialize;
122
+ export declare class CreatePracticeRunConfigurationCommand extends CreatePracticeRunConfigurationCommand_base {
138
123
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
5
4
  import { DeletePracticeRunConfigurationRequest, DeletePracticeRunConfigurationResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeletePracticeRunConfigurationCommandInput extends DeletePracti
21
20
  */
22
21
  export interface DeletePracticeRunConfigurationCommandOutput extends DeletePracticeRunConfigurationResponse, __MetadataBearer {
23
22
  }
23
+ declare const DeletePracticeRunConfigurationCommand_base: {
24
+ new (input: DeletePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePracticeRunConfigurationCommandInput, DeletePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Deletes the practice run configuration for a resource. Before you can delete
@@ -73,23 +76,5 @@ export interface DeletePracticeRunConfigurationCommandOutput extends DeletePract
73
76
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
74
77
  *
75
78
  */
76
- export declare class DeletePracticeRunConfigurationCommand extends $Command<DeletePracticeRunConfigurationCommandInput, DeletePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig> {
77
- readonly input: DeletePracticeRunConfigurationCommandInput;
78
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
- /**
80
- * @public
81
- */
82
- constructor(input: DeletePracticeRunConfigurationCommandInput);
83
- /**
84
- * @internal
85
- */
86
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePracticeRunConfigurationCommandInput, DeletePracticeRunConfigurationCommandOutput>;
87
- /**
88
- * @internal
89
- */
90
- private serialize;
91
- /**
92
- * @internal
93
- */
94
- private deserialize;
79
+ export declare class DeletePracticeRunConfigurationCommand extends DeletePracticeRunConfigurationCommand_base {
95
80
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
5
4
  import { GetManagedResourceRequest, GetManagedResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetManagedResourceCommandInput extends GetManagedResourceReques
21
20
  */
22
21
  export interface GetManagedResourceCommandOutput extends GetManagedResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const GetManagedResourceCommand_base: {
24
+ new (input: GetManagedResourceCommandInput): import("@smithy/smithy-client").CommandImpl<GetManagedResourceCommandInput, GetManagedResourceCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Get information about a resource that's been registered for zonal shifts with Amazon Route 53 Application Recovery Controller in this Amazon Web Services Region. Resources that are registered for
@@ -112,23 +115,5 @@ export interface GetManagedResourceCommandOutput extends GetManagedResourceRespo
112
115
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
113
116
  *
114
117
  */
115
- export declare class GetManagedResourceCommand extends $Command<GetManagedResourceCommandInput, GetManagedResourceCommandOutput, ARCZonalShiftClientResolvedConfig> {
116
- readonly input: GetManagedResourceCommandInput;
117
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
118
- /**
119
- * @public
120
- */
121
- constructor(input: GetManagedResourceCommandInput);
122
- /**
123
- * @internal
124
- */
125
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetManagedResourceCommandInput, GetManagedResourceCommandOutput>;
126
- /**
127
- * @internal
128
- */
129
- private serialize;
130
- /**
131
- * @internal
132
- */
133
- private deserialize;
118
+ export declare class GetManagedResourceCommand extends GetManagedResourceCommand_base {
134
119
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
5
4
  import { ListAutoshiftsRequest, ListAutoshiftsResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListAutoshiftsCommandInput extends ListAutoshiftsRequest {
21
20
  */
22
21
  export interface ListAutoshiftsCommandOutput extends ListAutoshiftsResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListAutoshiftsCommand_base: {
24
+ new (input: ListAutoshiftsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAutoshiftsCommandInput, ListAutoshiftsCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns the active autoshifts for a specified resource.</p>
@@ -73,23 +76,5 @@ export interface ListAutoshiftsCommandOutput extends ListAutoshiftsResponse, __M
73
76
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
74
77
  *
75
78
  */
76
- export declare class ListAutoshiftsCommand extends $Command<ListAutoshiftsCommandInput, ListAutoshiftsCommandOutput, ARCZonalShiftClientResolvedConfig> {
77
- readonly input: ListAutoshiftsCommandInput;
78
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
- /**
80
- * @public
81
- */
82
- constructor(input: ListAutoshiftsCommandInput);
83
- /**
84
- * @internal
85
- */
86
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAutoshiftsCommandInput, ListAutoshiftsCommandOutput>;
87
- /**
88
- * @internal
89
- */
90
- private serialize;
91
- /**
92
- * @internal
93
- */
94
- private deserialize;
79
+ export declare class ListAutoshiftsCommand extends ListAutoshiftsCommand_base {
95
80
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
5
4
  import { ListManagedResourcesRequest, ListManagedResourcesResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListManagedResourcesCommandInput extends ListManagedResourcesRe
21
20
  */
22
21
  export interface ListManagedResourcesCommandOutput extends ListManagedResourcesResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListManagedResourcesCommand_base: {
24
+ new (input: ListManagedResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists all the resources in your Amazon Web Services account in this Amazon Web Services Region that are managed for
@@ -100,23 +103,5 @@ export interface ListManagedResourcesCommandOutput extends ListManagedResourcesR
100
103
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
101
104
  *
102
105
  */
103
- export declare class ListManagedResourcesCommand extends $Command<ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput, ARCZonalShiftClientResolvedConfig> {
104
- readonly input: ListManagedResourcesCommandInput;
105
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
106
- /**
107
- * @public
108
- */
109
- constructor(input: ListManagedResourcesCommandInput);
110
- /**
111
- * @internal
112
- */
113
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput>;
114
- /**
115
- * @internal
116
- */
117
- private serialize;
118
- /**
119
- * @internal
120
- */
121
- private deserialize;
106
+ export declare class ListManagedResourcesCommand extends ListManagedResourcesCommand_base {
122
107
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
5
4
  import { ListZonalShiftsRequest, ListZonalShiftsResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListZonalShiftsCommandInput extends ListZonalShiftsRequest {
21
20
  */
22
21
  export interface ListZonalShiftsCommandOutput extends ListZonalShiftsResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListZonalShiftsCommand_base: {
24
+ new (input: ListZonalShiftsCommandInput): import("@smithy/smithy-client").CommandImpl<ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists all active and completed zonal shifts in Amazon Route 53 Application Recovery Controller in your Amazon Web Services account in this Amazon Web Services Region.
@@ -82,23 +85,5 @@ export interface ListZonalShiftsCommandOutput extends ListZonalShiftsResponse, _
82
85
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
83
86
  *
84
87
  */
85
- export declare class ListZonalShiftsCommand extends $Command<ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput, ARCZonalShiftClientResolvedConfig> {
86
- readonly input: ListZonalShiftsCommandInput;
87
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
88
- /**
89
- * @public
90
- */
91
- constructor(input: ListZonalShiftsCommandInput);
92
- /**
93
- * @internal
94
- */
95
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput>;
96
- /**
97
- * @internal
98
- */
99
- private serialize;
100
- /**
101
- * @internal
102
- */
103
- private deserialize;
88
+ export declare class ListZonalShiftsCommand extends ListZonalShiftsCommand_base {
104
89
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
5
4
  import { StartZonalShiftRequest, ZonalShift } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface StartZonalShiftCommandInput extends StartZonalShiftRequest {
21
20
  */
22
21
  export interface StartZonalShiftCommandOutput extends ZonalShift, __MetadataBearer {
23
22
  }
23
+ declare const StartZonalShiftCommand_base: {
24
+ new (input: StartZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<StartZonalShiftCommandInput, StartZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>You start a zonal shift to temporarily move load balancer traffic away from an Availability Zone in an Amazon Web Services Region,
@@ -88,23 +91,5 @@ export interface StartZonalShiftCommandOutput extends ZonalShift, __MetadataBear
88
91
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
89
92
  *
90
93
  */
91
- export declare class StartZonalShiftCommand extends $Command<StartZonalShiftCommandInput, StartZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig> {
92
- readonly input: StartZonalShiftCommandInput;
93
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
94
- /**
95
- * @public
96
- */
97
- constructor(input: StartZonalShiftCommandInput);
98
- /**
99
- * @internal
100
- */
101
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartZonalShiftCommandInput, StartZonalShiftCommandOutput>;
102
- /**
103
- * @internal
104
- */
105
- private serialize;
106
- /**
107
- * @internal
108
- */
109
- private deserialize;
94
+ export declare class StartZonalShiftCommand extends StartZonalShiftCommand_base {
110
95
  }