diff --git a/linode_api4/groups/lke.py b/linode_api4/groups/lke.py index b60090595..d0de66f37 100644 --- a/linode_api4/groups/lke.py +++ b/linode_api4/groups/lke.py @@ -161,7 +161,7 @@ def types(self, *filters): """ Returns a :any:`PaginatedList` of :any:`LKEType` objects that represents a valid LKE type. - API Documentation: TODO + API Documentation: https://techdocs.akamai.com/linode-api/reference/get-lke-types :param filters: Any number of filters to apply to this query. See :doc:`Filtering Collections` diff --git a/linode_api4/groups/networking.py b/linode_api4/groups/networking.py index 5d49e9bb3..4820b706d 100644 --- a/linode_api4/groups/networking.py +++ b/linode_api4/groups/networking.py @@ -354,7 +354,7 @@ def transfer_prices(self, *filters): """ Returns a :any:`PaginatedList` of :any:`NetworkTransferPrice` objects that represents a valid network transfer price. - API Documentation: TODO + API Documentation: https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices :param filters: Any number of filters to apply to this query. See :doc:`Filtering Collections` diff --git a/linode_api4/groups/nodebalancer.py b/linode_api4/groups/nodebalancer.py index acc1f07e2..57830c8c4 100644 --- a/linode_api4/groups/nodebalancer.py +++ b/linode_api4/groups/nodebalancer.py @@ -55,7 +55,7 @@ def types(self, *filters): """ Returns a :any:`PaginatedList` of :any:`NodeBalancerType` objects that represents a valid NodeBalancer type. - API Documentation: TODO + API Documentation: https://techdocs.akamai.com/linode-api/reference/get-node-balancer-types :param filters: Any number of filters to apply to this query. See :doc:`Filtering Collections` diff --git a/linode_api4/groups/volume.py b/linode_api4/groups/volume.py index 3a30de762..6e879c3d6 100644 --- a/linode_api4/groups/volume.py +++ b/linode_api4/groups/volume.py @@ -78,7 +78,7 @@ def types(self, *filters): """ Returns a :any:`PaginatedList` of :any:`VolumeType` objects that represents a valid Volume type. - API Documentation: TODO + API Documentation: https://techdocs.akamai.com/linode-api/reference/get-volume-types :param filters: Any number of filters to apply to this query. See :doc:`Filtering Collections` diff --git a/linode_api4/objects/lke.py b/linode_api4/objects/lke.py index 1c2ed3c1a..7ff6b0fd8 100644 --- a/linode_api4/objects/lke.py +++ b/linode_api4/objects/lke.py @@ -22,7 +22,7 @@ class LKEType(Base): Currently the LKEType can only be retrieved by listing, i.e.: types = client.lke.types() - API documentation: TODO + API documentation: https://techdocs.akamai.com/linode-api/reference/get-lke-types """ properties = { @@ -338,7 +338,7 @@ def control_plane_acl(self) -> LKEClusterControlPlaneACL: NOTE: Control Plane ACLs may not currently be available to all users. - API Documentation: TODO + API Documentation: https://techdocs.akamai.com/linode-api/reference/get-lke-cluster-acl :returns: The cluster's control plane ACL configuration. :rtype: LKEClusterControlPlaneACL @@ -529,7 +529,7 @@ def control_plane_acl_update( NOTE: Control Plane ACLs may not currently be available to all users. - API Documentation: TODO + API Documentation: https://techdocs.akamai.com/linode-api/reference/put-lke-cluster-acl :param acl: The ACL configuration to apply to this cluster. :type acl: LKEClusterControlPlaneACLOptions or Dict[str, Any] @@ -560,7 +560,7 @@ def control_plane_acl_delete(self): NOTE: Control Plane ACLs may not currently be available to all users. - API Documentation: TODO + API Documentation: https://techdocs.akamai.com/linode-api/reference/delete-lke-cluster-acl """ self._client.delete( f"{LKECluster.api_endpoint}/control_plane_acl", model=self diff --git a/linode_api4/objects/networking.py b/linode_api4/objects/networking.py index c4fff1ac3..613eca21c 100644 --- a/linode_api4/objects/networking.py +++ b/linode_api4/objects/networking.py @@ -268,7 +268,7 @@ class NetworkTransferPrice(Base): Currently the NetworkTransferPrice can only be retrieved by listing, i.e.: types = client.networking.transfer_prices() - API documentation: TODO + API documentation: https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices """ properties = { diff --git a/linode_api4/objects/nodebalancer.py b/linode_api4/objects/nodebalancer.py index d038b6998..840d5b965 100644 --- a/linode_api4/objects/nodebalancer.py +++ b/linode_api4/objects/nodebalancer.py @@ -15,7 +15,7 @@ class NodeBalancerType(Base): Currently the NodeBalancerType can only be retrieved by listing, i.e.: types = client.nodebalancers.types() - API documentation: TODO + API documentation: https://techdocs.akamai.com/linode-api/reference/get-node-balancer-types """ properties = { diff --git a/linode_api4/objects/volume.py b/linode_api4/objects/volume.py index 58764e8d7..6d49f72c9 100644 --- a/linode_api4/objects/volume.py +++ b/linode_api4/objects/volume.py @@ -11,7 +11,7 @@ class VolumeType(Base): Currently the VolumeType can only be retrieved by listing, i.e.: types = client.volumes.types() - API documentation: TODO + API documentation: https://techdocs.akamai.com/linode-api/reference/get-volume-types """ properties = {