@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/input.d.ts
CHANGED
|
@@ -116,6 +116,88 @@ export interface GetAccountLoginsFilterArgs {
|
|
|
116
116
|
*/
|
|
117
117
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
118
118
|
}
|
|
119
|
+
export interface GetAccountLoginsLogin {
|
|
120
|
+
/**
|
|
121
|
+
* When the login was initiated.
|
|
122
|
+
*/
|
|
123
|
+
datetime?: string;
|
|
124
|
+
/**
|
|
125
|
+
* The unique ID of this login object.
|
|
126
|
+
*/
|
|
127
|
+
id: number;
|
|
128
|
+
/**
|
|
129
|
+
* The remote IP address that requested the login.
|
|
130
|
+
*/
|
|
131
|
+
ip?: string;
|
|
132
|
+
/**
|
|
133
|
+
* True if the User that was logged into was a restricted User, false otherwise.
|
|
134
|
+
*/
|
|
135
|
+
restricted?: boolean;
|
|
136
|
+
status?: string;
|
|
137
|
+
/**
|
|
138
|
+
* The username of the User that was logged into.
|
|
139
|
+
*/
|
|
140
|
+
username?: string;
|
|
141
|
+
}
|
|
142
|
+
export interface GetAccountLoginsLoginArgs {
|
|
143
|
+
/**
|
|
144
|
+
* When the login was initiated.
|
|
145
|
+
*/
|
|
146
|
+
datetime?: pulumi.Input<string>;
|
|
147
|
+
/**
|
|
148
|
+
* The unique ID of this login object.
|
|
149
|
+
*/
|
|
150
|
+
id: pulumi.Input<number>;
|
|
151
|
+
/**
|
|
152
|
+
* The remote IP address that requested the login.
|
|
153
|
+
*/
|
|
154
|
+
ip?: pulumi.Input<string>;
|
|
155
|
+
/**
|
|
156
|
+
* True if the User that was logged into was a restricted User, false otherwise.
|
|
157
|
+
*/
|
|
158
|
+
restricted?: pulumi.Input<boolean>;
|
|
159
|
+
status?: pulumi.Input<string>;
|
|
160
|
+
/**
|
|
161
|
+
* The username of the User that was logged into.
|
|
162
|
+
*/
|
|
163
|
+
username?: pulumi.Input<string>;
|
|
164
|
+
}
|
|
165
|
+
export interface GetDatabaseBackupsBackup {
|
|
166
|
+
/**
|
|
167
|
+
* A time value given in a combined date and time format that represents when the database backup was created.
|
|
168
|
+
*/
|
|
169
|
+
created?: string;
|
|
170
|
+
/**
|
|
171
|
+
* The ID of the database backup object.
|
|
172
|
+
*/
|
|
173
|
+
id?: number;
|
|
174
|
+
/**
|
|
175
|
+
* The database backup’s label, for display purposes only.
|
|
176
|
+
*/
|
|
177
|
+
label?: string;
|
|
178
|
+
/**
|
|
179
|
+
* The type of database backup, determined by how the backup was created.
|
|
180
|
+
*/
|
|
181
|
+
type?: string;
|
|
182
|
+
}
|
|
183
|
+
export interface GetDatabaseBackupsBackupArgs {
|
|
184
|
+
/**
|
|
185
|
+
* A time value given in a combined date and time format that represents when the database backup was created.
|
|
186
|
+
*/
|
|
187
|
+
created?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* The ID of the database backup object.
|
|
190
|
+
*/
|
|
191
|
+
id?: pulumi.Input<number>;
|
|
192
|
+
/**
|
|
193
|
+
* The database backup’s label, for display purposes only.
|
|
194
|
+
*/
|
|
195
|
+
label?: pulumi.Input<string>;
|
|
196
|
+
/**
|
|
197
|
+
* The type of database backup, determined by how the backup was created.
|
|
198
|
+
*/
|
|
199
|
+
type?: pulumi.Input<string>;
|
|
200
|
+
}
|
|
119
201
|
export interface GetDatabaseBackupsFilter {
|
|
120
202
|
/**
|
|
121
203
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -144,6 +226,34 @@ export interface GetDatabaseBackupsFilterArgs {
|
|
|
144
226
|
*/
|
|
145
227
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
146
228
|
}
|
|
229
|
+
export interface GetDatabaseEnginesEngine {
|
|
230
|
+
/**
|
|
231
|
+
* The Managed Database engine type.
|
|
232
|
+
*/
|
|
233
|
+
engine?: string;
|
|
234
|
+
/**
|
|
235
|
+
* The Managed Database engine ID in engine/version format.
|
|
236
|
+
*/
|
|
237
|
+
id?: string;
|
|
238
|
+
/**
|
|
239
|
+
* The Managed Database engine version.
|
|
240
|
+
*/
|
|
241
|
+
version?: string;
|
|
242
|
+
}
|
|
243
|
+
export interface GetDatabaseEnginesEngineArgs {
|
|
244
|
+
/**
|
|
245
|
+
* The Managed Database engine type.
|
|
246
|
+
*/
|
|
247
|
+
engine?: pulumi.Input<string>;
|
|
248
|
+
/**
|
|
249
|
+
* The Managed Database engine ID in engine/version format.
|
|
250
|
+
*/
|
|
251
|
+
id?: pulumi.Input<string>;
|
|
252
|
+
/**
|
|
253
|
+
* The Managed Database engine version.
|
|
254
|
+
*/
|
|
255
|
+
version?: pulumi.Input<string>;
|
|
256
|
+
}
|
|
147
257
|
export interface GetDatabaseEnginesFilter {
|
|
148
258
|
/**
|
|
149
259
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -200,6 +310,140 @@ export interface GetDatabaseMysqlBackupsFilterArgs {
|
|
|
200
310
|
*/
|
|
201
311
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
202
312
|
}
|
|
313
|
+
export interface GetDatabasesDatabase {
|
|
314
|
+
/**
|
|
315
|
+
* A list of IP addresses that can access the Managed Database.
|
|
316
|
+
*/
|
|
317
|
+
allowLists?: string[];
|
|
318
|
+
/**
|
|
319
|
+
* The number of Linode Instance nodes deployed to the Managed Database.
|
|
320
|
+
*/
|
|
321
|
+
clusterSize?: number;
|
|
322
|
+
/**
|
|
323
|
+
* When this Managed Database was created.
|
|
324
|
+
*/
|
|
325
|
+
created?: string;
|
|
326
|
+
/**
|
|
327
|
+
* Whether the Managed Databases is encrypted.
|
|
328
|
+
*/
|
|
329
|
+
encrypted?: boolean;
|
|
330
|
+
/**
|
|
331
|
+
* The Managed Database engine.
|
|
332
|
+
*/
|
|
333
|
+
engine?: string;
|
|
334
|
+
/**
|
|
335
|
+
* The primary host for the Managed Database.
|
|
336
|
+
*/
|
|
337
|
+
hostPrimary?: string;
|
|
338
|
+
/**
|
|
339
|
+
* The secondary/private network host for the Managed Database.
|
|
340
|
+
*/
|
|
341
|
+
hostSecondary?: string;
|
|
342
|
+
/**
|
|
343
|
+
* The ID of the Managed Database.
|
|
344
|
+
*/
|
|
345
|
+
id?: number;
|
|
346
|
+
instanceUri?: string;
|
|
347
|
+
/**
|
|
348
|
+
* A unique, user-defined string referring to the Managed Database.
|
|
349
|
+
*/
|
|
350
|
+
label?: string;
|
|
351
|
+
/**
|
|
352
|
+
* The region to use for the Managed Database.
|
|
353
|
+
*/
|
|
354
|
+
region?: string;
|
|
355
|
+
/**
|
|
356
|
+
* The replication method used for the Managed Database.
|
|
357
|
+
*/
|
|
358
|
+
replicationType?: string;
|
|
359
|
+
/**
|
|
360
|
+
* Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
361
|
+
*/
|
|
362
|
+
sslConnection?: boolean;
|
|
363
|
+
/**
|
|
364
|
+
* The operating status of the Managed Database.
|
|
365
|
+
*/
|
|
366
|
+
status?: string;
|
|
367
|
+
/**
|
|
368
|
+
* The Linode Instance type used for the nodes of the Managed Database instance.
|
|
369
|
+
*/
|
|
370
|
+
type?: string;
|
|
371
|
+
/**
|
|
372
|
+
* When this Managed Database was last updated.
|
|
373
|
+
*/
|
|
374
|
+
updated?: string;
|
|
375
|
+
/**
|
|
376
|
+
* The Managed Database engine version.
|
|
377
|
+
*/
|
|
378
|
+
version?: string;
|
|
379
|
+
}
|
|
380
|
+
export interface GetDatabasesDatabaseArgs {
|
|
381
|
+
/**
|
|
382
|
+
* A list of IP addresses that can access the Managed Database.
|
|
383
|
+
*/
|
|
384
|
+
allowLists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
385
|
+
/**
|
|
386
|
+
* The number of Linode Instance nodes deployed to the Managed Database.
|
|
387
|
+
*/
|
|
388
|
+
clusterSize?: pulumi.Input<number>;
|
|
389
|
+
/**
|
|
390
|
+
* When this Managed Database was created.
|
|
391
|
+
*/
|
|
392
|
+
created?: pulumi.Input<string>;
|
|
393
|
+
/**
|
|
394
|
+
* Whether the Managed Databases is encrypted.
|
|
395
|
+
*/
|
|
396
|
+
encrypted?: pulumi.Input<boolean>;
|
|
397
|
+
/**
|
|
398
|
+
* The Managed Database engine.
|
|
399
|
+
*/
|
|
400
|
+
engine?: pulumi.Input<string>;
|
|
401
|
+
/**
|
|
402
|
+
* The primary host for the Managed Database.
|
|
403
|
+
*/
|
|
404
|
+
hostPrimary?: pulumi.Input<string>;
|
|
405
|
+
/**
|
|
406
|
+
* The secondary/private network host for the Managed Database.
|
|
407
|
+
*/
|
|
408
|
+
hostSecondary?: pulumi.Input<string>;
|
|
409
|
+
/**
|
|
410
|
+
* The ID of the Managed Database.
|
|
411
|
+
*/
|
|
412
|
+
id?: pulumi.Input<number>;
|
|
413
|
+
instanceUri?: pulumi.Input<string>;
|
|
414
|
+
/**
|
|
415
|
+
* A unique, user-defined string referring to the Managed Database.
|
|
416
|
+
*/
|
|
417
|
+
label?: pulumi.Input<string>;
|
|
418
|
+
/**
|
|
419
|
+
* The region to use for the Managed Database.
|
|
420
|
+
*/
|
|
421
|
+
region?: pulumi.Input<string>;
|
|
422
|
+
/**
|
|
423
|
+
* The replication method used for the Managed Database.
|
|
424
|
+
*/
|
|
425
|
+
replicationType?: pulumi.Input<string>;
|
|
426
|
+
/**
|
|
427
|
+
* Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
428
|
+
*/
|
|
429
|
+
sslConnection?: pulumi.Input<boolean>;
|
|
430
|
+
/**
|
|
431
|
+
* The operating status of the Managed Database.
|
|
432
|
+
*/
|
|
433
|
+
status?: pulumi.Input<string>;
|
|
434
|
+
/**
|
|
435
|
+
* The Linode Instance type used for the nodes of the Managed Database instance.
|
|
436
|
+
*/
|
|
437
|
+
type?: pulumi.Input<string>;
|
|
438
|
+
/**
|
|
439
|
+
* When this Managed Database was last updated.
|
|
440
|
+
*/
|
|
441
|
+
updated?: pulumi.Input<string>;
|
|
442
|
+
/**
|
|
443
|
+
* The Managed Database engine version.
|
|
444
|
+
*/
|
|
445
|
+
version?: pulumi.Input<string>;
|
|
446
|
+
}
|
|
203
447
|
export interface GetDatabasesFilter {
|
|
204
448
|
/**
|
|
205
449
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -256,6 +500,100 @@ export interface GetImagesFilterArgs {
|
|
|
256
500
|
*/
|
|
257
501
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
258
502
|
}
|
|
503
|
+
export interface GetImagesImage {
|
|
504
|
+
/**
|
|
505
|
+
* When this Image was created.
|
|
506
|
+
*/
|
|
507
|
+
created?: string;
|
|
508
|
+
/**
|
|
509
|
+
* The name of the User who created this Image, or "linode" for official Images.
|
|
510
|
+
*/
|
|
511
|
+
createdBy?: string;
|
|
512
|
+
/**
|
|
513
|
+
* Whether or not this Image is deprecated. Will only be true for deprecated public Images.
|
|
514
|
+
*/
|
|
515
|
+
deprecated?: boolean;
|
|
516
|
+
/**
|
|
517
|
+
* A detailed description of this Image.
|
|
518
|
+
*/
|
|
519
|
+
description?: string;
|
|
520
|
+
expiry?: string;
|
|
521
|
+
/**
|
|
522
|
+
* The unique ID of this Image. The ID of private images begin with `private/` followed by the numeric identifier of the private image, for example `private/12345`.
|
|
523
|
+
*/
|
|
524
|
+
id: string;
|
|
525
|
+
/**
|
|
526
|
+
* True if the Image is public.
|
|
527
|
+
*/
|
|
528
|
+
isPublic?: boolean;
|
|
529
|
+
/**
|
|
530
|
+
* A short description of the Image.
|
|
531
|
+
*/
|
|
532
|
+
label?: string;
|
|
533
|
+
/**
|
|
534
|
+
* The minimum size this Image needs to deploy. Size is in MB. example: 2500
|
|
535
|
+
*/
|
|
536
|
+
size?: number;
|
|
537
|
+
/**
|
|
538
|
+
* The current status of this image. (`creating`, `pendingUpload`, `available`)
|
|
539
|
+
*/
|
|
540
|
+
status?: string;
|
|
541
|
+
/**
|
|
542
|
+
* How the Image was created. Manual Images can be created at any time. "Automatic" Images are created automatically from a deleted Linode. (`manual`, `automatic`)
|
|
543
|
+
*/
|
|
544
|
+
type?: string;
|
|
545
|
+
/**
|
|
546
|
+
* The upstream distribution vendor. `None` for private Images.
|
|
547
|
+
*/
|
|
548
|
+
vendor?: string;
|
|
549
|
+
}
|
|
550
|
+
export interface GetImagesImageArgs {
|
|
551
|
+
/**
|
|
552
|
+
* When this Image was created.
|
|
553
|
+
*/
|
|
554
|
+
created?: pulumi.Input<string>;
|
|
555
|
+
/**
|
|
556
|
+
* The name of the User who created this Image, or "linode" for official Images.
|
|
557
|
+
*/
|
|
558
|
+
createdBy?: pulumi.Input<string>;
|
|
559
|
+
/**
|
|
560
|
+
* Whether or not this Image is deprecated. Will only be true for deprecated public Images.
|
|
561
|
+
*/
|
|
562
|
+
deprecated?: pulumi.Input<boolean>;
|
|
563
|
+
/**
|
|
564
|
+
* A detailed description of this Image.
|
|
565
|
+
*/
|
|
566
|
+
description?: pulumi.Input<string>;
|
|
567
|
+
expiry?: pulumi.Input<string>;
|
|
568
|
+
/**
|
|
569
|
+
* The unique ID of this Image. The ID of private images begin with `private/` followed by the numeric identifier of the private image, for example `private/12345`.
|
|
570
|
+
*/
|
|
571
|
+
id: pulumi.Input<string>;
|
|
572
|
+
/**
|
|
573
|
+
* True if the Image is public.
|
|
574
|
+
*/
|
|
575
|
+
isPublic?: pulumi.Input<boolean>;
|
|
576
|
+
/**
|
|
577
|
+
* A short description of the Image.
|
|
578
|
+
*/
|
|
579
|
+
label?: pulumi.Input<string>;
|
|
580
|
+
/**
|
|
581
|
+
* The minimum size this Image needs to deploy. Size is in MB. example: 2500
|
|
582
|
+
*/
|
|
583
|
+
size?: pulumi.Input<number>;
|
|
584
|
+
/**
|
|
585
|
+
* The current status of this image. (`creating`, `pendingUpload`, `available`)
|
|
586
|
+
*/
|
|
587
|
+
status?: pulumi.Input<string>;
|
|
588
|
+
/**
|
|
589
|
+
* How the Image was created. Manual Images can be created at any time. "Automatic" Images are created automatically from a deleted Linode. (`manual`, `automatic`)
|
|
590
|
+
*/
|
|
591
|
+
type?: pulumi.Input<string>;
|
|
592
|
+
/**
|
|
593
|
+
* The upstream distribution vendor. `None` for private Images.
|
|
594
|
+
*/
|
|
595
|
+
vendor?: pulumi.Input<string>;
|
|
596
|
+
}
|
|
259
597
|
export interface GetInstanceTypesFilter {
|
|
260
598
|
/**
|
|
261
599
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -284,6 +622,106 @@ export interface GetInstanceTypesFilterArgs {
|
|
|
284
622
|
*/
|
|
285
623
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
286
624
|
}
|
|
625
|
+
export interface GetInstanceTypesType {
|
|
626
|
+
addons?: inputs.GetInstanceTypesTypeAddon[];
|
|
627
|
+
/**
|
|
628
|
+
* The class of the Linode Type. See all classes [here](https://www.linode.com/docs/api/linode-types/#type-view__responses).
|
|
629
|
+
*/
|
|
630
|
+
class?: string;
|
|
631
|
+
/**
|
|
632
|
+
* The Disk size, in MB, of the Linode Type.
|
|
633
|
+
*/
|
|
634
|
+
disk?: number;
|
|
635
|
+
/**
|
|
636
|
+
* The ID representing the Linode Type.
|
|
637
|
+
*/
|
|
638
|
+
id: string;
|
|
639
|
+
/**
|
|
640
|
+
* The Linode Type's label is for display purposes only.
|
|
641
|
+
*/
|
|
642
|
+
label?: string;
|
|
643
|
+
/**
|
|
644
|
+
* The amount of RAM included in this Linode Type.
|
|
645
|
+
*/
|
|
646
|
+
memory?: number;
|
|
647
|
+
/**
|
|
648
|
+
* The Mbits outbound bandwidth allocation.
|
|
649
|
+
*/
|
|
650
|
+
networkOut?: number;
|
|
651
|
+
prices?: inputs.GetInstanceTypesTypePrice[];
|
|
652
|
+
/**
|
|
653
|
+
* The monthly outbound transfer amount, in MB.
|
|
654
|
+
*/
|
|
655
|
+
transfer?: number;
|
|
656
|
+
/**
|
|
657
|
+
* The number of VCPU cores this Linode Type offers.
|
|
658
|
+
*/
|
|
659
|
+
vcpus?: number;
|
|
660
|
+
}
|
|
661
|
+
export interface GetInstanceTypesTypeArgs {
|
|
662
|
+
addons?: pulumi.Input<pulumi.Input<inputs.GetInstanceTypesTypeAddonArgs>[]>;
|
|
663
|
+
/**
|
|
664
|
+
* The class of the Linode Type. See all classes [here](https://www.linode.com/docs/api/linode-types/#type-view__responses).
|
|
665
|
+
*/
|
|
666
|
+
class?: pulumi.Input<string>;
|
|
667
|
+
/**
|
|
668
|
+
* The Disk size, in MB, of the Linode Type.
|
|
669
|
+
*/
|
|
670
|
+
disk?: pulumi.Input<number>;
|
|
671
|
+
/**
|
|
672
|
+
* The ID representing the Linode Type.
|
|
673
|
+
*/
|
|
674
|
+
id: pulumi.Input<string>;
|
|
675
|
+
/**
|
|
676
|
+
* The Linode Type's label is for display purposes only.
|
|
677
|
+
*/
|
|
678
|
+
label?: pulumi.Input<string>;
|
|
679
|
+
/**
|
|
680
|
+
* The amount of RAM included in this Linode Type.
|
|
681
|
+
*/
|
|
682
|
+
memory?: pulumi.Input<number>;
|
|
683
|
+
/**
|
|
684
|
+
* The Mbits outbound bandwidth allocation.
|
|
685
|
+
*/
|
|
686
|
+
networkOut?: pulumi.Input<number>;
|
|
687
|
+
prices?: pulumi.Input<pulumi.Input<inputs.GetInstanceTypesTypePriceArgs>[]>;
|
|
688
|
+
/**
|
|
689
|
+
* The monthly outbound transfer amount, in MB.
|
|
690
|
+
*/
|
|
691
|
+
transfer?: pulumi.Input<number>;
|
|
692
|
+
/**
|
|
693
|
+
* The number of VCPU cores this Linode Type offers.
|
|
694
|
+
*/
|
|
695
|
+
vcpus?: pulumi.Input<number>;
|
|
696
|
+
}
|
|
697
|
+
export interface GetInstanceTypesTypeAddon {
|
|
698
|
+
backups: inputs.GetInstanceTypesTypeAddonBackup[];
|
|
699
|
+
}
|
|
700
|
+
export interface GetInstanceTypesTypeAddonArgs {
|
|
701
|
+
backups: pulumi.Input<pulumi.Input<inputs.GetInstanceTypesTypeAddonBackupArgs>[]>;
|
|
702
|
+
}
|
|
703
|
+
export interface GetInstanceTypesTypeAddonBackup {
|
|
704
|
+
prices: inputs.GetInstanceTypesTypeAddonBackupPrice[];
|
|
705
|
+
}
|
|
706
|
+
export interface GetInstanceTypesTypeAddonBackupArgs {
|
|
707
|
+
prices: pulumi.Input<pulumi.Input<inputs.GetInstanceTypesTypeAddonBackupPriceArgs>[]>;
|
|
708
|
+
}
|
|
709
|
+
export interface GetInstanceTypesTypeAddonBackupPrice {
|
|
710
|
+
hourly: number;
|
|
711
|
+
monthly: number;
|
|
712
|
+
}
|
|
713
|
+
export interface GetInstanceTypesTypeAddonBackupPriceArgs {
|
|
714
|
+
hourly: pulumi.Input<number>;
|
|
715
|
+
monthly: pulumi.Input<number>;
|
|
716
|
+
}
|
|
717
|
+
export interface GetInstanceTypesTypePrice {
|
|
718
|
+
hourly: number;
|
|
719
|
+
monthly: number;
|
|
720
|
+
}
|
|
721
|
+
export interface GetInstanceTypesTypePriceArgs {
|
|
722
|
+
hourly: pulumi.Input<number>;
|
|
723
|
+
monthly: pulumi.Input<number>;
|
|
724
|
+
}
|
|
287
725
|
export interface GetInstancesFilter {
|
|
288
726
|
/**
|
|
289
727
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -312,6 +750,26 @@ export interface GetInstancesFilterArgs {
|
|
|
312
750
|
*/
|
|
313
751
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
314
752
|
}
|
|
753
|
+
export interface GetRegionResolver {
|
|
754
|
+
/**
|
|
755
|
+
* The IPv4 addresses for this region’s DNS resolvers, separated by commas.
|
|
756
|
+
*/
|
|
757
|
+
ipv4?: string;
|
|
758
|
+
/**
|
|
759
|
+
* The IPv6 addresses for this region’s DNS resolvers, separated by commas.
|
|
760
|
+
*/
|
|
761
|
+
ipv6?: string;
|
|
762
|
+
}
|
|
763
|
+
export interface GetRegionResolverArgs {
|
|
764
|
+
/**
|
|
765
|
+
* The IPv4 addresses for this region’s DNS resolvers, separated by commas.
|
|
766
|
+
*/
|
|
767
|
+
ipv4?: pulumi.Input<string>;
|
|
768
|
+
/**
|
|
769
|
+
* The IPv6 addresses for this region’s DNS resolvers, separated by commas.
|
|
770
|
+
*/
|
|
771
|
+
ipv6?: pulumi.Input<string>;
|
|
772
|
+
}
|
|
315
773
|
export interface GetRegionsFilter {
|
|
316
774
|
/**
|
|
317
775
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -428,68 +886,262 @@ export interface GetStackScriptsFilterArgs {
|
|
|
428
886
|
*/
|
|
429
887
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
430
888
|
}
|
|
889
|
+
export interface GetStackScriptsStackscript {
|
|
890
|
+
/**
|
|
891
|
+
* The date this StackScript was created.
|
|
892
|
+
*/
|
|
893
|
+
created?: string;
|
|
894
|
+
/**
|
|
895
|
+
* Count of currently active, deployed Linodes created from this StackScript.
|
|
896
|
+
*/
|
|
897
|
+
deploymentsActive?: number;
|
|
898
|
+
/**
|
|
899
|
+
* The total number of times this StackScript has been deployed.
|
|
900
|
+
*/
|
|
901
|
+
deploymentsTotal?: number;
|
|
902
|
+
/**
|
|
903
|
+
* A description for the StackScript.
|
|
904
|
+
*/
|
|
905
|
+
description?: string;
|
|
906
|
+
/**
|
|
907
|
+
* The unique ID of the StackScript.
|
|
908
|
+
*/
|
|
909
|
+
id: string;
|
|
910
|
+
/**
|
|
911
|
+
* An array of Image IDs representing the Images that this StackScript is compatible for deploying with.
|
|
912
|
+
*/
|
|
913
|
+
images?: string[];
|
|
914
|
+
/**
|
|
915
|
+
* This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private.
|
|
916
|
+
*/
|
|
917
|
+
isPublic?: boolean;
|
|
918
|
+
/**
|
|
919
|
+
* A human-readable label for the field that will serve as the input prompt for entering the value during deployment.
|
|
920
|
+
*/
|
|
921
|
+
label?: string;
|
|
922
|
+
/**
|
|
923
|
+
* This field allows you to add notes for the set of revisions made to this StackScript.
|
|
924
|
+
*/
|
|
925
|
+
revNote?: string;
|
|
926
|
+
/**
|
|
927
|
+
* The script to execute when provisioning a new Linode with this StackScript.
|
|
928
|
+
*/
|
|
929
|
+
script?: string;
|
|
930
|
+
/**
|
|
931
|
+
* The date this StackScript was updated.
|
|
932
|
+
*/
|
|
933
|
+
updated?: string;
|
|
934
|
+
/**
|
|
935
|
+
* This is a list of fields defined with a special syntax inside this StackScript that allow for supplying customized parameters during deployment.
|
|
936
|
+
*/
|
|
937
|
+
userDefinedFields?: inputs.GetStackScriptsStackscriptUserDefinedField[];
|
|
938
|
+
/**
|
|
939
|
+
* The Gravatar ID for the User who created the StackScript.
|
|
940
|
+
*/
|
|
941
|
+
userGravatarId?: string;
|
|
942
|
+
/**
|
|
943
|
+
* The User who created the StackScript.
|
|
944
|
+
*/
|
|
945
|
+
username?: string;
|
|
946
|
+
}
|
|
947
|
+
export interface GetStackScriptsStackscriptArgs {
|
|
948
|
+
/**
|
|
949
|
+
* The date this StackScript was created.
|
|
950
|
+
*/
|
|
951
|
+
created?: pulumi.Input<string>;
|
|
952
|
+
/**
|
|
953
|
+
* Count of currently active, deployed Linodes created from this StackScript.
|
|
954
|
+
*/
|
|
955
|
+
deploymentsActive?: pulumi.Input<number>;
|
|
956
|
+
/**
|
|
957
|
+
* The total number of times this StackScript has been deployed.
|
|
958
|
+
*/
|
|
959
|
+
deploymentsTotal?: pulumi.Input<number>;
|
|
960
|
+
/**
|
|
961
|
+
* A description for the StackScript.
|
|
962
|
+
*/
|
|
963
|
+
description?: pulumi.Input<string>;
|
|
964
|
+
/**
|
|
965
|
+
* The unique ID of the StackScript.
|
|
966
|
+
*/
|
|
967
|
+
id: pulumi.Input<string>;
|
|
968
|
+
/**
|
|
969
|
+
* An array of Image IDs representing the Images that this StackScript is compatible for deploying with.
|
|
970
|
+
*/
|
|
971
|
+
images?: pulumi.Input<pulumi.Input<string>[]>;
|
|
972
|
+
/**
|
|
973
|
+
* This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private.
|
|
974
|
+
*/
|
|
975
|
+
isPublic?: pulumi.Input<boolean>;
|
|
976
|
+
/**
|
|
977
|
+
* A human-readable label for the field that will serve as the input prompt for entering the value during deployment.
|
|
978
|
+
*/
|
|
979
|
+
label?: pulumi.Input<string>;
|
|
980
|
+
/**
|
|
981
|
+
* This field allows you to add notes for the set of revisions made to this StackScript.
|
|
982
|
+
*/
|
|
983
|
+
revNote?: pulumi.Input<string>;
|
|
984
|
+
/**
|
|
985
|
+
* The script to execute when provisioning a new Linode with this StackScript.
|
|
986
|
+
*/
|
|
987
|
+
script?: pulumi.Input<string>;
|
|
988
|
+
/**
|
|
989
|
+
* The date this StackScript was updated.
|
|
990
|
+
*/
|
|
991
|
+
updated?: pulumi.Input<string>;
|
|
992
|
+
/**
|
|
993
|
+
* This is a list of fields defined with a special syntax inside this StackScript that allow for supplying customized parameters during deployment.
|
|
994
|
+
*/
|
|
995
|
+
userDefinedFields?: pulumi.Input<pulumi.Input<inputs.GetStackScriptsStackscriptUserDefinedFieldArgs>[]>;
|
|
996
|
+
/**
|
|
997
|
+
* The Gravatar ID for the User who created the StackScript.
|
|
998
|
+
*/
|
|
999
|
+
userGravatarId?: pulumi.Input<string>;
|
|
1000
|
+
/**
|
|
1001
|
+
* The User who created the StackScript.
|
|
1002
|
+
*/
|
|
1003
|
+
username?: pulumi.Input<string>;
|
|
1004
|
+
}
|
|
1005
|
+
export interface GetStackScriptsStackscriptUserDefinedField {
|
|
1006
|
+
/**
|
|
1007
|
+
* The default value. If not specified, this value will be used.
|
|
1008
|
+
*/
|
|
1009
|
+
default: string;
|
|
1010
|
+
/**
|
|
1011
|
+
* An example value for the field.
|
|
1012
|
+
*/
|
|
1013
|
+
example: string;
|
|
1014
|
+
/**
|
|
1015
|
+
* A human-readable label for the field that will serve as the input prompt for entering the value during deployment.
|
|
1016
|
+
*/
|
|
1017
|
+
label: string;
|
|
1018
|
+
/**
|
|
1019
|
+
* A list of acceptable values for the field in any quantity, combination or order.
|
|
1020
|
+
*/
|
|
1021
|
+
manyOf: string;
|
|
1022
|
+
/**
|
|
1023
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1024
|
+
*/
|
|
1025
|
+
name: string;
|
|
1026
|
+
/**
|
|
1027
|
+
* A list of acceptable single values for the field.
|
|
1028
|
+
*/
|
|
1029
|
+
oneOf: string;
|
|
1030
|
+
}
|
|
1031
|
+
export interface GetStackScriptsStackscriptUserDefinedFieldArgs {
|
|
1032
|
+
/**
|
|
1033
|
+
* The default value. If not specified, this value will be used.
|
|
1034
|
+
*/
|
|
1035
|
+
default: pulumi.Input<string>;
|
|
1036
|
+
/**
|
|
1037
|
+
* An example value for the field.
|
|
1038
|
+
*/
|
|
1039
|
+
example: pulumi.Input<string>;
|
|
1040
|
+
/**
|
|
1041
|
+
* A human-readable label for the field that will serve as the input prompt for entering the value during deployment.
|
|
1042
|
+
*/
|
|
1043
|
+
label: pulumi.Input<string>;
|
|
1044
|
+
/**
|
|
1045
|
+
* A list of acceptable values for the field in any quantity, combination or order.
|
|
1046
|
+
*/
|
|
1047
|
+
manyOf: pulumi.Input<string>;
|
|
1048
|
+
/**
|
|
1049
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1050
|
+
*/
|
|
1051
|
+
name: pulumi.Input<string>;
|
|
1052
|
+
/**
|
|
1053
|
+
* A list of acceptable single values for the field.
|
|
1054
|
+
*/
|
|
1055
|
+
oneOf: pulumi.Input<string>;
|
|
1056
|
+
}
|
|
1057
|
+
export interface GetUserDatabaseGrant {
|
|
1058
|
+
id: number;
|
|
1059
|
+
label: string;
|
|
1060
|
+
permissions: string;
|
|
1061
|
+
}
|
|
1062
|
+
export interface GetUserDatabaseGrantArgs {
|
|
1063
|
+
id: pulumi.Input<number>;
|
|
1064
|
+
label: pulumi.Input<string>;
|
|
1065
|
+
permissions: pulumi.Input<string>;
|
|
1066
|
+
}
|
|
431
1067
|
export interface GetUserDomainGrant {
|
|
432
1068
|
id: number;
|
|
1069
|
+
label: string;
|
|
433
1070
|
permissions: string;
|
|
434
1071
|
}
|
|
435
1072
|
export interface GetUserDomainGrantArgs {
|
|
436
1073
|
id: pulumi.Input<number>;
|
|
1074
|
+
label: pulumi.Input<string>;
|
|
437
1075
|
permissions: pulumi.Input<string>;
|
|
438
1076
|
}
|
|
439
1077
|
export interface GetUserFirewallGrant {
|
|
440
1078
|
id: number;
|
|
1079
|
+
label: string;
|
|
441
1080
|
permissions: string;
|
|
442
1081
|
}
|
|
443
1082
|
export interface GetUserFirewallGrantArgs {
|
|
444
1083
|
id: pulumi.Input<number>;
|
|
1084
|
+
label: pulumi.Input<string>;
|
|
445
1085
|
permissions: pulumi.Input<string>;
|
|
446
1086
|
}
|
|
447
1087
|
export interface GetUserImageGrant {
|
|
448
1088
|
id: number;
|
|
1089
|
+
label: string;
|
|
449
1090
|
permissions: string;
|
|
450
1091
|
}
|
|
451
1092
|
export interface GetUserImageGrantArgs {
|
|
452
1093
|
id: pulumi.Input<number>;
|
|
1094
|
+
label: pulumi.Input<string>;
|
|
453
1095
|
permissions: pulumi.Input<string>;
|
|
454
1096
|
}
|
|
455
1097
|
export interface GetUserLinodeGrant {
|
|
456
1098
|
id: number;
|
|
1099
|
+
label: string;
|
|
457
1100
|
permissions: string;
|
|
458
1101
|
}
|
|
459
1102
|
export interface GetUserLinodeGrantArgs {
|
|
460
1103
|
id: pulumi.Input<number>;
|
|
1104
|
+
label: pulumi.Input<string>;
|
|
461
1105
|
permissions: pulumi.Input<string>;
|
|
462
1106
|
}
|
|
463
1107
|
export interface GetUserLongviewGrant {
|
|
464
1108
|
id: number;
|
|
1109
|
+
label: string;
|
|
465
1110
|
permissions: string;
|
|
466
1111
|
}
|
|
467
1112
|
export interface GetUserLongviewGrantArgs {
|
|
468
1113
|
id: pulumi.Input<number>;
|
|
1114
|
+
label: pulumi.Input<string>;
|
|
469
1115
|
permissions: pulumi.Input<string>;
|
|
470
1116
|
}
|
|
471
1117
|
export interface GetUserNodebalancerGrant {
|
|
472
1118
|
id: number;
|
|
1119
|
+
label: string;
|
|
473
1120
|
permissions: string;
|
|
474
1121
|
}
|
|
475
1122
|
export interface GetUserNodebalancerGrantArgs {
|
|
476
1123
|
id: pulumi.Input<number>;
|
|
1124
|
+
label: pulumi.Input<string>;
|
|
477
1125
|
permissions: pulumi.Input<string>;
|
|
478
1126
|
}
|
|
479
1127
|
export interface GetUserStackscriptGrant {
|
|
480
1128
|
id: number;
|
|
1129
|
+
label: string;
|
|
481
1130
|
permissions: string;
|
|
482
1131
|
}
|
|
483
1132
|
export interface GetUserStackscriptGrantArgs {
|
|
484
1133
|
id: pulumi.Input<number>;
|
|
1134
|
+
label: pulumi.Input<string>;
|
|
485
1135
|
permissions: pulumi.Input<string>;
|
|
486
1136
|
}
|
|
487
1137
|
export interface GetUserVolumeGrant {
|
|
488
1138
|
id: number;
|
|
1139
|
+
label: string;
|
|
489
1140
|
permissions: string;
|
|
490
1141
|
}
|
|
491
1142
|
export interface GetUserVolumeGrantArgs {
|
|
492
1143
|
id: pulumi.Input<number>;
|
|
1144
|
+
label: pulumi.Input<string>;
|
|
493
1145
|
permissions: pulumi.Input<string>;
|
|
494
1146
|
}
|
|
495
1147
|
export interface GetVlansFilter {
|
|
@@ -520,6 +1172,42 @@ export interface GetVlansFilterArgs {
|
|
|
520
1172
|
*/
|
|
521
1173
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
522
1174
|
}
|
|
1175
|
+
export interface GetVlansVlan {
|
|
1176
|
+
/**
|
|
1177
|
+
* When the VLAN was created.
|
|
1178
|
+
*/
|
|
1179
|
+
created?: string;
|
|
1180
|
+
/**
|
|
1181
|
+
* The unique label of the VLAN.
|
|
1182
|
+
*/
|
|
1183
|
+
label?: string;
|
|
1184
|
+
/**
|
|
1185
|
+
* The running Linodes currently attached to the VLAN.
|
|
1186
|
+
*/
|
|
1187
|
+
linodes?: number[];
|
|
1188
|
+
/**
|
|
1189
|
+
* The region the VLAN is located in. See all regions [here](https://api.linode.com/v4/regions).
|
|
1190
|
+
*/
|
|
1191
|
+
region?: string;
|
|
1192
|
+
}
|
|
1193
|
+
export interface GetVlansVlanArgs {
|
|
1194
|
+
/**
|
|
1195
|
+
* When the VLAN was created.
|
|
1196
|
+
*/
|
|
1197
|
+
created?: pulumi.Input<string>;
|
|
1198
|
+
/**
|
|
1199
|
+
* The unique label of the VLAN.
|
|
1200
|
+
*/
|
|
1201
|
+
label?: pulumi.Input<string>;
|
|
1202
|
+
/**
|
|
1203
|
+
* The running Linodes currently attached to the VLAN.
|
|
1204
|
+
*/
|
|
1205
|
+
linodes?: pulumi.Input<pulumi.Input<number>[]>;
|
|
1206
|
+
/**
|
|
1207
|
+
* The region the VLAN is located in. See all regions [here](https://api.linode.com/v4/regions).
|
|
1208
|
+
*/
|
|
1209
|
+
region?: pulumi.Input<string>;
|
|
1210
|
+
}
|
|
523
1211
|
export interface InstanceAlerts {
|
|
524
1212
|
cpu?: pulumi.Input<number>;
|
|
525
1213
|
io?: pulumi.Input<number>;
|