@aws-sdk/client-arc-zonal-shift 3.529.1 → 3.535.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 (35) hide show
  1. package/dist-types/ARCZonalShift.d.ts +4 -1
  2. package/dist-types/ARCZonalShiftClient.d.ts +1 -1
  3. package/dist-types/commands/CancelZonalShiftCommand.d.ts +2 -1
  4. package/dist-types/commands/CreatePracticeRunConfigurationCommand.d.ts +2 -1
  5. package/dist-types/commands/DeletePracticeRunConfigurationCommand.d.ts +2 -1
  6. package/dist-types/commands/GetManagedResourceCommand.d.ts +2 -1
  7. package/dist-types/commands/ListAutoshiftsCommand.d.ts +2 -1
  8. package/dist-types/commands/ListManagedResourcesCommand.d.ts +2 -1
  9. package/dist-types/commands/ListZonalShiftsCommand.d.ts +2 -1
  10. package/dist-types/commands/StartZonalShiftCommand.d.ts +2 -1
  11. package/dist-types/commands/UpdatePracticeRunConfigurationCommand.d.ts +2 -1
  12. package/dist-types/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +2 -1
  13. package/dist-types/commands/UpdateZonalShiftCommand.d.ts +2 -1
  14. package/dist-types/models/models_0.d.ts +117 -117
  15. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  16. package/dist-types/runtimeConfig.d.ts +2 -2
  17. package/dist-types/runtimeConfig.native.d.ts +2 -2
  18. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  19. package/dist-types/ts3.4/ARCZonalShift.d.ts +3 -0
  20. package/dist-types/ts3.4/commands/CancelZonalShiftCommand.d.ts +9 -0
  21. package/dist-types/ts3.4/commands/CreatePracticeRunConfigurationCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/DeletePracticeRunConfigurationCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/GetManagedResourceCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/ListAutoshiftsCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/ListManagedResourcesCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ListZonalShiftsCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/StartZonalShiftCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/UpdatePracticeRunConfigurationCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/UpdateZonalShiftCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  35. package/package.json +40 -40
@@ -39,18 +39,21 @@ export interface ARCZonalShift {
39
39
  /**
40
40
  * @see {@link ListAutoshiftsCommand}
41
41
  */
42
+ listAutoshifts(): Promise<ListAutoshiftsCommandOutput>;
42
43
  listAutoshifts(args: ListAutoshiftsCommandInput, options?: __HttpHandlerOptions): Promise<ListAutoshiftsCommandOutput>;
43
44
  listAutoshifts(args: ListAutoshiftsCommandInput, cb: (err: any, data?: ListAutoshiftsCommandOutput) => void): void;
44
45
  listAutoshifts(args: ListAutoshiftsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAutoshiftsCommandOutput) => void): void;
45
46
  /**
46
47
  * @see {@link ListManagedResourcesCommand}
47
48
  */
49
+ listManagedResources(): Promise<ListManagedResourcesCommandOutput>;
48
50
  listManagedResources(args: ListManagedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListManagedResourcesCommandOutput>;
49
51
  listManagedResources(args: ListManagedResourcesCommandInput, cb: (err: any, data?: ListManagedResourcesCommandOutput) => void): void;
50
52
  listManagedResources(args: ListManagedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListManagedResourcesCommandOutput) => void): void;
51
53
  /**
52
54
  * @see {@link ListZonalShiftsCommand}
53
55
  */
56
+ listZonalShifts(): Promise<ListZonalShiftsCommandOutput>;
54
57
  listZonalShifts(args: ListZonalShiftsCommandInput, options?: __HttpHandlerOptions): Promise<ListZonalShiftsCommandOutput>;
55
58
  listZonalShifts(args: ListZonalShiftsCommandInput, cb: (err: any, data?: ListZonalShiftsCommandOutput) => void): void;
56
59
  listZonalShifts(args: ListZonalShiftsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListZonalShiftsCommandOutput) => void): void;
@@ -80,7 +83,6 @@ export interface ARCZonalShift {
80
83
  updateZonalShift(args: UpdateZonalShiftCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateZonalShiftCommandOutput) => void): void;
81
84
  }
