@alicloud/ecs20140526 7.2.0 → 7.2.1
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/client.d.ts +2 -2
- package/dist/client.js +17 -3
- package/dist/client.js.map +1 -1
- package/dist/models/CreateLaunchTemplateRequest.d.ts +14 -0
- package/dist/models/CreateLaunchTemplateRequest.js +25 -1
- package/dist/models/CreateLaunchTemplateRequest.js.map +1 -1
- package/dist/models/CreateLaunchTemplateVersionRequest.d.ts +14 -0
- package/dist/models/CreateLaunchTemplateVersionRequest.js +25 -1
- package/dist/models/CreateLaunchTemplateVersionRequest.js.map +1 -1
- package/dist/models/DescribeImagesResponseBody.d.ts +1 -0
- package/dist/models/DescribeImagesResponseBody.js +2 -0
- package/dist/models/DescribeImagesResponseBody.js.map +1 -1
- package/dist/models/DescribeInstanceAttributeResponseBody.d.ts +18 -0
- package/dist/models/DescribeInstanceAttributeResponseBody.js.map +1 -1
- package/dist/models/DescribeInstanceHistoryEventsResponseBody.d.ts +2 -0
- package/dist/models/DescribeInstanceHistoryEventsResponseBody.js +4 -0
- package/dist/models/DescribeInstanceHistoryEventsResponseBody.js.map +1 -1
- package/dist/models/DescribeLaunchTemplateVersionsResponseBody.d.ts +14 -0
- package/dist/models/DescribeLaunchTemplateVersionsResponseBody.js +25 -1
- package/dist/models/DescribeLaunchTemplateVersionsResponseBody.js.map +1 -1
- package/dist/models/StartTerminalSessionRequest.d.ts +16 -0
- package/dist/models/StartTerminalSessionRequest.js +29 -1
- package/dist/models/StartTerminalSessionRequest.js.map +1 -1
- package/dist/models/StartTerminalSessionShrinkRequest.d.ts +85 -0
- package/dist/models/StartTerminalSessionShrinkRequest.js +85 -0
- package/dist/models/StartTerminalSessionShrinkRequest.js.map +1 -0
- package/dist/models/model.d.ts +5 -0
- package/dist/models/model.js +65 -55
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +21 -3
- package/src/models/CreateLaunchTemplateRequest.ts +29 -0
- package/src/models/CreateLaunchTemplateVersionRequest.ts +29 -0
- package/src/models/DescribeImagesResponseBody.ts +3 -0
- package/src/models/DescribeInstanceAttributeResponseBody.ts +18 -0
- package/src/models/DescribeInstanceHistoryEventsResponseBody.ts +6 -0
- package/src/models/DescribeLaunchTemplateVersionsResponseBody.ts +29 -0
- package/src/models/StartTerminalSessionRequest.ts +35 -0
- package/src/models/StartTerminalSessionShrinkRequest.ts +125 -0
- package/src/models/model.ts +5 -0
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class StartTerminalSessionRequestEncryptionOptions extends $dara.Model {
|
|
3
|
+
enabled?: boolean;
|
|
4
|
+
KMSKeyId?: string;
|
|
5
|
+
mode?: string;
|
|
6
|
+
static names(): {
|
|
7
|
+
[key: string]: string;
|
|
8
|
+
};
|
|
9
|
+
static types(): {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
};
|
|
12
|
+
validate(): void;
|
|
13
|
+
constructor(map?: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
2
17
|
export declare class StartTerminalSessionRequest extends $dara.Model {
|
|
3
18
|
/**
|
|
4
19
|
* @remarks
|
|
@@ -21,6 +36,7 @@ export declare class StartTerminalSessionRequest extends $dara.Model {
|
|
|
21
36
|
* Intranet
|
|
22
37
|
*/
|
|
23
38
|
connectionType?: string;
|
|
39
|
+
encryptionOptions?: StartTerminalSessionRequestEncryptionOptions;
|
|
24
40
|
/**
|
|
25
41
|
* @remarks
|
|
26
42
|
* The instance IDs.
|
|
@@ -33,14 +33,38 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.StartTerminalSessionRequest = void 0;
|
|
36
|
+
exports.StartTerminalSessionRequest = exports.StartTerminalSessionRequestEncryptionOptions = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class StartTerminalSessionRequestEncryptionOptions extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
enabled: 'Enabled',
|
|
43
|
+
KMSKeyId: 'KMSKeyId',
|
|
44
|
+
mode: 'Mode',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
enabled: 'boolean',
|
|
50
|
+
KMSKeyId: 'string',
|
|
51
|
+
mode: 'string',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
validate() {
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
constructor(map) {
|
|
58
|
+
super(map);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.StartTerminalSessionRequestEncryptionOptions = StartTerminalSessionRequestEncryptionOptions;
|
|
39
62
|
class StartTerminalSessionRequest extends $dara.Model {
|
|
40
63
|
static names() {
|
|
41
64
|
return {
|
|
42
65
|
commandLine: 'CommandLine',
|
|
43
66
|
connectionType: 'ConnectionType',
|
|
67
|
+
encryptionOptions: 'EncryptionOptions',
|
|
44
68
|
instanceId: 'InstanceId',
|
|
45
69
|
ownerAccount: 'OwnerAccount',
|
|
46
70
|
ownerId: 'OwnerId',
|
|
@@ -57,6 +81,7 @@ class StartTerminalSessionRequest extends $dara.Model {
|
|
|
57
81
|
return {
|
|
58
82
|
commandLine: 'string',
|
|
59
83
|
connectionType: 'string',
|
|
84
|
+
encryptionOptions: StartTerminalSessionRequestEncryptionOptions,
|
|
60
85
|
instanceId: { 'type': 'array', 'itemType': 'string' },
|
|
61
86
|
ownerAccount: 'string',
|
|
62
87
|
ownerId: 'number',
|
|
@@ -70,6 +95,9 @@ class StartTerminalSessionRequest extends $dara.Model {
|
|
|
70
95
|
};
|
|
71
96
|
}
|
|
72
97
|
validate() {
|
|
98
|
+
if (this.encryptionOptions && typeof this.encryptionOptions.validate === 'function') {
|
|
99
|
+
this.encryptionOptions.validate();
|
|
100
|
+
}
|
|
73
101
|
if (Array.isArray(this.instanceId)) {
|
|
74
102
|
$dara.Model.validateArray(this.instanceId);
|
|
75
103
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StartTerminalSessionRequest.js","sourceRoot":"","sources":["../../src/models/StartTerminalSessionRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,2BAA4B,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"StartTerminalSessionRequest.js","sourceRoot":"","sources":["../../src/models/StartTerminalSessionRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,4CAA6C,SAAQ,KAAK,CAAC,KAAK;IAI3E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,UAAU;YACpB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,QAAQ;YAClB,IAAI,EAAE,QAAQ;SACf,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3BD,oGA2BC;AAED,MAAa,2BAA4B,SAAQ,KAAK,CAAC,KAAK;IAyE1D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,cAAc,EAAE,gBAAgB;YAChC,iBAAiB,EAAE,mBAAmB;YACtC,UAAU,EAAE,YAAY;YACxB,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;YAClB,YAAY,EAAE,cAAc;YAC5B,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,oBAAoB,EAAE,sBAAsB;YAC5C,eAAe,EAAE,iBAAiB;YAClC,YAAY,EAAE,cAAc;YAC5B,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,cAAc,EAAE,QAAQ;YACxB,iBAAiB,EAAE,4CAA4C;YAC/D,UAAU,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACrD,YAAY,EAAE,QAAQ;YACtB,OAAO,EAAE,QAAQ;YACjB,YAAY,EAAE,QAAQ;YACtB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,oBAAoB,EAAE,QAAQ;YAC9B,eAAe,EAAE,QAAQ;YACzB,YAAY,EAAE,QAAQ;YACtB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,iBAAiB,IAAI,OAAQ,IAAI,CAAC,iBAAyB,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YAC3F,IAAI,CAAC,iBAAyB,CAAC,QAAQ,EAAE,CAAC;QAC7C,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAClC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAC7C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA1HD,kEA0HC"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class StartTerminalSessionShrinkRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* The command to run after the session is initiated. The command length cannot exceed 512 characters.
|
|
6
|
+
*
|
|
7
|
+
* > If you specify the `CommandLine` parameter, you cannot specify the `PortNumber` or `TargetServer` parameter.
|
|
8
|
+
*
|
|
9
|
+
* @example
|
|
10
|
+
* ssh root@192.168.0.246
|
|
11
|
+
*/
|
|
12
|
+
commandLine?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @remarks
|
|
15
|
+
* The network type of the WebSocket URL required to connect to the instance. Valid values:
|
|
16
|
+
*
|
|
17
|
+
* * Internet (default)
|
|
18
|
+
* * Intranet
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* Intranet
|
|
22
|
+
*/
|
|
23
|
+
connectionType?: string;
|
|
24
|
+
encryptionOptionsShrink?: string;
|
|
25
|
+
/**
|
|
26
|
+
* @remarks
|
|
27
|
+
* The instance IDs.
|
|
28
|
+
*
|
|
29
|
+
* This parameter is required.
|
|
30
|
+
*/
|
|
31
|
+
instanceId?: string[];
|
|
32
|
+
ownerAccount?: string;
|
|
33
|
+
ownerId?: number;
|
|
34
|
+
passwordName?: string;
|
|
35
|
+
/**
|
|
36
|
+
* @remarks
|
|
37
|
+
* The port number of the ECS instance. The port is used to forward data. After this parameter is configured, Cloud Assistant Agent forwards data to the specified port. For example, you can set this parameter to 22 for data forwarding over SSH.
|
|
38
|
+
*
|
|
39
|
+
* This parameter is empty by default, which indicates that no port is configured to forward data.
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* 22
|
|
43
|
+
*/
|
|
44
|
+
portNumber?: number;
|
|
45
|
+
/**
|
|
46
|
+
* @remarks
|
|
47
|
+
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
48
|
+
*
|
|
49
|
+
* This parameter is required.
|
|
50
|
+
*
|
|
51
|
+
* @example
|
|
52
|
+
* cn-hangzhou
|
|
53
|
+
*/
|
|
54
|
+
regionId?: string;
|
|
55
|
+
resourceOwnerAccount?: string;
|
|
56
|
+
resourceOwnerId?: number;
|
|
57
|
+
/**
|
|
58
|
+
* @remarks
|
|
59
|
+
* The IP address of the instance. You can use the IP address to access the destination service in a virtual private cloud (VPC).
|
|
60
|
+
*
|
|
61
|
+
* > If this parameter is not empty, `PortNumber` specifies the port number that is used by the managed instance to access the destination service in the VPC.
|
|
62
|
+
*
|
|
63
|
+
* @example
|
|
64
|
+
* 192.168.0.246
|
|
65
|
+
*/
|
|
66
|
+
targetServer?: string;
|
|
67
|
+
/**
|
|
68
|
+
* @remarks
|
|
69
|
+
* The username used for connection establishment.
|
|
70
|
+
*
|
|
71
|
+
* @example
|
|
72
|
+
* testUser
|
|
73
|
+
*/
|
|
74
|
+
username?: string;
|
|
75
|
+
static names(): {
|
|
76
|
+
[key: string]: string;
|
|
77
|
+
};
|
|
78
|
+
static types(): {
|
|
79
|
+
[key: string]: any;
|
|
80
|
+
};
|
|
81
|
+
validate(): void;
|
|
82
|
+
constructor(map?: {
|
|
83
|
+
[key: string]: any;
|
|
84
|
+
});
|
|
85
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.StartTerminalSessionShrinkRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class StartTerminalSessionShrinkRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
commandLine: 'CommandLine',
|
|
43
|
+
connectionType: 'ConnectionType',
|
|
44
|
+
encryptionOptionsShrink: 'EncryptionOptions',
|
|
45
|
+
instanceId: 'InstanceId',
|
|
46
|
+
ownerAccount: 'OwnerAccount',
|
|
47
|
+
ownerId: 'OwnerId',
|
|
48
|
+
passwordName: 'PasswordName',
|
|
49
|
+
portNumber: 'PortNumber',
|
|
50
|
+
regionId: 'RegionId',
|
|
51
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
52
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
53
|
+
targetServer: 'TargetServer',
|
|
54
|
+
username: 'Username',
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
static types() {
|
|
58
|
+
return {
|
|
59
|
+
commandLine: 'string',
|
|
60
|
+
connectionType: 'string',
|
|
61
|
+
encryptionOptionsShrink: 'string',
|
|
62
|
+
instanceId: { 'type': 'array', 'itemType': 'string' },
|
|
63
|
+
ownerAccount: 'string',
|
|
64
|
+
ownerId: 'number',
|
|
65
|
+
passwordName: 'string',
|
|
66
|
+
portNumber: 'number',
|
|
67
|
+
regionId: 'string',
|
|
68
|
+
resourceOwnerAccount: 'string',
|
|
69
|
+
resourceOwnerId: 'number',
|
|
70
|
+
targetServer: 'string',
|
|
71
|
+
username: 'string',
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
validate() {
|
|
75
|
+
if (Array.isArray(this.instanceId)) {
|
|
76
|
+
$dara.Model.validateArray(this.instanceId);
|
|
77
|
+
}
|
|
78
|
+
super.validate();
|
|
79
|
+
}
|
|
80
|
+
constructor(map) {
|
|
81
|
+
super(map);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
exports.StartTerminalSessionShrinkRequest = StartTerminalSessionShrinkRequest;
|
|
85
|
+
//# sourceMappingURL=StartTerminalSessionShrinkRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StartTerminalSessionShrinkRequest.js","sourceRoot":"","sources":["../../src/models/StartTerminalSessionShrinkRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAyEhE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;YAC1B,cAAc,EAAE,gBAAgB;YAChC,uBAAuB,EAAE,mBAAmB;YAC5C,UAAU,EAAE,YAAY;YACxB,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;YAClB,YAAY,EAAE,cAAc;YAC5B,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,oBAAoB,EAAE,sBAAsB;YAC5C,eAAe,EAAE,iBAAiB;YAClC,YAAY,EAAE,cAAc;YAC5B,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,QAAQ;YACrB,cAAc,EAAE,QAAQ;YACxB,uBAAuB,EAAE,QAAQ;YACjC,UAAU,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACrD,YAAY,EAAE,QAAQ;YACtB,OAAO,EAAE,QAAQ;YACjB,YAAY,EAAE,QAAQ;YACtB,UAAU,EAAE,QAAQ;YACpB,QAAQ,EAAE,QAAQ;YAClB,oBAAoB,EAAE,QAAQ;YAC9B,eAAe,EAAE,QAAQ;YACzB,YAAY,EAAE,QAAQ;YACtB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAClC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAC7C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvHD,8EAuHC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -83,12 +83,14 @@ export { CreateLaunchTemplateRequestSystemDisk } from './CreateLaunchTemplateReq
|
|
|
83
83
|
export { CreateLaunchTemplateRequestDataDisk } from './CreateLaunchTemplateRequest';
|
|
84
84
|
export { CreateLaunchTemplateRequestImageOptions } from './CreateLaunchTemplateRequest';
|
|
85
85
|
export { CreateLaunchTemplateRequestNetworkInterface } from './CreateLaunchTemplateRequest';
|
|
86
|
+
export { CreateLaunchTemplateRequestSecurityOptions } from './CreateLaunchTemplateRequest';
|
|
86
87
|
export { CreateLaunchTemplateRequestTag } from './CreateLaunchTemplateRequest';
|
|
87
88
|
export { CreateLaunchTemplateRequestTemplateTag } from './CreateLaunchTemplateRequest';
|
|
88
89
|
export { CreateLaunchTemplateVersionRequestSystemDisk } from './CreateLaunchTemplateVersionRequest';
|
|
89
90
|
export { CreateLaunchTemplateVersionRequestDataDisk } from './CreateLaunchTemplateVersionRequest';
|
|
90
91
|
export { CreateLaunchTemplateVersionRequestImageOptions } from './CreateLaunchTemplateVersionRequest';
|
|
91
92
|
export { CreateLaunchTemplateVersionRequestNetworkInterface } from './CreateLaunchTemplateVersionRequest';
|
|
93
|
+
export { CreateLaunchTemplateVersionRequestSecurityOptions } from './CreateLaunchTemplateVersionRequest';
|
|
92
94
|
export { CreateLaunchTemplateVersionRequestTag } from './CreateLaunchTemplateVersionRequest';
|
|
93
95
|
export { CreateNatGatewayRequestBandwidthPackage } from './CreateNatGatewayRequest';
|
|
94
96
|
export { CreateNatGatewayResponseBodyBandwidthPackageIds } from './CreateNatGatewayResponseBody';
|
|
@@ -514,6 +516,7 @@ export { DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaun
|
|
|
514
516
|
export { DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchTemplateVersionSetLaunchTemplateDataNetworkInterfacesNetworkInterface } from './DescribeLaunchTemplateVersionsResponseBody';
|
|
515
517
|
export { DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchTemplateVersionSetLaunchTemplateDataNetworkInterfaces } from './DescribeLaunchTemplateVersionsResponseBody';
|
|
516
518
|
export { DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchTemplateVersionSetLaunchTemplateDataSecurityGroupIds } from './DescribeLaunchTemplateVersionsResponseBody';
|
|
519
|
+
export { DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchTemplateVersionSetLaunchTemplateDataSecurityOptions } from './DescribeLaunchTemplateVersionsResponseBody';
|
|
517
520
|
export { DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchTemplateVersionSetLaunchTemplateDataTagsInstanceTag } from './DescribeLaunchTemplateVersionsResponseBody';
|
|
518
521
|
export { DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchTemplateVersionSetLaunchTemplateDataTags } from './DescribeLaunchTemplateVersionsResponseBody';
|
|
519
522
|
export { DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchTemplateVersionSetLaunchTemplateData } from './DescribeLaunchTemplateVersionsResponseBody';
|
|
@@ -865,6 +868,7 @@ export { StartImagePipelineExecutionRequestTag } from './StartImagePipelineExecu
|
|
|
865
868
|
export { StartImagePipelineExecutionRequestTemplateTag } from './StartImagePipelineExecutionRequest';
|
|
866
869
|
export { StartInstancesResponseBodyInstanceResponsesInstanceResponse } from './StartInstancesResponseBody';
|
|
867
870
|
export { StartInstancesResponseBodyInstanceResponses } from './StartInstancesResponseBody';
|
|
871
|
+
export { StartTerminalSessionRequestEncryptionOptions } from './StartTerminalSessionRequest';
|
|
868
872
|
export { StopInstancesResponseBodyInstanceResponsesInstanceResponse } from './StopInstancesResponseBody';
|
|
869
873
|
export { StopInstancesResponseBodyInstanceResponses } from './StopInstancesResponseBody';
|
|
870
874
|
export { TagResourcesRequestTag } from './TagResourcesRequest';
|
|
@@ -1930,6 +1934,7 @@ export { StartInstancesRequest } from './StartInstancesRequest';
|
|
|
1930
1934
|
export { StartInstancesResponseBody } from './StartInstancesResponseBody';
|
|
1931
1935
|
export { StartInstancesResponse } from './StartInstancesResponse';
|
|
1932
1936
|
export { StartTerminalSessionRequest } from './StartTerminalSessionRequest';
|
|
1937
|
+
export { StartTerminalSessionShrinkRequest } from './StartTerminalSessionShrinkRequest';
|
|
1933
1938
|
export { StartTerminalSessionResponseBody } from './StartTerminalSessionResponseBody';
|
|
1934
1939
|
export { StartTerminalSessionResponse } from './StartTerminalSessionResponse';
|
|
1935
1940
|
export { StopInstanceRequest } from './StopInstanceRequest';
|