@pulumi/linode 4.5.0 → 4.5.1
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/firewall.d.ts +16 -0
- package/firewall.js +4 -0
- package/firewall.js.map +1 -1
- package/getFirewall.d.ts +8 -0
- package/getFirewall.js.map +1 -1
- package/getFirewalls.d.ts +190 -0
- package/getFirewalls.js +165 -0
- package/getFirewalls.js.map +1 -0
- package/getKernel.d.ts +1 -0
- package/getKernel.js.map +1 -1
- package/getKernels.d.ts +132 -0
- package/getKernels.js +107 -0
- package/getKernels.js.map +1 -0
- package/getSshkeys.d.ts +116 -0
- package/getSshkeys.js +91 -0
- package/getSshkeys.js.map +1 -0
- package/index.d.ts +9 -0
- package/index.js +12 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +350 -0
- package/types/output.d.ts +175 -0
package/types/input.d.ts
CHANGED
|
@@ -472,6 +472,194 @@ export interface GetDatabasesFilterArgs {
|
|
|
472
472
|
*/
|
|
473
473
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
474
474
|
}
|
|
475
|
+
export interface GetFirewallsFilter {
|
|
476
|
+
/**
|
|
477
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
478
|
+
*/
|
|
479
|
+
matchBy?: string;
|
|
480
|
+
/**
|
|
481
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
482
|
+
*/
|
|
483
|
+
name: string;
|
|
484
|
+
/**
|
|
485
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
486
|
+
*/
|
|
487
|
+
values: string[];
|
|
488
|
+
}
|
|
489
|
+
export interface GetFirewallsFilterArgs {
|
|
490
|
+
/**
|
|
491
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
492
|
+
*/
|
|
493
|
+
matchBy?: pulumi.Input<string>;
|
|
494
|
+
/**
|
|
495
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
496
|
+
*/
|
|
497
|
+
name: pulumi.Input<string>;
|
|
498
|
+
/**
|
|
499
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
500
|
+
*/
|
|
501
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
502
|
+
}
|
|
503
|
+
export interface GetFirewallsFirewall {
|
|
504
|
+
/**
|
|
505
|
+
* When this firewall was created.
|
|
506
|
+
*/
|
|
507
|
+
created?: string;
|
|
508
|
+
devices?: inputs.GetFirewallsFirewallDevice[];
|
|
509
|
+
/**
|
|
510
|
+
* If true, the Firewall is inactive.
|
|
511
|
+
*/
|
|
512
|
+
disabled?: boolean;
|
|
513
|
+
/**
|
|
514
|
+
* The unique ID assigned to this Firewall.
|
|
515
|
+
*/
|
|
516
|
+
id?: number;
|
|
517
|
+
/**
|
|
518
|
+
* The default behavior for inbound traffic.
|
|
519
|
+
*/
|
|
520
|
+
inboundPolicy?: string;
|
|
521
|
+
inbounds?: inputs.GetFirewallsFirewallInbound[];
|
|
522
|
+
/**
|
|
523
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
524
|
+
*/
|
|
525
|
+
label?: string;
|
|
526
|
+
/**
|
|
527
|
+
* The IDs of Linodes this firewall is applied to.
|
|
528
|
+
*/
|
|
529
|
+
linodes?: number[];
|
|
530
|
+
/**
|
|
531
|
+
* The default behavior for outbound traffic.
|
|
532
|
+
*/
|
|
533
|
+
outboundPolicy?: string;
|
|
534
|
+
outbounds?: inputs.GetFirewallsFirewallOutbound[];
|
|
535
|
+
/**
|
|
536
|
+
* The status of the firewall.
|
|
537
|
+
*/
|
|
538
|
+
status?: string;
|
|
539
|
+
/**
|
|
540
|
+
* An array of tags applied to this object. Tags are for organizational purposes only.
|
|
541
|
+
*/
|
|
542
|
+
tags?: string[];
|
|
543
|
+
/**
|
|
544
|
+
* When this firewall was last updated.
|
|
545
|
+
*/
|
|
546
|
+
updated?: string;
|
|
547
|
+
}
|
|
548
|
+
export interface GetFirewallsFirewallArgs {
|
|
549
|
+
/**
|
|
550
|
+
* When this firewall was created.
|
|
551
|
+
*/
|
|
552
|
+
created?: pulumi.Input<string>;
|
|
553
|
+
devices?: pulumi.Input<pulumi.Input<inputs.GetFirewallsFirewallDeviceArgs>[]>;
|
|
554
|
+
/**
|
|
555
|
+
* If true, the Firewall is inactive.
|
|
556
|
+
*/
|
|
557
|
+
disabled?: pulumi.Input<boolean>;
|
|
558
|
+
/**
|
|
559
|
+
* The unique ID assigned to this Firewall.
|
|
560
|
+
*/
|
|
561
|
+
id?: pulumi.Input<number>;
|
|
562
|
+
/**
|
|
563
|
+
* The default behavior for inbound traffic.
|
|
564
|
+
*/
|
|
565
|
+
inboundPolicy?: pulumi.Input<string>;
|
|
566
|
+
inbounds?: pulumi.Input<pulumi.Input<inputs.GetFirewallsFirewallInboundArgs>[]>;
|
|
567
|
+
/**
|
|
568
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
569
|
+
*/
|
|
570
|
+
label?: pulumi.Input<string>;
|
|
571
|
+
/**
|
|
572
|
+
* The IDs of Linodes this firewall is applied to.
|
|
573
|
+
*/
|
|
574
|
+
linodes?: pulumi.Input<pulumi.Input<number>[]>;
|
|
575
|
+
/**
|
|
576
|
+
* The default behavior for outbound traffic.
|
|
577
|
+
*/
|
|
578
|
+
outboundPolicy?: pulumi.Input<string>;
|
|
579
|
+
outbounds?: pulumi.Input<pulumi.Input<inputs.GetFirewallsFirewallOutboundArgs>[]>;
|
|
580
|
+
/**
|
|
581
|
+
* The status of the firewall.
|
|
582
|
+
*/
|
|
583
|
+
status?: pulumi.Input<string>;
|
|
584
|
+
/**
|
|
585
|
+
* An array of tags applied to this object. Tags are for organizational purposes only.
|
|
586
|
+
*/
|
|
587
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
588
|
+
/**
|
|
589
|
+
* When this firewall was last updated.
|
|
590
|
+
*/
|
|
591
|
+
updated?: pulumi.Input<string>;
|
|
592
|
+
}
|
|
593
|
+
export interface GetFirewallsFirewallDevice {
|
|
594
|
+
entityId?: number;
|
|
595
|
+
/**
|
|
596
|
+
* The unique ID assigned to this Firewall.
|
|
597
|
+
*/
|
|
598
|
+
id?: number;
|
|
599
|
+
/**
|
|
600
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
601
|
+
*/
|
|
602
|
+
label?: string;
|
|
603
|
+
type?: string;
|
|
604
|
+
url?: string;
|
|
605
|
+
}
|
|
606
|
+
export interface GetFirewallsFirewallDeviceArgs {
|
|
607
|
+
entityId?: pulumi.Input<number>;
|
|
608
|
+
/**
|
|
609
|
+
* The unique ID assigned to this Firewall.
|
|
610
|
+
*/
|
|
611
|
+
id?: pulumi.Input<number>;
|
|
612
|
+
/**
|
|
613
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
614
|
+
*/
|
|
615
|
+
label?: pulumi.Input<string>;
|
|
616
|
+
type?: pulumi.Input<string>;
|
|
617
|
+
url?: pulumi.Input<string>;
|
|
618
|
+
}
|
|
619
|
+
export interface GetFirewallsFirewallInbound {
|
|
620
|
+
action?: string;
|
|
621
|
+
ipv4s?: string[];
|
|
622
|
+
ipv6s?: string[];
|
|
623
|
+
/**
|
|
624
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
625
|
+
*/
|
|
626
|
+
label?: string;
|
|
627
|
+
ports?: string;
|
|
628
|
+
protocol?: string;
|
|
629
|
+
}
|
|
630
|
+
export interface GetFirewallsFirewallInboundArgs {
|
|
631
|
+
action?: pulumi.Input<string>;
|
|
632
|
+
ipv4s?: pulumi.Input<pulumi.Input<string>[]>;
|
|
633
|
+
ipv6s?: pulumi.Input<pulumi.Input<string>[]>;
|
|
634
|
+
/**
|
|
635
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
636
|
+
*/
|
|
637
|
+
label?: pulumi.Input<string>;
|
|
638
|
+
ports?: pulumi.Input<string>;
|
|
639
|
+
protocol?: pulumi.Input<string>;
|
|
640
|
+
}
|
|
641
|
+
export interface GetFirewallsFirewallOutbound {
|
|
642
|
+
action?: string;
|
|
643
|
+
ipv4s?: string[];
|
|
644
|
+
ipv6s?: string[];
|
|
645
|
+
/**
|
|
646
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
647
|
+
*/
|
|
648
|
+
label?: string;
|
|
649
|
+
ports?: string;
|
|
650
|
+
protocol?: string;
|
|
651
|
+
}
|
|
652
|
+
export interface GetFirewallsFirewallOutboundArgs {
|
|
653
|
+
action?: pulumi.Input<string>;
|
|
654
|
+
ipv4s?: pulumi.Input<pulumi.Input<string>[]>;
|
|
655
|
+
ipv6s?: pulumi.Input<pulumi.Input<string>[]>;
|
|
656
|
+
/**
|
|
657
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
658
|
+
*/
|
|
659
|
+
label?: pulumi.Input<string>;
|
|
660
|
+
ports?: pulumi.Input<string>;
|
|
661
|
+
protocol?: pulumi.Input<string>;
|
|
662
|
+
}
|
|
475
663
|
export interface GetImagesFilter {
|
|
476
664
|
/**
|
|
477
665
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -752,6 +940,104 @@ export interface GetInstancesFilterArgs {
|
|
|
752
940
|
*/
|
|
753
941
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
754
942
|
}
|
|
943
|
+
export interface GetKernelsFilter {
|
|
944
|
+
/**
|
|
945
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
946
|
+
*/
|
|
947
|
+
matchBy?: string;
|
|
948
|
+
/**
|
|
949
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
950
|
+
*/
|
|
951
|
+
name: string;
|
|
952
|
+
/**
|
|
953
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
954
|
+
*/
|
|
955
|
+
values: string[];
|
|
956
|
+
}
|
|
957
|
+
export interface GetKernelsFilterArgs {
|
|
958
|
+
/**
|
|
959
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
960
|
+
*/
|
|
961
|
+
matchBy?: pulumi.Input<string>;
|
|
962
|
+
/**
|
|
963
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
964
|
+
*/
|
|
965
|
+
name: pulumi.Input<string>;
|
|
966
|
+
/**
|
|
967
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
968
|
+
*/
|
|
969
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
970
|
+
}
|
|
971
|
+
export interface GetKernelsKernel {
|
|
972
|
+
/**
|
|
973
|
+
* The architecture of this Kernel.
|
|
974
|
+
*/
|
|
975
|
+
architecture?: string;
|
|
976
|
+
built?: string;
|
|
977
|
+
/**
|
|
978
|
+
* Whether or not this Kernel is deprecated.
|
|
979
|
+
*/
|
|
980
|
+
deprecated?: boolean;
|
|
981
|
+
/**
|
|
982
|
+
* The unique ID of this Kernel.
|
|
983
|
+
*/
|
|
984
|
+
id: string;
|
|
985
|
+
/**
|
|
986
|
+
* If this Kernel is suitable for KVM Linodes.
|
|
987
|
+
*/
|
|
988
|
+
kvm?: boolean;
|
|
989
|
+
/**
|
|
990
|
+
* The friendly name of this Kernel.
|
|
991
|
+
*/
|
|
992
|
+
label?: string;
|
|
993
|
+
/**
|
|
994
|
+
* If this Kernel is suitable for paravirtualized operations.
|
|
995
|
+
*/
|
|
996
|
+
pvops?: boolean;
|
|
997
|
+
/**
|
|
998
|
+
* Linux Kernel version
|
|
999
|
+
*/
|
|
1000
|
+
version?: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* If this Kernel is suitable for Xen Linodes.
|
|
1003
|
+
*/
|
|
1004
|
+
xen?: boolean;
|
|
1005
|
+
}
|
|
1006
|
+
export interface GetKernelsKernelArgs {
|
|
1007
|
+
/**
|
|
1008
|
+
* The architecture of this Kernel.
|
|
1009
|
+
*/
|
|
1010
|
+
architecture?: pulumi.Input<string>;
|
|
1011
|
+
built?: pulumi.Input<string>;
|
|
1012
|
+
/**
|
|
1013
|
+
* Whether or not this Kernel is deprecated.
|
|
1014
|
+
*/
|
|
1015
|
+
deprecated?: pulumi.Input<boolean>;
|
|
1016
|
+
/**
|
|
1017
|
+
* The unique ID of this Kernel.
|
|
1018
|
+
*/
|
|
1019
|
+
id: pulumi.Input<string>;
|
|
1020
|
+
/**
|
|
1021
|
+
* If this Kernel is suitable for KVM Linodes.
|
|
1022
|
+
*/
|
|
1023
|
+
kvm?: pulumi.Input<boolean>;
|
|
1024
|
+
/**
|
|
1025
|
+
* The friendly name of this Kernel.
|
|
1026
|
+
*/
|
|
1027
|
+
label?: pulumi.Input<string>;
|
|
1028
|
+
/**
|
|
1029
|
+
* If this Kernel is suitable for paravirtualized operations.
|
|
1030
|
+
*/
|
|
1031
|
+
pvops?: pulumi.Input<boolean>;
|
|
1032
|
+
/**
|
|
1033
|
+
* Linux Kernel version
|
|
1034
|
+
*/
|
|
1035
|
+
version?: pulumi.Input<string>;
|
|
1036
|
+
/**
|
|
1037
|
+
* If this Kernel is suitable for Xen Linodes.
|
|
1038
|
+
*/
|
|
1039
|
+
xen?: pulumi.Input<boolean>;
|
|
1040
|
+
}
|
|
755
1041
|
export interface GetNodebalancersFilter {
|
|
756
1042
|
/**
|
|
757
1043
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -1002,6 +1288,70 @@ export interface GetRegionsRegionResolverArgs {
|
|
|
1002
1288
|
*/
|
|
1003
1289
|
ipv6?: pulumi.Input<string>;
|
|
1004
1290
|
}
|
|
1291
|
+
export interface GetSshkeysFilter {
|
|
1292
|
+
/**
|
|
1293
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
1294
|
+
*/
|
|
1295
|
+
matchBy?: string;
|
|
1296
|
+
/**
|
|
1297
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1298
|
+
*/
|
|
1299
|
+
name: string;
|
|
1300
|
+
/**
|
|
1301
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
1302
|
+
*/
|
|
1303
|
+
values: string[];
|
|
1304
|
+
}
|
|
1305
|
+
export interface GetSshkeysFilterArgs {
|
|
1306
|
+
/**
|
|
1307
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
1308
|
+
*/
|
|
1309
|
+
matchBy?: pulumi.Input<string>;
|
|
1310
|
+
/**
|
|
1311
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1312
|
+
*/
|
|
1313
|
+
name: pulumi.Input<string>;
|
|
1314
|
+
/**
|
|
1315
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
1316
|
+
*/
|
|
1317
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
1318
|
+
}
|
|
1319
|
+
export interface GetSshkeysSshkey {
|
|
1320
|
+
/**
|
|
1321
|
+
* The date this key was added.
|
|
1322
|
+
*/
|
|
1323
|
+
created?: string;
|
|
1324
|
+
/**
|
|
1325
|
+
* The ID of the SSH Key.
|
|
1326
|
+
*/
|
|
1327
|
+
id?: string;
|
|
1328
|
+
/**
|
|
1329
|
+
* The label of the SSH Key.
|
|
1330
|
+
*/
|
|
1331
|
+
label: string;
|
|
1332
|
+
/**
|
|
1333
|
+
* The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
|
|
1334
|
+
*/
|
|
1335
|
+
sshKey?: string;
|
|
1336
|
+
}
|
|
1337
|
+
export interface GetSshkeysSshkeyArgs {
|
|
1338
|
+
/**
|
|
1339
|
+
* The date this key was added.
|
|
1340
|
+
*/
|
|
1341
|
+
created?: pulumi.Input<string>;
|
|
1342
|
+
/**
|
|
1343
|
+
* The ID of the SSH Key.
|
|
1344
|
+
*/
|
|
1345
|
+
id?: pulumi.Input<string>;
|
|
1346
|
+
/**
|
|
1347
|
+
* The label of the SSH Key.
|
|
1348
|
+
*/
|
|
1349
|
+
label: pulumi.Input<string>;
|
|
1350
|
+
/**
|
|
1351
|
+
* The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
|
|
1352
|
+
*/
|
|
1353
|
+
sshKey?: pulumi.Input<string>;
|
|
1354
|
+
}
|
|
1005
1355
|
export interface GetStackScriptsFilter {
|
|
1006
1356
|
/**
|
|
1007
1357
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
package/types/output.d.ts
CHANGED
|
@@ -385,6 +385,100 @@ export interface GetFirewallOutbound {
|
|
|
385
385
|
*/
|
|
386
386
|
protocol: string;
|
|
387
387
|
}
|
|
388
|
+
export interface GetFirewallsFilter {
|
|
389
|
+
/**
|
|
390
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
391
|
+
*/
|
|
392
|
+
matchBy?: string;
|
|
393
|
+
/**
|
|
394
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
395
|
+
*/
|
|
396
|
+
name: string;
|
|
397
|
+
/**
|
|
398
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
399
|
+
*/
|
|
400
|
+
values: string[];
|
|
401
|
+
}
|
|
402
|
+
export interface GetFirewallsFirewall {
|
|
403
|
+
/**
|
|
404
|
+
* When this firewall was created.
|
|
405
|
+
*/
|
|
406
|
+
created: string;
|
|
407
|
+
devices?: outputs.GetFirewallsFirewallDevice[];
|
|
408
|
+
/**
|
|
409
|
+
* If true, the Firewall is inactive.
|
|
410
|
+
*/
|
|
411
|
+
disabled: boolean;
|
|
412
|
+
/**
|
|
413
|
+
* The unique ID assigned to this Firewall.
|
|
414
|
+
*/
|
|
415
|
+
id: number;
|
|
416
|
+
/**
|
|
417
|
+
* The default behavior for inbound traffic.
|
|
418
|
+
*/
|
|
419
|
+
inboundPolicy: string;
|
|
420
|
+
inbounds?: outputs.GetFirewallsFirewallInbound[];
|
|
421
|
+
/**
|
|
422
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
423
|
+
*/
|
|
424
|
+
label: string;
|
|
425
|
+
/**
|
|
426
|
+
* The IDs of Linodes this firewall is applied to.
|
|
427
|
+
*/
|
|
428
|
+
linodes: number[];
|
|
429
|
+
/**
|
|
430
|
+
* The default behavior for outbound traffic.
|
|
431
|
+
*/
|
|
432
|
+
outboundPolicy: string;
|
|
433
|
+
outbounds?: outputs.GetFirewallsFirewallOutbound[];
|
|
434
|
+
/**
|
|
435
|
+
* The status of the firewall.
|
|
436
|
+
*/
|
|
437
|
+
status: string;
|
|
438
|
+
/**
|
|
439
|
+
* An array of tags applied to this object. Tags are for organizational purposes only.
|
|
440
|
+
*/
|
|
441
|
+
tags: string[];
|
|
442
|
+
/**
|
|
443
|
+
* When this firewall was last updated.
|
|
444
|
+
*/
|
|
445
|
+
updated: string;
|
|
446
|
+
}
|
|
447
|
+
export interface GetFirewallsFirewallDevice {
|
|
448
|
+
entityId: number;
|
|
449
|
+
/**
|
|
450
|
+
* The unique ID assigned to this Firewall.
|
|
451
|
+
*/
|
|
452
|
+
id: number;
|
|
453
|
+
/**
|
|
454
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
455
|
+
*/
|
|
456
|
+
label: string;
|
|
457
|
+
type: string;
|
|
458
|
+
url: string;
|
|
459
|
+
}
|
|
460
|
+
export interface GetFirewallsFirewallInbound {
|
|
461
|
+
action: string;
|
|
462
|
+
ipv4s: string[];
|
|
463
|
+
ipv6s: string[];
|
|
464
|
+
/**
|
|
465
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
466
|
+
*/
|
|
467
|
+
label: string;
|
|
468
|
+
ports: string;
|
|
469
|
+
protocol: string;
|
|
470
|
+
}
|
|
471
|
+
export interface GetFirewallsFirewallOutbound {
|
|
472
|
+
action: string;
|
|
473
|
+
ipv4s: string[];
|
|
474
|
+
ipv6s: string[];
|
|
475
|
+
/**
|
|
476
|
+
* The label for the Firewall. For display purposes only. If no label is provided, a default will be assigned.
|
|
477
|
+
*/
|
|
478
|
+
label: string;
|
|
479
|
+
ports: string;
|
|
480
|
+
protocol: string;
|
|
481
|
+
}
|
|
388
482
|
export interface GetImagesFilter {
|
|
389
483
|
/**
|
|
390
484
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -1258,6 +1352,55 @@ export interface GetInstancesInstanceSpec {
|
|
|
1258
1352
|
transfer: number;
|
|
1259
1353
|
vcpus: number;
|
|
1260
1354
|
}
|
|
1355
|
+
export interface GetKernelsFilter {
|
|
1356
|
+
/**
|
|
1357
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
1358
|
+
*/
|
|
1359
|
+
matchBy?: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1362
|
+
*/
|
|
1363
|
+
name: string;
|
|
1364
|
+
/**
|
|
1365
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
1366
|
+
*/
|
|
1367
|
+
values: string[];
|
|
1368
|
+
}
|
|
1369
|
+
export interface GetKernelsKernel {
|
|
1370
|
+
/**
|
|
1371
|
+
* The architecture of this Kernel.
|
|
1372
|
+
*/
|
|
1373
|
+
architecture: string;
|
|
1374
|
+
built: string;
|
|
1375
|
+
/**
|
|
1376
|
+
* Whether or not this Kernel is deprecated.
|
|
1377
|
+
*/
|
|
1378
|
+
deprecated: boolean;
|
|
1379
|
+
/**
|
|
1380
|
+
* The unique ID of this Kernel.
|
|
1381
|
+
*/
|
|
1382
|
+
id: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* If this Kernel is suitable for KVM Linodes.
|
|
1385
|
+
*/
|
|
1386
|
+
kvm: boolean;
|
|
1387
|
+
/**
|
|
1388
|
+
* The friendly name of this Kernel.
|
|
1389
|
+
*/
|
|
1390
|
+
label: string;
|
|
1391
|
+
/**
|
|
1392
|
+
* If this Kernel is suitable for paravirtualized operations.
|
|
1393
|
+
*/
|
|
1394
|
+
pvops: boolean;
|
|
1395
|
+
/**
|
|
1396
|
+
* Linux Kernel version
|
|
1397
|
+
*/
|
|
1398
|
+
version: string;
|
|
1399
|
+
/**
|
|
1400
|
+
* If this Kernel is suitable for Xen Linodes.
|
|
1401
|
+
*/
|
|
1402
|
+
xen: boolean;
|
|
1403
|
+
}
|
|
1261
1404
|
export interface GetLkeClusterControlPlane {
|
|
1262
1405
|
highAvailability: boolean;
|
|
1263
1406
|
}
|
|
@@ -1470,6 +1613,38 @@ export interface GetRegionsRegionResolver {
|
|
|
1470
1613
|
*/
|
|
1471
1614
|
ipv6: string;
|
|
1472
1615
|
}
|
|
1616
|
+
export interface GetSshkeysFilter {
|
|
1617
|
+
/**
|
|
1618
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
1619
|
+
*/
|
|
1620
|
+
matchBy?: string;
|
|
1621
|
+
/**
|
|
1622
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
1623
|
+
*/
|
|
1624
|
+
name: string;
|
|
1625
|
+
/**
|
|
1626
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
1627
|
+
*/
|
|
1628
|
+
values: string[];
|
|
1629
|
+
}
|
|
1630
|
+
export interface GetSshkeysSshkey {
|
|
1631
|
+
/**
|
|
1632
|
+
* The date this key was added.
|
|
1633
|
+
*/
|
|
1634
|
+
created: string;
|
|
1635
|
+
/**
|
|
1636
|
+
* The ID of the SSH Key.
|
|
1637
|
+
*/
|
|
1638
|
+
id?: string;
|
|
1639
|
+
/**
|
|
1640
|
+
* The label of the SSH Key.
|
|
1641
|
+
*/
|
|
1642
|
+
label: string;
|
|
1643
|
+
/**
|
|
1644
|
+
* The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.
|
|
1645
|
+
*/
|
|
1646
|
+
sshKey: string;
|
|
1647
|
+
}
|
|
1473
1648
|
export interface GetStackScriptUserDefinedField {
|
|
1474
1649
|
/**
|
|
1475
1650
|
* The default value. If not specified, this value will be used.
|