82
85
  /**
83
- * @public
84
86
  * <p>Welcome to the Zonal Shift API Reference Guide for Amazon Route 53 Application Recovery Controller (Route 53 ARC).</p>
85
87
  * <p>You can start a zonal shift to move traffic for a load balancer resource away from an Availability Zone to
86
88
  * help your application recover quickly from an impairment in an Availability Zone. For example,
@@ -108,6 +110,7 @@ export interface ARCZonalShift {
108
110
  * <p>For more information about using zonal shift and zonal autoshift, see the
109
111
  * <a href="https://docs.aws.amazon.com/r53recovery/latest/dg/what-is-route53-recovery.html">Amazon Route 53 Application Recovery Controller
110
112
  * Developer Guide</a>.</p>
113
+ * @public
111
114
  */
112
115
  export declare class ARCZonalShift extends ARCZonalShiftClient implements ARCZonalShift {
113
116
  }
@@ -162,7 +162,6 @@ export type ARCZonalShiftClientResolvedConfigType = __SmithyResolvedConfiguratio
162
162
  export interface ARCZonalShiftClientResolvedConfig extends ARCZonalShiftClientResolvedConfigType {
163
163
  }
164
164
  /**
165
- * @public
166
165
  * <p>Welcome to the Zonal Shift API Reference Guide for Amazon Route 53 Application Recovery Controller (Route 53 ARC).</p>
167
166
  * <p>You can start a zonal shift to move traffic for a load balancer resource away from an Availability Zone to
168
167
  * help your application recover quickly from an impairment in an Availability Zone. For example,
@@ -190,6 +189,7 @@ export interface ARCZonalShiftClientResolvedConfig extends ARCZonalShiftClientRe
190
189
  * <p>For more information about using zonal shift and zonal autoshift, see the
191
190
  * <a href="https://docs.aws.amazon.com/r53recovery/latest/dg/what-is-route53-recovery.html">Amazon Route 53 Application Recovery Controller
192
191
  * Developer Guide</a>.</p>
192
+ * @public
193
193
  */
194
194
  export declare class ARCZonalShiftClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ARCZonalShiftClientResolvedConfig> {
195
195
  /**
@@ -22,10 +22,10 @@ export interface CancelZonalShiftCommandOutput extends ZonalShift, __MetadataBea
22
22
  }
23
23
  declare const CancelZonalShiftCommand_base: {
24
24
  new (input: CancelZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CancelZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Cancel a zonal shift in Amazon Route 53 Application Recovery Controller. To cancel the zonal shift, specify the zonal shift ID.</p>
30
30
  * <p>A zonal shift can be one that you've started for a resource in your Amazon Web Services account
31
31
  * in an Amazon Web Services Region, or it can be a zonal shift started by a practice run with zonal
@@ -80,6 +80,7 @@ declare const CancelZonalShiftCommand_base: {
80
80
  * @throws {@link ARCZonalShiftServiceException}
81
81
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
82
82
  *
83
+ * @public
83
84
  */
84
85
  export declare class CancelZonalShiftCommand extends CancelZonalShiftCommand_base {
85
86
  }
@@ -22,10 +22,10 @@ export interface CreatePracticeRunConfigurationCommandOutput extends CreatePract
22
22
  }
