@volcengine/pulumi 0.0.38 → 0.0.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volcengine/pulumi",
3
- "version": "v0.0.38",
3
+ "version": "v0.0.39",
4
4
  "description": "A Pulumi package for creating and managing volcengine cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
package/types/output.d.ts CHANGED
@@ -25277,6 +25277,10 @@ export declare namespace nat {
25277
25277
  * The port or port segment that receives requests from the public network. If InternalPort is passed into the port segment, ExternalPort must also be passed into the port segment.
25278
25278
  */
25279
25279
  externalPort: string;
25280
+ /**
25281
+ * The ID of the DNAT entry.
25282
+ */
25283
+ id: string;
25280
25284
  /**
25281
25285
  * Provides the internal IP address.
25282
25286
  */
@@ -25329,6 +25333,10 @@ export declare namespace nat {
25329
25333
  * The description of the NatGateway.
25330
25334
  */
25331
25335
  description: string;
25336
+ /**
25337
+ * A list of dnat entry ids.
25338
+ */
25339
+ dnatEntryIds: string[];
25332
25340
  /**
25333
25341
  * The eip addresses of the NatGateway.
25334
25342
  */
@@ -25353,10 +25361,18 @@ export declare namespace nat {
25353
25361
  * The ID of the network interface.
25354
25362
  */
25355
25363
  networkInterfaceId: string;
25364
+ /**
25365
+ * The network type of the NatGateway.
25366
+ */
25367
+ networkType: string;
25356
25368
  /**
25357
25369
  * The overdue time of the NatGateway.
25358
25370
  */
25359
25371
  overdueTime: string;
25372
+ /**
25373
+ * A list of snat entry ids.
25374
+ */
25375
+ snatEntryIds: string[];
25360
25376
  /**
25361
25377
  * The specification of the NatGateway.
25362
25378
  */
@@ -25433,6 +25449,10 @@ export declare namespace nat {
25433
25449
  * The port or port segment that receives requests from the public network. If InternalPort is passed into the port segment, ExternalPort must also be passed into the port segment.
25434
25450
  */
25435
25451
  externalPort: string;
25452
+ /**
25453
+ * The ID of the DNAT entry.
25454
+ */
25455
+ id: string;
25436
25456
  /**
25437
25457
  * Provides the internal IP address.
25438
25458
  */
@@ -25475,6 +25495,10 @@ export declare namespace nat {
25475
25495
  * The description of the NatGateway.
25476
25496
  */
25477
25497
  description: string;
25498
+ /**
25499
+ * A list of dnat entry ids.
25500
+ */
25501
+ dnatEntryIds: string[];
25478
25502
  /**
25479
25503
  * The eip addresses of the NatGateway.
25480
25504
  */
@@ -25499,10 +25523,18 @@ export declare namespace nat {
25499
25523
  * The ID of the network interface.
25500
25524
  */
25501
25525
  networkInterfaceId: string;
25526
+ /**
25527
+ * The network type of the NatGateway.
25528
+ */
25529
+ networkType: string;
25502
25530
  /**
25503
25531
  * The overdue time of the NatGateway.
25504
25532
  */
25505
25533
  overdueTime: string;
25534
+ /**
25535
+ * A list of snat entry ids.
25536
+ */
25537
+ snatEntryIds: string[];
25506
25538
  /**
25507
25539
  * The specification of the NatGateway.
25508
25540
  */
@@ -25562,6 +25594,44 @@ export declare namespace nat {
25562
25594
  */
25563
25595
  value: string;
25564
25596
  }
25597
+ interface GetIpsNatIp {
25598
+ /**
25599
+ * The id of the Nat Ip.
25600
+ */
25601
+ id: string;
25602
+ /**
25603
+ * Whether the Ip is the default Nat Ip.
25604
+ */
25605
+ isDefault: boolean;
25606
+ /**
25607
+ * The id of the Nat gateway.
25608
+ */
25609
+ natGatewayId: string;
25610
+ /**
25611
+ * The ip address of the Nat Ip.
25612
+ */
25613
+ natIp: string;
25614
+ /**
25615
+ * The description of the Nat Ip.
25616
+ */
25617
+ natIpDescription: string;
25618
+ /**
25619
+ * The id of the Nat Ip.
25620
+ */
25621
+ natIpId: string;
25622
+ /**
25623
+ * The name of the Nat IP.
25624
+ */
25625
+ natIpName: string;
25626
+ /**
25627
+ * The status of the Nat Ip.
25628
+ */
25629
+ status: string;
25630
+ /**
25631
+ * The using status of the Nat Ip.
25632
+ */
25633
+ usingStatus: string;
25634
+ }
25565
25635
  interface GetSnatEntriesSnatEntry {
25566
25636
  /**
25567
25637
  * The public ip address used by the SNAT entry.
@@ -25579,6 +25649,10 @@ export declare namespace nat {
25579
25649
  * An id of the nat gateway to which the entry belongs.
25580
25650
  */
25581
25651
  natGatewayId: string;
25652
+ /**
25653
+ * The ID of the intranet NAT gateway's transit IP.
25654
+ */
25655
+ natIpId: string;
25582
25656
  /**
25583
25657
  * The id of the SNAT entry.
25584
25658
  */
@@ -25600,6 +25674,44 @@ export declare namespace nat {
25600
25674
  */
25601
25675
  subnetId: string;
25602
25676
  }
25677
+ interface IpsNatIp {
25678
+ /**
25679
+ * The id of the Nat Ip.
25680
+ */
25681
+ id: string;
25682
+ /**
25683
+ * Whether the Ip is the default Nat Ip.
25684
+ */
25685
+ isDefault: boolean;
25686
+ /**
25687
+ * The id of the Nat gateway.
25688
+ */
25689
+ natGatewayId: string;
25690
+ /**
25691
+ * The ip address of the Nat Ip.
25692
+ */
25693
+ natIp: string;
25694
+ /**
25695
+ * The description of the Nat Ip.
25696
+ */
25697
+ natIpDescription: string;
25698
+ /**
25699
+ * The id of the Nat Ip.
25700
+ */
25701
+ natIpId: string;
25702
+ /**
25703
+ * The name of the Nat IP.
25704
+ */
25705
+ natIpName: string;
25706
+ /**
25707
+ * The status of the Nat Ip.
25708
+ */
25709
+ status: string;
25710
+ /**
25711
+ * The using status of the Nat Ip.
25712
+ */
25713
+ usingStatus: string;
25714
+ }
25603
25715
  interface SnatEntriesSnatEntry {
25604
25716
  /**
25605
25717
  * The public ip address used by the SNAT entry.
@@ -25617,6 +25729,10 @@ export declare namespace nat {
25617
25729
  * An id of the nat gateway to which the entry belongs.
25618
25730
  */
25619
25731
  natGatewayId: string;
25732
+ /**
25733
+ * The ID of the intranet NAT gateway's transit IP.
25734
+ */
25735
+ natIpId: string;
25620
25736
  /**
25621
25737
  * The id of the SNAT entry.
25622
25738
  */