@aws-sdk/client-route53-recovery-cluster 3.1077.0 → 3.1078.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 +12 -43
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/GetRoutingControlStateCommand.js +2 -14
- package/dist-es/commands/ListRoutingControlsCommand.js +2 -14
- package/dist-es/commands/UpdateRoutingControlStateCommand.js +2 -14
- package/dist-es/commands/UpdateRoutingControlStatesCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/GetRoutingControlStateCommand.d.ts +3 -8
- package/dist-types/commands/ListRoutingControlsCommand.d.ts +3 -8
- package/dist-types/commands/UpdateRoutingControlStateCommand.d.ts +3 -8
- package/dist-types/commands/UpdateRoutingControlStatesCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetRoutingControlStateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListRoutingControlsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateRoutingControlStateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateRoutingControlStatesCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1077.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -589,52 +590,20 @@ class Route53RecoveryClusterClient extends Client {
|
|
|
589
590
|
}
|
|
590
591
|
}
|
|
591
592
|
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
})
|
|
598
|
-
.s("ToggleCustomerAPI", "GetRoutingControlState", {})
|
|
599
|
-
.n("Route53RecoveryClusterClient", "GetRoutingControlStateCommand")
|
|
600
|
-
.sc(GetRoutingControlState$)
|
|
601
|
-
.build() {
|
|
593
|
+
const command = makeBuilder(commonParams, "ToggleCustomerAPI", "Route53RecoveryClusterClient", getEndpointPlugin);
|
|
594
|
+
const _ep0 = {};
|
|
595
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
596
|
+
|
|
597
|
+
class GetRoutingControlStateCommand extends command(_ep0, _mw0, "GetRoutingControlState", GetRoutingControlState$) {
|
|
602
598
|
}
|
|
603
599
|
|
|
604
|
-
class ListRoutingControlsCommand extends
|
|
605
|
-
.classBuilder()
|
|
606
|
-
.ep(commonParams)
|
|
607
|
-
.m(function (Command, cs, config, o) {
|
|
608
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
609
|
-
})
|
|
610
|
-
.s("ToggleCustomerAPI", "ListRoutingControls", {})
|
|
611
|
-
.n("Route53RecoveryClusterClient", "ListRoutingControlsCommand")
|
|
612
|
-
.sc(ListRoutingControls$)
|
|
613
|
-
.build() {
|
|
600
|
+
class ListRoutingControlsCommand extends command(_ep0, _mw0, "ListRoutingControls", ListRoutingControls$) {
|
|
614
601
|
}
|
|
615
602
|
|
|
616
|
-
class UpdateRoutingControlStateCommand extends
|
|
617
|
-
.classBuilder()
|
|
618
|
-
.ep(commonParams)
|
|
619
|
-
.m(function (Command, cs, config, o) {
|
|
620
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
621
|
-
})
|
|
622
|
-
.s("ToggleCustomerAPI", "UpdateRoutingControlState", {})
|
|
623
|
-
.n("Route53RecoveryClusterClient", "UpdateRoutingControlStateCommand")
|
|
624
|
-
.sc(UpdateRoutingControlState$)
|
|
625
|
-
.build() {
|
|
603
|
+
class UpdateRoutingControlStateCommand extends command(_ep0, _mw0, "UpdateRoutingControlState", UpdateRoutingControlState$) {
|
|
626
604
|
}
|
|
627
605
|
|
|
628
|
-
class UpdateRoutingControlStatesCommand extends
|
|
629
|
-
.classBuilder()
|
|
630
|
-
.ep(commonParams)
|
|
631
|
-
.m(function (Command, cs, config, o) {
|
|
632
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
633
|
-
})
|
|
634
|
-
.s("ToggleCustomerAPI", "UpdateRoutingControlStates", {})
|
|
635
|
-
.n("Route53RecoveryClusterClient", "UpdateRoutingControlStatesCommand")
|
|
636
|
-
.sc(UpdateRoutingControlStates$)
|
|
637
|
-
.build() {
|
|
606
|
+
class UpdateRoutingControlStatesCommand extends command(_ep0, _mw0, "UpdateRoutingControlStates", UpdateRoutingControlStates$) {
|
|
638
607
|
}
|
|
639
608
|
|
|
640
609
|
const paginateListRoutingControls = createPaginator(Route53RecoveryClusterClient, ListRoutingControlsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "ToggleCustomerAPI", "Route53RecoveryClusterClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetRoutingControlState$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetRoutingControlStateCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ToggleCustomerAPI", "GetRoutingControlState", {})
|
|
13
|
-
.n("Route53RecoveryClusterClient", "GetRoutingControlStateCommand")
|
|
14
|
-
.sc(GetRoutingControlState$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetRoutingControlStateCommand extends command(_ep0, _mw0, "GetRoutingControlState", GetRoutingControlState$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListRoutingControls$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListRoutingControlsCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ToggleCustomerAPI", "ListRoutingControls", {})
|
|
13
|
-
.n("Route53RecoveryClusterClient", "ListRoutingControlsCommand")
|
|
14
|
-
.sc(ListRoutingControls$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListRoutingControlsCommand extends command(_ep0, _mw0, "ListRoutingControls", ListRoutingControls$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateRoutingControlState$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateRoutingControlStateCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ToggleCustomerAPI", "UpdateRoutingControlState", {})
|
|
13
|
-
.n("Route53RecoveryClusterClient", "UpdateRoutingControlStateCommand")
|
|
14
|
-
.sc(UpdateRoutingControlState$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateRoutingControlStateCommand extends command(_ep0, _mw0, "UpdateRoutingControlState", UpdateRoutingControlState$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateRoutingControlStates$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateRoutingControlStatesCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ToggleCustomerAPI", "UpdateRoutingControlStates", {})
|
|
13
|
-
.n("Route53RecoveryClusterClient", "UpdateRoutingControlStatesCommand")
|
|
14
|
-
.sc(UpdateRoutingControlStates$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateRoutingControlStatesCommand extends command(_ep0, _mw0, "UpdateRoutingControlStates", UpdateRoutingControlStates$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./Route53RecoveryClusterClient";
|
|
2
2
|
export * from "./Route53RecoveryCluster";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./pagination";
|
|
6
7
|
export * from "./models/enums";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./Route53RecoveryClusterClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetRoutingControlStateRequest, GetRoutingControlStateResponse } from "../models/models_0";
|
|
4
|
-
import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryClusterClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetRoutingControlStateCommandInput extends GetRoutingControlSta
|
|
|
22
19
|
export interface GetRoutingControlStateCommandOutput extends GetRoutingControlStateResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetRoutingControlStateCommand_base: {
|
|
25
|
-
new (input: GetRoutingControlStateCommandInput): import("@smithy/core/client").CommandImpl<GetRoutingControlStateCommandInput, GetRoutingControlStateCommandOutput, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetRoutingControlStateCommandInput): import("@smithy/core/client").CommandImpl<GetRoutingControlStateCommandInput, GetRoutingControlStateCommandOutput, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetRoutingControlStateCommandInput): import("@smithy/core/client").CommandImpl<GetRoutingControlStateCommandInput, GetRoutingControlStateCommandOutput, import("..").Route53RecoveryClusterClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetRoutingControlStateCommandInput): import("@smithy/core/client").CommandImpl<GetRoutingControlStateCommandInput, GetRoutingControlStateCommandOutput, import("..").Route53RecoveryClusterClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Get the state for a routing control. A routing control is a simple on/off switch that you
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListRoutingControlsRequest, ListRoutingControlsResponse } from "../models/models_0";
|
|
4
|
-
import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryClusterClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListRoutingControlsCommandInput extends ListRoutingControlsRequ
|
|
|
22
19
|
export interface ListRoutingControlsCommandOutput extends ListRoutingControlsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListRoutingControlsCommand_base: {
|
|
25
|
-
new (input: ListRoutingControlsCommandInput): import("@smithy/core/client").CommandImpl<ListRoutingControlsCommandInput, ListRoutingControlsCommandOutput, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListRoutingControlsCommandInput]): import("@smithy/core/client").CommandImpl<ListRoutingControlsCommandInput, ListRoutingControlsCommandOutput, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListRoutingControlsCommandInput): import("@smithy/core/client").CommandImpl<ListRoutingControlsCommandInput, ListRoutingControlsCommandOutput, import("..").Route53RecoveryClusterClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListRoutingControlsCommandInput]): import("@smithy/core/client").CommandImpl<ListRoutingControlsCommandInput, ListRoutingControlsCommandOutput, import("..").Route53RecoveryClusterClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>List routing control names and Amazon Resource Names (ARNs), as well as the routing control
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateRoutingControlStateRequest, UpdateRoutingControlStateResponse } from "../models/models_0";
|
|
4
|
-
import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryClusterClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateRoutingControlStateCommandInput extends UpdateRoutingCont
|
|
|
22
19
|
export interface UpdateRoutingControlStateCommandOutput extends UpdateRoutingControlStateResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateRoutingControlStateCommand_base: {
|
|
25
|
-
new (input: UpdateRoutingControlStateCommandInput): import("@smithy/core/client").CommandImpl<UpdateRoutingControlStateCommandInput, UpdateRoutingControlStateCommandOutput, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateRoutingControlStateCommandInput): import("@smithy/core/client").CommandImpl<UpdateRoutingControlStateCommandInput, UpdateRoutingControlStateCommandOutput, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateRoutingControlStateCommandInput): import("@smithy/core/client").CommandImpl<UpdateRoutingControlStateCommandInput, UpdateRoutingControlStateCommandOutput, import("..").Route53RecoveryClusterClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateRoutingControlStateCommandInput): import("@smithy/core/client").CommandImpl<UpdateRoutingControlStateCommandInput, UpdateRoutingControlStateCommandOutput, import("..").Route53RecoveryClusterClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Set the state of the routing control to reroute traffic. You can set the value to ON or
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateRoutingControlStatesRequest, UpdateRoutingControlStatesResponse } from "../models/models_0";
|
|
4
|
-
import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53RecoveryClusterClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateRoutingControlStatesCommandInput extends UpdateRoutingCon
|
|
|
22
19
|
export interface UpdateRoutingControlStatesCommandOutput extends UpdateRoutingControlStatesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateRoutingControlStatesCommand_base: {
|
|
25
|
-
new (input: UpdateRoutingControlStatesCommandInput): import("@smithy/core/client").CommandImpl<UpdateRoutingControlStatesCommandInput, UpdateRoutingControlStatesCommandOutput, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateRoutingControlStatesCommandInput): import("@smithy/core/client").CommandImpl<UpdateRoutingControlStatesCommandInput, UpdateRoutingControlStatesCommandOutput, Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateRoutingControlStatesCommandInput): import("@smithy/core/client").CommandImpl<UpdateRoutingControlStatesCommandInput, UpdateRoutingControlStatesCommandOutput, import("..").Route53RecoveryClusterClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateRoutingControlStatesCommandInput): import("@smithy/core/client").CommandImpl<UpdateRoutingControlStatesCommandInput, UpdateRoutingControlStatesCommandOutput, import("..").Route53RecoveryClusterClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Set multiple routing control states. You can set the value for each state to be ON or OFF.
|
package/dist-types/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
48
48
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
49
49
|
export type { Route53RecoveryClusterExtensionConfiguration } from "./extensionConfiguration";
|
|
50
50
|
export * from "./commands";
|
|
51
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
51
52
|
export * from "./schemas/schemas_0";
|
|
52
53
|
export * from "./pagination";
|
|
53
54
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
Route53RecoveryClusterClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./Route53RecoveryClusterClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
Route53RecoveryClusterClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
Route53RecoveryClusterClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetRoutingControlStateRequest,
|
|
5
4
|
GetRoutingControlStateResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53RecoveryClusterClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetRoutingControlStateCommandInput
|
|
15
8
|
extends GetRoutingControlStateRequest {}
|
|
16
9
|
export interface GetRoutingControlStateCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetRoutingControlStateCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetRoutingControlStateCommandInput,
|
|
24
17
|
GetRoutingControlStateCommandOutput,
|
|
25
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53RecoveryClusterClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetRoutingControlStateCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetRoutingControlStateCommandInput,
|
|
33
26
|
GetRoutingControlStateCommandOutput,
|
|
34
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53RecoveryClusterClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetRoutingControlStateCommand extends GetRoutingControlStateCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListRoutingControlsRequest,
|
|
5
4
|
ListRoutingControlsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53RecoveryClusterClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListRoutingControlsCommandInput
|
|
15
8
|
extends ListRoutingControlsRequest {}
|
|
16
9
|
export interface ListRoutingControlsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListRoutingControlsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListRoutingControlsCommandInput,
|
|
24
17
|
ListRoutingControlsCommandOutput,
|
|
25
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53RecoveryClusterClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListRoutingControlsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListRoutingControlsCommandInput,
|
|
33
26
|
ListRoutingControlsCommandOutput,
|
|
34
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53RecoveryClusterClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListRoutingControlsCommand extends ListRoutingControlsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
UpdateRoutingControlStateRequest,
|
|
5
4
|
UpdateRoutingControlStateResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53RecoveryClusterClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateRoutingControlStateCommandInput
|
|
15
8
|
extends UpdateRoutingControlStateRequest {}
|
|
16
9
|
export interface UpdateRoutingControlStateCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateRoutingControlStateCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateRoutingControlStateCommandInput,
|
|
24
17
|
UpdateRoutingControlStateCommandOutput,
|
|
25
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53RecoveryClusterClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdateRoutingControlStateCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateRoutingControlStateCommandInput,
|
|
33
26
|
UpdateRoutingControlStateCommandOutput,
|
|
34
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53RecoveryClusterClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateRoutingControlStateCommand extends UpdateRoutingControlStateCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
UpdateRoutingControlStatesRequest,
|
|
5
4
|
UpdateRoutingControlStatesResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../Route53RecoveryClusterClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateRoutingControlStatesCommandInput
|
|
15
8
|
extends UpdateRoutingControlStatesRequest {}
|
|
16
9
|
export interface UpdateRoutingControlStatesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateRoutingControlStatesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateRoutingControlStatesCommandInput,
|
|
24
17
|
UpdateRoutingControlStatesCommandOutput,
|
|
25
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").Route53RecoveryClusterClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdateRoutingControlStatesCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateRoutingControlStatesCommandInput,
|
|
33
26
|
UpdateRoutingControlStatesCommandOutput,
|
|
34
|
-
Route53RecoveryClusterClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").Route53RecoveryClusterClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateRoutingControlStatesCommand extends UpdateRoutingControlStatesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { Route53RecoveryClusterExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53-recovery-cluster",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53 Recovery Cluster Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.26",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|