@@ -294,7 +294,7 @@ class NetworkInterface(DerivedBase):
294
294
NOTE: This class cannot be used for the `interfaces` attribute on Config
295
295
POST and PUT requests.
296
296
297
- API Documentation: TODO
297
+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-linode-config-interface
298
298
"""
299
299
300
300
api_endpoint = (
@@ -369,7 +369,7 @@ class ConfigInterface(JSONObject):
369
369
If you would like to access a config interface directly,
370
370
consider using :any:`NetworkInterface`.
371
371
372
- API Documentation: TODO
372
+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-linode-config-interface
373
373
"""
374
374
375
375
purpose : str = "public"
@@ -462,7 +462,7 @@ def network_interfaces(self):
462
462
This differs from the `interfaces` field as each NetworkInterface
463
463
object is treated as its own API object.
464
464
465
- API Documentation: TODO
465
+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-linode-config-interfaces
466
466
"""
467
467
468
468
return [
@@ -523,7 +523,7 @@ def interface_create_public(self, primary=False) -> NetworkInterface:
523
523
"""
524
524
Creates a public interface for this Configuration Profile.
525
525
526
- API Documentation: TODO
526
+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-linode-config-interface
527
527
528
528
:param primary: Whether this interface is a primary interface.
529
529
:type primary: bool
@@ -540,7 +540,7 @@ def interface_create_vlan(
540
540
"""
541
541
Creates a VLAN interface for this Configuration Profile.
542
542
543
- API Documentation: TODO
543
+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-linode-config-interface
544
544
545
545
:param label: The label of the VLAN to associate this interface with.
546
546
:type label: str
@@ -569,7 +569,7 @@ def interface_create_vpc(
569
569
"""
570
570
Creates a VPC interface for this Configuration Profile.
571
571
572
- API Documentation: TODO
572
+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-linode-config-interface
573
573
574
574
:param subnet: The VPC subnet to associate this interface with.
575
575
:type subnet: int or VPCSubnet
@@ -605,7 +605,7 @@ def interface_reorder(self, interfaces: List[Union[int, NetworkInterface]]):
605
605
"""
606
606
Change the order of the interfaces for this Configuration Profile.
607
607
608
- API Documentation: TODO
608
+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-linode-config-interfaces
609
609
610
610
:param interfaces: A list of interfaces in the desired order.
611
611
:type interfaces: List of str or NetworkInterface
0 commit comments