@aws-sdk/client-lightsail 3.499.0 → 3.501.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 +2 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -0
- package/dist-types/commands/GetBundlesCommand.d.ts +1 -0
- package/dist-types/commands/GetInstanceAccessDetailsCommand.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +5 -0
- package/dist-types/models/models_1.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -10092,6 +10092,7 @@ var de_Bundle = /* @__PURE__ */ __name((output, context) => {
|
|
|
10092
10092
|
name: import_smithy_client.expectString,
|
|
10093
10093
|
power: import_smithy_client.expectInt32,
|
|
10094
10094
|
price: import_smithy_client.limitedParseFloat32,
|
|
10095
|
+
publicIpv4AddressCount: import_smithy_client.expectInt32,
|
|
10095
10096
|
ramSizeInGb: import_smithy_client.limitedParseFloat32,
|
|
10096
10097
|
supportedAppCategories: import_smithy_client._json,
|
|
10097
10098
|
supportedPlatforms: import_smithy_client._json,
|
|
@@ -11060,6 +11061,7 @@ var de_InstanceAccessDetails = /* @__PURE__ */ __name((output, context) => {
|
|
|
11060
11061
|
hostKeys: (_) => de_HostKeysList(_, context),
|
|
11061
11062
|
instanceName: import_smithy_client.expectString,
|
|
11062
11063
|
ipAddress: import_smithy_client.expectString,
|
|
11064
|
+
ipv6Addresses: import_smithy_client._json,
|
|
11063
11065
|
password: import_smithy_client.expectString,
|
|
11064
11066
|
passwordData: import_smithy_client._json,
|
|
11065
11067
|
privateKey: import_smithy_client.expectString,
|
|
@@ -9076,6 +9076,7 @@ const de_Bundle = (output, context) => {
|
|
|
9076
9076
|
name: __expectString,
|
|
9077
9077
|
power: __expectInt32,
|
|
9078
9078
|
price: __limitedParseFloat32,
|
|
9079
|
+
publicIpv4AddressCount: __expectInt32,
|
|
9079
9080
|
ramSizeInGb: __limitedParseFloat32,
|
|
9080
9081
|
supportedAppCategories: _json,
|
|
9081
9082
|
supportedPlatforms: _json,
|
|
@@ -10080,6 +10081,7 @@ const de_InstanceAccessDetails = (output, context) => {
|
|
|
10080
10081
|
hostKeys: (_) => de_HostKeysList(_, context),
|
|
10081
10082
|
instanceName: __expectString,
|
|
10082
10083
|
ipAddress: __expectString,
|
|
10084
|
+
ipv6Addresses: _json,
|
|
10083
10085
|
password: __expectString,
|
|
10084
10086
|
passwordData: _json,
|
|
10085
10087
|
privateKey: __expectString,
|
|
@@ -48,6 +48,9 @@ declare const GetInstanceAccessDetailsCommand_base: {
|
|
|
48
48
|
* // certKey: "STRING_VALUE",
|
|
49
49
|
* // expiresAt: new Date("TIMESTAMP"),
|
|
50
50
|
* // ipAddress: "STRING_VALUE",
|
|
51
|
+
* // ipv6Addresses: [ // Ipv6AddressList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
51
54
|
* // password: "STRING_VALUE",
|
|
52
55
|
* // passwordData: { // PasswordData
|
|
53
56
|
* // ciphertext: "STRING_VALUE",
|
|
@@ -1942,6 +1942,11 @@ export interface Bundle {
|
|
|
1942
1942
|
* </important>
|
|
1943
1943
|
*/
|
|
1944
1944
|
supportedAppCategories?: AppCategory[];
|
|
1945
|
+
/**
|
|
1946
|
+
* @public
|
|
1947
|
+
* <p>An integer that indicates the public ipv4 address count included in the bundle, the value is either 0 or 1.</p>
|
|
1948
|
+
*/
|
|
1949
|
+
publicIpv4AddressCount?: number;
|
|
1945
1950
|
}
|
|
1946
1951
|
/**
|
|
1947
1952
|
* @public
|
|
@@ -1187,6 +1187,11 @@ export interface InstanceAccessDetails {
|
|
|
1187
1187
|
* <p>The public IP address of the Amazon Lightsail instance.</p>
|
|
1188
1188
|
*/
|
|
1189
1189
|
ipAddress?: string;
|
|
1190
|
+
/**
|
|
1191
|
+
* @public
|
|
1192
|
+
* <p>The IPv6 address of the Amazon Lightsail instance.</p>
|
|
1193
|
+
*/
|
|
1194
|
+
ipv6Addresses?: string[];
|
|
1190
1195
|
/**
|
|
1191
1196
|
* @public
|
|
1192
1197
|
* <p>For RDP access, the password for your Amazon Lightsail instance. Password will be an empty
|
|
@@ -598,6 +598,7 @@ export interface Bundle {
|
|
|
598
598
|
transferPerMonthInGb?: number;
|
|
599
599
|
supportedPlatforms?: InstancePlatform[];
|
|
600
600
|
supportedAppCategories?: AppCategory[];
|
|
601
|
+
publicIpv4AddressCount?: number;
|
|
601
602
|
}
|
|
602
603
|
export interface CacheBehavior {
|
|
603
604
|
behavior?: BehaviorEnum;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lightsail",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lightsail Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.501.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-lightsail",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.501.0",
|
|
24
24
|
"@aws-sdk/core": "3.496.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.501.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.496.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.496.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.496.0",
|