Class: NgrokAPI::Services::EdgesTCPClient
- Inherits:
-
Object
- Object
- NgrokAPI::Services::EdgesTCPClient
- Defined in:
- lib/ngrokapi/services/edges_tcp_client.rb
Overview
Constant Summary collapse
- PATH =
The API path for the requests
'/edges/tcp'
- LIST_PROPERTY =
The List Property from the resulting API for list calls
'tcp_edges'
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
Instance Method Summary collapse
-
#create(description: "", metadata: "", hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) ⇒ NgrokAPI::Models::TCPEdge
Create a TCP Edge.
-
#create!(description: "", metadata: "", hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) ⇒ NgrokAPI::Models::TCPEdge
Create a TCP Edge Throws an exception if API error.
-
#delete(id: "") ⇒ NgrokAPI::Models::Empty
Delete a TCP Edge by ID.
-
#delete!(id: "") ⇒ NgrokAPI::Models::Empty
Delete a TCP Edge by ID Throws an exception if API error.
-
#get(id: "") ⇒ NgrokAPI::Models::TCPEdge
Get a TCP Edge by ID.
-
#get!(id: "") ⇒ NgrokAPI::Models::TCPEdge
Get a TCP Edge by ID Throws an exception if API error.
-
#initialize(client:) ⇒ EdgesTCPClient
constructor
A new instance of EdgesTCPClient.
-
#list(before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
Returns a list of all TCP Edges on this account.
-
#list!(before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
Returns a list of all TCP Edges on this account Throws an exception if API error.
-
#update(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) ⇒ NgrokAPI::Models::TCPEdge
Updates a TCP Edge by ID.
-
#update!(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) ⇒ NgrokAPI::Models::TCPEdge
Updates a TCP Edge by ID.
Constructor Details
#initialize(client:) ⇒ EdgesTCPClient
Returns a new instance of EdgesTCPClient.
17 18 19 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 17 def initialize(client:) @client = client end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
15 16 17 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 15 def client @client end |
Instance Method Details
#create(description: "", metadata: "", hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) ⇒ NgrokAPI::Models::TCPEdge
Create a TCP Edge
33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 33 def create(description: "", metadata: "", hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) path = '/edges/tcp' replacements = { } data = {} data[:description] = description if description data[:metadata] = if data[:hostports] = hostports if hostports data[:backend] = backend if backend data[:ip_restriction] = ip_restriction if ip_restriction data[:traffic_policy] = traffic_policy if traffic_policy result = @client.post(path % replacements, data: data) NgrokAPI::Models::TCPEdge.new(client: self, attrs: result) end |
#create!(description: "", metadata: "", hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) ⇒ NgrokAPI::Models::TCPEdge
Create a TCP Edge Throws an exception if API error.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 61 def create!(description: "", metadata: "", hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) path = '/edges/tcp' replacements = { } data = {} data[:description] = description if description data[:metadata] = if data[:hostports] = hostports if hostports data[:backend] = backend if backend data[:ip_restriction] = ip_restriction if ip_restriction data[:traffic_policy] = traffic_policy if traffic_policy result = @client.post(path % replacements, data: data, danger: true) NgrokAPI::Models::TCPEdge.new(client: self, attrs: result) end |
#delete(id: "") ⇒ NgrokAPI::Models::Empty
Delete a TCP Edge by ID
236 237 238 239 240 241 242 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 236 def delete(id: "") path = '/edges/tcp/%{id}' replacements = { id: id, } @client.delete(path % replacements) end |
#delete!(id: "") ⇒ NgrokAPI::Models::Empty
Delete a TCP Edge by ID Throws an exception if API error.
252 253 254 255 256 257 258 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 252 def delete!(id: "") path = '/edges/tcp/%{id}' replacements = { id: id, } @client.delete(path % replacements, danger: true) end |
#get(id: "") ⇒ NgrokAPI::Models::TCPEdge
Get a TCP Edge by ID
83 84 85 86 87 88 89 90 91 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 83 def get(id: "") path = '/edges/tcp/%{id}' replacements = { id: id, } data = {} result = @client.get(path % replacements, data: data) NgrokAPI::Models::TCPEdge.new(client: self, attrs: result) end |
#get!(id: "") ⇒ NgrokAPI::Models::TCPEdge
Get a TCP Edge by ID Throws an exception if API error.
101 102 103 104 105 106 107 108 109 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 101 def get!(id: "") path = '/edges/tcp/%{id}' replacements = { id: id, } data = {} result = @client.get(path % replacements, data: data, danger: true) NgrokAPI::Models::TCPEdge.new(client: self, attrs: result) end |
#list(before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
Returns a list of all TCP Edges on this account
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 120 def list(before_id: nil, limit: nil, url: nil) result = @client.list( before_id: before_id, limit: limit, url: url, path: PATH ) NgrokAPI::Models::Listable.new( client: self, attrs: result, list_property: LIST_PROPERTY, klass: NgrokAPI::Models::TCPEdge ) end |
#list!(before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
Returns a list of all TCP Edges on this account Throws an exception if API error.
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 146 def list!(before_id: nil, limit: nil, url: nil) result = @client.list( before_id: before_id, limit: limit, danger: true, url: url, path: PATH ) NgrokAPI::Models::Listable.new( client: self, attrs: result, list_property: LIST_PROPERTY, klass: NgrokAPI::Models::TCPEdge, danger: true ) end |
#update(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) ⇒ NgrokAPI::Models::TCPEdge
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.
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 180 def update(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) path = '/edges/tcp/%{id}' replacements = { id: id, } data = {} data[:description] = description if description data[:metadata] = if data[:hostports] = hostports if hostports data[:backend] = backend if backend data[:ip_restriction] = ip_restriction if ip_restriction data[:traffic_policy] = traffic_policy if traffic_policy result = @client.patch(path % replacements, data: data) NgrokAPI::Models::TCPEdge.new(client: self, attrs: result) end |
#update!(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) ⇒ NgrokAPI::Models::TCPEdge
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. Throws an exception if API error.
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 213 def update!(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) path = '/edges/tcp/%{id}' replacements = { id: id, } data = {} data[:description] = description if description data[:metadata] = if data[:hostports] = hostports if hostports data[:backend] = backend if backend data[:ip_restriction] = ip_restriction if ip_restriction data[:traffic_policy] = traffic_policy if traffic_policy result = @client.patch(path % replacements, data: data, danger: true) NgrokAPI::Models::TCPEdge.new(client: self, attrs: result) end |