@pulumi/linode 5.4.0-alpha.1759990883 → 5.4.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/databaseMysqlV2.d.ts +18 -0
- package/databaseMysqlV2.js +2 -0
- package/databaseMysqlV2.js.map +1 -1
- package/databasePostgresqlV2.d.ts +18 -0
- package/databasePostgresqlV2.js +2 -0
- package/databasePostgresqlV2.js.map +1 -1
- package/getDatabaseMysqlV2.d.ts +21 -0
- package/getDatabaseMysqlV2.js +20 -0
- package/getDatabaseMysqlV2.js.map +1 -1
- package/getDatabasePostgresqlV2.d.ts +21 -0
- package/getDatabasePostgresqlV2.js +20 -0
- package/getDatabasePostgresqlV2.js.map +1 -1
- package/getDatabases.d.ts +20 -0
- package/getDatabases.js +20 -0
- package/getDatabases.js.map +1 -1
- package/getNodeBalancer.d.ts +1 -0
- package/getNodeBalancer.js.map +1 -1
- package/getNodeBalancerNode.d.ts +8 -0
- package/getNodeBalancerNode.js.map +1 -1
- package/getNodebalancerVpc.d.ts +88 -0
- package/getNodebalancerVpc.js +64 -0
- package/getNodebalancerVpc.js.map +1 -0
- package/getNodebalancerVpcs.d.ts +154 -0
- package/getNodebalancerVpcs.js +120 -0
- package/getNodebalancerVpcs.js.map +1 -0
- package/getUser.d.ts +0 -3
- package/getUser.js +0 -2
- package/getUser.js.map +1 -1
- package/getVpc.d.ts +29 -0
- package/getVpc.js +24 -0
- package/getVpc.js.map +1 -1
- package/getVpcIps.d.ts +25 -6
- package/getVpcIps.js +24 -6
- package/getVpcIps.js.map +1 -1
- package/getVpcSubnet.d.ts +17 -0
- package/getVpcSubnet.js +16 -0
- package/getVpcSubnet.js.map +1 -1
- package/getVpcSubnets.d.ts +16 -0
- package/getVpcSubnets.js +16 -0
- package/getVpcSubnets.js.map +1 -1
- package/getVpcs.d.ts +16 -0
- package/getVpcs.js +16 -0
- package/getVpcs.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +8 -2
- package/index.js.map +1 -1
- package/nodeBalancer.d.ts +14 -0
- package/nodeBalancer.js +4 -0
- package/nodeBalancer.js.map +1 -1
- package/nodeBalancerNode.d.ts +20 -0
- package/nodeBalancerNode.js +4 -0
- package/nodeBalancerNode.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +294 -86
- package/types/output.d.ts +341 -55
- package/user.d.ts +0 -14
- package/user.js +0 -4
- package/user.js.map +1 -1
- package/vpc.d.ts +48 -0
- package/vpc.js +30 -0
- package/vpc.js.map +1 -1
- package/vpcSubnet.d.ts +57 -5
- package/vpcSubnet.js +36 -3
- package/vpcSubnet.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -27,6 +27,20 @@ export interface DatabaseMysqlV2PendingUpdate {
|
|
|
27
27
|
description: pulumi.Input<string>;
|
|
28
28
|
plannedFor: pulumi.Input<string>;
|
|
29
29
|
}
|
|
30
|
+
export interface DatabaseMysqlV2PrivateNetwork {
|
|
31
|
+
/**
|
|
32
|
+
* Set to `true` to allow clients outside of the VPC to connect to the database using a public IP address.
|
|
33
|
+
*/
|
|
34
|
+
publicAccess?: pulumi.Input<boolean>;
|
|
35
|
+
/**
|
|
36
|
+
* The ID of the VPC subnet to restrict access to this database using.
|
|
37
|
+
*/
|
|
38
|
+
subnetId: pulumi.Input<number>;
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
41
|
+
*/
|
|
42
|
+
vpcId: pulumi.Input<number>;
|
|
43
|
+
}
|
|
30
44
|
export interface DatabaseMysqlV2Timeouts {
|
|
31
45
|
/**
|
|
32
46
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
@@ -74,6 +88,20 @@ export interface DatabasePostgresqlV2PendingUpdate {
|
|
|
74
88
|
description: pulumi.Input<string>;
|
|
75
89
|
plannedFor: pulumi.Input<string>;
|
|
76
90
|
}
|
|
91
|
+
export interface DatabasePostgresqlV2PrivateNetwork {
|
|
92
|
+
/**
|
|
93
|
+
* Set to `true` to allow clients outside of the VPC to connect to the database using a public IP address.
|
|
94
|
+
*/
|
|
95
|
+
publicAccess?: pulumi.Input<boolean>;
|
|
96
|
+
/**
|
|
97
|
+
* The ID of the VPC subnet to restrict access to this database using.
|
|
98
|
+
*/
|
|
99
|
+
subnetId: pulumi.Input<number>;
|
|
100
|
+
/**
|
|
101
|
+
* The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
102
|
+
*/
|
|
103
|
+
vpcId: pulumi.Input<number>;
|
|
104
|
+
}
|
|
77
105
|
export interface DatabasePostgresqlV2Timeouts {
|
|
78
106
|
/**
|
|
79
107
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
@@ -661,6 +689,10 @@ export interface GetDatabasesDatabase {
|
|
|
661
689
|
* A unique, user-defined string referring to the Managed Database.
|
|
662
690
|
*/
|
|
663
691
|
label?: string;
|
|
692
|
+
/**
|
|
693
|
+
* Restricts access to this database using a virtual private cloud (VPC) that you've configured in the region where the database will live.
|
|
694
|
+
*/
|
|
695
|
+
privateNetwork?: inputs.GetDatabasesDatabasePrivateNetwork;
|
|
664
696
|
/**
|
|
665
697
|
* The region to use for the Managed Database.
|
|
666
698
|
*/
|
|
@@ -731,6 +763,10 @@ export interface GetDatabasesDatabaseArgs {
|
|
|
731
763
|
* A unique, user-defined string referring to the Managed Database.
|
|
732
764
|
*/
|
|
733
765
|
label?: pulumi.Input<string>;
|
|
766
|
+
/**
|
|
767
|
+
* Restricts access to this database using a virtual private cloud (VPC) that you've configured in the region where the database will live.
|
|
768
|
+
*/
|
|
769
|
+
privateNetwork?: pulumi.Input<inputs.GetDatabasesDatabasePrivateNetworkArgs>;
|
|
734
770
|
/**
|
|
735
771
|
* The region to use for the Managed Database.
|
|
736
772
|
*/
|
|
@@ -760,6 +796,34 @@ export interface GetDatabasesDatabaseArgs {
|
|
|
760
796
|
*/
|
|
761
797
|
version?: pulumi.Input<string>;
|
|
762
798
|
}
|
|
799
|
+
export interface GetDatabasesDatabasePrivateNetwork {
|
|
800
|
+
/**
|
|
801
|
+
* If true, clients outside of the VPC can connect to the database using a public IP address.
|
|
802
|
+
*/
|
|
803
|
+
publicAccess?: boolean;
|
|
804
|
+
/**
|
|
805
|
+
* The ID of the VPC subnet to restrict access to this database using.
|
|
806
|
+
*/
|
|
807
|
+
subnetId?: number;
|
|
808
|
+
/**
|
|
809
|
+
* The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
810
|
+
*/
|
|
811
|
+
vpcId?: number;
|
|
812
|
+
}
|
|
813
|
+
export interface GetDatabasesDatabasePrivateNetworkArgs {
|
|
814
|
+
/**
|
|
815
|
+
* If true, clients outside of the VPC can connect to the database using a public IP address.
|
|
816
|
+
*/
|
|
817
|
+
publicAccess?: pulumi.Input<boolean>;
|
|
818
|
+
/**
|
|
819
|
+
* The ID of the VPC subnet to restrict access to this database using.
|
|
820
|
+
*/
|
|
821
|
+
subnetId?: pulumi.Input<number>;
|
|
822
|
+
/**
|
|
823
|
+
* The ID of the virtual private cloud (VPC) to restrict access to this database using.
|
|
824
|
+
*/
|
|
825
|
+
vpcId?: pulumi.Input<number>;
|
|
826
|
+
}
|
|
763
827
|
export interface GetDatabasesFilter {
|
|
764
828
|
/**
|
|
765
829
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -3240,6 +3304,34 @@ export interface GetNodebalancerConfigsNodebalancerConfigNodeStatusArgs {
|
|
|
3240
3304
|
*/
|
|
3241
3305
|
up: pulumi.Input<number>;
|
|
3242
3306
|
}
|
|
3307
|
+
export interface GetNodebalancerVpcsFilter {
|
|
3308
|
+
/**
|
|
3309
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
3310
|
+
*/
|
|
3311
|
+
matchBy?: string;
|
|
3312
|
+
/**
|
|
3313
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
3314
|
+
*/
|
|
3315
|
+
name: string;
|
|
3316
|
+
/**
|
|
3317
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
3318
|
+
*/
|
|
3319
|
+
values: string[];
|
|
3320
|
+
}
|
|
3321
|
+
export interface GetNodebalancerVpcsFilterArgs {
|
|
3322
|
+
/**
|
|
3323
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
3324
|
+
*/
|
|
3325
|
+
matchBy?: pulumi.Input<string>;
|
|
3326
|
+
/**
|
|
3327
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
3328
|
+
*/
|
|
3329
|
+
name: pulumi.Input<string>;
|
|
3330
|
+
/**
|
|
3331
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
3332
|
+
*/
|
|
3333
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
3334
|
+
}
|
|
3243
3335
|
export interface GetNodebalancersFilter {
|
|
3244
3336
|
/**
|
|
3245
3337
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -4370,34 +4462,6 @@ export interface GetUserNodebalancerGrantArgs {
|
|
|
4370
4462
|
*/
|
|
4371
4463
|
permissions: pulumi.Input<string>;
|
|
4372
4464
|
}
|
|
4373
|
-
export interface GetUserPlacementGroupGrant {
|
|
4374
|
-
/**
|
|
4375
|
-
* The ID of entity this grant applies to.
|
|
4376
|
-
*/
|
|
4377
|
-
id: number;
|
|
4378
|
-
/**
|
|
4379
|
-
* The current label of the entity this grant applies to, for display purposes.
|
|
4380
|
-
*/
|
|
4381
|
-
label: string;
|
|
4382
|
-
/**
|
|
4383
|
-
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
4384
|
-
*/
|
|
4385
|
-
permissions: string;
|
|
4386
|
-
}
|
|
4387
|
-
export interface GetUserPlacementGroupGrantArgs {
|
|
4388
|
-
/**
|
|
4389
|
-
* The ID of entity this grant applies to.
|
|
4390
|
-
*/
|
|
4391
|
-
id: pulumi.Input<number>;
|
|
4392
|
-
/**
|
|
4393
|
-
* The current label of the entity this grant applies to, for display purposes.
|
|
4394
|
-
*/
|
|
4395
|
-
label: pulumi.Input<string>;
|
|
4396
|
-
/**
|
|
4397
|
-
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
4398
|
-
*/
|
|
4399
|
-
permissions: pulumi.Input<string>;
|
|
4400
|
-
}
|
|
4401
4465
|
export interface GetUserStackscriptGrant {
|
|
4402
4466
|
/**
|
|
4403
4467
|
* The ID of entity this grant applies to.
|
|
@@ -4555,10 +4619,6 @@ export interface GetUsersUser {
|
|
|
4555
4619
|
* The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
|
|
4556
4620
|
*/
|
|
4557
4621
|
passwordCreated?: string;
|
|
4558
|
-
/**
|
|
4559
|
-
* A set containing all of the user's active grants.
|
|
4560
|
-
*/
|
|
4561
|
-
placementGroupGrants?: inputs.GetUsersUserPlacementGroupGrant[];
|
|
4562
4622
|
/**
|
|
4563
4623
|
* If true, this User must be granted access to perform actions or access entities on this Account.
|
|
4564
4624
|
*/
|
|
@@ -4641,10 +4701,6 @@ export interface GetUsersUserArgs {
|
|
|
4641
4701
|
* The date and time when this User’s current password was created. User passwords are first created during the Account sign-up process, and updated using the Reset Password webpage. null if this User has not created a password yet.
|
|
4642
4702
|
*/
|
|
4643
4703
|
passwordCreated?: pulumi.Input<string>;
|
|
4644
|
-
/**
|
|
4645
|
-
* A set containing all of the user's active grants.
|
|
4646
|
-
*/
|
|
4647
|
-
placementGroupGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserPlacementGroupGrantArgs>[]>;
|
|
4648
4704
|
/**
|
|
4649
4705
|
* If true, this User must be granted access to perform actions or access entities on this Account.
|
|
4650
4706
|
*/
|
|
@@ -4799,10 +4855,6 @@ export interface GetUsersUserGlobalGrant {
|
|
|
4799
4855
|
* If true, this User may add NodeBalancers.
|
|
4800
4856
|
*/
|
|
4801
4857
|
addNodebalancers: boolean;
|
|
4802
|
-
/**
|
|
4803
|
-
* If true, this User may add Placement Groups.
|
|
4804
|
-
*/
|
|
4805
|
-
addPlacementGroups: boolean;
|
|
4806
4858
|
addStackscripts: boolean;
|
|
4807
4859
|
/**
|
|
4808
4860
|
* If true, this User may add Volumes.
|
|
@@ -4854,10 +4906,6 @@ export interface GetUsersUserGlobalGrantArgs {
|
|
|
4854
4906
|
* If true, this User may add NodeBalancers.
|
|
4855
4907
|
*/
|
|
4856
4908
|
addNodebalancers: pulumi.Input<boolean>;
|
|
4857
|
-
/**
|
|
4858
|
-
* If true, this User may add Placement Groups.
|
|
4859
|
-
*/
|
|
4860
|
-
addPlacementGroups: pulumi.Input<boolean>;
|
|
4861
4909
|
addStackscripts: pulumi.Input<boolean>;
|
|
4862
4910
|
/**
|
|
4863
4911
|
* If true, this User may add Volumes.
|
|
@@ -4988,34 +5036,6 @@ export interface GetUsersUserNodebalancerGrantArgs {
|
|
|
4988
5036
|
*/
|
|
4989
5037
|
permissions: pulumi.Input<string>;
|
|
4990
5038
|
}
|
|
4991
|
-
export interface GetUsersUserPlacementGroupGrant {
|
|
4992
|
-
/**
|
|
4993
|
-
* The ID of entity this grant applies to.
|
|
4994
|
-
*/
|
|
4995
|
-
id: number;
|
|
4996
|
-
/**
|
|
4997
|
-
* The current label of the entity this grant applies to, for display purposes.
|
|
4998
|
-
*/
|
|
4999
|
-
label: string;
|
|
5000
|
-
/**
|
|
5001
|
-
* The level of access this User has to this entity. If null, this User has no access.
|
|
5002
|
-
*/
|
|
5003
|
-
permissions: string;
|
|
5004
|
-
}
|
|
5005
|
-
export interface GetUsersUserPlacementGroupGrantArgs {
|
|
5006
|
-
/**
|
|
5007
|
-
* The ID of entity this grant applies to.
|
|
5008
|
-
*/
|
|
5009
|
-
id: pulumi.Input<number>;
|
|
5010
|
-
/**
|
|
5011
|
-
* The current label of the entity this grant applies to, for display purposes.
|
|
5012
|
-
*/
|
|
5013
|
-
label: pulumi.Input<string>;
|
|
5014
|
-
/**
|
|
5015
|
-
* The level of access this User has to this entity. If null, this User has no access.
|
|
5016
|
-
*/
|
|
5017
|
-
permissions: pulumi.Input<string>;
|
|
5018
|
-
}
|
|
5019
5039
|
export interface GetUsersUserStackscriptGrant {
|
|
5020
5040
|
/**
|
|
5021
5041
|
* The ID of entity this grant applies to.
|
|
@@ -5445,6 +5465,18 @@ export interface GetVpcIpsVpcIp {
|
|
|
5445
5465
|
* The globally general API entity identifier for the Linode interface.
|
|
5446
5466
|
*/
|
|
5447
5467
|
interfaceId?: number;
|
|
5468
|
+
/**
|
|
5469
|
+
* The addresses within the prefix that the interface is associated with.
|
|
5470
|
+
*/
|
|
5471
|
+
ipv6Addresses?: inputs.GetVpcIpsVpcIpIpv6Address[];
|
|
5472
|
+
/**
|
|
5473
|
+
* The isPublic setting for the interface associated with this address.
|
|
5474
|
+
*/
|
|
5475
|
+
ipv6IsPublic?: boolean;
|
|
5476
|
+
/**
|
|
5477
|
+
* The /64 prefix, in CIDR notation, assigned to an interface.
|
|
5478
|
+
*/
|
|
5479
|
+
ipv6Range?: string;
|
|
5448
5480
|
/**
|
|
5449
5481
|
* The identifier for the Linode the VPC interface currently belongs to.
|
|
5450
5482
|
*/
|
|
@@ -5501,6 +5533,18 @@ export interface GetVpcIpsVpcIpArgs {
|
|
|
5501
5533
|
* The globally general API entity identifier for the Linode interface.
|
|
5502
5534
|
*/
|
|
5503
5535
|
interfaceId?: pulumi.Input<number>;
|
|
5536
|
+
/**
|
|
5537
|
+
* The addresses within the prefix that the interface is associated with.
|
|
5538
|
+
*/
|
|
5539
|
+
ipv6Addresses?: pulumi.Input<pulumi.Input<inputs.GetVpcIpsVpcIpIpv6AddressArgs>[]>;
|
|
5540
|
+
/**
|
|
5541
|
+
* The isPublic setting for the interface associated with this address.
|
|
5542
|
+
*/
|
|
5543
|
+
ipv6IsPublic?: pulumi.Input<boolean>;
|
|
5544
|
+
/**
|
|
5545
|
+
* The /64 prefix, in CIDR notation, assigned to an interface.
|
|
5546
|
+
*/
|
|
5547
|
+
ipv6Range?: pulumi.Input<string>;
|
|
5504
5548
|
/**
|
|
5505
5549
|
* The identifier for the Linode the VPC interface currently belongs to.
|
|
5506
5550
|
*/
|
|
@@ -5532,6 +5576,18 @@ export interface GetVpcIpsVpcIpArgs {
|
|
|
5532
5576
|
*/
|
|
5533
5577
|
vpcId?: pulumi.Input<number>;
|
|
5534
5578
|
}
|
|
5579
|
+
export interface GetVpcIpsVpcIpIpv6Address {
|
|
5580
|
+
/**
|
|
5581
|
+
* A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
|
|
5582
|
+
*/
|
|
5583
|
+
slaacAddress?: string;
|
|
5584
|
+
}
|
|
5585
|
+
export interface GetVpcIpsVpcIpIpv6AddressArgs {
|
|
5586
|
+
/**
|
|
5587
|
+
* A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
|
|
5588
|
+
*/
|
|
5589
|
+
slaacAddress?: pulumi.Input<string>;
|
|
5590
|
+
}
|
|
5535
5591
|
export interface GetVpcSubnetsFilter {
|
|
5536
5592
|
/**
|
|
5537
5593
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -5573,6 +5629,10 @@ export interface GetVpcSubnetsVpcSubnet {
|
|
|
5573
5629
|
* The IPv4 range of this subnet in CIDR format.
|
|
5574
5630
|
*/
|
|
5575
5631
|
ipv4?: string;
|
|
5632
|
+
/**
|
|
5633
|
+
* The IPv6 ranges of this subnet.
|
|
5634
|
+
*/
|
|
5635
|
+
ipv6s?: inputs.GetVpcSubnetsVpcSubnetIpv6[];
|
|
5576
5636
|
/**
|
|
5577
5637
|
* The label of the VPC subnet.
|
|
5578
5638
|
*/
|
|
@@ -5599,6 +5659,10 @@ export interface GetVpcSubnetsVpcSubnetArgs {
|
|
|
5599
5659
|
* The IPv4 range of this subnet in CIDR format.
|
|
5600
5660
|
*/
|
|
5601
5661
|
ipv4?: pulumi.Input<string>;
|
|
5662
|
+
/**
|
|
5663
|
+
* The IPv6 ranges of this subnet.
|
|
5664
|
+
*/
|
|
5665
|
+
ipv6s?: pulumi.Input<pulumi.Input<inputs.GetVpcSubnetsVpcSubnetIpv6Args>[]>;
|
|
5602
5666
|
/**
|
|
5603
5667
|
* The label of the VPC subnet.
|
|
5604
5668
|
*/
|
|
@@ -5612,6 +5676,18 @@ export interface GetVpcSubnetsVpcSubnetArgs {
|
|
|
5612
5676
|
*/
|
|
5613
5677
|
updated?: pulumi.Input<string>;
|
|
5614
5678
|
}
|
|
5679
|
+
export interface GetVpcSubnetsVpcSubnetIpv6 {
|
|
5680
|
+
/**
|
|
5681
|
+
* An IPv6 range allocated to this subnet.
|
|
5682
|
+
*/
|
|
5683
|
+
range?: string;
|
|
5684
|
+
}
|
|
5685
|
+
export interface GetVpcSubnetsVpcSubnetIpv6Args {
|
|
5686
|
+
/**
|
|
5687
|
+
* An IPv6 range allocated to this subnet.
|
|
5688
|
+
*/
|
|
5689
|
+
range?: pulumi.Input<string>;
|
|
5690
|
+
}
|
|
5615
5691
|
export interface GetVpcSubnetsVpcSubnetLinode {
|
|
5616
5692
|
/**
|
|
5617
5693
|
* The unique id of the VPC subnet.
|
|
@@ -5681,6 +5757,10 @@ export interface GetVpcsVpc {
|
|
|
5681
5757
|
* The unique id of this VPC.
|
|
5682
5758
|
*/
|
|
5683
5759
|
id: string;
|
|
5760
|
+
/**
|
|
5761
|
+
* A list of IPv6 allocations under this VPC.
|
|
5762
|
+
*/
|
|
5763
|
+
ipv6s?: inputs.GetVpcsVpcIpv6[];
|
|
5684
5764
|
/**
|
|
5685
5765
|
* The label of the VPC.
|
|
5686
5766
|
*/
|
|
@@ -5707,6 +5787,10 @@ export interface GetVpcsVpcArgs {
|
|
|
5707
5787
|
* The unique id of this VPC.
|
|
5708
5788
|
*/
|
|
5709
5789
|
id: pulumi.Input<string>;
|
|
5790
|
+
/**
|
|
5791
|
+
* A list of IPv6 allocations under this VPC.
|
|
5792
|
+
*/
|
|
5793
|
+
ipv6s?: pulumi.Input<pulumi.Input<inputs.GetVpcsVpcIpv6Args>[]>;
|
|
5710
5794
|
/**
|
|
5711
5795
|
* The label of the VPC.
|
|
5712
5796
|
*/
|
|
@@ -5720,6 +5804,18 @@ export interface GetVpcsVpcArgs {
|
|
|
5720
5804
|
*/
|
|
5721
5805
|
updated?: pulumi.Input<string>;
|
|
5722
5806
|
}
|
|
5807
|
+
export interface GetVpcsVpcIpv6 {
|
|
5808
|
+
/**
|
|
5809
|
+
* The IPv6 range assigned to this VPC.
|
|
5810
|
+
*/
|
|
5811
|
+
range?: string;
|
|
5812
|
+
}
|
|
5813
|
+
export interface GetVpcsVpcIpv6Args {
|
|
5814
|
+
/**
|
|
5815
|
+
* The IPv6 range assigned to this VPC.
|
|
5816
|
+
*/
|
|
5817
|
+
range?: pulumi.Input<string>;
|
|
5818
|
+
}
|
|
5723
5819
|
export interface ImageReplication {
|
|
5724
5820
|
/**
|
|
5725
5821
|
* The region of the image. See all regions [here](https://techdocs.akamai.com/linode-api/reference/get-regions).
|
|
@@ -6018,6 +6114,10 @@ export interface InstanceConfigInterface {
|
|
|
6018
6114
|
* The IPv4 configuration of the VPC interface.This attribute is only allowed for VPC interfaces.
|
|
6019
6115
|
*/
|
|
6020
6116
|
ipv4?: pulumi.Input<inputs.InstanceConfigInterfaceIpv4>;
|
|
6117
|
+
/**
|
|
6118
|
+
* The IPv6 configuration of the VPC interface. This attribute is only allowed for VPC interfaces.
|
|
6119
|
+
*/
|
|
6120
|
+
ipv6?: pulumi.Input<inputs.InstanceConfigInterfaceIpv6>;
|
|
6021
6121
|
/**
|
|
6022
6122
|
* The name of the VLAN to join. This field is only allowed and required for interfaces with the `vlan` purpose.
|
|
6023
6123
|
*/
|
|
@@ -6027,6 +6127,8 @@ export interface InstanceConfigInterface {
|
|
|
6027
6127
|
*
|
|
6028
6128
|
* * `ipv4` - (Optional) The IPv4 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose.
|
|
6029
6129
|
*
|
|
6130
|
+
* * `ipv6` - (Optional) The IPv6 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose. NOTE: IPv6 VPCs may not yet be available to all users.
|
|
6131
|
+
*
|
|
6030
6132
|
* The following computed attribute is available in a VPC interface:
|
|
6031
6133
|
*/
|
|
6032
6134
|
primary?: pulumi.Input<boolean>;
|
|
@@ -6053,6 +6155,48 @@ export interface InstanceConfigInterfaceIpv4 {
|
|
|
6053
6155
|
*/
|
|
6054
6156
|
vpc?: pulumi.Input<string>;
|
|
6055
6157
|
}
|
|
6158
|
+
export interface InstanceConfigInterfaceIpv6 {
|
|
6159
|
+
/**
|
|
6160
|
+
* If true, connections from the interface to IPv6 addresses outside the VPC, and connections from IPv6 addresses outside the VPC to the interface will be permitted. (Default: `false`)
|
|
6161
|
+
*
|
|
6162
|
+
* * `slaac` - (Optional) An array of SLAAC prefixes to use for this interface.
|
|
6163
|
+
*
|
|
6164
|
+
* * `range` - (Optional) An array of IPv6 ranges to use for this interface.
|
|
6165
|
+
*/
|
|
6166
|
+
isPublic?: pulumi.Input<boolean>;
|
|
6167
|
+
/**
|
|
6168
|
+
* A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
6169
|
+
*/
|
|
6170
|
+
ranges?: pulumi.Input<pulumi.Input<inputs.InstanceConfigInterfaceIpv6Range>[]>;
|
|
6171
|
+
/**
|
|
6172
|
+
* An array of SLAAC prefixes to use for this interface.
|
|
6173
|
+
*/
|
|
6174
|
+
slaacs?: pulumi.Input<pulumi.Input<inputs.InstanceConfigInterfaceIpv6Slaac>[]>;
|
|
6175
|
+
}
|
|
6176
|
+
export interface InstanceConfigInterfaceIpv6Range {
|
|
6177
|
+
/**
|
|
6178
|
+
* The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
6179
|
+
*/
|
|
6180
|
+
assignedRange?: pulumi.Input<string>;
|
|
6181
|
+
/**
|
|
6182
|
+
* A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
6183
|
+
*/
|
|
6184
|
+
range?: pulumi.Input<string>;
|
|
6185
|
+
}
|
|
6186
|
+
export interface InstanceConfigInterfaceIpv6Slaac {
|
|
6187
|
+
/**
|
|
6188
|
+
* The SLAAC address chosen for this interface.
|
|
6189
|
+
*/
|
|
6190
|
+
address?: pulumi.Input<string>;
|
|
6191
|
+
/**
|
|
6192
|
+
* The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
6193
|
+
*/
|
|
6194
|
+
assignedRange?: pulumi.Input<string>;
|
|
6195
|
+
/**
|
|
6196
|
+
* A SLAAC prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
6197
|
+
*/
|
|
6198
|
+
range?: pulumi.Input<string>;
|
|
6199
|
+
}
|
|
6056
6200
|
export interface InstanceDisk {
|
|
6057
6201
|
/**
|
|
6058
6202
|
* A list of SSH public keys to deploy for the root user on the newly created Linode. Only accepted if 'image' is provided.
|
|
@@ -6138,6 +6282,10 @@ export interface InstanceInterface {
|
|
|
6138
6282
|
* * **NOTE: IP reservation is not currently available to all users.**
|
|
6139
6283
|
*/
|
|
6140
6284
|
ipv4?: pulumi.Input<inputs.InstanceInterfaceIpv4>;
|
|
6285
|
+
/**
|
|
6286
|
+
* This Linode's IPv6 SLAAC addresses. This address is specific to a Linode, and may not be shared. The prefix (`/128`) is included in this attribute.
|
|
6287
|
+
*/
|
|
6288
|
+
ipv6?: pulumi.Input<inputs.InstanceInterfaceIpv6>;
|
|
6141
6289
|
/**
|
|
6142
6290
|
* The name of the VLAN to join. This field is only allowed and required for interfaces with the `vlan` purpose.
|
|
6143
6291
|
*/
|
|
@@ -6147,6 +6295,8 @@ export interface InstanceInterface {
|
|
|
6147
6295
|
*
|
|
6148
6296
|
* * `ipv4` - (Optional) The IPv4 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose.
|
|
6149
6297
|
*
|
|
6298
|
+
* * `ipv6` - (Optional) The IPv6 configuration of the VPC interface. This field is currently only allowed for interfaces with the `vpc` purpose. NOTE: IPv6 VPCs may not yet be available to all users.
|
|
6299
|
+
*
|
|
6150
6300
|
* The following computed attribute is available in a VPC interface:
|
|
6151
6301
|
*/
|
|
6152
6302
|
primary?: pulumi.Input<boolean>;
|
|
@@ -6173,6 +6323,48 @@ export interface InstanceInterfaceIpv4 {
|
|
|
6173
6323
|
*/
|
|
6174
6324
|
vpc?: pulumi.Input<string>;
|
|
6175
6325
|
}
|
|
6326
|
+
export interface InstanceInterfaceIpv6 {
|
|
6327
|
+
/**
|
|
6328
|
+
* If true, connections from the interface to IPv6 addresses outside the VPC, and connections from IPv6 addresses outside the VPC to the interface will be permitted. (Default: `false`)
|
|
6329
|
+
*
|
|
6330
|
+
* * `slaac` - (Optional) An array of SLAAC prefixes to use for this interface.
|
|
6331
|
+
*
|
|
6332
|
+
* * `range` - (Optional) An array of IPv6 ranges to use for this interface.
|
|
6333
|
+
*/
|
|
6334
|
+
isPublic?: pulumi.Input<boolean>;
|
|
6335
|
+
/**
|
|
6336
|
+
* A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
6337
|
+
*/
|
|
6338
|
+
ranges?: pulumi.Input<pulumi.Input<inputs.InstanceInterfaceIpv6Range>[]>;
|
|
6339
|
+
/**
|
|
6340
|
+
* An array of SLAAC prefixes to use for this interface.
|
|
6341
|
+
*/
|
|
6342
|
+
slaacs?: pulumi.Input<pulumi.Input<inputs.InstanceInterfaceIpv6Slaac>[]>;
|
|
6343
|
+
}
|
|
6344
|
+
export interface InstanceInterfaceIpv6Range {
|
|
6345
|
+
/**
|
|
6346
|
+
* The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
6347
|
+
*/
|
|
6348
|
+
assignedRange?: pulumi.Input<string>;
|
|
6349
|
+
/**
|
|
6350
|
+
* A prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
6351
|
+
*/
|
|
6352
|
+
range?: pulumi.Input<string>;
|
|
6353
|
+
}
|
|
6354
|
+
export interface InstanceInterfaceIpv6Slaac {
|
|
6355
|
+
/**
|
|
6356
|
+
* The SLAAC address chosen for this interface.
|
|
6357
|
+
*/
|
|
6358
|
+
address?: pulumi.Input<string>;
|
|
6359
|
+
/**
|
|
6360
|
+
* The value of `range` computed by the API. This is necessary when needing to access the range implicitly allocated using `auto`.
|
|
6361
|
+
*/
|
|
6362
|
+
assignedRange?: pulumi.Input<string>;
|
|
6363
|
+
/**
|
|
6364
|
+
* A SLAAC prefix to add to this interface, or `auto` for a new IPv6 prefix to be automatically allocated.
|
|
6365
|
+
*/
|
|
6366
|
+
range?: pulumi.Input<string>;
|
|
6367
|
+
}
|
|
6176
6368
|
export interface InstanceIpVpcNat11 {
|
|
6177
6369
|
/**
|
|
6178
6370
|
* The resulting IPv4 address.
|
|
@@ -6538,6 +6730,16 @@ export interface NodeBalancerTransfer {
|
|
|
6538
6730
|
*/
|
|
6539
6731
|
total: pulumi.Input<number>;
|
|
6540
6732
|
}
|
|
6733
|
+
export interface NodeBalancerVpc {
|
|
6734
|
+
/**
|
|
6735
|
+
* (Optional) A CIDR range for the VPC's IPv4 addresses. The NodeBalancer sources IP addresses from this range when routing traffic to the backend VPC nodes.
|
|
6736
|
+
*/
|
|
6737
|
+
ipv4Range?: pulumi.Input<string>;
|
|
6738
|
+
/**
|
|
6739
|
+
* (Required) The ID of a subnet to assign to this NodeBalancer.
|
|
6740
|
+
*/
|
|
6741
|
+
subnetId: pulumi.Input<number>;
|
|
6742
|
+
}
|
|
6541
6743
|
export interface ObjectStorageBucketCert {
|
|
6542
6744
|
/**
|
|
6543
6745
|
* The Base64 encoded and PEM formatted SSL certificate.
|
|
@@ -6736,10 +6938,6 @@ export interface UserGlobalGrants {
|
|
|
6736
6938
|
* If true, this User may add NodeBalancers.
|
|
6737
6939
|
*/
|
|
6738
6940
|
addNodebalancers?: pulumi.Input<boolean>;
|
|
6739
|
-
/**
|
|
6740
|
-
* If true, this User may add Placement Groups.
|
|
6741
|
-
*/
|
|
6742
|
-
addPlacementGroups?: pulumi.Input<boolean>;
|
|
6743
6941
|
/**
|
|
6744
6942
|
* If true, this User may add StackScripts.
|
|
6745
6943
|
*/
|
|
@@ -6801,16 +6999,6 @@ export interface UserNodebalancerGrant {
|
|
|
6801
6999
|
*/
|
|
6802
7000
|
permissions: pulumi.Input<string>;
|
|
6803
7001
|
}
|
|
6804
|
-
export interface UserPlacementGroupGrant {
|
|
6805
|
-
/**
|
|
6806
|
-
* The ID of the entity this grant applies to.
|
|
6807
|
-
*/
|
|
6808
|
-
id: pulumi.Input<number>;
|
|
6809
|
-
/**
|
|
6810
|
-
* The level of access this User has to this entity. If null, this User has no access.
|
|
6811
|
-
*/
|
|
6812
|
-
permissions: pulumi.Input<string>;
|
|
6813
|
-
}
|
|
6814
7002
|
export interface UserStackscriptGrant {
|
|
6815
7003
|
/**
|
|
6816
7004
|
* The ID of the entity this grant applies to.
|
|
@@ -6855,6 +7043,26 @@ export interface VolumeTimeouts {
|
|
|
6855
7043
|
*/
|
|
6856
7044
|
update?: pulumi.Input<string>;
|
|
6857
7045
|
}
|
|
7046
|
+
export interface VpcIpv6 {
|
|
7047
|
+
/**
|
|
7048
|
+
* The IPv6 range assigned to this VPC.
|
|
7049
|
+
*/
|
|
7050
|
+
allocatedRange?: pulumi.Input<string>;
|
|
7051
|
+
/**
|
|
7052
|
+
* The IPv6 range assigned to this VPC.
|
|
7053
|
+
*/
|
|
7054
|
+
range?: pulumi.Input<string>;
|
|
7055
|
+
}
|
|
7056
|
+
export interface VpcSubnetIpv6 {
|
|
7057
|
+
/**
|
|
7058
|
+
* The IPv6 range assigned to this subnet.
|
|
7059
|
+
*/
|
|
7060
|
+
allocatedRange?: pulumi.Input<string>;
|
|
7061
|
+
/**
|
|
7062
|
+
* An existing IPv6 prefix owned by the current account or a forward slash (/) followed by a valid prefix length. If unspecified, a range with the default prefix will be allocated for this VPC.
|
|
7063
|
+
*/
|
|
7064
|
+
range?: pulumi.Input<string>;
|
|
7065
|
+
}
|
|
6858
7066
|
export interface VpcSubnetLinode {
|
|
6859
7067
|
/**
|
|
6860
7068
|
* The ID of the VPC Subnet.
|