@@ -294,7 +294,7 @@ class NetworkInterface(DerivedBase):
294294 NOTE: This class cannot be used for the `interfaces` attribute on Config
295295 POST and PUT requests.
296296
297- API Documentation: TODO
297+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-linode-config-interface
298298 """
299299
300300 api_endpoint = (
@@ -369,7 +369,7 @@ class ConfigInterface(JSONObject):
369369 If you would like to access a config interface directly,
370370 consider using :any:`NetworkInterface`.
371371
372- API Documentation: TODO
372+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-linode-config-interface
373373 """
374374
375375 purpose : str = "public"
@@ -462,7 +462,7 @@ def network_interfaces(self):
462462 This differs from the `interfaces` field as each NetworkInterface
463463 object is treated as its own API object.
464464
465- API Documentation: TODO
465+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-linode-config-interfaces
466466 """
467467
468468 return [
@@ -523,7 +523,7 @@ def interface_create_public(self, primary=False) -> NetworkInterface:
523523 """
524524 Creates a public interface for this Configuration Profile.
525525
526- API Documentation: TODO
526+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-linode-config-interface
527527
528528 :param primary: Whether this interface is a primary interface.
529529 :type primary: bool
@@ -540,7 +540,7 @@ def interface_create_vlan(
540540 """
541541 Creates a VLAN interface for this Configuration Profile.
542542
543- API Documentation: TODO
543+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-linode-config-interface
544544
545545 :param label: The label of the VLAN to associate this interface with.
546546 :type label: str
@@ -569,7 +569,7 @@ def interface_create_vpc(
569569 """
570570 Creates a VPC interface for this Configuration Profile.
571571
572- API Documentation: TODO
572+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-linode-config-interface
573573
574574 :param subnet: The VPC subnet to associate this interface with.
575575 :type subnet: int or VPCSubnet
@@ -605,7 +605,7 @@ def interface_reorder(self, interfaces: List[Union[int, NetworkInterface]]):
605605 """
606606 Change the order of the interfaces for this Configuration Profile.
607607
608- API Documentation: TODO
608+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-linode-config-interfaces
609609
610610 :param interfaces: A list of interfaces in the desired order.
611611 :type interfaces: List of str or NetworkInterface
0 commit comments