@pulumi/linode 4.4.0 → 4.4.2
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/config/vars.d.ts +4 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/databaseAccessControls.d.ts +1 -1
- package/databaseAccessControls.js +1 -1
- package/databaseMysql.d.ts +5 -5
- package/databaseMysql.js +2 -2
- package/getDatabaseMysql.d.ts +8 -1
- package/getDatabaseMysql.js.map +1 -1
- package/getDatabasePostgresql.d.ts +7 -0
- package/getDatabasePostgresql.js.map +1 -1
- package/getImage.d.ts +1 -0
- package/getImage.js.map +1 -1
- package/getInstanceNetworking.d.ts +22 -0
- package/getInstanceNetworking.js +22 -0
- package/getInstanceNetworking.js.map +1 -1
- package/getUser.d.ts +10 -79
- package/getUser.js.map +1 -1
- package/getUsers.d.ts +108 -0
- package/getUsers.js +83 -0
- package/getUsers.js.map +1 -0
- package/image.d.ts +20 -0
- package/image.js +4 -0
- package/image.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +5 -2
- package/index.js.map +1 -1
- package/instance.d.ts +20 -0
- package/instance.js +4 -0
- package/instance.js.map +1 -1
- package/package.json +2 -2
- package/provider.d.ts +4 -0
- package/provider.js +2 -1
- package/provider.js.map +1 -1
- package/types/input.d.ts +629 -0
- package/types/output.d.ts +350 -0
package/types/input.d.ts
CHANGED
|
@@ -501,6 +501,7 @@ export interface GetImagesFilterArgs {
|
|
|
501
501
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
502
502
|
}
|
|
503
503
|
export interface GetImagesImage {
|
|
504
|
+
capabilities?: string[];
|
|
504
505
|
/**
|
|
505
506
|
* When this Image was created.
|
|
506
507
|
*/
|
|
@@ -548,6 +549,7 @@ export interface GetImagesImage {
|
|
|
548
549
|
vendor?: string;
|
|
549
550
|
}
|
|
550
551
|
export interface GetImagesImageArgs {
|
|
552
|
+
capabilities?: pulumi.Input<pulumi.Input<string>[]>;
|
|
551
553
|
/**
|
|
552
554
|
* When this Image was created.
|
|
553
555
|
*/
|
|
@@ -1055,93 +1057,717 @@ export interface GetStackScriptsStackscriptUserDefinedFieldArgs {
|
|
|
1055
1057
|
oneOf: pulumi.Input<string>;
|
|
1056
1058
|
}
|
|
1057
1059
|
export interface GetUserDatabaseGrant {
|
|
1060
|
+
/**
|
|
1061
|
+
* The ID of entity this grant applies to.
|
|
1062
|
+
*/
|
|
1058
1063
|
id: number;
|
|
1064
|
+
/**
|
|
1065
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1066
|
+
*/
|
|
1059
1067
|
label: string;
|
|
1068
|
+
/**
|
|
1069
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1070
|
+
*/
|
|
1060
1071
|
permissions: string;
|
|
1061
1072
|
}
|
|
1062
1073
|
export interface GetUserDatabaseGrantArgs {
|
|
1074
|
+
/**
|
|
1075
|
+
* The ID of entity this grant applies to.
|
|
1076
|
+
*/
|
|
1063
1077
|
id: pulumi.Input<number>;
|
|
1078
|
+
/**
|
|
1079
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1080
|
+
*/
|
|
1064
1081
|
label: pulumi.Input<string>;
|
|
1082
|
+
/**
|
|
1083
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1084
|
+
*/
|
|
1065
1085
|
permissions: pulumi.Input<string>;
|
|
1066
1086
|
}
|
|
1067
1087
|
export interface GetUserDomainGrant {
|
|
1088
|
+
/**
|
|
1089
|
+
* The ID of entity this grant applies to.
|
|
1090
|
+
*/
|
|
1068
1091
|
id: number;
|
|
1092
|
+
/**
|
|
1093
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1094
|
+
*/
|
|
1069
1095
|
label: string;
|
|
1096
|
+
/**
|
|
1097
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1098
|
+
*/
|
|
1070
1099
|
permissions: string;
|
|
1071
1100
|
}
|
|
1072
1101
|
export interface GetUserDomainGrantArgs {
|
|
1102
|
+
/**
|
|
1103
|
+
* The ID of entity this grant applies to.
|
|
1104
|
+
*/
|
|
1073
1105
|
id: pulumi.Input<number>;
|
|
1106
|
+
/**
|
|
1107
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1108
|
+
*/
|
|
1074
1109
|
label: pulumi.Input<string>;
|
|
1110
|
+
/**
|
|
1111
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1112
|
+
*/
|
|
1075
1113
|
permissions: pulumi.Input<string>;
|
|
1076
1114
|
}
|
|
1077
1115
|
export interface GetUserFirewallGrant {
|
|
1116
|
+
/**
|
|
1117
|
+
* The ID of entity this grant applies to.
|
|
1118
|
+
*/
|
|
1078
1119
|
id: number;
|
|
1120
|
+
/**
|
|
1121
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1122
|
+
*/
|
|
1079
1123
|
label: string;
|
|
1124
|
+
/**
|
|
1125
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1126
|
+
*/
|
|
1080
1127
|
permissions: string;
|
|
1081
1128
|
}
|
|
1082
1129
|
export interface GetUserFirewallGrantArgs {
|
|
1130
|
+
/**
|
|
1131
|
+
* The ID of entity this grant applies to.
|
|
1132
|
+
*/
|
|
1083
1133
|
id: pulumi.Input<number>;
|
|
1134
|
+
/**
|
|
1135
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1136
|
+
*/
|
|
1084
1137
|
label: pulumi.Input<string>;
|
|
1138
|
+
/**
|
|
1139
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1140
|
+
*/
|
|
1085
1141
|
permissions: pulumi.Input<string>;
|
|
1086
1142
|
}
|
|
1087
1143
|
export interface GetUserImageGrant {
|
|
1144
|
+
/**
|
|
1145
|
+
* The ID of entity this grant applies to.
|
|
1146
|
+
*/
|
|
1088
1147
|
id: number;
|
|
1148
|
+
/**
|
|
1149
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1150
|
+
*/
|
|
1089
1151
|
label: string;
|
|
1152
|
+
/**
|
|
1153
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1154
|
+
*/
|
|
1090
1155
|
permissions: string;
|
|
1091
1156
|
}
|
|
1092
1157
|
export interface GetUserImageGrantArgs {
|
|
1158
|
+
/**
|
|
1159
|
+
* The ID of entity this grant applies to.
|
|
1160
|
+
*/
|
|
1093
1161
|
id: pulumi.Input<number>;
|
|
1162
|
+
/**
|
|
1163
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1164
|
+
*/
|
|
1094
1165
|
label: pulumi.Input<string>;
|
|
1166
|
+
/**
|
|
1167
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1168
|
+
*/
|
|
1095
1169
|
permissions: pulumi.Input<string>;
|
|
1096
1170
|
}
|
|
1097
1171
|
export interface GetUserLinodeGrant {
|
|
1172
|
+
/**
|
|
1173
|
+
* The ID of entity this grant applies to.
|
|
1174
|
+
*/
|
|
1098
1175
|
id: number;
|
|
1176
|
+
/**
|
|
1177
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1178
|
+
*/
|
|
1099
1179
|
label: string;
|
|
1180
|
+
/**
|
|
1181
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1182
|
+
*/
|
|
1100
1183
|
permissions: string;
|
|
1101
1184
|
}
|
|
1102
1185
|
export interface GetUserLinodeGrantArgs {
|
|
1186
|
+
/**
|
|
1187
|
+
* The ID of entity this grant applies to.
|
|
1188
|
+
*/
|
|
1103
1189
|
id: pulumi.Input<number>;
|
|
1190
|
+
/**
|
|
1191
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1192
|
+
*/
|
|
1104
1193
|
label: pulumi.Input<string>;
|
|
1194
|
+
/**
|
|
1195
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1196
|
+
*/
|
|
1105
1197
|
permissions: pulumi.Input<string>;
|
|
1106
1198
|
}
|
|
1107
1199
|
export interface GetUserLongviewGrant {
|
|
1200
|
+
/**
|
|
1201
|
+
* The ID of entity this grant applies to.
|
|
1202
|
+
*/
|
|
1108
1203
|
id: number;
|
|
1204
|
+
/**
|
|
1205
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1206
|
+
*/
|
|
1109
1207
|
label: string;
|
|
1208
|
+
/**
|
|
1209
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1210
|
+
*/
|
|
1110
1211
|
permissions: string;
|
|
1111
1212
|
}
|
|
1112
1213
|
export interface GetUserLongviewGrantArgs {
|
|
1214
|
+
/**
|
|
1215
|
+
* The ID of entity this grant applies to.
|
|
1216
|
+
*/
|
|
1113
1217
|
id: pulumi.Input<number>;
|
|
1218
|
+
/**
|
|
1219
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1220
|
+
*/
|
|
1114
1221
|
label: pulumi.Input<string>;
|
|
1222
|
+
/**
|
|
1223
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1224
|
+
*/
|
|
1115
1225
|
permissions: pulumi.Input<string>;
|
|
1116
1226
|
}
|
|
1117
1227
|
export interface GetUserNodebalancerGrant {
|
|
1228
|
+
/**
|
|
1229
|
+
* The ID of entity this grant applies to.
|
|
1230
|
+
*/
|
|
1118
1231
|
id: number;
|
|
1232
|
+
/**
|
|
1233
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1234
|
+
*/
|
|
1119
1235
|
label: string;
|
|
1236
|
+
/**
|
|
1237
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1238
|
+
*/
|
|
1120
1239
|
permissions: string;
|
|
1121
1240
|
}
|
|
1122
1241
|
export interface GetUserNodebalancerGrantArgs {
|
|
1242
|
+
/**
|
|
1243
|
+
* The ID of entity this grant applies to.
|
|
1244
|
+
*/
|
|
1123
1245
|
id: pulumi.Input<number>;
|
|
1246
|
+
/**
|
|
1247
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1248
|
+
*/
|
|
1124
1249
|
label: pulumi.Input<string>;
|
|
1250
|
+
/**
|
|
1251
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1252
|
+
*/
|
|
1125
1253
|
permissions: pulumi.Input<string>;
|
|
1126
1254
|
}
|
|
1127
1255
|
export interface GetUserStackscriptGrant {
|
|
1256
|
+
/**
|
|
1257
|
+
* The ID of entity this grant applies to.
|
|
1258
|
+
*/
|
|
1128
1259
|
id: number;
|
|
1260
|
+
/**
|
|
1261
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1262
|
+
*/
|
|
1129
1263
|
label: string;
|
|
1264
|
+
/**
|
|
1265
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1266
|
+
*/
|
|
1130
1267
|
permissions: string;
|
|
1131
1268
|
}
|
|
1132
1269
|
export interface GetUserStackscriptGrantArgs {
|
|
1270
|
+
/**
|
|
1271
|
+
* The ID of entity this grant applies to.
|
|
1272
|
+
*/
|
|
1133
1273
|
id: pulumi.Input<number>;
|
|
1274
|
+
/**
|
|
1275
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1276
|
+
*/
|
|
1134
1277
|
label: pulumi.Input<string>;
|
|
1278
|
+
/**
|
|
1279
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1280
|
+
*/
|
|
1135
1281
|
permissions: pulumi.Input<string>;
|
|
1136
1282
|
}
|
|
1137
1283
|
export interface GetUserVolumeGrant {
|
|
1284
|
+
/**
|
|
1285
|
+
* The ID of entity this grant applies to.
|
|
1286
|
+
*/
|
|
1138
1287
|
id: number;
|
|
1288
|
+
/**
|
|
1289
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1290
|
+
*/
|
|
1139
1291
|
label: string;
|
|
1292
|
+
/**
|
|
1293
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1294
|
+
*/
|
|
1140
1295
|
permissions: string;
|
|
1141
1296
|
}
|
|
1142
1297
|
export interface GetUserVolumeGrantArgs {
|
|
1298
|
+
/**
|
|
1299
|
+
* The ID of entity this grant applies to.
|
|
1300
|
+
*/
|
|
1301
|
+
id: pulumi.Input<number>;
|
|
1302
|
+
/**
|
|
1303
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1304
|
+
*/
|
|
1305
|
+
label: pulumi.Input<string>;
|
|
1306
|
+
/**
|
|
1307
|
+
* The level of access this User has to this entity. If null, this User has no access. (`readOnly`, `readWrite`)
|
|
1308
|
+
*/
|
|
1309
|
+
permissions: pulumi.Input<string>;
|
|
1310
|
+
}
|
|
1311
|
+
export interface GetUsersFilter {
|
|
1312
|
+
/**
|
|
1313
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
1314
|
+
*/
|
|
1315
|
+
matchBy?: string;
|
|
1316
|
+
/**
|
|
1317
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1318
|
+
*/
|
|
1319
|
+
name: string;
|
|
1320
|
+
/**
|
|
1321
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
1322
|
+
*/
|
|
1323
|
+
values: string[];
|
|
1324
|
+
}
|
|
1325
|
+
export interface GetUsersFilterArgs {
|
|
1326
|
+
/**
|
|
1327
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
1328
|
+
*/
|
|
1329
|
+
matchBy?: pulumi.Input<string>;
|
|
1330
|
+
/**
|
|
1331
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1332
|
+
*/
|
|
1333
|
+
name: pulumi.Input<string>;
|
|
1334
|
+
/**
|
|
1335
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
1336
|
+
*/
|
|
1337
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
1338
|
+
}
|
|
1339
|
+
export interface GetUsersUser {
|
|
1340
|
+
databaseGrants?: inputs.GetUsersUserDatabaseGrant[];
|
|
1341
|
+
domainGrants?: inputs.GetUsersUserDomainGrant[];
|
|
1342
|
+
/**
|
|
1343
|
+
* The email address for this User, for account management communications, and may be used for other communications as configured.
|
|
1344
|
+
*/
|
|
1345
|
+
email?: string;
|
|
1346
|
+
firewallGrants?: inputs.GetUsersUserFirewallGrant[];
|
|
1347
|
+
globalGrants?: inputs.GetUsersUserGlobalGrant[];
|
|
1348
|
+
/**
|
|
1349
|
+
* The ID of entity this grant applies to.
|
|
1350
|
+
*/
|
|
1351
|
+
id?: string;
|
|
1352
|
+
imageGrants?: inputs.GetUsersUserImageGrant[];
|
|
1353
|
+
linodeGrants?: inputs.GetUsersUserLinodeGrant[];
|
|
1354
|
+
longviewGrants?: inputs.GetUsersUserLongviewGrant[];
|
|
1355
|
+
nodebalancerGrants?: inputs.GetUsersUserNodebalancerGrant[];
|
|
1356
|
+
/**
|
|
1357
|
+
* 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.
|
|
1358
|
+
*/
|
|
1359
|
+
passwordCreated?: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* If true, this User must be granted access to perform actions or access entities on this Account.
|
|
1362
|
+
*/
|
|
1363
|
+
restricted?: boolean;
|
|
1364
|
+
/**
|
|
1365
|
+
* A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorizedUsers field of a create Linode, rebuild Linode, or create Disk request.
|
|
1366
|
+
*/
|
|
1367
|
+
sshKeys?: string[];
|
|
1368
|
+
stackscriptGrants?: inputs.GetUsersUserStackscriptGrant[];
|
|
1369
|
+
/**
|
|
1370
|
+
* A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
|
|
1371
|
+
*/
|
|
1372
|
+
tfaEnabled?: boolean;
|
|
1373
|
+
/**
|
|
1374
|
+
* This User's username. This is used for logging in, and may also be displayed alongside actions the User performs (for example, in Events or public StackScripts).
|
|
1375
|
+
*/
|
|
1376
|
+
username: string;
|
|
1377
|
+
/**
|
|
1378
|
+
* The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
|
|
1379
|
+
*/
|
|
1380
|
+
verifiedPhoneNumber?: string;
|
|
1381
|
+
volumeGrants?: inputs.GetUsersUserVolumeGrant[];
|
|
1382
|
+
}
|
|
1383
|
+
export interface GetUsersUserArgs {
|
|
1384
|
+
databaseGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserDatabaseGrantArgs>[]>;
|
|
1385
|
+
domainGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserDomainGrantArgs>[]>;
|
|
1386
|
+
/**
|
|
1387
|
+
* The email address for this User, for account management communications, and may be used for other communications as configured.
|
|
1388
|
+
*/
|
|
1389
|
+
email?: pulumi.Input<string>;
|
|
1390
|
+
firewallGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserFirewallGrantArgs>[]>;
|
|
1391
|
+
globalGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserGlobalGrantArgs>[]>;
|
|
1392
|
+
/**
|
|
1393
|
+
* The ID of entity this grant applies to.
|
|
1394
|
+
*/
|
|
1395
|
+
id?: pulumi.Input<string>;
|
|
1396
|
+
imageGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserImageGrantArgs>[]>;
|
|
1397
|
+
linodeGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserLinodeGrantArgs>[]>;
|
|
1398
|
+
longviewGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserLongviewGrantArgs>[]>;
|
|
1399
|
+
nodebalancerGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserNodebalancerGrantArgs>[]>;
|
|
1400
|
+
/**
|
|
1401
|
+
* 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.
|
|
1402
|
+
*/
|
|
1403
|
+
passwordCreated?: pulumi.Input<string>;
|
|
1404
|
+
/**
|
|
1405
|
+
* If true, this User must be granted access to perform actions or access entities on this Account.
|
|
1406
|
+
*/
|
|
1407
|
+
restricted?: pulumi.Input<boolean>;
|
|
1408
|
+
/**
|
|
1409
|
+
* A list of SSH Key labels added by this User. These are the keys that will be deployed if this User is included in the authorizedUsers field of a create Linode, rebuild Linode, or create Disk request.
|
|
1410
|
+
*/
|
|
1411
|
+
sshKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1412
|
+
stackscriptGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserStackscriptGrantArgs>[]>;
|
|
1413
|
+
/**
|
|
1414
|
+
* A boolean value indicating if the User has Two Factor Authentication (TFA) enabled.
|
|
1415
|
+
*/
|
|
1416
|
+
tfaEnabled?: pulumi.Input<boolean>;
|
|
1417
|
+
/**
|
|
1418
|
+
* This User's username. This is used for logging in, and may also be displayed alongside actions the User performs (for example, in Events or public StackScripts).
|
|
1419
|
+
*/
|
|
1420
|
+
username: pulumi.Input<string>;
|
|
1421
|
+
/**
|
|
1422
|
+
* The phone number verified for this User Profile with the Phone Number Verify command. null if this User Profile has no verified phone number.
|
|
1423
|
+
*/
|
|
1424
|
+
verifiedPhoneNumber?: pulumi.Input<string>;
|
|
1425
|
+
volumeGrants?: pulumi.Input<pulumi.Input<inputs.GetUsersUserVolumeGrantArgs>[]>;
|
|
1426
|
+
}
|
|
1427
|
+
export interface GetUsersUserDatabaseGrant {
|
|
1428
|
+
/**
|
|
1429
|
+
* The ID of entity this grant applies to.
|
|
1430
|
+
*/
|
|
1431
|
+
id: number;
|
|
1432
|
+
/**
|
|
1433
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1434
|
+
*/
|
|
1435
|
+
label: string;
|
|
1436
|
+
/**
|
|
1437
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1438
|
+
*/
|
|
1439
|
+
permissions: string;
|
|
1440
|
+
}
|
|
1441
|
+
export interface GetUsersUserDatabaseGrantArgs {
|
|
1442
|
+
/**
|
|
1443
|
+
* The ID of entity this grant applies to.
|
|
1444
|
+
*/
|
|
1143
1445
|
id: pulumi.Input<number>;
|
|
1446
|
+
/**
|
|
1447
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1448
|
+
*/
|
|
1144
1449
|
label: pulumi.Input<string>;
|
|
1450
|
+
/**
|
|
1451
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1452
|
+
*/
|
|
1453
|
+
permissions: pulumi.Input<string>;
|
|
1454
|
+
}
|
|
1455
|
+
export interface GetUsersUserDomainGrant {
|
|
1456
|
+
/**
|
|
1457
|
+
* The ID of entity this grant applies to.
|
|
1458
|
+
*/
|
|
1459
|
+
id: number;
|
|
1460
|
+
/**
|
|
1461
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1462
|
+
*/
|
|
1463
|
+
label: string;
|
|
1464
|
+
/**
|
|
1465
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1466
|
+
*/
|
|
1467
|
+
permissions: string;
|
|
1468
|
+
}
|
|
1469
|
+
export interface GetUsersUserDomainGrantArgs {
|
|
1470
|
+
/**
|
|
1471
|
+
* The ID of entity this grant applies to.
|
|
1472
|
+
*/
|
|
1473
|
+
id: pulumi.Input<number>;
|
|
1474
|
+
/**
|
|
1475
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1476
|
+
*/
|
|
1477
|
+
label: pulumi.Input<string>;
|
|
1478
|
+
/**
|
|
1479
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1480
|
+
*/
|
|
1481
|
+
permissions: pulumi.Input<string>;
|
|
1482
|
+
}
|
|
1483
|
+
export interface GetUsersUserFirewallGrant {
|
|
1484
|
+
/**
|
|
1485
|
+
* The ID of entity this grant applies to.
|
|
1486
|
+
*/
|
|
1487
|
+
id: number;
|
|
1488
|
+
/**
|
|
1489
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1490
|
+
*/
|
|
1491
|
+
label: string;
|
|
1492
|
+
/**
|
|
1493
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1494
|
+
*/
|
|
1495
|
+
permissions: string;
|
|
1496
|
+
}
|
|
1497
|
+
export interface GetUsersUserFirewallGrantArgs {
|
|
1498
|
+
/**
|
|
1499
|
+
* The ID of entity this grant applies to.
|
|
1500
|
+
*/
|
|
1501
|
+
id: pulumi.Input<number>;
|
|
1502
|
+
/**
|
|
1503
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1504
|
+
*/
|
|
1505
|
+
label: pulumi.Input<string>;
|
|
1506
|
+
/**
|
|
1507
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1508
|
+
*/
|
|
1509
|
+
permissions: pulumi.Input<string>;
|
|
1510
|
+
}
|
|
1511
|
+
export interface GetUsersUserGlobalGrant {
|
|
1512
|
+
/**
|
|
1513
|
+
* The level of access this User has to Account-level actions, like billing information. A restricted User will never be able to manage users. (`readOnly`, `readWrite`)
|
|
1514
|
+
*/
|
|
1515
|
+
accountAccess: string;
|
|
1516
|
+
/**
|
|
1517
|
+
* If true, this User may add Managed Databases.
|
|
1518
|
+
*/
|
|
1519
|
+
addDatabases: boolean;
|
|
1520
|
+
/**
|
|
1521
|
+
* If true, this User may add Domains.
|
|
1522
|
+
*/
|
|
1523
|
+
addDomains: boolean;
|
|
1524
|
+
/**
|
|
1525
|
+
* If true, this User may add Firewalls.
|
|
1526
|
+
*/
|
|
1527
|
+
addFirewalls: boolean;
|
|
1528
|
+
/**
|
|
1529
|
+
* If true, this User may add Images.
|
|
1530
|
+
*/
|
|
1531
|
+
addImages: boolean;
|
|
1532
|
+
/**
|
|
1533
|
+
* If true, this User may create Linodes.
|
|
1534
|
+
*/
|
|
1535
|
+
addLinodes: boolean;
|
|
1536
|
+
/**
|
|
1537
|
+
* If true, this User may create Longview clients and view the current plan.
|
|
1538
|
+
*/
|
|
1539
|
+
addLongview: boolean;
|
|
1540
|
+
/**
|
|
1541
|
+
* If true, this User may add NodeBalancers.
|
|
1542
|
+
*/
|
|
1543
|
+
addNodebalancers: boolean;
|
|
1544
|
+
addStackscripts: boolean;
|
|
1545
|
+
/**
|
|
1546
|
+
* If true, this User may add Volumes.
|
|
1547
|
+
*/
|
|
1548
|
+
addVolumes: boolean;
|
|
1549
|
+
/**
|
|
1550
|
+
* If true, this User may cancel the entire Account.
|
|
1551
|
+
*/
|
|
1552
|
+
cancelAccount: boolean;
|
|
1553
|
+
/**
|
|
1554
|
+
* If true, this User may manage the Account’s Longview subscription.
|
|
1555
|
+
*/
|
|
1556
|
+
longviewSubscription: boolean;
|
|
1557
|
+
}
|
|
1558
|
+
export interface GetUsersUserGlobalGrantArgs {
|
|
1559
|
+
/**
|
|
1560
|
+
* The level of access this User has to Account-level actions, like billing information. A restricted User will never be able to manage users. (`readOnly`, `readWrite`)
|
|
1561
|
+
*/
|
|
1562
|
+
accountAccess: pulumi.Input<string>;
|
|
1563
|
+
/**
|
|
1564
|
+
* If true, this User may add Managed Databases.
|
|
1565
|
+
*/
|
|
1566
|
+
addDatabases: pulumi.Input<boolean>;
|
|
1567
|
+
/**
|
|
1568
|
+
* If true, this User may add Domains.
|
|
1569
|
+
*/
|
|
1570
|
+
addDomains: pulumi.Input<boolean>;
|
|
1571
|
+
/**
|
|
1572
|
+
* If true, this User may add Firewalls.
|
|
1573
|
+
*/
|
|
1574
|
+
addFirewalls: pulumi.Input<boolean>;
|
|
1575
|
+
/**
|
|
1576
|
+
* If true, this User may add Images.
|
|
1577
|
+
*/
|
|
1578
|
+
addImages: pulumi.Input<boolean>;
|
|
1579
|
+
/**
|
|
1580
|
+
* If true, this User may create Linodes.
|
|
1581
|
+
*/
|
|
1582
|
+
addLinodes: pulumi.Input<boolean>;
|
|
1583
|
+
/**
|
|
1584
|
+
* If true, this User may create Longview clients and view the current plan.
|
|
1585
|
+
*/
|
|
1586
|
+
addLongview: pulumi.Input<boolean>;
|
|
1587
|
+
/**
|
|
1588
|
+
* If true, this User may add NodeBalancers.
|
|
1589
|
+
*/
|
|
1590
|
+
addNodebalancers: pulumi.Input<boolean>;
|
|
1591
|
+
addStackscripts: pulumi.Input<boolean>;
|
|
1592
|
+
/**
|
|
1593
|
+
* If true, this User may add Volumes.
|
|
1594
|
+
*/
|
|
1595
|
+
addVolumes: pulumi.Input<boolean>;
|
|
1596
|
+
/**
|
|
1597
|
+
* If true, this User may cancel the entire Account.
|
|
1598
|
+
*/
|
|
1599
|
+
cancelAccount: pulumi.Input<boolean>;
|
|
1600
|
+
/**
|
|
1601
|
+
* If true, this User may manage the Account’s Longview subscription.
|
|
1602
|
+
*/
|
|
1603
|
+
longviewSubscription: pulumi.Input<boolean>;
|
|
1604
|
+
}
|
|
1605
|
+
export interface GetUsersUserImageGrant {
|
|
1606
|
+
/**
|
|
1607
|
+
* The ID of entity this grant applies to.
|
|
1608
|
+
*/
|
|
1609
|
+
id: number;
|
|
1610
|
+
/**
|
|
1611
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1612
|
+
*/
|
|
1613
|
+
label: string;
|
|
1614
|
+
/**
|
|
1615
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1616
|
+
*/
|
|
1617
|
+
permissions: string;
|
|
1618
|
+
}
|
|
1619
|
+
export interface GetUsersUserImageGrantArgs {
|
|
1620
|
+
/**
|
|
1621
|
+
* The ID of entity this grant applies to.
|
|
1622
|
+
*/
|
|
1623
|
+
id: pulumi.Input<number>;
|
|
1624
|
+
/**
|
|
1625
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1626
|
+
*/
|
|
1627
|
+
label: pulumi.Input<string>;
|
|
1628
|
+
/**
|
|
1629
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1630
|
+
*/
|
|
1631
|
+
permissions: pulumi.Input<string>;
|
|
1632
|
+
}
|
|
1633
|
+
export interface GetUsersUserLinodeGrant {
|
|
1634
|
+
/**
|
|
1635
|
+
* The ID of entity this grant applies to.
|
|
1636
|
+
*/
|
|
1637
|
+
id: number;
|
|
1638
|
+
/**
|
|
1639
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1640
|
+
*/
|
|
1641
|
+
label: string;
|
|
1642
|
+
/**
|
|
1643
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1644
|
+
*/
|
|
1645
|
+
permissions: string;
|
|
1646
|
+
}
|
|
1647
|
+
export interface GetUsersUserLinodeGrantArgs {
|
|
1648
|
+
/**
|
|
1649
|
+
* The ID of entity this grant applies to.
|
|
1650
|
+
*/
|
|
1651
|
+
id: pulumi.Input<number>;
|
|
1652
|
+
/**
|
|
1653
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1654
|
+
*/
|
|
1655
|
+
label: pulumi.Input<string>;
|
|
1656
|
+
/**
|
|
1657
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1658
|
+
*/
|
|
1659
|
+
permissions: pulumi.Input<string>;
|
|
1660
|
+
}
|
|
1661
|
+
export interface GetUsersUserLongviewGrant {
|
|
1662
|
+
/**
|
|
1663
|
+
* The ID of entity this grant applies to.
|
|
1664
|
+
*/
|
|
1665
|
+
id: number;
|
|
1666
|
+
/**
|
|
1667
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1668
|
+
*/
|
|
1669
|
+
label: string;
|
|
1670
|
+
/**
|
|
1671
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1672
|
+
*/
|
|
1673
|
+
permissions: string;
|
|
1674
|
+
}
|
|
1675
|
+
export interface GetUsersUserLongviewGrantArgs {
|
|
1676
|
+
/**
|
|
1677
|
+
* The ID of entity this grant applies to.
|
|
1678
|
+
*/
|
|
1679
|
+
id: pulumi.Input<number>;
|
|
1680
|
+
/**
|
|
1681
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1682
|
+
*/
|
|
1683
|
+
label: pulumi.Input<string>;
|
|
1684
|
+
/**
|
|
1685
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1686
|
+
*/
|
|
1687
|
+
permissions: pulumi.Input<string>;
|
|
1688
|
+
}
|
|
1689
|
+
export interface GetUsersUserNodebalancerGrant {
|
|
1690
|
+
/**
|
|
1691
|
+
* The ID of entity this grant applies to.
|
|
1692
|
+
*/
|
|
1693
|
+
id: number;
|
|
1694
|
+
/**
|
|
1695
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1696
|
+
*/
|
|
1697
|
+
label: string;
|
|
1698
|
+
/**
|
|
1699
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1700
|
+
*/
|
|
1701
|
+
permissions: string;
|
|
1702
|
+
}
|
|
1703
|
+
export interface GetUsersUserNodebalancerGrantArgs {
|
|
1704
|
+
/**
|
|
1705
|
+
* The ID of entity this grant applies to.
|
|
1706
|
+
*/
|
|
1707
|
+
id: pulumi.Input<number>;
|
|
1708
|
+
/**
|
|
1709
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1710
|
+
*/
|
|
1711
|
+
label: pulumi.Input<string>;
|
|
1712
|
+
/**
|
|
1713
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1714
|
+
*/
|
|
1715
|
+
permissions: pulumi.Input<string>;
|
|
1716
|
+
}
|
|
1717
|
+
export interface GetUsersUserStackscriptGrant {
|
|
1718
|
+
/**
|
|
1719
|
+
* The ID of entity this grant applies to.
|
|
1720
|
+
*/
|
|
1721
|
+
id: number;
|
|
1722
|
+
/**
|
|
1723
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1724
|
+
*/
|
|
1725
|
+
label: string;
|
|
1726
|
+
/**
|
|
1727
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1728
|
+
*/
|
|
1729
|
+
permissions: string;
|
|
1730
|
+
}
|
|
1731
|
+
export interface GetUsersUserStackscriptGrantArgs {
|
|
1732
|
+
/**
|
|
1733
|
+
* The ID of entity this grant applies to.
|
|
1734
|
+
*/
|
|
1735
|
+
id: pulumi.Input<number>;
|
|
1736
|
+
/**
|
|
1737
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1738
|
+
*/
|
|
1739
|
+
label: pulumi.Input<string>;
|
|
1740
|
+
/**
|
|
1741
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1742
|
+
*/
|
|
1743
|
+
permissions: pulumi.Input<string>;
|
|
1744
|
+
}
|
|
1745
|
+
export interface GetUsersUserVolumeGrant {
|
|
1746
|
+
/**
|
|
1747
|
+
* The ID of entity this grant applies to.
|
|
1748
|
+
*/
|
|
1749
|
+
id: number;
|
|
1750
|
+
/**
|
|
1751
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1752
|
+
*/
|
|
1753
|
+
label: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1756
|
+
*/
|
|
1757
|
+
permissions: string;
|
|
1758
|
+
}
|
|
1759
|
+
export interface GetUsersUserVolumeGrantArgs {
|
|
1760
|
+
/**
|
|
1761
|
+
* The ID of entity this grant applies to.
|
|
1762
|
+
*/
|
|
1763
|
+
id: pulumi.Input<number>;
|
|
1764
|
+
/**
|
|
1765
|
+
* The current label of the entity this grant applies to, for display purposes.
|
|
1766
|
+
*/
|
|
1767
|
+
label: pulumi.Input<string>;
|
|
1768
|
+
/**
|
|
1769
|
+
* The level of access this User has to this entity. If null, this User has no access.
|
|
1770
|
+
*/
|
|
1145
1771
|
permissions: pulumi.Input<string>;
|
|
1146
1772
|
}
|
|
1147
1773
|
export interface GetVlansFilter {
|
|
@@ -1494,6 +2120,9 @@ export interface InstanceInterface {
|
|
|
1494
2120
|
*/
|
|
1495
2121
|
purpose?: pulumi.Input<string>;
|
|
1496
2122
|
}
|
|
2123
|
+
export interface InstanceMetadata {
|
|
2124
|
+
userData?: pulumi.Input<string>;
|
|
2125
|
+
}
|
|
1497
2126
|
export interface InstanceSpecs {
|
|
1498
2127
|
disk?: pulumi.Input<number>;
|
|
1499
2128
|
memory?: pulumi.Input<number>;
|