@pulumi/linode 5.5.0-alpha.1762410273 → 5.5.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/accountSettings.d.ts +12 -0
- package/accountSettings.js +2 -0
- package/accountSettings.js.map +1 -1
- package/databaseMysqlV2.d.ts +37 -0
- package/databaseMysqlV2.js +37 -0
- package/databaseMysqlV2.js.map +1 -1
- package/databasePostgresqlV2.d.ts +37 -0
- package/databasePostgresqlV2.js +37 -0
- package/databasePostgresqlV2.js.map +1 -1
- package/firewall.d.ts +12 -0
- package/firewall.js +2 -0
- package/firewall.js.map +1 -1
- package/firewallSettings.d.ts +72 -0
- package/firewallSettings.js +71 -0
- package/firewallSettings.js.map +1 -0
- package/getAccountSettings.d.ts +4 -0
- package/getAccountSettings.js.map +1 -1
- package/getFirewall.d.ts +4 -0
- package/getFirewall.js.map +1 -1
- package/getFirewallSettings.d.ts +14 -0
- package/getFirewallSettings.js +18 -0
- package/getFirewallSettings.js.map +1 -0
- package/getFirewallTemplate.d.ts +82 -0
- package/getFirewallTemplate.js +56 -0
- package/getFirewallTemplate.js.map +1 -0
- package/getFirewallTemplates.d.ts +97 -0
- package/getFirewallTemplates.js +96 -0
- package/getFirewallTemplates.js.map +1 -0
- package/getNetworkingIp.d.ts +4 -0
- package/getNetworkingIp.js.map +1 -1
- package/getVolume.d.ts +1 -1
- package/getVpcSubnet.d.ts +4 -1
- package/getVpcSubnet.js.map +1 -1
- package/getVpcSubnets.d.ts +1 -1
- package/index.d.ts +15 -0
- package/index.js +24 -4
- package/index.js.map +1 -1
- package/instance.d.ts +33 -3
- package/instance.js +4 -0
- package/instance.js.map +1 -1
- package/interface.d.ts +254 -0
- package/interface.js +206 -0
- package/interface.js.map +1 -0
- package/networkingIpAssignment.d.ts +19 -0
- package/networkingIpAssignment.js +19 -0
- package/networkingIpAssignment.js.map +1 -1
- package/nodeBalancer.d.ts +14 -0
- package/nodeBalancer.js +14 -0
- package/nodeBalancer.js.map +1 -1
- package/objectStorageBucket.d.ts +3 -3
- package/package.json +2 -2
- package/stackScript.d.ts +1 -1
- package/stackScript.js +1 -1
- package/types/input.d.ts +440 -14
- package/types/output.d.ts +424 -8
- package/volume.d.ts +3 -3
- package/vpcSubnet.d.ts +2 -2
package/types/output.d.ts
CHANGED
|
@@ -203,6 +203,24 @@ export interface FirewallOutbound {
|
|
|
203
203
|
*/
|
|
204
204
|
protocol: string;
|
|
205
205
|
}
|
|
206
|
+
export interface FirewallSettingsDefaultFirewallIds {
|
|
207
|
+
/**
|
|
208
|
+
* The Linode's default firewall.
|
|
209
|
+
*/
|
|
210
|
+
linode: number;
|
|
211
|
+
/**
|
|
212
|
+
* The NodeBalancer's default firewall.
|
|
213
|
+
*/
|
|
214
|
+
nodebalancer: number;
|
|
215
|
+
/**
|
|
216
|
+
* The public interface's default firewall.
|
|
217
|
+
*/
|
|
218
|
+
publicInterface: number;
|
|
219
|
+
/**
|
|
220
|
+
* The VPC interface's default firewall.
|
|
221
|
+
*/
|
|
222
|
+
vpcInterface: number;
|
|
223
|
+
}
|
|
206
224
|
export interface GetAccountAvailabilitiesAvailability {
|
|
207
225
|
/**
|
|
208
226
|
* A set of services which are available for the given region.
|
|
@@ -1037,6 +1055,84 @@ export interface GetFirewallOutbound {
|
|
|
1037
1055
|
*/
|
|
1038
1056
|
protocol: string;
|
|
1039
1057
|
}
|
|
1058
|
+
export interface GetFirewallSettingsDefaultFirewallIds {
|
|
1059
|
+
linode: number;
|
|
1060
|
+
nodebalancer: number;
|
|
1061
|
+
publicInterface: number;
|
|
1062
|
+
vpcInterface: number;
|
|
1063
|
+
}
|
|
1064
|
+
export interface GetFirewallTemplateInbound {
|
|
1065
|
+
action: string;
|
|
1066
|
+
description: string;
|
|
1067
|
+
ipv4s: string[];
|
|
1068
|
+
ipv6s: string[];
|
|
1069
|
+
label: string;
|
|
1070
|
+
ports: string;
|
|
1071
|
+
protocol: string;
|
|
1072
|
+
}
|
|
1073
|
+
export interface GetFirewallTemplateOutbound {
|
|
1074
|
+
action: string;
|
|
1075
|
+
description: string;
|
|
1076
|
+
ipv4s: string[];
|
|
1077
|
+
ipv6s: string[];
|
|
1078
|
+
label: string;
|
|
1079
|
+
ports: string;
|
|
1080
|
+
protocol: string;
|
|
1081
|
+
}
|
|
1082
|
+
export interface GetFirewallTemplatesFilter {
|
|
1083
|
+
/**
|
|
1084
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
1085
|
+
*/
|
|
1086
|
+
matchBy?: string;
|
|
1087
|
+
/**
|
|
1088
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1089
|
+
*/
|
|
1090
|
+
name: string;
|
|
1091
|
+
/**
|
|
1092
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
1093
|
+
*/
|
|
1094
|
+
values: string[];
|
|
1095
|
+
}
|
|
1096
|
+
export interface GetFirewallTemplatesFirewallTemplate {
|
|
1097
|
+
/**
|
|
1098
|
+
* The default behavior for inbound traffic.
|
|
1099
|
+
*/
|
|
1100
|
+
inboundPolicy: string;
|
|
1101
|
+
/**
|
|
1102
|
+
* A list of firewall rules specifying allowed inbound network traffic.
|
|
1103
|
+
*/
|
|
1104
|
+
inbounds: outputs.GetFirewallTemplatesFirewallTemplateInbound[];
|
|
1105
|
+
/**
|
|
1106
|
+
* The default behavior for outbound traffic.
|
|
1107
|
+
*/
|
|
1108
|
+
outboundPolicy: string;
|
|
1109
|
+
/**
|
|
1110
|
+
* A list of firewall rules specifying allowed outbound network traffic.
|
|
1111
|
+
*/
|
|
1112
|
+
outbounds: outputs.GetFirewallTemplatesFirewallTemplateOutbound[];
|
|
1113
|
+
/**
|
|
1114
|
+
* The slug of the firewall template.
|
|
1115
|
+
*/
|
|
1116
|
+
slug: string;
|
|
1117
|
+
}
|
|
1118
|
+
export interface GetFirewallTemplatesFirewallTemplateInbound {
|
|
1119
|
+
action: string;
|
|
1120
|
+
description: string;
|
|
1121
|
+
ipv4s: string[];
|
|
1122
|
+
ipv6s: string[];
|
|
1123
|
+
label: string;
|
|
1124
|
+
ports: string;
|
|
1125
|
+
protocol: string;
|
|
1126
|
+
}
|
|
1127
|
+
export interface GetFirewallTemplatesFirewallTemplateOutbound {
|
|
1128
|
+
action: string;
|
|
1129
|
+
description: string;
|
|
1130
|
+
ipv4s: string[];
|
|
1131
|
+
ipv6s: string[];
|
|
1132
|
+
label: string;
|
|
1133
|
+
ports: string;
|
|
1134
|
+
protocol: string;
|
|
1135
|
+
}
|
|
1040
1136
|
export interface GetFirewallsFilter {
|
|
1041
1137
|
/**
|
|
1042
1138
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -1076,6 +1172,10 @@ export interface GetFirewallsFirewall {
|
|
|
1076
1172
|
* A set of firewall rules that specify what inbound network traffic is allowed.
|
|
1077
1173
|
*/
|
|
1078
1174
|
inbounds?: outputs.GetFirewallsFirewallInbound[];
|
|
1175
|
+
/**
|
|
1176
|
+
* The IDs of Linode Interfaces this firewall is applied to.
|
|
1177
|
+
*/
|
|
1178
|
+
interfaces: number[];
|
|
1079
1179
|
/**
|
|
1080
1180
|
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
1081
1181
|
*/
|
|
@@ -1085,7 +1185,7 @@ export interface GetFirewallsFirewall {
|
|
|
1085
1185
|
*/
|
|
1086
1186
|
linodes: number[];
|
|
1087
1187
|
/**
|
|
1088
|
-
* The IDs of NodeBalancers
|
|
1188
|
+
* The IDs of NodeBalancers this firewall is applied to.
|
|
1089
1189
|
*/
|
|
1090
1190
|
nodebalancers: number[];
|
|
1091
1191
|
/**
|
|
@@ -1452,6 +1552,10 @@ export interface GetInstanceNetworkingIpv4Private {
|
|
|
1452
1552
|
* The default gateway for this address.
|
|
1453
1553
|
*/
|
|
1454
1554
|
gateway: string;
|
|
1555
|
+
/**
|
|
1556
|
+
* The globally general API entity identifier for the Linode interface.
|
|
1557
|
+
*/
|
|
1558
|
+
interfaceId: number;
|
|
1455
1559
|
/**
|
|
1456
1560
|
* The Linode instance's ID.
|
|
1457
1561
|
*/
|
|
@@ -1508,6 +1612,10 @@ export interface GetInstanceNetworkingIpv4Public {
|
|
|
1508
1612
|
* The default gateway for this address.
|
|
1509
1613
|
*/
|
|
1510
1614
|
gateway: string;
|
|
1615
|
+
/**
|
|
1616
|
+
* The globally general API entity identifier for the Linode interface.
|
|
1617
|
+
*/
|
|
1618
|
+
interfaceId: number;
|
|
1511
1619
|
/**
|
|
1512
1620
|
* The Linode instance's ID.
|
|
1513
1621
|
*/
|
|
@@ -1564,6 +1672,10 @@ export interface GetInstanceNetworkingIpv4Reserved {
|
|
|
1564
1672
|
* The default gateway for this address.
|
|
1565
1673
|
*/
|
|
1566
1674
|
gateway: string;
|
|
1675
|
+
/**
|
|
1676
|
+
* The globally general API entity identifier for the Linode interface.
|
|
1677
|
+
*/
|
|
1678
|
+
interfaceId: number;
|
|
1567
1679
|
/**
|
|
1568
1680
|
* The Linode instance's ID.
|
|
1569
1681
|
*/
|
|
@@ -1620,6 +1732,10 @@ export interface GetInstanceNetworkingIpv4Shared {
|
|
|
1620
1732
|
* The default gateway for this address.
|
|
1621
1733
|
*/
|
|
1622
1734
|
gateway: string;
|
|
1735
|
+
/**
|
|
1736
|
+
* The globally general API entity identifier for the Linode interface.
|
|
1737
|
+
*/
|
|
1738
|
+
interfaceId: number;
|
|
1623
1739
|
/**
|
|
1624
1740
|
* The Linode instance's ID.
|
|
1625
1741
|
*/
|
|
@@ -1753,6 +1869,10 @@ export interface GetInstanceNetworkingIpv6LinkLocal {
|
|
|
1753
1869
|
* The default gateway for this address.
|
|
1754
1870
|
*/
|
|
1755
1871
|
gateway: string;
|
|
1872
|
+
/**
|
|
1873
|
+
* The globally general API entity identifier for the Linode interface.
|
|
1874
|
+
*/
|
|
1875
|
+
interfaceId: number;
|
|
1756
1876
|
/**
|
|
1757
1877
|
* The Linode instance's ID.
|
|
1758
1878
|
*/
|
|
@@ -1809,6 +1929,10 @@ export interface GetInstanceNetworkingIpv6Slaac {
|
|
|
1809
1929
|
* The default gateway for this address.
|
|
1810
1930
|
*/
|
|
1811
1931
|
gateway: string;
|
|
1932
|
+
/**
|
|
1933
|
+
* The globally general API entity identifier for the Linode interface.
|
|
1934
|
+
*/
|
|
1935
|
+
interfaceId: number;
|
|
1812
1936
|
/**
|
|
1813
1937
|
* The Linode instance's ID.
|
|
1814
1938
|
*/
|
|
@@ -2066,6 +2190,10 @@ export interface GetInstancesInstance {
|
|
|
2066
2190
|
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with `private/`. See [images](https://api.linode.com/v4/images) for more information on the Images available for you to use. Examples are `linode/debian12`, `linode/fedora39`, `linode/ubuntu22.04`, `linode/arch`, and `private/12345`. See all images [here](https://api.linode.com/v4/linode/images) (Requires a personal access token; docs [here](https://techdocs.akamai.com/linode-api/reference/get-images)). *This value can not be imported.* *Changing `image` forces the creation of a new Linode Instance.*
|
|
2067
2191
|
*/
|
|
2068
2192
|
image: string;
|
|
2193
|
+
/**
|
|
2194
|
+
* The interface type for this Instance. (`linode`, `legacyConfig`)
|
|
2195
|
+
*/
|
|
2196
|
+
interfaceGeneration: string;
|
|
2069
2197
|
/**
|
|
2070
2198
|
* (Deprecated) A string containing the Linode's public IP address.
|
|
2071
2199
|
*/
|
|
@@ -3082,6 +3210,10 @@ export interface GetNetworkingIpsIpAddress {
|
|
|
3082
3210
|
* The default gateway for this address.
|
|
3083
3211
|
*/
|
|
3084
3212
|
gateway: string;
|
|
3213
|
+
/**
|
|
3214
|
+
* The ID of the interface this address is assigned to.
|
|
3215
|
+
*/
|
|
3216
|
+
interfaceId: number;
|
|
3085
3217
|
/**
|
|
3086
3218
|
* The ID of the Linode this address currently belongs to.
|
|
3087
3219
|
*/
|
|
@@ -4530,7 +4662,7 @@ export interface GetVolumesVolume {
|
|
|
4530
4662
|
*/
|
|
4531
4663
|
created: string;
|
|
4532
4664
|
/**
|
|
4533
|
-
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
|
|
4665
|
+
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
|
|
4534
4666
|
*/
|
|
4535
4667
|
encryption: string;
|
|
4536
4668
|
/**
|
|
@@ -4675,10 +4807,20 @@ export interface GetVpcSubnetLinode {
|
|
|
4675
4807
|
* The unique id of this VPC subnet.
|
|
4676
4808
|
*/
|
|
4677
4809
|
id: number;
|
|
4810
|
+
/**
|
|
4811
|
+
* A list of networking interfaces objects.
|
|
4812
|
+
*/
|
|
4678
4813
|
interfaces: outputs.GetVpcSubnetLinodeInterface[];
|
|
4679
4814
|
}
|
|
4680
4815
|
export interface GetVpcSubnetLinodeInterface {
|
|
4816
|
+
/**
|
|
4817
|
+
* Whether the Interface is actively in use.
|
|
4818
|
+
*/
|
|
4681
4819
|
active: boolean;
|
|
4820
|
+
/**
|
|
4821
|
+
* ID of Linode Config that the interface is associated with. `null` for a Linode Interface.
|
|
4822
|
+
*/
|
|
4823
|
+
configId: number;
|
|
4682
4824
|
/**
|
|
4683
4825
|
* The unique id of this VPC subnet.
|
|
4684
4826
|
*/
|
|
@@ -4704,7 +4846,7 @@ export interface GetVpcSubnetsVpcSubnet {
|
|
|
4704
4846
|
*/
|
|
4705
4847
|
created: string;
|
|
4706
4848
|
/**
|
|
4707
|
-
*
|
|
4849
|
+
* ID of the interface.
|
|
4708
4850
|
*/
|
|
4709
4851
|
id: number;
|
|
4710
4852
|
/**
|
|
@@ -4720,7 +4862,7 @@ export interface GetVpcSubnetsVpcSubnet {
|
|
|
4720
4862
|
*/
|
|
4721
4863
|
label: string;
|
|
4722
4864
|
/**
|
|
4723
|
-
* A list of
|
|
4865
|
+
* A list of Linodes added to this subnet.
|
|
4724
4866
|
*/
|
|
4725
4867
|
linodes: outputs.GetVpcSubnetsVpcSubnetLinode[];
|
|
4726
4868
|
/**
|
|
@@ -4736,15 +4878,25 @@ export interface GetVpcSubnetsVpcSubnetIpv6 {
|
|
|
4736
4878
|
}
|
|
4737
4879
|
export interface GetVpcSubnetsVpcSubnetLinode {
|
|
4738
4880
|
/**
|
|
4739
|
-
*
|
|
4881
|
+
* ID of the interface.
|
|
4740
4882
|
*/
|
|
4741
4883
|
id: number;
|
|
4884
|
+
/**
|
|
4885
|
+
* A list of networking interfaces objects.
|
|
4886
|
+
*/
|
|
4742
4887
|
interfaces: outputs.GetVpcSubnetsVpcSubnetLinodeInterface[];
|
|
4743
4888
|
}
|
|
4744
4889
|
export interface GetVpcSubnetsVpcSubnetLinodeInterface {
|
|
4890
|
+
/**
|
|
4891
|
+
* Whether the Interface is actively in use.
|
|
4892
|
+
*/
|
|
4745
4893
|
active: boolean;
|
|
4746
4894
|
/**
|
|
4747
|
-
*
|
|
4895
|
+
* ID of Linode Config that the interface is associated with. `null` for a Linode Interface.
|
|
4896
|
+
*/
|
|
4897
|
+
configId: number;
|
|
4898
|
+
/**
|
|
4899
|
+
* ID of the interface.
|
|
4748
4900
|
*/
|
|
4749
4901
|
id: number;
|
|
4750
4902
|
}
|
|
@@ -5406,6 +5558,260 @@ export interface InstanceSpec {
|
|
|
5406
5558
|
*/
|
|
5407
5559
|
vcpus: number;
|
|
5408
5560
|
}
|
|
5561
|
+
export interface InterfaceDefaultRoute {
|
|
5562
|
+
/**
|
|
5563
|
+
* If set to true, the interface is used for the IPv4 default route.
|
|
5564
|
+
*/
|
|
5565
|
+
ipv4: boolean;
|
|
5566
|
+
/**
|
|
5567
|
+
* If set to true, the interface is used for the IPv6 default route.
|
|
5568
|
+
*/
|
|
5569
|
+
ipv6: boolean;
|
|
5570
|
+
}
|
|
5571
|
+
export interface InterfacePublic {
|
|
5572
|
+
/**
|
|
5573
|
+
* IPv4 addresses for this interface.
|
|
5574
|
+
*/
|
|
5575
|
+
ipv4: outputs.InterfacePublicIpv4;
|
|
5576
|
+
/**
|
|
5577
|
+
* IPv6 addresses for this interface.
|
|
5578
|
+
*/
|
|
5579
|
+
ipv6: outputs.InterfacePublicIpv6;
|
|
5580
|
+
}
|
|
5581
|
+
export interface InterfacePublicIpv4 {
|
|
5582
|
+
/**
|
|
5583
|
+
* IPv4 addresses configured for this Linode interface. Each object in this list supports:
|
|
5584
|
+
*/
|
|
5585
|
+
addresses?: outputs.InterfacePublicIpv4Address[];
|
|
5586
|
+
/**
|
|
5587
|
+
* (Computed) The IPv4 addresses assigned for use in the VPC subnet, calculated from the `addresses` input. Each object in this set supports:
|
|
5588
|
+
*/
|
|
5589
|
+
assignedAddresses: outputs.InterfacePublicIpv4AssignedAddress[];
|
|
5590
|
+
/**
|
|
5591
|
+
* (Computed) The IPv6 ranges assigned to this Linode interface that are also shared with another Linode. Each object in this set supports:
|
|
5592
|
+
*/
|
|
5593
|
+
shareds: outputs.InterfacePublicIpv4Shared[];
|
|
5594
|
+
}
|
|
5595
|
+
export interface InterfacePublicIpv4Address {
|
|
5596
|
+
/**
|
|
5597
|
+
* The IPv4 address. Defaults to "auto" for automatic assignment.
|
|
5598
|
+
*/
|
|
5599
|
+
address: string;
|
|
5600
|
+
/**
|
|
5601
|
+
* Whether this address is the primary address for the interface.
|
|
5602
|
+
*/
|
|
5603
|
+
primary?: boolean;
|
|
5604
|
+
}
|
|
5605
|
+
export interface InterfacePublicIpv4AssignedAddress {
|
|
5606
|
+
/**
|
|
5607
|
+
* The assigned IPv4 address.
|
|
5608
|
+
*/
|
|
5609
|
+
address: string;
|
|
5610
|
+
/**
|
|
5611
|
+
* Whether this address is the primary address for the interface.
|
|
5612
|
+
*/
|
|
5613
|
+
primary: boolean;
|
|
5614
|
+
}
|
|
5615
|
+
export interface InterfacePublicIpv4Shared {
|
|
5616
|
+
/**
|
|
5617
|
+
* The assigned IPv4 address.
|
|
5618
|
+
*/
|
|
5619
|
+
address: string;
|
|
5620
|
+
/**
|
|
5621
|
+
* The ID of the Linode to assign this interface to.
|
|
5622
|
+
*/
|
|
5623
|
+
linodeId: number;
|
|
5624
|
+
}
|
|
5625
|
+
export interface InterfacePublicIpv6 {
|
|
5626
|
+
/**
|
|
5627
|
+
* Assigned additional IPv6 ranges to use in the VPC subnet, calculated from `ranges` input.
|
|
5628
|
+
*/
|
|
5629
|
+
assignedRanges: outputs.InterfacePublicIpv6AssignedRange[];
|
|
5630
|
+
/**
|
|
5631
|
+
* Configured IPv6 range in CIDR notation (2600:0db8::1/64) or prefix-only (/64). Each object in this list supports:
|
|
5632
|
+
*/
|
|
5633
|
+
ranges?: outputs.InterfacePublicIpv6Range[];
|
|
5634
|
+
/**
|
|
5635
|
+
* (Computed) The IPv6 ranges assigned to this Linode interface that are also shared with another Linode. Each object in this set supports:
|
|
5636
|
+
*/
|
|
5637
|
+
shareds: outputs.InterfacePublicIpv6Shared[];
|
|
5638
|
+
/**
|
|
5639
|
+
* (Computed) The public SLAAC and subnet prefix settings for this public interface. Each object in this set supports:
|
|
5640
|
+
*/
|
|
5641
|
+
slaacs: outputs.InterfacePublicIpv6Slaac[];
|
|
5642
|
+
}
|
|
5643
|
+
export interface InterfacePublicIpv6AssignedRange {
|
|
5644
|
+
/**
|
|
5645
|
+
* The IPv6 network range in CIDR notation.
|
|
5646
|
+
*/
|
|
5647
|
+
range: string;
|
|
5648
|
+
/**
|
|
5649
|
+
* The public IPv6 address that the range is routed to.
|
|
5650
|
+
*/
|
|
5651
|
+
routeTarget: string;
|
|
5652
|
+
}
|
|
5653
|
+
export interface InterfacePublicIpv6Range {
|
|
5654
|
+
/**
|
|
5655
|
+
* The IPv6 range.
|
|
5656
|
+
*/
|
|
5657
|
+
range: string;
|
|
5658
|
+
/**
|
|
5659
|
+
* The public IPv6 address that the range is routed to.
|
|
5660
|
+
*/
|
|
5661
|
+
routeTarget?: string;
|
|
5662
|
+
}
|
|
5663
|
+
export interface InterfacePublicIpv6Shared {
|
|
5664
|
+
/**
|
|
5665
|
+
* The IPv6 network range in CIDR notation.
|
|
5666
|
+
*/
|
|
5667
|
+
range: string;
|
|
5668
|
+
/**
|
|
5669
|
+
* The public IPv6 address that the range is routed to.
|
|
5670
|
+
*/
|
|
5671
|
+
routeTarget: string;
|
|
5672
|
+
}
|
|
5673
|
+
export interface InterfacePublicIpv6Slaac {
|
|
5674
|
+
/**
|
|
5675
|
+
* The assigned IPv4 address.
|
|
5676
|
+
*/
|
|
5677
|
+
address: string;
|
|
5678
|
+
/**
|
|
5679
|
+
* The subnet prefix length.
|
|
5680
|
+
*/
|
|
5681
|
+
prefix: number;
|
|
5682
|
+
}
|
|
5683
|
+
export interface InterfaceVlan {
|
|
5684
|
+
/**
|
|
5685
|
+
* The VLAN interface's private IPv4 address in CIDR notation.
|
|
5686
|
+
*/
|
|
5687
|
+
ipamAddress?: string;
|
|
5688
|
+
/**
|
|
5689
|
+
* The VLAN's unique label. Must be between 1 and 64 characters.
|
|
5690
|
+
*/
|
|
5691
|
+
vlanLabel: string;
|
|
5692
|
+
}
|
|
5693
|
+
export interface InterfaceVpc {
|
|
5694
|
+
/**
|
|
5695
|
+
* IPv4 configuration for the VPC interface.
|
|
5696
|
+
*/
|
|
5697
|
+
ipv4: outputs.InterfaceVpcIpv4;
|
|
5698
|
+
/**
|
|
5699
|
+
* IPv6 assigned through `slaac` and `ranges`. If you create a VPC interface in a subnet with IPv6 and don’t specify `slaac` or `ranges`, a SLAAC range is added automatically. **NOTE: IPv6 VPCs may not currently be available to all users.**
|
|
5700
|
+
*/
|
|
5701
|
+
ipv6: outputs.InterfaceVpcIpv6;
|
|
5702
|
+
/**
|
|
5703
|
+
* The VPC subnet identifier for this interface.
|
|
5704
|
+
*/
|
|
5705
|
+
subnetId: number;
|
|
5706
|
+
}
|
|
5707
|
+
export interface InterfaceVpcIpv4 {
|
|
5708
|
+
/**
|
|
5709
|
+
* Specifies the IPv4 addresses to use in the VPC subnet. Each object in this list supports:
|
|
5710
|
+
*/
|
|
5711
|
+
addresses?: outputs.InterfaceVpcIpv4Address[];
|
|
5712
|
+
/**
|
|
5713
|
+
* (Computed) The IPv4 addresses assigned for use in the VPC subnet, calculated from the `addresses` input. Each object in this set supports:
|
|
5714
|
+
*/
|
|
5715
|
+
assignedAddresses: outputs.InterfaceVpcIpv4AssignedAddress[];
|
|
5716
|
+
/**
|
|
5717
|
+
* Assigned additional IPv6 ranges to use in the VPC subnet, calculated from `ranges` input.
|
|
5718
|
+
*/
|
|
5719
|
+
assignedRanges: outputs.InterfaceVpcIpv4AssignedRange[];
|
|
5720
|
+
/**
|
|
5721
|
+
* IPv4 ranges in CIDR notation (1.2.3.4/24) or prefix-only format (/24). Each object in this list supports:
|
|
5722
|
+
*/
|
|
5723
|
+
ranges?: outputs.InterfaceVpcIpv4Range[];
|
|
5724
|
+
}
|
|
5725
|
+
export interface InterfaceVpcIpv4Address {
|
|
5726
|
+
/**
|
|
5727
|
+
* The IPv4 address. Defaults to "auto" for automatic assignment.
|
|
5728
|
+
*/
|
|
5729
|
+
address: string;
|
|
5730
|
+
/**
|
|
5731
|
+
* The 1:1 NAT IPv4 address used to associate a public IPv4 address with the interface's VPC subnet IPv4 address.
|
|
5732
|
+
*/
|
|
5733
|
+
nat11Address?: string;
|
|
5734
|
+
/**
|
|
5735
|
+
* Whether this address is the primary address for the interface.
|
|
5736
|
+
*/
|
|
5737
|
+
primary?: boolean;
|
|
5738
|
+
}
|
|
5739
|
+
export interface InterfaceVpcIpv4AssignedAddress {
|
|
5740
|
+
/**
|
|
5741
|
+
* The assigned IPv4 address.
|
|
5742
|
+
*/
|
|
5743
|
+
address: string;
|
|
5744
|
+
/**
|
|
5745
|
+
* The assigned 1:1 NAT IPv4 address used to associate a public IPv4 address with the interface's VPC subnet IPv4 address.
|
|
5746
|
+
*/
|
|
5747
|
+
nat11Address: string;
|
|
5748
|
+
/**
|
|
5749
|
+
* Whether this address is the primary address for the interface.
|
|
5750
|
+
*/
|
|
5751
|
+
primary: boolean;
|
|
5752
|
+
}
|
|
5753
|
+
export interface InterfaceVpcIpv4AssignedRange {
|
|
5754
|
+
/**
|
|
5755
|
+
* The IPv6 network range in CIDR notation.
|
|
5756
|
+
*/
|
|
5757
|
+
range: string;
|
|
5758
|
+
}
|
|
5759
|
+
export interface InterfaceVpcIpv4Range {
|
|
5760
|
+
/**
|
|
5761
|
+
* The IPv4 range.
|
|
5762
|
+
*/
|
|
5763
|
+
range: string;
|
|
5764
|
+
}
|
|
5765
|
+
export interface InterfaceVpcIpv6 {
|
|
5766
|
+
/**
|
|
5767
|
+
* Assigned additional IPv6 ranges to use in the VPC subnet, calculated from `ranges` input.
|
|
5768
|
+
*/
|
|
5769
|
+
assignedRanges: outputs.InterfaceVpcIpv6AssignedRange[];
|
|
5770
|
+
/**
|
|
5771
|
+
* Assigned IPv6 SLAAC address ranges to use in the VPC subnet, calculated from `slaac` input.
|
|
5772
|
+
*/
|
|
5773
|
+
assignedSlaacs: outputs.InterfaceVpcIpv6AssignedSlaac[];
|
|
5774
|
+
/**
|
|
5775
|
+
* Indicates whether the IPv6 configuration profile interface is public. (Default `false`)
|
|
5776
|
+
*/
|
|
5777
|
+
isPublic: boolean;
|
|
5778
|
+
/**
|
|
5779
|
+
* Defines additional IPv6 network ranges.
|
|
5780
|
+
*/
|
|
5781
|
+
ranges?: outputs.InterfaceVpcIpv6Range[];
|
|
5782
|
+
/**
|
|
5783
|
+
* Defines IPv6 SLAAC address ranges. An address is automatically generated from the assigned /64 prefix using the Linode’s MAC address, just like on public IPv6 interfaces. Router advertisements (RA) are sent to the Linode, so standard SLAAC configuration works without any changes.
|
|
5784
|
+
*/
|
|
5785
|
+
slaacs?: outputs.InterfaceVpcIpv6Slaac[];
|
|
5786
|
+
}
|
|
5787
|
+
export interface InterfaceVpcIpv6AssignedRange {
|
|
5788
|
+
/**
|
|
5789
|
+
* The IPv6 network range in CIDR notation.
|
|
5790
|
+
*/
|
|
5791
|
+
range: string;
|
|
5792
|
+
}
|
|
5793
|
+
export interface InterfaceVpcIpv6AssignedSlaac {
|
|
5794
|
+
/**
|
|
5795
|
+
* The assigned IPv4 address.
|
|
5796
|
+
*/
|
|
5797
|
+
address: string;
|
|
5798
|
+
/**
|
|
5799
|
+
* The IPv6 network range in CIDR notation.
|
|
5800
|
+
*/
|
|
5801
|
+
range: string;
|
|
5802
|
+
}
|
|
5803
|
+
export interface InterfaceVpcIpv6Range {
|
|
5804
|
+
/**
|
|
5805
|
+
* The IPv6 network range in CIDR notation.
|
|
5806
|
+
*/
|
|
5807
|
+
range: string;
|
|
5808
|
+
}
|
|
5809
|
+
export interface InterfaceVpcIpv6Slaac {
|
|
5810
|
+
/**
|
|
5811
|
+
* The IPv6 network range in CIDR notation.
|
|
5812
|
+
*/
|
|
5813
|
+
range: string;
|
|
5814
|
+
}
|
|
5409
5815
|
export interface LkeClusterControlPlane {
|
|
5410
5816
|
/**
|
|
5411
5817
|
* Defines the ACL configuration for an LKE cluster's control plane.
|
|
@@ -6057,15 +6463,25 @@ export interface VpcSubnetIpv6 {
|
|
|
6057
6463
|
}
|
|
6058
6464
|
export interface VpcSubnetLinode {
|
|
6059
6465
|
/**
|
|
6060
|
-
*
|
|
6466
|
+
* ID of the interface.
|
|
6061
6467
|
*/
|
|
6062
6468
|
id: number;
|
|
6469
|
+
/**
|
|
6470
|
+
* A list of networking interfaces objects.
|
|
6471
|
+
*/
|
|
6063
6472
|
interfaces: outputs.VpcSubnetLinodeInterface[];
|
|
6064
6473
|
}
|
|
6065
6474
|
export interface VpcSubnetLinodeInterface {
|
|
6475
|
+
/**
|
|
6476
|
+
* Whether the Interface is actively in use.
|
|
6477
|
+
*/
|
|
6066
6478
|
active: boolean;
|
|
6067
6479
|
/**
|
|
6068
|
-
*
|
|
6480
|
+
* ID of Linode Config that the interface is associated with. `null` for a Linode Interface.
|
|
6481
|
+
*/
|
|
6482
|
+
configId: number;
|
|
6483
|
+
/**
|
|
6484
|
+
* ID of the interface.
|
|
6069
6485
|
*/
|
|
6070
6486
|
id: number;
|
|
6071
6487
|
}
|
package/volume.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
66
66
|
*/
|
|
67
67
|
static isInstance(obj: any): obj is Volume;
|
|
68
68
|
/**
|
|
69
|
-
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
|
|
69
|
+
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
|
|
70
70
|
*/
|
|
71
71
|
readonly encryption: pulumi.Output<string>;
|
|
72
72
|
/**
|
|
@@ -118,7 +118,7 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
118
118
|
*/
|
|
119
119
|
export interface VolumeState {
|
|
120
120
|
/**
|
|
121
|
-
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
|
|
121
|
+
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
|
|
122
122
|
*/
|
|
123
123
|
encryption?: pulumi.Input<string>;
|
|
124
124
|
/**
|
|
@@ -162,7 +162,7 @@ export interface VolumeState {
|
|
|
162
162
|
*/
|
|
163
163
|
export interface VolumeArgs {
|
|
164
164
|
/**
|
|
165
|
-
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
|
|
165
|
+
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
|
|
166
166
|
*/
|
|
167
167
|
encryption?: pulumi.Input<string>;
|
|
168
168
|
/**
|
package/vpcSubnet.d.ts
CHANGED
|
@@ -97,7 +97,7 @@ export declare class VpcSubnet extends pulumi.CustomResource {
|
|
|
97
97
|
*/
|
|
98
98
|
readonly label: pulumi.Output<string>;
|
|
99
99
|
/**
|
|
100
|
-
* A list of Linode
|
|
100
|
+
* A list of Linode that added to this subnet.
|
|
101
101
|
*/
|
|
102
102
|
readonly linodes: pulumi.Output<outputs.VpcSubnetLinode[]>;
|
|
103
103
|
/**
|
|
@@ -140,7 +140,7 @@ export interface VpcSubnetState {
|
|
|
140
140
|
*/
|
|
141
141
|
label?: pulumi.Input<string>;
|
|
142
142
|
/**
|
|
143
|
-
* A list of Linode
|
|
143
|
+
* A list of Linode that added to this subnet.
|
|
144
144
|
*/
|
|
145
145
|
linodes?: pulumi.Input<pulumi.Input<inputs.VpcSubnetLinode>[]>;
|
|
146
146
|
/**
|