Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added documentation links to pricing endpoints #470

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion linode_api4/groups/lke.py
Original file line number Diff line number Diff line change
Expand Up @@ -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</linode_api4/objects/filtering>`
Expand Down
2 changes: 1 addition & 1 deletion linode_api4/groups/networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -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</linode_api4/objects/filtering>`
Expand Down
2 changes: 1 addition & 1 deletion linode_api4/groups/nodebalancer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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</linode_api4/objects/filtering>`
Expand Down
2 changes: 1 addition & 1 deletion linode_api4/groups/volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -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</linode_api4/objects/filtering>`
Expand Down
8 changes: 4 additions & 4 deletions linode_api4/objects/lke.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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]
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion linode_api4/objects/networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion linode_api4/objects/nodebalancer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion linode_api4/objects/volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down