@aws-sdk/client-arc-zonal-shift 3.478.0 → 3.484.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/commands/CancelZonalShiftCommand.js +18 -41
- package/dist-cjs/commands/CreatePracticeRunConfigurationCommand.js +18 -41
- package/dist-cjs/commands/DeletePracticeRunConfigurationCommand.js +18 -41
- package/dist-cjs/commands/GetManagedResourceCommand.js +18 -41
- package/dist-cjs/commands/ListAutoshiftsCommand.js +18 -41
- package/dist-cjs/commands/ListManagedResourcesCommand.js +18 -41
- package/dist-cjs/commands/ListZonalShiftsCommand.js +18 -41
- package/dist-cjs/commands/StartZonalShiftCommand.js +18 -41
- package/dist-cjs/commands/UpdatePracticeRunConfigurationCommand.js +18 -41
- package/dist-cjs/commands/UpdateZonalAutoshiftConfigurationCommand.js +18 -41
- package/dist-cjs/commands/UpdateZonalShiftCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/CancelZonalShiftCommand.js +18 -41
- package/dist-es/commands/CreatePracticeRunConfigurationCommand.js +18 -41
- package/dist-es/commands/DeletePracticeRunConfigurationCommand.js +18 -41
- package/dist-es/commands/GetManagedResourceCommand.js +18 -41
- package/dist-es/commands/ListAutoshiftsCommand.js +18 -41
- package/dist-es/commands/ListManagedResourcesCommand.js +18 -41
- package/dist-es/commands/ListZonalShiftsCommand.js +18 -41
- package/dist-es/commands/StartZonalShiftCommand.js +18 -41
- package/dist-es/commands/UpdatePracticeRunConfigurationCommand.js +18 -41
- package/dist-es/commands/UpdateZonalAutoshiftConfigurationCommand.js +18 -41
- package/dist-es/commands/UpdateZonalShiftCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/CancelZonalShiftCommand.d.ts +6 -21
- package/dist-types/commands/CreatePracticeRunConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/DeletePracticeRunConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/GetManagedResourceCommand.d.ts +6 -21
- package/dist-types/commands/ListAutoshiftsCommand.d.ts +6 -21
- package/dist-types/commands/ListManagedResourcesCommand.d.ts +6 -21
- package/dist-types/commands/ListZonalShiftsCommand.d.ts +6 -21
- package/dist-types/commands/StartZonalShiftCommand.d.ts +6 -21
- package/dist-types/commands/UpdatePracticeRunConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/UpdateZonalShiftCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/CancelZonalShiftCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreatePracticeRunConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeletePracticeRunConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetManagedResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListAutoshiftsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListManagedResourcesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListZonalShiftsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartZonalShiftCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UpdatePracticeRunConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/UpdateZonalShiftCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +11 -11
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
|
|
5
4
|
import { UpdatePracticeRunConfigurationRequest, UpdatePracticeRunConfigurationResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UpdatePracticeRunConfigurationCommandInput extends UpdatePracti
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UpdatePracticeRunConfigurationCommandOutput extends UpdatePracticeRunConfigurationResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UpdatePracticeRunConfigurationCommand_base: {
|
|
24
|
+
new (input: UpdatePracticeRunConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePracticeRunConfigurationCommandInput, UpdatePracticeRunConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Update a practice run configuration to change one or more of the following: add,
|
|
@@ -111,23 +114,5 @@ export interface UpdatePracticeRunConfigurationCommandOutput extends UpdatePract
|
|
|
111
114
|
* <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
|
|
112
115
|
*
|
|
113
116
|
*/
|
|
114
|
-
export declare class UpdatePracticeRunConfigurationCommand extends
|
|
115
|
-
readonly input: UpdatePracticeRunConfigurationCommandInput;
|
|
116
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
117
|
-
/**
|
|
118
|
-
* @public
|
|
119
|
-
*/
|
|
120
|
-
constructor(input: UpdatePracticeRunConfigurationCommandInput);
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePracticeRunConfigurationCommandInput, UpdatePracticeRunConfigurationCommandOutput>;
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
private serialize;
|
|
129
|
-
/**
|
|
130
|
-
* @internal
|
|
131
|
-
*/
|
|
132
|
-
private deserialize;
|
|
117
|
+
export declare class UpdatePracticeRunConfigurationCommand extends UpdatePracticeRunConfigurationCommand_base {
|
|
133
118
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
|
|
5
4
|
import { UpdateZonalAutoshiftConfigurationRequest, UpdateZonalAutoshiftConfigurationResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UpdateZonalAutoshiftConfigurationCommandInput extends UpdateZon
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UpdateZonalAutoshiftConfigurationCommandOutput extends UpdateZonalAutoshiftConfigurationResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UpdateZonalAutoshiftConfigurationCommand_base: {
|
|
24
|
+
new (input: UpdateZonalAutoshiftConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateZonalAutoshiftConfigurationCommandInput, UpdateZonalAutoshiftConfigurationCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>You can update the zonal autoshift status for a resource, to enable or disable zonal
|
|
@@ -74,23 +77,5 @@ export interface UpdateZonalAutoshiftConfigurationCommandOutput extends UpdateZo
|
|
|
74
77
|
* <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
|
|
75
78
|
*
|
|
76
79
|
*/
|
|
77
|
-
export declare class UpdateZonalAutoshiftConfigurationCommand extends
|
|
78
|
-
readonly input: UpdateZonalAutoshiftConfigurationCommandInput;
|
|
79
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
-
/**
|
|
81
|
-
* @public
|
|
82
|
-
*/
|
|
83
|
-
constructor(input: UpdateZonalAutoshiftConfigurationCommandInput);
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateZonalAutoshiftConfigurationCommandInput, UpdateZonalAutoshiftConfigurationCommandOutput>;
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
private serialize;
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
private deserialize;
|
|
80
|
+
export declare class UpdateZonalAutoshiftConfigurationCommand extends UpdateZonalAutoshiftConfigurationCommand_base {
|
|
96
81
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient";
|
|
5
4
|
import { UpdateZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UpdateZonalShiftCommandInput extends UpdateZonalShiftRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UpdateZonalShiftCommandOutput extends ZonalShift, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UpdateZonalShiftCommand_base: {
|
|
24
|
+
new (input: UpdateZonalShiftCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateZonalShiftCommandInput, UpdateZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
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
|
|
@@ -78,23 +81,5 @@ export interface UpdateZonalShiftCommandOutput 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 UpdateZonalShiftCommand extends
|
|
82
|
-
readonly input: UpdateZonalShiftCommandInput;
|
|
83
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
-
/**
|
|
85
|
-
* @public
|
|
86
|
-
*/
|
|
87
|
-
constructor(input: UpdateZonalShiftCommandInput);
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ARCZonalShiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateZonalShiftCommandInput, UpdateZonalShiftCommandOutput>;
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
private serialize;
|
|
96
|
-
/**
|
|
97
|
-
* @internal
|
|
98
|
-
*/
|
|
99
|
-
private deserialize;
|
|
84
|
+
export declare class UpdateZonalShiftCommand extends UpdateZonalShiftCommand_base {
|
|
100
85
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -17,19 +11,16 @@ export interface CancelZonalShiftCommandInput extends CancelZonalShiftRequest {}
|
|
|
17
11
|
export interface CancelZonalShiftCommandOutput
|
|
18
12
|
extends ZonalShift,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const CancelZonalShiftCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: CancelZonalShiftCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
CancelZonalShiftCommandInput,
|
|
19
|
+
CancelZonalShiftCommandOutput,
|
|
20
|
+
ARCZonalShiftClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class CancelZonalShiftCommand extends CancelZonalShiftCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface CreatePracticeRunConfigurationCommandInput
|
|
|
21
15
|
export interface CreatePracticeRunConfigurationCommandOutput
|
|
22
16
|
extends CreatePracticeRunConfigurationResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: CreatePracticeRunConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: CreatePracticeRunConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const CreatePracticeRunConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreatePracticeRunConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
CreatePracticeRunConfigurationCommandInput,
|
|
38
|
-
CreatePracticeRunConfigurationCommandOutput
|
|
23
|
+
CreatePracticeRunConfigurationCommandOutput,
|
|
24
|
+
ARCZonalShiftClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreatePracticeRunConfigurationCommand extends CreatePracticeRunConfigurationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface DeletePracticeRunConfigurationCommandInput
|
|
|
21
15
|
export interface DeletePracticeRunConfigurationCommandOutput
|
|
22
16
|
extends DeletePracticeRunConfigurationResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DeletePracticeRunConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DeletePracticeRunConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DeletePracticeRunConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeletePracticeRunConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DeletePracticeRunConfigurationCommandInput,
|
|
38
|
-
DeletePracticeRunConfigurationCommandOutput
|
|
23
|
+
DeletePracticeRunConfigurationCommandOutput,
|
|
24
|
+
ARCZonalShiftClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeletePracticeRunConfigurationCommand extends DeletePracticeRunConfigurationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface GetManagedResourceCommandInput
|
|
|
21
15
|
export interface GetManagedResourceCommandOutput
|
|
22
16
|
extends GetManagedResourceResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const GetManagedResourceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetManagedResourceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetManagedResourceCommandInput,
|
|
23
|
+
GetManagedResourceCommandOutput,
|
|
24
|
+
ARCZonalShiftClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetManagedResourceCommand extends GetManagedResourceCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface ListAutoshiftsCommandInput extends ListAutoshiftsRequest {}
|
|
|
20
14
|
export interface ListAutoshiftsCommandOutput
|
|
21
15
|
extends ListAutoshiftsResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const ListAutoshiftsCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ListAutoshiftsCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ListAutoshiftsCommandInput,
|
|
22
|
+
ListAutoshiftsCommandOutput,
|
|
23
|
+
ARCZonalShiftClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class ListAutoshiftsCommand extends ListAutoshiftsCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface ListManagedResourcesCommandInput
|
|
|
21
15
|
export interface ListManagedResourcesCommandOutput
|
|
22
16
|
extends ListManagedResourcesResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: ListManagedResourcesCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: ListManagedResourcesCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const ListManagedResourcesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListManagedResourcesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
ListManagedResourcesCommandInput,
|
|
38
|
-
ListManagedResourcesCommandOutput
|
|
23
|
+
ListManagedResourcesCommandOutput,
|
|
24
|
+
ARCZonalShiftClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListManagedResourcesCommand extends ListManagedResourcesCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface ListZonalShiftsCommandInput extends ListZonalShiftsRequest {}
|
|
|
20
14
|
export interface ListZonalShiftsCommandOutput
|
|
21
15
|
extends ListZonalShiftsResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const ListZonalShiftsCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ListZonalShiftsCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ListZonalShiftsCommandInput,
|
|
22
|
+
ListZonalShiftsCommandOutput,
|
|
23
|
+
ARCZonalShiftClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class ListZonalShiftsCommand extends ListZonalShiftsCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -17,19 +11,16 @@ export interface StartZonalShiftCommandInput extends StartZonalShiftRequest {}
|
|
|
17
11
|
export interface StartZonalShiftCommandOutput
|
|
18
12
|
extends ZonalShift,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const StartZonalShiftCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: StartZonalShiftCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
StartZonalShiftCommandInput,
|
|
19
|
+
StartZonalShiftCommandOutput,
|
|
20
|
+
ARCZonalShiftClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class StartZonalShiftCommand extends StartZonalShiftCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface UpdatePracticeRunConfigurationCommandInput
|
|
|
21
15
|
export interface UpdatePracticeRunConfigurationCommandOutput
|
|
22
16
|
extends UpdatePracticeRunConfigurationResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: UpdatePracticeRunConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: UpdatePracticeRunConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const UpdatePracticeRunConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdatePracticeRunConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
UpdatePracticeRunConfigurationCommandInput,
|
|
38
|
-
UpdatePracticeRunConfigurationCommandOutput
|
|
23
|
+
UpdatePracticeRunConfigurationCommandOutput,
|
|
24
|
+
ARCZonalShiftClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class UpdatePracticeRunConfigurationCommand extends UpdatePracticeRunConfigurationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ARCZonalShiftClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface UpdateZonalAutoshiftConfigurationCommandInput
|
|
|
21
15
|
export interface UpdateZonalAutoshiftConfigurationCommandOutput
|
|
22
16
|
extends UpdateZonalAutoshiftConfigurationResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: UpdateZonalAutoshiftConfigurationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: UpdateZonalAutoshiftConfigurationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ARCZonalShiftClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const UpdateZonalAutoshiftConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateZonalAutoshiftConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
UpdateZonalAutoshiftConfigurationCommandInput,
|
|
38
|
-
UpdateZonalAutoshiftConfigurationCommandOutput
|
|
23
|
+
UpdateZonalAutoshiftConfigurationCommandOutput,
|
|
24
|
+
ARCZonalShiftClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class UpdateZonalAutoshiftConfigurationCommand extends UpdateZonalAutoshiftConfigurationCommand_base {}
|