@stacksjs/ts-cloud 0.7.85 → 0.7.86
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/aws/ec2.d.ts +13 -0
- package/dist/aws/index.js +1 -1
- package/dist/bin/cli.js +510 -510
- package/dist/{chunk-qbj74thz.js → chunk-4erbrg3e.js} +2 -2
- package/dist/{chunk-703nkybg.js → chunk-7m60qnc8.js} +10 -0
- package/dist/{chunk-gx4288t5.js → chunk-ztbn47we.js} +102 -58
- package/dist/deploy/index.js +15 -7
- package/dist/deploy/server-dns.d.ts +66 -7
- package/dist/drivers/index.js +2 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +13 -5
- package/dist/ui/access-denied.html +2 -2
- package/dist/ui/account/automation.html +3 -3
- package/dist/ui/account/security.html +2 -2
- package/dist/ui/applications/compose.html +4 -4
- package/dist/ui/applications/new.html +2 -2
- package/dist/ui/data/backups.html +4 -4
- package/dist/ui/data/services.html +4 -4
- package/dist/ui/data/volumes.html +4 -4
- package/dist/ui/index.html +4 -4
- package/dist/ui/operations/alerts.html +3 -3
- package/dist/ui/operations/configuration.html +3 -3
- package/dist/ui/operations/jobs.html +3 -3
- package/dist/ui/operations/maintenance.html +3 -3
- package/dist/ui/operations/observability.html +4 -4
- package/dist/ui/operations/previews.html +4 -4
- package/dist/ui/operations/queue.html +4 -4
- package/dist/ui/operations/regions.html +4 -4
- package/dist/ui/operations/releases.html +4 -4
- package/dist/ui/operations/workloads.html +4 -4
- package/dist/ui/security.html +2 -2
- package/dist/ui/server/actions.html +4 -4
- package/dist/ui/server/activity.html +2 -2
- package/dist/ui/server/capacity.html +4 -4
- package/dist/ui/server/database.html +4 -4
- package/dist/ui/server/deployments.html +4 -4
- package/dist/ui/server/firewall.html +4 -4
- package/dist/ui/server/fleet.html +4 -4
- package/dist/ui/server/logs.html +4 -4
- package/dist/ui/server/metrics.html +4 -4
- package/dist/ui/server/services.html +2 -2
- package/dist/ui/server/sites.html +4 -4
- package/dist/ui/server/ssh-keys.html +4 -4
- package/dist/ui/server/team.html +4 -4
- package/dist/ui/serverless/alarms.html +4 -4
- package/dist/ui/serverless/assets.html +2 -2
- package/dist/ui/serverless/data.html +4 -4
- package/dist/ui/serverless/deployments.html +2 -2
- package/dist/ui/serverless/firewall.html +2 -2
- package/dist/ui/serverless/functions.html +4 -4
- package/dist/ui/serverless/logs.html +4 -4
- package/dist/ui/serverless/metrics.html +2 -2
- package/dist/ui/serverless/queues.html +4 -4
- package/dist/ui/serverless/secrets.html +4 -4
- package/dist/ui/serverless/traces.html +4 -4
- package/dist/ui/serverless.html +3 -3
- package/package.json +3 -3
package/dist/aws/ec2.d.ts
CHANGED
|
@@ -8,6 +8,12 @@ export interface Instance {
|
|
|
8
8
|
};
|
|
9
9
|
PrivateIpAddress?: string;
|
|
10
10
|
PublicIpAddress?: string;
|
|
11
|
+
/**
|
|
12
|
+
* First public IPv6 address across the instance's network interfaces. EC2
|
|
13
|
+
* carries IPv6 per-ENI rather than on the instance, so this is flattened out
|
|
14
|
+
* of `networkInterfaceSet` for callers that just want "the box's v6".
|
|
15
|
+
*/
|
|
16
|
+
Ipv6Address?: string;
|
|
11
17
|
SubnetId?: string;
|
|
12
18
|
VpcId?: string;
|
|
13
19
|
SecurityGroups?: {
|
|
@@ -557,6 +563,13 @@ export declare class EC2Client {
|
|
|
557
563
|
*/
|
|
558
564
|
private encodeIpPermissions;
|
|
559
565
|
private parseArray;
|
|
566
|
+
/**
|
|
567
|
+
* Flatten the first public IPv6 address out of an instance's network
|
|
568
|
+
* interfaces. EC2 attaches IPv6 per-ENI, and an instance with several
|
|
569
|
+
* interfaces reports several lists; callers reconciling DNS want one address,
|
|
570
|
+
* and the primary interface's first address is the one traffic arrives on.
|
|
571
|
+
*/
|
|
572
|
+
private parseFirstIpv6Address;
|
|
560
573
|
private parseTags;
|
|
561
574
|
private parseReservations;
|
|
562
575
|
private parseInstances;
|