@aws-sdk/client-migrationhub-config 3.315.0 → 3.316.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.
|
@@ -1,52 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MigrationHubConfig = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
4
5
|
const CreateHomeRegionControlCommand_1 = require("./commands/CreateHomeRegionControlCommand");
|
|
5
6
|
const DescribeHomeRegionControlsCommand_1 = require("./commands/DescribeHomeRegionControlsCommand");
|
|
6
7
|
const GetHomeRegionCommand_1 = require("./commands/GetHomeRegionCommand");
|
|
7
8
|
const MigrationHubConfigClient_1 = require("./MigrationHubConfigClient");
|
|
9
|
+
const commands = {
|
|
10
|
+
CreateHomeRegionControlCommand: CreateHomeRegionControlCommand_1.CreateHomeRegionControlCommand,
|
|
11
|
+
DescribeHomeRegionControlsCommand: DescribeHomeRegionControlsCommand_1.DescribeHomeRegionControlsCommand,
|
|
12
|
+
GetHomeRegionCommand: GetHomeRegionCommand_1.GetHomeRegionCommand,
|
|
13
|
+
};
|
|
8
14
|
class MigrationHubConfig extends MigrationHubConfigClient_1.MigrationHubConfigClient {
|
|
9
|
-
createHomeRegionControl(args, optionsOrCb, cb) {
|
|
10
|
-
const command = new CreateHomeRegionControlCommand_1.CreateHomeRegionControlCommand(args);
|
|
11
|
-
if (typeof optionsOrCb === "function") {
|
|
12
|
-
this.send(command, optionsOrCb);
|
|
13
|
-
}
|
|
14
|
-
else if (typeof cb === "function") {
|
|
15
|
-
if (typeof optionsOrCb !== "object")
|
|
16
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
17
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
return this.send(command, optionsOrCb);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
describeHomeRegionControls(args, optionsOrCb, cb) {
|
|
24
|
-
const command = new DescribeHomeRegionControlsCommand_1.DescribeHomeRegionControlsCommand(args);
|
|
25
|
-
if (typeof optionsOrCb === "function") {
|
|
26
|
-
this.send(command, optionsOrCb);
|
|
27
|
-
}
|
|
28
|
-
else if (typeof cb === "function") {
|
|
29
|
-
if (typeof optionsOrCb !== "object")
|
|
30
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
31
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
32
|
-
}
|
|
33
|
-
else {
|
|
34
|
-
return this.send(command, optionsOrCb);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
getHomeRegion(args, optionsOrCb, cb) {
|
|
38
|
-
const command = new GetHomeRegionCommand_1.GetHomeRegionCommand(args);
|
|
39
|
-
if (typeof optionsOrCb === "function") {
|
|
40
|
-
this.send(command, optionsOrCb);
|
|
41
|
-
}
|
|
42
|
-
else if (typeof cb === "function") {
|
|
43
|
-
if (typeof optionsOrCb !== "object")
|
|
44
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
45
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
46
|
-
}
|
|
47
|
-
else {
|
|
48
|
-
return this.send(command, optionsOrCb);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
15
|
}
|
|
52
16
|
exports.MigrationHubConfig = MigrationHubConfig;
|
|
17
|
+
(0, smithy_client_1.createAggregatedClient)(commands, MigrationHubConfig);
|
|
@@ -1,48 +1,13 @@
|
|
|
1
|
+
import { createAggregatedClient } from "@aws-sdk/smithy-client";
|
|
1
2
|
import { CreateHomeRegionControlCommand, } from "./commands/CreateHomeRegionControlCommand";
|
|
2
3
|
import { DescribeHomeRegionControlsCommand, } from "./commands/DescribeHomeRegionControlsCommand";
|
|
3
4
|
import { GetHomeRegionCommand, } from "./commands/GetHomeRegionCommand";
|
|
4
5
|
import { MigrationHubConfigClient } from "./MigrationHubConfigClient";
|
|
6
|
+
const commands = {
|
|
7
|
+
CreateHomeRegionControlCommand,
|
|
8
|
+
DescribeHomeRegionControlsCommand,
|
|
9
|
+
GetHomeRegionCommand,
|
|
10
|
+
};
|
|
5
11
|
export class MigrationHubConfig extends MigrationHubConfigClient {
|
|
6
|
-
createHomeRegionControl(args, optionsOrCb, cb) {
|
|
7
|
-
const command = new CreateHomeRegionControlCommand(args);
|
|
8
|
-
if (typeof optionsOrCb === "function") {
|
|
9
|
-
this.send(command, optionsOrCb);
|
|
10
|
-
}
|
|
11
|
-
else if (typeof cb === "function") {
|
|
12
|
-
if (typeof optionsOrCb !== "object")
|
|
13
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
14
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
return this.send(command, optionsOrCb);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
describeHomeRegionControls(args, optionsOrCb, cb) {
|
|
21
|
-
const command = new DescribeHomeRegionControlsCommand(args);
|
|
22
|
-
if (typeof optionsOrCb === "function") {
|
|
23
|
-
this.send(command, optionsOrCb);
|
|
24
|
-
}
|
|
25
|
-
else if (typeof cb === "function") {
|
|
26
|
-
if (typeof optionsOrCb !== "object")
|
|
27
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
28
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
29
|
-
}
|
|
30
|
-
else {
|
|
31
|
-
return this.send(command, optionsOrCb);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
getHomeRegion(args, optionsOrCb, cb) {
|
|
35
|
-
const command = new GetHomeRegionCommand(args);
|
|
36
|
-
if (typeof optionsOrCb === "function") {
|
|
37
|
-
this.send(command, optionsOrCb);
|
|
38
|
-
}
|
|
39
|
-
else if (typeof cb === "function") {
|
|
40
|
-
if (typeof optionsOrCb !== "object")
|
|
41
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
42
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
43
|
-
}
|
|
44
|
-
else {
|
|
45
|
-
return this.send(command, optionsOrCb);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
12
|
}
|
|
13
|
+
createAggregatedClient(commands, MigrationHubConfig);
|
|
@@ -3,6 +3,26 @@ import { CreateHomeRegionControlCommandInput, CreateHomeRegionControlCommandOutp
|
|
|
3
3
|
import { DescribeHomeRegionControlsCommandInput, DescribeHomeRegionControlsCommandOutput } from "./commands/DescribeHomeRegionControlsCommand";
|
|
4
4
|
import { GetHomeRegionCommandInput, GetHomeRegionCommandOutput } from "./commands/GetHomeRegionCommand";
|
|
5
5
|
import { MigrationHubConfigClient } from "./MigrationHubConfigClient";
|
|
6
|
+
export interface MigrationHubConfig {
|
|
7
|
+
/**
|
|
8
|
+
* @see {@link CreateHomeRegionControlCommand}
|
|
9
|
+
*/
|
|
10
|
+
createHomeRegionControl(args: CreateHomeRegionControlCommandInput, options?: __HttpHandlerOptions): Promise<CreateHomeRegionControlCommandOutput>;
|
|
11
|
+
createHomeRegionControl(args: CreateHomeRegionControlCommandInput, cb: (err: any, data?: CreateHomeRegionControlCommandOutput) => void): void;
|
|
12
|
+
createHomeRegionControl(args: CreateHomeRegionControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHomeRegionControlCommandOutput) => void): void;
|
|
13
|
+
/**
|
|
14
|
+
* @see {@link DescribeHomeRegionControlsCommand}
|
|
15
|
+
*/
|
|
16
|
+
describeHomeRegionControls(args: DescribeHomeRegionControlsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHomeRegionControlsCommandOutput>;
|
|
17
|
+
describeHomeRegionControls(args: DescribeHomeRegionControlsCommandInput, cb: (err: any, data?: DescribeHomeRegionControlsCommandOutput) => void): void;
|
|
18
|
+
describeHomeRegionControls(args: DescribeHomeRegionControlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHomeRegionControlsCommandOutput) => void): void;
|
|
19
|
+
/**
|
|
20
|
+
* @see {@link GetHomeRegionCommand}
|
|
21
|
+
*/
|
|
22
|
+
getHomeRegion(args: GetHomeRegionCommandInput, options?: __HttpHandlerOptions): Promise<GetHomeRegionCommandOutput>;
|
|
23
|
+
getHomeRegion(args: GetHomeRegionCommandInput, cb: (err: any, data?: GetHomeRegionCommandOutput) => void): void;
|
|
24
|
+
getHomeRegion(args: GetHomeRegionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHomeRegionCommandOutput) => void): void;
|
|
25
|
+
}
|
|
6
26
|
/**
|
|
7
27
|
* @public
|
|
8
28
|
* <p>The AWS Migration Hub home region APIs are available specifically for working with your
|
|
@@ -32,31 +52,5 @@ import { MigrationHubConfigClient } from "./MigrationHubConfigClient";
|
|
|
32
52
|
* <p>For specific API usage, see the sections that follow in this AWS Migration Hub Home Region
|
|
33
53
|
* API reference. </p>
|
|
34
54
|
*/
|
|
35
|
-
export declare class MigrationHubConfig extends MigrationHubConfigClient {
|
|
36
|
-
/**
|
|
37
|
-
* @public
|
|
38
|
-
* <p>This API sets up the home region for the calling account only.</p>
|
|
39
|
-
*/
|
|
40
|
-
createHomeRegionControl(args: CreateHomeRegionControlCommandInput, options?: __HttpHandlerOptions): Promise<CreateHomeRegionControlCommandOutput>;
|
|
41
|
-
createHomeRegionControl(args: CreateHomeRegionControlCommandInput, cb: (err: any, data?: CreateHomeRegionControlCommandOutput) => void): void;
|
|
42
|
-
createHomeRegionControl(args: CreateHomeRegionControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHomeRegionControlCommandOutput) => void): void;
|
|
43
|
-
/**
|
|
44
|
-
* @public
|
|
45
|
-
* <p>This API permits filtering on the <code>ControlId</code> and <code>HomeRegion</code>
|
|
46
|
-
* fields.</p>
|
|
47
|
-
*/
|
|
48
|
-
describeHomeRegionControls(args: DescribeHomeRegionControlsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHomeRegionControlsCommandOutput>;
|
|
49
|
-
describeHomeRegionControls(args: DescribeHomeRegionControlsCommandInput, cb: (err: any, data?: DescribeHomeRegionControlsCommandOutput) => void): void;
|
|
50
|
-
describeHomeRegionControls(args: DescribeHomeRegionControlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHomeRegionControlsCommandOutput) => void): void;
|
|
51
|
-
/**
|
|
52
|
-
* @public
|
|
53
|
-
* <p>Returns the calling account’s home region, if configured. This API is used by other AWS
|
|
54
|
-
* services to determine the regional endpoint for calling AWS Application Discovery Service and
|
|
55
|
-
* Migration Hub. You must call <code>GetHomeRegion</code> at least once before you call any
|
|
56
|
-
* other AWS Application Discovery Service and AWS Migration Hub APIs, to obtain the account's
|
|
57
|
-
* Migration Hub home region.</p>
|
|
58
|
-
*/
|
|
59
|
-
getHomeRegion(args: GetHomeRegionCommandInput, options?: __HttpHandlerOptions): Promise<GetHomeRegionCommandOutput>;
|
|
60
|
-
getHomeRegion(args: GetHomeRegionCommandInput, cb: (err: any, data?: GetHomeRegionCommandOutput) => void): void;
|
|
61
|
-
getHomeRegion(args: GetHomeRegionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHomeRegionCommandOutput) => void): void;
|
|
55
|
+
export declare class MigrationHubConfig extends MigrationHubConfigClient implements MigrationHubConfig {
|
|
62
56
|
}
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
GetHomeRegionCommandOutput,
|
|
13
13
|
} from "./commands/GetHomeRegionCommand";
|
|
14
14
|
import { MigrationHubConfigClient } from "./MigrationHubConfigClient";
|
|
15
|
-
export
|
|
15
|
+
export interface MigrationHubConfig {
|
|
16
16
|
createHomeRegionControl(
|
|
17
17
|
args: CreateHomeRegionControlCommandInput,
|
|
18
18
|
options?: __HttpHandlerOptions
|
|
@@ -53,3 +53,6 @@ export declare class MigrationHubConfig extends MigrationHubConfigClient {
|
|
|
53
53
|
cb: (err: any, data?: GetHomeRegionCommandOutput) => void
|
|
54
54
|
): void;
|
|
55
55
|
}
|
|
56
|
+
export declare class MigrationHubConfig
|
|
57
|
+
extends MigrationHubConfigClient
|
|
58
|
+
implements MigrationHubConfig {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migrationhub-config",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migrationhub Config Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|