@pulumi/linode 4.3.0 → 4.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/getAccountLogins.d.ts +4 -2
- package/getAccountLogins.js +1 -0
- package/getAccountLogins.js.map +1 -1
- package/getAccountSettings.d.ts +0 -3
- package/getDatabaseBackups.d.ts +5 -3
- package/getDatabaseBackups.js +1 -0
- package/getDatabaseBackups.js.map +1 -1
- package/getDatabaseEngines.d.ts +4 -2
- package/getDatabaseEngines.js +1 -0
- package/getDatabaseEngines.js.map +1 -1
- package/getDatabases.d.ts +4 -15
- package/getDatabases.js +1 -1
- package/getDatabases.js.map +1 -1
- package/getImages.d.ts +4 -2
- package/getImages.js +1 -0
- package/getImages.js.map +1 -1
- package/getInstanceTypes.d.ts +4 -2
- package/getInstanceTypes.js +1 -0
- package/getInstanceTypes.js.map +1 -1
- package/getRegion.d.ts +4 -9
- package/getRegion.js +1 -1
- package/getRegion.js.map +1 -1
- package/getStackScripts.d.ts +4 -2
- package/getStackScripts.js +1 -0
- package/getStackScripts.js.map +1 -1
- package/getUser.d.ts +12 -29
- package/getUser.js +1 -26
- package/getUser.js.map +1 -1
- package/getVlans.d.ts +3 -4
- package/getVlans.js +1 -0
- package/getVlans.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +688 -0
- package/types/output.d.ts +30 -17
package/types/output.d.ts
CHANGED
|
@@ -857,12 +857,12 @@ export interface GetInstanceNetworkingIpv6Slaac {
|
|
|
857
857
|
type: string;
|
|
858
858
|
}
|
|
859
859
|
export interface GetInstanceTypeAddons {
|
|
860
|
-
backups: outputs.
|
|
860
|
+
backups: outputs.GetInstanceTypeAddonsBackup[];
|
|
861
861
|
}
|
|
862
|
-
export interface
|
|
863
|
-
|
|
862
|
+
export interface GetInstanceTypeAddonsBackup {
|
|
863
|
+
prices: outputs.GetInstanceTypeAddonsBackupPrice[];
|
|
864
864
|
}
|
|
865
|
-
export interface
|
|
865
|
+
export interface GetInstanceTypeAddonsBackupPrice {
|
|
866
866
|
hourly: number;
|
|
867
867
|
monthly: number;
|
|
868
868
|
}
|
|
@@ -1457,7 +1457,7 @@ export interface GetStackScriptsStackscript {
|
|
|
1457
1457
|
/**
|
|
1458
1458
|
* The unique ID of the StackScript.
|
|
1459
1459
|
*/
|
|
1460
|
-
id:
|
|
1460
|
+
id: string;
|
|
1461
1461
|
/**
|
|
1462
1462
|
* An array of Image IDs representing the Images that this StackScript is compatible for deploying with.
|
|
1463
1463
|
*/
|
|
@@ -1521,50 +1521,63 @@ export interface GetStackScriptsStackscriptUserDefinedField {
|
|
|
1521
1521
|
*/
|
|
1522
1522
|
oneOf: string;
|
|
1523
1523
|
}
|
|
1524
|
+
export interface GetUserDatabaseGrant {
|
|
1525
|
+
id: number;
|
|
1526
|
+
label: string;
|
|
1527
|
+
permissions: string;
|
|
1528
|
+
}
|
|
1524
1529
|
export interface GetUserDomainGrant {
|
|
1525
1530
|
id: number;
|
|
1531
|
+
label: string;
|
|
1526
1532
|
permissions: string;
|
|
1527
1533
|
}
|
|
1528
1534
|
export interface GetUserFirewallGrant {
|
|
1529
1535
|
id: number;
|
|
1536
|
+
label: string;
|
|
1530
1537
|
permissions: string;
|
|
1531
1538
|
}
|
|
1532
1539
|
export interface GetUserGlobalGrant {
|
|
1533
|
-
accountAccess
|
|
1534
|
-
addDatabases
|
|
1535
|
-
addDomains
|
|
1536
|
-
addFirewalls
|
|
1537
|
-
addImages
|
|
1538
|
-
addLinodes
|
|
1539
|
-
addLongview
|
|
1540
|
-
addNodebalancers
|
|
1541
|
-
addStackscripts
|
|
1542
|
-
addVolumes
|
|
1543
|
-
cancelAccount
|
|
1544
|
-
longviewSubscription
|
|
1540
|
+
accountAccess: string;
|
|
1541
|
+
addDatabases: boolean;
|
|
1542
|
+
addDomains: boolean;
|
|
1543
|
+
addFirewalls: boolean;
|
|
1544
|
+
addImages: boolean;
|
|
1545
|
+
addLinodes: boolean;
|
|
1546
|
+
addLongview: boolean;
|
|
1547
|
+
addNodebalancers: boolean;
|
|
1548
|
+
addStackscripts: boolean;
|
|
1549
|
+
addVolumes: boolean;
|
|
1550
|
+
cancelAccount: boolean;
|
|
1551
|
+
longviewSubscription: boolean;
|
|
1545
1552
|
}
|
|
1546
1553
|
export interface GetUserImageGrant {
|
|
1547
1554
|
id: number;
|
|
1555
|
+
label: string;
|
|
1548
1556
|
permissions: string;
|
|
1549
1557
|
}
|
|
1550
1558
|
export interface GetUserLinodeGrant {
|
|
1551
1559
|
id: number;
|
|
1560
|
+
label: string;
|
|
1552
1561
|
permissions: string;
|
|
1553
1562
|
}
|
|
1554
1563
|
export interface GetUserLongviewGrant {
|
|
1555
1564
|
id: number;
|
|
1565
|
+
label: string;
|
|
1556
1566
|
permissions: string;
|
|
1557
1567
|
}
|
|
1558
1568
|
export interface GetUserNodebalancerGrant {
|
|
1559
1569
|
id: number;
|
|
1570
|
+
label: string;
|
|
1560
1571
|
permissions: string;
|
|
1561
1572
|
}
|
|
1562
1573
|
export interface GetUserStackscriptGrant {
|
|
1563
1574
|
id: number;
|
|
1575
|
+
label: string;
|
|
1564
1576
|
permissions: string;
|
|
1565
1577
|
}
|
|
1566
1578
|
export interface GetUserVolumeGrant {
|
|
1567
1579
|
id: number;
|
|
1580
|
+
label: string;
|
|
1568
1581
|
permissions: string;
|
|
1569
1582
|
}
|
|
1570
1583
|
export interface GetVlansFilter {
|