You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* An empty device disk dictionary or a dictionary with empty values for device slots is allowed.
16310
16252
16311
-
* If no devices are specified, booting from this configuration will hold waiting for a device
16312
-
to exist before being able to boot.
16253
+
* If no devices are specified, booting from this configuration will hold until a device exists that allows the boot process to start.
16313
16254
properties:
16314
16255
sda:
16315
16256
$ref: '#/components/schemas/Device'
@@ -17754,84 +17695,6 @@ components:
17754
17695
a Linode Disk, and will become "available" shortly. Images in a
17755
17696
"pending_upload" status are waiting for data to be [uploaded](/docs/api/images/#image-upload),
17756
17697
and become "available" after the upload and processing are complete.
17757
-
LinodeConfigInterface:
17758
-
type: object
17759
-
description: >
17760
-
The Network Interface to apply to this Linode's configuration profile.
17761
-
properties:
17762
-
label:
17763
-
type: string
17764
-
minLength: 1
17765
-
maxLength: 64
17766
-
pattern: '/[a-z0-9-]+/'
17767
-
x-linode-filterable: true
17768
-
nullable: true
17769
-
description: |
17770
-
The name of this interface.
17771
-
17772
-
Required for `vlan` purpose interfaces. Must be an empty string or `null` for `public` purpose interfaces.
17773
-
17774
-
If the VLAN label is new, a VLAN is created. Up to 10 VLANs can be created in each data center region. To view your active VLANs, use the [VLANs List](/docs/api/networking/#vlans-list) endpoint.
17775
-
17776
-
May only consist of ASCII letters, numbers, and dashes (`-`).
17777
-
17778
-
Must be unique among the Linode's interfaces.
17779
-
example: example-interface
17780
-
ipam_address:
17781
-
type: string
17782
-
format: ip/netmask
17783
-
nullable: true
17784
-
description: |
17785
-
This Network Interface's private IP address in Classless Inter-Domain Routing (CIDR) notation.
17786
-
17787
-
Only used for `vlan` purpose interfaces. Must be an empty string or `null` for `public` purpose interfaces.
17788
-
17789
-
The Linode is configured to use this address for the associated interface upon reboot if Network Helper is enabled. If Network Helper is disabled, the address can be enabled with [manual static IP configuration](/docs/guides/linux-static-ip-configuration/).
17790
-
17791
-
Must be unique among the Linode's interfaces.
17792
-
example: '10.0.0.1/24'
17793
-
purpose:
17794
-
type: string
17795
-
enum:
17796
-
- public
17797
-
- vlan
17798
-
description: |
17799
-
The type of interface.
17800
-
17801
-
* `public`
17802
-
* Only one `public` interface per Linode can be defined.
17803
-
* The Linode's default public IPv4 address is assigned to the `public` interface.
17804
-
* If no `public` interface is defined, the Linode is not reachable via the public internet; access can only be established via LISH or other Linodes connected to the same VLAN.
17805
-
17806
-
* `vlan`
17807
-
* Configuring a `vlan` purpose interface attaches this Linode to the VLAN with the specified `label`.
17808
-
* The Linode is configured to use the specified `ipam_address`, if any.
An array of Network Interfaces to add to this Linode's Configuration Profile.
17816
-
17817
-
Up to three interface objects can be entered in this array. The position in the array determines the interface to which the settings apply:
17818
-
17819
-
- First/0: eth0
17820
-
- Second/1: eth1
17821
-
- Third/2: eth2
17822
-
17823
-
When updating a Linode's interfaces, *each interface must be redefined*. An empty interfaces array results in a default public interface configuration only.
17824
-
17825
-
If no public interface is configured, public IP addresses are still assigned to the Linode but will not be usable without manual configuration.
17826
-
17827
-
**Note:** Changes to Linode interface configurations can be enabled by rebooting the Linode.
17828
-
17829
-
**Note:** Only Next Generation Network (NGN) data centers support VLANs. Use the Regions ([/regions](/docs/api/regions/)) endpoint to view the capabilities of data center regions.
17830
-
If a VLAN is attached to your Linode and you attempt to migrate or clone it to a non-NGN data center,
17831
-
the migration or cloning will not initiate. If a Linode cannot be migrated because of an incompatibility,
17832
-
you will be prompted to select a different data center or contact support.
17833
-
17834
-
**Note:** See our guide on [Getting Started with VLANs](/docs/guides/getting-started-with-vlans/) to view additional [limitations](/docs/guides/getting-started-with-vlans/#limitations).
17835
17698
Invoice:
17836
17699
type: object
17837
17700
description: Account Invoice object
@@ -18672,10 +18535,6 @@ components:
18672
18535
example: true
18673
18536
LinodeConfig:
18674
18537
type: object
18675
-
required:
18676
-
- label
18677
-
- devices
18678
-
- purpose
18679
18538
properties:
18680
18539
id:
18681
18540
type: integer
@@ -18770,8 +18629,87 @@ components:
18770
18629
18771
18630
* If the device specified at the root device location is not mounted,
18772
18631
the Linode will not boot until a device is mounted.
18773
-
18774
18632
example: /dev/sda
18633
+
LinodeConfigInterface:
18634
+
type: object
18635
+
description: >
18636
+
The Network Interface to apply to this Linode's configuration profile.
18637
+
properties:
18638
+
label:
18639
+
type: string
18640
+
minLength: 1
18641
+
maxLength: 64
18642
+
pattern: '/[a-z0-9-]+/'
18643
+
x-linode-filterable: true
18644
+
nullable: true
18645
+
description: |
18646
+
The name of this interface.
18647
+
18648
+
Required for `vlan` purpose interfaces. Must be an empty string or `null` for `public` purpose interfaces.
18649
+
18650
+
If the VLAN label is new, a VLAN is created. Up to 10 VLANs can be created in each data center region. To view your active VLANs, use the [VLANs List](/docs/api/networking/#vlans-list) endpoint.
18651
+
18652
+
May only consist of ASCII letters, numbers, and dashes (`-`).
18653
+
18654
+
Must be unique among the Linode's interfaces.
18655
+
example: example-interface
18656
+
ipam_address:
18657
+
type: string
18658
+
format: ip/netmask
18659
+
nullable: true
18660
+
description: |
18661
+
This Network Interface's private IP address in Classless Inter-Domain Routing (CIDR) notation.
18662
+
18663
+
Only used for `vlan` purpose interfaces. Must be an empty string or `null` for `public` purpose interfaces.
18664
+
18665
+
The Linode is configured to use this address for the associated interface upon reboot if Network Helper is enabled. If Network Helper is disabled, the address can be enabled with [manual static IP configuration](/docs/guides/linux-static-ip-configuration/).
18666
+
18667
+
Must be unique among the Linode's interfaces.
18668
+
example: '10.0.0.1/24'
18669
+
purpose:
18670
+
type: string
18671
+
enum:
18672
+
- public
18673
+
- vlan
18674
+
description: |
18675
+
The type of interface.
18676
+
18677
+
* `public`
18678
+
* Only one `public` interface per Linode can be defined.
18679
+
* The Linode's default public IPv4 address is assigned to the `public` interface.
18680
+
* If no `public` interface is defined, the Linode is not reachable via the public internet; access can only be established via LISH or other Linodes connected to the same VLAN.
18681
+
18682
+
* `vlan`
18683
+
* Configuring a `vlan` purpose interface attaches this Linode to the VLAN with the specified `label`.
18684
+
* The Linode is configured to use the specified `ipam_address`, if any.
An array of Network Interfaces to add to this Linode's Configuration Profile.
18694
+
18695
+
Up to three interface objects can be entered in this array. The position in the array determines the interface to which the settings apply:
18696
+
18697
+
- First/0: eth0
18698
+
- Second/1: eth1
18699
+
- Third/2: eth2
18700
+
18701
+
When updating a Linode's interfaces, *each interface must be redefined*. An empty interfaces array results in a default public interface configuration only.
18702
+
18703
+
If no public interface is configured, public IP addresses are still assigned to the Linode but will not be usable without manual configuration.
18704
+
18705
+
**Note:** Changes to Linode interface configurations can be enabled by rebooting the Linode.
18706
+
18707
+
**Note:** Only Next Generation Network (NGN) data centers support VLANs. Use the Regions ([/regions](/docs/api/regions/)) endpoint to view the capabilities of data center regions.
18708
+
If a VLAN is attached to your Linode and you attempt to migrate or clone it to a non-NGN data center,
18709
+
the migration or cloning will not initiate. If a Linode cannot be migrated because of an incompatibility,
18710
+
you will be prompted to select a different data center or contact support.
18711
+
18712
+
**Note:** See our guide on [Getting Started with VLANs](/docs/guides/getting-started-with-vlans/) to view additional [limitations](/docs/guides/getting-started-with-vlans/#limitations).
18775
18713
LinodeRequest:
18776
18714
type: object
18777
18715
description: Common properties for creating and rebuilding Linodes.
0 commit comments