Skip to content

Commit 76a2f5b

Browse files
Added docs links (linode#470)
1 parent 60622fc commit 76a2f5b

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

linode_api4/groups/lke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def types(self, *filters):
161161
"""
162162
Returns a :any:`PaginatedList` of :any:`LKEType` objects that represents a valid LKE type.
163163
164-
API Documentation: TODO
164+
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-lke-types
165165
166166
:param filters: Any number of filters to apply to this query.
167167
See :doc:`Filtering Collections</linode_api4/objects/filtering>`

linode_api4/groups/networking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def transfer_prices(self, *filters):
354354
"""
355355
Returns a :any:`PaginatedList` of :any:`NetworkTransferPrice` objects that represents a valid network transfer price.
356356
357-
API Documentation: TODO
357+
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices
358358
359359
:param filters: Any number of filters to apply to this query.
360360
See :doc:`Filtering Collections</linode_api4/objects/filtering>`

linode_api4/groups/nodebalancer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def types(self, *filters):
5555
"""
5656
Returns a :any:`PaginatedList` of :any:`NodeBalancerType` objects that represents a valid NodeBalancer type.
5757
58-
API Documentation: TODO
58+
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-node-balancer-types
5959
6060
:param filters: Any number of filters to apply to this query.
6161
See :doc:`Filtering Collections</linode_api4/objects/filtering>`

linode_api4/groups/volume.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def types(self, *filters):
7878
"""
7979
Returns a :any:`PaginatedList` of :any:`VolumeType` objects that represents a valid Volume type.
8080
81-
API Documentation: TODO
81+
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-volume-types
8282
8383
:param filters: Any number of filters to apply to this query.
8484
See :doc:`Filtering Collections</linode_api4/objects/filtering>`

linode_api4/objects/lke.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class LKEType(Base):
2222
Currently the LKEType can only be retrieved by listing, i.e.:
2323
types = client.lke.types()
2424
25-
API documentation: TODO
25+
API documentation: https://techdocs.akamai.com/linode-api/reference/get-lke-types
2626
"""
2727

2828
properties = {
@@ -338,7 +338,7 @@ def control_plane_acl(self) -> LKEClusterControlPlaneACL:
338338
339339
NOTE: Control Plane ACLs may not currently be available to all users.
340340
341-
API Documentation: TODO
341+
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-lke-cluster-acl
342342
343343
:returns: The cluster's control plane ACL configuration.
344344
:rtype: LKEClusterControlPlaneACL
@@ -529,7 +529,7 @@ def control_plane_acl_update(
529529
530530
NOTE: Control Plane ACLs may not currently be available to all users.
531531
532-
API Documentation: TODO
532+
API Documentation: https://techdocs.akamai.com/linode-api/reference/put-lke-cluster-acl
533533
534534
:param acl: The ACL configuration to apply to this cluster.
535535
:type acl: LKEClusterControlPlaneACLOptions or Dict[str, Any]
@@ -560,7 +560,7 @@ def control_plane_acl_delete(self):
560560
561561
NOTE: Control Plane ACLs may not currently be available to all users.
562562
563-
API Documentation: TODO
563+
API Documentation: https://techdocs.akamai.com/linode-api/reference/delete-lke-cluster-acl
564564
"""
565565
self._client.delete(
566566
f"{LKECluster.api_endpoint}/control_plane_acl", model=self

linode_api4/objects/networking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ class NetworkTransferPrice(Base):
268268
Currently the NetworkTransferPrice can only be retrieved by listing, i.e.:
269269
types = client.networking.transfer_prices()
270270
271-
API documentation: TODO
271+
API documentation: https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices
272272
"""
273273

274274
properties = {

linode_api4/objects/nodebalancer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class NodeBalancerType(Base):
1515
Currently the NodeBalancerType can only be retrieved by listing, i.e.:
1616
types = client.nodebalancers.types()
1717
18-
API documentation: TODO
18+
API documentation: https://techdocs.akamai.com/linode-api/reference/get-node-balancer-types
1919
"""
2020

2121
properties = {

linode_api4/objects/volume.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class VolumeType(Base):
1111
Currently the VolumeType can only be retrieved by listing, i.e.:
1212
types = client.volumes.types()
1313
14-
API documentation: TODO
14+
API documentation: https://techdocs.akamai.com/linode-api/reference/get-volume-types
1515
"""
1616

1717
properties = {

0 commit comments

Comments
 (0)