@aws-sdk/client-arc-region-switch 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ARCRegionSwitch.d.ts +80 -106
- package/dist-types/ts3.4/ARCRegionSwitchClient.d.ts +12 -40
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/ApprovePlanExecutionStepCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CancelPlanExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreatePlanCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeletePlanCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetPlanCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetPlanEvaluationStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetPlanExecutionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetPlanInRegionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPlanExecutionEventsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListPlanExecutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPlansCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListPlansInRegionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRoute53HealthChecksCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRoute53HealthChecksInRegionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartPlanExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdatePlanCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdatePlanExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdatePlanExecutionStepCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +8 -16
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListPlansPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/waiters/waitForPlanEvaluationStatusPassed.d.ts +3 -7
- package/dist-types/ts3.4/waiters/waitForPlanExecutionCompleted.d.ts +3 -5
- package/package.json +38 -38
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ARCRegionSwitchClientResolvedConfig } from "../ARCRegionSwitchClient";
|
|
15
|
-
export interface ARCRegionSwitchHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ARCRegionSwitchHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ARCRegionSwitchHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ARCRegionSwitchHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ARCRegionSwitchClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ARCRegionSwitchHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultARCRegionSwitchHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ARCRegionSwitchClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ARCRegionSwitchHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ARCRegionSwitchHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ARCRegionSwitchHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ARCRegionSwitchHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ARCRegionSwitchHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultARCRegionSwitchHttpAuthSchemeProvider: ARCRegionSwitchHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ARCRegionSwitchHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ARCRegionSwitchHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ARCRegionSwitchClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ARCRegionSwitchClientResolvedConfig,
|
|
@@ -39,9 +38,4 @@ export declare const command: <
|
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
40
|
export declare const _ep1: EndpointParameterInstructions;
|
|
42
|
-
export declare const _mw0: (
|
|
43
|
-
Command: any,
|
|
44
|
-
cs: any,
|
|
45
|
-
config: any,
|
|
46
|
-
o: any
|
|
47
|
-
) => never[];
|
|
41
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ApprovePlanExecutionStepResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ApprovePlanExecutionStepCommandInput
|
|
8
|
-
extends ApprovePlanExecutionStepRequest {}
|
|
7
|
+
export interface ApprovePlanExecutionStepCommandInput extends ApprovePlanExecutionStepRequest {}
|
|
9
8
|
export interface ApprovePlanExecutionStepCommandOutput
|
|
10
|
-
extends ApprovePlanExecutionStepResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ApprovePlanExecutionStepResponse, __MetadataBearer {}
|
|
12
10
|
declare const ApprovePlanExecutionStepCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ApprovePlanExecutionStepCommandInput
|
|
12
|
+
input: ApprovePlanExecutionStepCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ApprovePlanExecutionStepCommandInput,
|
|
17
15
|
ApprovePlanExecutionStepCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ApprovePlanExecutionStepCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ApprovePlanExecutionStepCommandInput
|
|
21
|
+
input: ApprovePlanExecutionStepCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ApprovePlanExecutionStepCommandInput,
|
|
26
24
|
ApprovePlanExecutionStepCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CancelPlanExecutionRequest,
|
|
4
|
-
CancelPlanExecutionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CancelPlanExecutionRequest, CancelPlanExecutionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CancelPlanExecutionCommandInput
|
|
8
|
-
extends CancelPlanExecutionRequest {}
|
|
4
|
+
export interface CancelPlanExecutionCommandInput extends CancelPlanExecutionRequest {}
|
|
9
5
|
export interface CancelPlanExecutionCommandOutput
|
|
10
|
-
extends CancelPlanExecutionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CancelPlanExecutionResponse, __MetadataBearer {}
|
|
12
7
|
declare const CancelPlanExecutionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CancelPlanExecutionCommandInput
|
|
9
|
+
input: CancelPlanExecutionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CancelPlanExecutionCommandInput,
|
|
17
12
|
CancelPlanExecutionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CancelPlanExecutionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CancelPlanExecutionCommandInput
|
|
18
|
+
input: CancelPlanExecutionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CancelPlanExecutionCommandInput,
|
|
26
21
|
CancelPlanExecutionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreatePlanRequest, CreatePlanResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreatePlanCommandInput extends CreatePlanRequest {}
|
|
5
|
-
export interface CreatePlanCommandOutput
|
|
6
|
-
extends CreatePlanResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreatePlanCommandOutput extends CreatePlanResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreatePlanCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreatePlanCommandInput
|
|
8
|
+
input: CreatePlanCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreatePlanCommandInput,
|
|
13
11
|
CreatePlanCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreatePlanCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreatePlanCommandInput
|
|
17
|
+
input: CreatePlanCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreatePlanCommandInput,
|
|
22
20
|
CreatePlanCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeletePlanRequest, DeletePlanResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeletePlanCommandInput extends DeletePlanRequest {}
|
|
5
|
-
export interface DeletePlanCommandOutput
|
|
6
|
-
extends DeletePlanResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeletePlanCommandOutput extends DeletePlanResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeletePlanCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeletePlanCommandInput
|
|
8
|
+
input: DeletePlanCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeletePlanCommandInput,
|
|
13
11
|
DeletePlanCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeletePlanCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeletePlanCommandInput
|
|
17
|
+
input: DeletePlanCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeletePlanCommandInput,
|
|
22
20
|
DeletePlanCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetPlanRequest, GetPlanResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetPlanCommandInput extends GetPlanRequest {}
|
|
5
|
-
export interface GetPlanCommandOutput
|
|
6
|
-
extends GetPlanResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetPlanCommandOutput extends GetPlanResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetPlanCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetPlanCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetPlanCommandInput,
|
|
11
11
|
GetPlanCommandOutput,
|
|
12
12
|
import("..").ARCRegionSwitchClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetPlanCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetPlanCommandInput,
|
|
18
20
|
GetPlanCommandOutput,
|
|
19
21
|
import("..").ARCRegionSwitchClientResolvedConfig,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetPlanEvaluationStatusResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetPlanEvaluationStatusCommandInput
|
|
8
|
-
extends GetPlanEvaluationStatusRequest {}
|
|
7
|
+
export interface GetPlanEvaluationStatusCommandInput extends GetPlanEvaluationStatusRequest {}
|
|
9
8
|
export interface GetPlanEvaluationStatusCommandOutput
|
|
10
|
-
extends GetPlanEvaluationStatusResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetPlanEvaluationStatusResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetPlanEvaluationStatusCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetPlanEvaluationStatusCommandInput
|
|
12
|
+
input: GetPlanEvaluationStatusCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetPlanEvaluationStatusCommandInput,
|
|
17
15
|
GetPlanEvaluationStatusCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetPlanEvaluationStatusCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetPlanEvaluationStatusCommandInput
|
|
21
|
+
input: GetPlanEvaluationStatusCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetPlanEvaluationStatusCommandInput,
|
|
26
24
|
GetPlanEvaluationStatusCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetPlanExecutionRequest,
|
|
4
|
-
GetPlanExecutionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetPlanExecutionRequest, GetPlanExecutionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetPlanExecutionCommandInput extends GetPlanExecutionRequest {}
|
|
8
|
-
export interface GetPlanExecutionCommandOutput
|
|
9
|
-
extends GetPlanExecutionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetPlanExecutionCommandOutput extends GetPlanExecutionResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetPlanExecutionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetPlanExecutionCommandInput
|
|
8
|
+
input: GetPlanExecutionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetPlanExecutionCommandInput,
|
|
16
11
|
GetPlanExecutionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetPlanExecutionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetPlanExecutionCommandInput
|
|
17
|
+
input: GetPlanExecutionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetPlanExecutionCommandInput,
|
|
25
20
|
GetPlanExecutionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetPlanInRegionRequest,
|
|
4
|
-
GetPlanInRegionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetPlanInRegionRequest, GetPlanInRegionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetPlanInRegionCommandInput extends GetPlanInRegionRequest {}
|
|
8
|
-
export interface GetPlanInRegionCommandOutput
|
|
9
|
-
extends GetPlanInRegionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetPlanInRegionCommandOutput extends GetPlanInRegionResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetPlanInRegionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetPlanInRegionCommandInput
|
|
8
|
+
input: GetPlanInRegionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetPlanInRegionCommandInput,
|
|
16
11
|
GetPlanInRegionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetPlanInRegionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetPlanInRegionCommandInput
|
|
17
|
+
input: GetPlanInRegionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetPlanInRegionCommandInput,
|
|
25
20
|
GetPlanInRegionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListPlanExecutionEventsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPlanExecutionEventsCommandInput
|
|
8
|
-
extends ListPlanExecutionEventsRequest {}
|
|
7
|
+
export interface ListPlanExecutionEventsCommandInput extends ListPlanExecutionEventsRequest {}
|
|
9
8
|
export interface ListPlanExecutionEventsCommandOutput
|
|
10
|
-
extends ListPlanExecutionEventsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListPlanExecutionEventsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListPlanExecutionEventsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListPlanExecutionEventsCommandInput
|
|
12
|
+
input: ListPlanExecutionEventsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListPlanExecutionEventsCommandInput,
|
|
17
15
|
ListPlanExecutionEventsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListPlanExecutionEventsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListPlanExecutionEventsCommandInput
|
|
21
|
+
input: ListPlanExecutionEventsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListPlanExecutionEventsCommandInput,
|
|
26
24
|
ListPlanExecutionEventsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPlanExecutionsRequest,
|
|
4
|
-
ListPlanExecutionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPlanExecutionsRequest, ListPlanExecutionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPlanExecutionsCommandInput
|
|
8
|
-
extends ListPlanExecutionsRequest {}
|
|
4
|
+
export interface ListPlanExecutionsCommandInput extends ListPlanExecutionsRequest {}
|
|
9
5
|
export interface ListPlanExecutionsCommandOutput
|
|
10
|
-
extends ListPlanExecutionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListPlanExecutionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListPlanExecutionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListPlanExecutionsCommandInput
|
|
9
|
+
input: ListPlanExecutionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListPlanExecutionsCommandInput,
|
|
17
12
|
ListPlanExecutionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListPlanExecutionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListPlanExecutionsCommandInput
|
|
18
|
+
input: ListPlanExecutionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListPlanExecutionsCommandInput,
|
|
26
21
|
ListPlanExecutionsCommandOutput,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListPlansRequest, ListPlansResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListPlansCommandInput extends ListPlansRequest {}
|
|
5
|
-
export interface ListPlansCommandOutput
|
|
6
|
-
extends ListPlansResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListPlansCommandOutput extends ListPlansResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListPlansCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListPlansCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListPlansCommandInput,
|
|
11
11
|
ListPlansCommandOutput,
|
|
12
12
|
import("..").ARCRegionSwitchClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPlansInRegionRequest,
|
|
4
|
-
ListPlansInRegionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPlansInRegionRequest, ListPlansInRegionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPlansInRegionCommandInput
|
|
8
|
-
extends ListPlansInRegionRequest {}
|
|
4
|
+
export interface ListPlansInRegionCommandInput extends ListPlansInRegionRequest {}
|
|
9
5
|
export interface ListPlansInRegionCommandOutput
|
|
10
|
-
extends ListPlansInRegionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListPlansInRegionResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListPlansInRegionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListPlansInRegionCommandInput
|
|
9
|
+
input: ListPlansInRegionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListPlansInRegionCommandInput,
|
|
17
12
|
ListPlansInRegionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListRoute53HealthChecksResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRoute53HealthChecksCommandInput
|
|
8
|
-
extends ListRoute53HealthChecksRequest {}
|
|
7
|
+
export interface ListRoute53HealthChecksCommandInput extends ListRoute53HealthChecksRequest {}
|
|
9
8
|
export interface ListRoute53HealthChecksCommandOutput
|
|
10
|
-
extends ListRoute53HealthChecksResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListRoute53HealthChecksResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListRoute53HealthChecksCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListRoute53HealthChecksCommandInput
|
|
12
|
+
input: ListRoute53HealthChecksCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListRoute53HealthChecksCommandInput,
|
|
17
15
|
ListRoute53HealthChecksCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListRoute53HealthChecksCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListRoute53HealthChecksCommandInput
|
|
21
|
+
input: ListRoute53HealthChecksCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListRoute53HealthChecksCommandInput,
|
|
26
24
|
ListRoute53HealthChecksCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListRoute53HealthChecksInRegionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRoute53HealthChecksInRegionCommandInput
|
|
8
|
-
extends ListRoute53HealthChecksInRegionRequest {}
|
|
7
|
+
export interface ListRoute53HealthChecksInRegionCommandInput extends ListRoute53HealthChecksInRegionRequest {}
|
|
9
8
|
export interface ListRoute53HealthChecksInRegionCommandOutput
|
|
10
|
-
extends ListRoute53HealthChecksInRegionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListRoute53HealthChecksInRegionResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListRoute53HealthChecksInRegionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListRoute53HealthChecksInRegionCommandInput
|
|
12
|
+
input: ListRoute53HealthChecksInRegionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListRoute53HealthChecksInRegionCommandInput,
|
|
17
15
|
ListRoute53HealthChecksInRegionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListRoute53HealthChecksInRegionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListRoute53HealthChecksInRegionCommandInput
|
|
21
|
+
input: ListRoute53HealthChecksInRegionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListRoute53HealthChecksInRegionCommandInput,
|
|
26
24
|
ListRoute53HealthChecksInRegionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartPlanExecutionRequest,
|
|
4
|
-
StartPlanExecutionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartPlanExecutionRequest, StartPlanExecutionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartPlanExecutionCommandInput
|
|
8
|
-
extends StartPlanExecutionRequest {}
|
|
4
|
+
export interface StartPlanExecutionCommandInput extends StartPlanExecutionRequest {}
|
|
9
5
|
export interface StartPlanExecutionCommandOutput
|
|
10
|
-
extends StartPlanExecutionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartPlanExecutionResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartPlanExecutionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartPlanExecutionCommandInput
|
|
9
|
+
input: StartPlanExecutionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartPlanExecutionCommandInput,
|
|
17
12
|
StartPlanExecutionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartPlanExecutionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartPlanExecutionCommandInput
|
|
18
|
+
input: StartPlanExecutionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartPlanExecutionCommandInput,
|
|
26
21
|
StartPlanExecutionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdatePlanRequest, UpdatePlanResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdatePlanCommandInput extends UpdatePlanRequest {}
|
|
5
|
-
export interface UpdatePlanCommandOutput
|
|
6
|
-
extends UpdatePlanResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdatePlanCommandOutput extends UpdatePlanResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdatePlanCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdatePlanCommandInput
|
|
8
|
+
input: UpdatePlanCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdatePlanCommandInput,
|
|
13
11
|
UpdatePlanCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdatePlanCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdatePlanCommandInput
|
|
17
|
+
input: UpdatePlanCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdatePlanCommandInput,
|
|
22
20
|
UpdatePlanCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdatePlanExecutionRequest,
|
|
4
|
-
UpdatePlanExecutionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdatePlanExecutionRequest, UpdatePlanExecutionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdatePlanExecutionCommandInput
|
|
8
|
-
extends UpdatePlanExecutionRequest {}
|
|
4
|
+
export interface UpdatePlanExecutionCommandInput extends UpdatePlanExecutionRequest {}
|
|
9
5
|
export interface UpdatePlanExecutionCommandOutput
|
|
10
|
-
extends UpdatePlanExecutionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdatePlanExecutionResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdatePlanExecutionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdatePlanExecutionCommandInput
|
|
9
|
+
input: UpdatePlanExecutionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdatePlanExecutionCommandInput,
|
|
17
12
|
UpdatePlanExecutionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdatePlanExecutionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdatePlanExecutionCommandInput
|
|
18
|
+
input: UpdatePlanExecutionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdatePlanExecutionCommandInput,
|
|
26
21
|
UpdatePlanExecutionCommandOutput,
|