@aws-sdk/client-ec2-instance-connect 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,37 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.EC2InstanceConnect = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
4
5
|
const SendSerialConsoleSSHPublicKeyCommand_1 = require("./commands/SendSerialConsoleSSHPublicKeyCommand");
|
|
5
6
|
const SendSSHPublicKeyCommand_1 = require("./commands/SendSSHPublicKeyCommand");
|
|
6
7
|
const EC2InstanceConnectClient_1 = require("./EC2InstanceConnectClient");
|
|
8
|
+
const commands = {
|
|
9
|
+
SendSerialConsoleSSHPublicKeyCommand: SendSerialConsoleSSHPublicKeyCommand_1.SendSerialConsoleSSHPublicKeyCommand,
|
|
10
|
+
SendSSHPublicKeyCommand: SendSSHPublicKeyCommand_1.SendSSHPublicKeyCommand,
|
|
11
|
+
};
|
|
7
12
|
class EC2InstanceConnect extends EC2InstanceConnectClient_1.EC2InstanceConnectClient {
|
|
8
|
-
sendSerialConsoleSSHPublicKey(args, optionsOrCb, cb) {
|
|
9
|
-
const command = new SendSerialConsoleSSHPublicKeyCommand_1.SendSerialConsoleSSHPublicKeyCommand(args);
|
|
10
|
-
if (typeof optionsOrCb === "function") {
|
|
11
|
-
this.send(command, optionsOrCb);
|
|
12
|
-
}
|
|
13
|
-
else if (typeof cb === "function") {
|
|
14
|
-
if (typeof optionsOrCb !== "object")
|
|
15
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
16
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
return this.send(command, optionsOrCb);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
sendSSHPublicKey(args, optionsOrCb, cb) {
|
|
23
|
-
const command = new SendSSHPublicKeyCommand_1.SendSSHPublicKeyCommand(args);
|
|
24
|
-
if (typeof optionsOrCb === "function") {
|
|
25
|
-
this.send(command, optionsOrCb);
|
|
26
|
-
}
|
|
27
|
-
else if (typeof cb === "function") {
|
|
28
|
-
if (typeof optionsOrCb !== "object")
|
|
29
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
30
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
31
|
-
}
|
|
32
|
-
else {
|
|
33
|
-
return this.send(command, optionsOrCb);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
13
|
}
|
|
37
14
|
exports.EC2InstanceConnect = EC2InstanceConnect;
|
|
15
|
+
(0, smithy_client_1.createAggregatedClient)(commands, EC2InstanceConnect);
|
|
@@ -1,33 +1,11 @@
|
|
|
1
|
+
import { createAggregatedClient } from "@aws-sdk/smithy-client";
|
|
1
2
|
import { SendSerialConsoleSSHPublicKeyCommand, } from "./commands/SendSerialConsoleSSHPublicKeyCommand";
|
|
2
3
|
import { SendSSHPublicKeyCommand, } from "./commands/SendSSHPublicKeyCommand";
|
|
3
4
|
import { EC2InstanceConnectClient } from "./EC2InstanceConnectClient";
|
|
5
|
+
const commands = {
|
|
6
|
+
SendSerialConsoleSSHPublicKeyCommand,
|
|
7
|
+
SendSSHPublicKeyCommand,
|
|
8
|
+
};
|
|
4
9
|
export class EC2InstanceConnect extends EC2InstanceConnectClient {
|
|
5
|
-
sendSerialConsoleSSHPublicKey(args, optionsOrCb, cb) {
|
|
6
|
-
const command = new SendSerialConsoleSSHPublicKeyCommand(args);
|
|
7
|
-
if (typeof optionsOrCb === "function") {
|
|
8
|
-
this.send(command, optionsOrCb);
|
|
9
|
-
}
|
|
10
|
-
else if (typeof cb === "function") {
|
|
11
|
-
if (typeof optionsOrCb !== "object")
|
|
12
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
13
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
return this.send(command, optionsOrCb);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
sendSSHPublicKey(args, optionsOrCb, cb) {
|
|
20
|
-
const command = new SendSSHPublicKeyCommand(args);
|
|
21
|
-
if (typeof optionsOrCb === "function") {
|
|
22
|
-
this.send(command, optionsOrCb);
|
|
23
|
-
}
|
|
24
|
-
else if (typeof cb === "function") {
|
|
25
|
-
if (typeof optionsOrCb !== "object")
|
|
26
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
27
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
28
|
-
}
|
|
29
|
-
else {
|
|
30
|
-
return this.send(command, optionsOrCb);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
10
|
}
|
|
11
|
+
createAggregatedClient(commands, EC2InstanceConnect);
|
|
@@ -2,31 +2,25 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
|
2
2
|
import { SendSerialConsoleSSHPublicKeyCommandInput, SendSerialConsoleSSHPublicKeyCommandOutput } from "./commands/SendSerialConsoleSSHPublicKeyCommand";
|
|
3
3
|
import { SendSSHPublicKeyCommandInput, SendSSHPublicKeyCommandOutput } from "./commands/SendSSHPublicKeyCommand";
|
|
4
4
|
import { EC2InstanceConnectClient } from "./EC2InstanceConnectClient";
|
|
5
|
-
|
|
6
|
-
* @public
|
|
7
|
-
* <p>Amazon EC2 Instance Connect enables system administrators to publish one-time use SSH
|
|
8
|
-
* public keys to EC2, providing users a simple and secure way to connect to their
|
|
9
|
-
* instances.</p>
|
|
10
|
-
*/
|
|
11
|
-
export declare class EC2InstanceConnect extends EC2InstanceConnectClient {
|
|
5
|
+
export interface EC2InstanceConnect {
|
|
12
6
|
/**
|
|
13
|
-
* @
|
|
14
|
-
* <p>Pushes an SSH public key to the specified EC2 instance. The key remains for 60
|
|
15
|
-
* seconds, which gives you 60 seconds to establish a serial console connection to the
|
|
16
|
-
* instance using SSH. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-serial-console.html">EC2 Serial Console</a> in
|
|
17
|
-
* the <i>Amazon EC2 User Guide</i>.</p>
|
|
7
|
+
* @see {@link SendSerialConsoleSSHPublicKeyCommand}
|
|
18
8
|
*/
|
|
19
9
|
sendSerialConsoleSSHPublicKey(args: SendSerialConsoleSSHPublicKeyCommandInput, options?: __HttpHandlerOptions): Promise<SendSerialConsoleSSHPublicKeyCommandOutput>;
|
|
20
10
|
sendSerialConsoleSSHPublicKey(args: SendSerialConsoleSSHPublicKeyCommandInput, cb: (err: any, data?: SendSerialConsoleSSHPublicKeyCommandOutput) => void): void;
|
|
21
11
|
sendSerialConsoleSSHPublicKey(args: SendSerialConsoleSSHPublicKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendSerialConsoleSSHPublicKeyCommandOutput) => void): void;
|
|
22
12
|
/**
|
|
23
|
-
* @
|
|
24
|
-
* <p>Pushes an SSH public key to the specified EC2 instance for use by the specified user.
|
|
25
|
-
* The key remains for 60 seconds. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Connect-using-EC2-Instance-Connect.html">Connect to
|
|
26
|
-
* your Linux instance using EC2 Instance Connect</a> in the <i>Amazon EC2
|
|
27
|
-
* User Guide</i>.</p>
|
|
13
|
+
* @see {@link SendSSHPublicKeyCommand}
|
|
28
14
|
*/
|
|
29
15
|
sendSSHPublicKey(args: SendSSHPublicKeyCommandInput, options?: __HttpHandlerOptions): Promise<SendSSHPublicKeyCommandOutput>;
|
|
30
16
|
sendSSHPublicKey(args: SendSSHPublicKeyCommandInput, cb: (err: any, data?: SendSSHPublicKeyCommandOutput) => void): void;
|
|
31
17
|
sendSSHPublicKey(args: SendSSHPublicKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendSSHPublicKeyCommandOutput) => void): void;
|
|
32
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* <p>Amazon EC2 Instance Connect enables system administrators to publish one-time use SSH
|
|
22
|
+
* public keys to EC2, providing users a simple and secure way to connect to their
|
|
23
|
+
* instances.</p>
|
|
24
|
+
*/
|
|
25
|
+
export declare class EC2InstanceConnect extends EC2InstanceConnectClient implements EC2InstanceConnect {
|
|
26
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
SendSSHPublicKeyCommandOutput,
|
|
9
9
|
} from "./commands/SendSSHPublicKeyCommand";
|
|
10
10
|
import { EC2InstanceConnectClient } from "./EC2InstanceConnectClient";
|
|
11
|
-
export
|
|
11
|
+
export interface EC2InstanceConnect {
|
|
12
12
|
sendSerialConsoleSSHPublicKey(
|
|
13
13
|
args: SendSerialConsoleSSHPublicKeyCommandInput,
|
|
14
14
|
options?: __HttpHandlerOptions
|
|
@@ -36,3 +36,6 @@ export declare class EC2InstanceConnect extends EC2InstanceConnectClient {
|
|
|
36
36
|
cb: (err: any, data?: SendSSHPublicKeyCommandOutput) => void
|
|
37
37
|
): void;
|
|
38
38
|
}
|
|
39
|
+
export declare class EC2InstanceConnect
|
|
40
|
+
extends EC2InstanceConnectClient
|
|
41
|
+
implements EC2InstanceConnect {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2-instance-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Instance Connect 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",
|