23
23
  declare const CreatePracticeRunConfigurationCommand_base: {
24
24
  new (input: CreatePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePracticeRunConfigurationCommandInput, CreatePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreatePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePracticeRunConfigurationCommandInput, CreatePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>A practice run configuration for zonal autoshift is required when you enable zonal autoshift.
30
30
  * A practice run configuration includes specifications for blocked dates and blocked time windows,
31
31
  * and for Amazon CloudWatch alarms that you create to use with practice runs. The alarms that you specify are an
@@ -118,6 +118,7 @@ declare const CreatePracticeRunConfigurationCommand_base: {
118
118
  * @throws {@link ARCZonalShiftServiceException}
119
119
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
120
120
  *
121
+ * @public
121
122
  */
122
123
  export declare class CreatePracticeRunConfigurationCommand extends CreatePracticeRunConfigurationCommand_base {
123
124
  }
@@ -22,10 +22,10 @@ export interface DeletePracticeRunConfigurationCommandOutput extends DeletePract
22
22
  }
23
23
  declare const DeletePracticeRunConfigurationCommand_base: {
24
24
  new (input: DeletePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePracticeRunConfigurationCommandInput, DeletePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeletePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePracticeRunConfigurationCommandInput, DeletePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the practice run configuration for a resource. Before you can delete
30
30
  * a practice run configuration for a resource., you must disable zonal autoshift for
31
31
  * the resource. Practice runs must be configured for zonal autoshift to be enabled.</p>
@@ -75,6 +75,7 @@ declare const DeletePracticeRunConfigurationCommand_base: {
75
75
  * @throws {@link ARCZonalShiftServiceException}
76
76
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class DeletePracticeRunConfigurationCommand extends DeletePracticeRunConfigurationCommand_base {
80
81
  }
@@ -22,10 +22,10 @@ export interface GetManagedResourceCommandOutput extends GetManagedResourceRespo
22
22
  }
23
23
  declare const GetManagedResourceCommand_base: {
24
24
  new (input: GetManagedResourceCommandInput): import("@smithy/smithy-client").CommandImpl<GetManagedResourceCommandInput, GetManagedResourceCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetManagedResourceCommandInput): import("@smithy/smithy-client").CommandImpl<GetManagedResourceCommandInput, GetManagedResourceCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
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
30
30
  * zonal shifts are managed resources in Route 53 ARC. You can start zonal shifts and configure zonal autoshift for managed resources.</p>
31
31
  * <p>At this time, you can only start a zonal shift or configure zonal autoshift for Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.</p>
@@ -114,6 +114,7 @@ declare const GetManagedResourceCommand_base: {
114
114
  * @throws {@link ARCZonalShiftServiceException}
115
115
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
116
116
  *
117
+ * @public
117
118
  */
118
119
  export declare class GetManagedResourceCommand extends GetManagedResourceCommand_base {
119
120
  }
@@ -22,10 +22,10 @@ export interface ListAutoshiftsCommandOutput extends ListAutoshiftsResponse, __M
22
22
  }
23
23
  declare const ListAutoshiftsCommand_base: {
24
24
  new (input: ListAutoshiftsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAutoshiftsCommandInput, ListAutoshiftsCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListAutoshiftsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAutoshiftsCommandInput, ListAutoshiftsCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns the active autoshifts for a specified resource.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -75,6 +75,7 @@ declare const ListAutoshiftsCommand_base: {
75
75
  * @throws {@link ARCZonalShiftServiceException}
76
76
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class ListAutoshiftsCommand extends ListAutoshiftsCommand_base {
80
81
  }
@@ -22,10 +22,10 @@ export interface ListManagedResourcesCommandOutput extends ListManagedResourcesR
22
22
  }
23
23
  declare const ListManagedResourcesCommand_base: {
24
24
  new (input: ListManagedResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListManagedResourcesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists all the resources in your Amazon Web Services account in this Amazon Web Services Region that are managed for
30
30
  * zonal shifts in Amazon Route 53 Application Recovery Controller, and information about them. The information includes the zonal autoshift status for the resource,
31
31
  * as well as the Amazon Resource Name (ARN), the Availability Zones that each resource is deployed in, and
@@ -102,6 +102,7 @@ declare const ListManagedResourcesCommand_base: {
102
102
  * @throws {@link ARCZonalShiftServiceException}
103
103
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
104
104
  *
105
+ * @public
105
106
  */
106
107
  export declare class ListManagedResourcesCommand extends ListManagedResourcesCommand_base {
107
108
  }
@@ -22,10 +22,10 @@ export interface ListZonalShiftsCommandOutput extends ListZonalShiftsResponse, _
22
22
  }
23
23
  declare const ListZonalShiftsCommand_base: {
24
24
  new (input: ListZonalShiftsCommandInput): import("@smithy/smithy-client").CommandImpl<ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListZonalShiftsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
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.
30
30
  * <code>ListZonalShifts</code> returns customer-started zonal shifts, as well as practice run zonal shifts that Route 53 ARC started on
31
31
  * your behalf for zonal autoshift.</p>
@@ -84,6 +84,7 @@ declare const ListZonalShiftsCommand_base: {
84
84
  * @throws {@link ARCZonalShiftServiceException}
85
85
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
86
86
  *
87
+ * @public
87
88
  */
88
89
  export declare class ListZonalShiftsCommand extends ListZonalShiftsCommand_base {
89
90
  }
@@ -22,10 +22,10 @@ export interface StartZonalShiftCommandOutput extends ZonalShift, __MetadataBear
22
22
  }
23
23
  declare const StartZonalShiftCommand_base: {
24
24
  new (input: StartZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<StartZonalShiftCommandInput, StartZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<StartZonalShiftCommandInput, StartZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>You start a zonal shift to temporarily move load balancer traffic away from an Availability Zone in an Amazon Web Services Region,
30
30
  * to help your application recover immediately, for example, from a developer's bad code deployment or from an Amazon Web Services
31
31
  * infrastructure failure in a single Availability Zone. You can start a zonal shift in Route 53 ARC only for managed
@@ -90,6 +90,7 @@ declare const StartZonalShiftCommand_base: {
90
90
  * @throws {@link ARCZonalShiftServiceException}
91
91
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
92
92
  *
93
+ * @public
93
94
  */
94
95
  export declare class StartZonalShiftCommand extends StartZonalShiftCommand_base {
95
96
  }
@@ -22,10 +22,10 @@ export interface UpdatePracticeRunConfigurationCommandOutput extends UpdatePract
22
22
  }
23
23
  declare const UpdatePracticeRunConfigurationCommand_base: {
24
24
  new (input: UpdatePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePracticeRunConfigurationCommandInput, UpdatePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdatePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePracticeRunConfigurationCommandInput, UpdatePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Update a practice run configuration to change one or more of the following: add,
30
30
  * change, or remove the blocking alarm; change the outcome alarm; or add, change,
31
31
  * or remove blocking dates or time windows.</p>
@@ -113,6 +113,7 @@ declare const UpdatePracticeRunConfigurationCommand_base: {
113
113
  * @throws {@link ARCZonalShiftServiceException}
114
114
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
115
115
  *
116
+ * @public
116
117
  */
117
118
  export declare class UpdatePracticeRunConfigurationCommand extends UpdatePracticeRunConfigurationCommand_base {
118
119
  }
@@ -22,10 +22,10 @@ export interface UpdateZonalAutoshiftConfigurationCommandOutput extends UpdateZo
22
22
  }
23
23
  declare const UpdateZonalAutoshiftConfigurationCommand_base: {
24
24
  new (input: UpdateZonalAutoshiftConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateZonalAutoshiftConfigurationCommandInput, UpdateZonalAutoshiftConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateZonalAutoshiftConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateZonalAutoshiftConfigurationCommandInput, UpdateZonalAutoshiftConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>You can update the zonal autoshift status for a resource, to enable or disable zonal
30
30
  * autoshift. When zonal autoshift is <code>ENABLED</code>, Amazon Web Services shifts away
31
31
  * resource traffic from an Availability Zone, on your behalf, when Amazon Web Services
@@ -76,6 +76,7 @@ declare const UpdateZonalAutoshiftConfigurationCommand_base: {
76
76
  * @throws {@link ARCZonalShiftServiceException}
77
77
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
78
78
  *
79
+ * @public
79
80
  */
80
81
  export declare class UpdateZonalAutoshiftConfigurationCommand extends UpdateZonalAutoshiftConfigurationCommand_base {
81
82
  }
@@ -22,10 +22,10 @@ export interface UpdateZonalShiftCommandOutput extends ZonalShift, __MetadataBea
22
22
  }
23
23
  declare const UpdateZonalShiftCommand_base: {
24
24
  new (input: UpdateZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateZonalShiftCommandInput, UpdateZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateZonalShiftCommandInput, UpdateZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Update an active zonal shift in Amazon Route 53 Application Recovery Controller in your Amazon Web Services account. You can update a zonal shift to set a new expiration, or
30
30
  * edit or replace the comment for the zonal shift. </p>
31
31
  * @example
@@ -80,6 +80,7 @@ declare const UpdateZonalShiftCommand_base: {
80
80
  * @throws {@link ARCZonalShiftServiceException}
81
81
  * <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
82
82
  *
83
+ * @public
83
84
  */
84
85
  export declare class UpdateZonalShiftCommand extends UpdateZonalShiftCommand_base {
85
86
  }