TCP Edges¶
Do not construct this object directly, instead access the
edges_tcp property of an ngrok.Client object.
-
class
ngrok.services.EdgesTCPClient(client)[source]¶ -
create(description='', metadata='', hostports=None, backend=None, ip_restriction=None)[source]¶ Create a TCP Edge
- Parameters
description (
str) – human-readable description of what this edge will be used for; optional, max 255 bytes.metadata (
str) – arbitrary user-defined machine-readable data of this edge. Optional, max 4096 bytes.hostports (
Optional[Sequence[str]]) – hostports served by this edgebackend (
Optional[EndpointBackendMutate]) – edge modulesip_restriction (
Optional[EndpointIPPolicyMutate]) –
https://ngrok.com/docs/api#api-edges-tcp-create
- Return type
-
get(id)[source]¶ Get a TCP Edge by ID
- Parameters
id (
str) – a resource identifier
https://ngrok.com/docs/api#api-edges-tcp-get
- Return type
-
list(before_id=None, limit=None)[source]¶ Returns a list of all TCP Edges on this account
- Parameters
before_id (
Optional[str]) –limit (
Optional[str]) –
https://ngrok.com/docs/api#api-edges-tcp-list
- Return type
-
update(id, description=None, metadata=None, hostports=None, backend=None, ip_restriction=None)[source]¶ Updates a TCP Edge by ID. If a module is not specified in the update, it will not be modified. However, each module configuration that is specified will completely replace the existing value. There is no way to delete an existing module via this API, instead use the delete module API.
- Parameters
id (
str) – unique identifier of this edgedescription (
Optional[str]) – human-readable description of what this edge will be used for; optional, max 255 bytes.metadata (
Optional[str]) – arbitrary user-defined machine-readable data of this edge. Optional, max 4096 bytes.hostports (
Optional[Sequence[str]]) – hostports served by this edgebackend (
Optional[EndpointBackendMutate]) – edge modulesip_restriction (
Optional[EndpointIPPolicyMutate]) –
https://ngrok.com/docs/api#api-edges-tcp-update
- Return type
-