Class: NgrokAPI::Services::ReservedAddrsClient
- Inherits:
-
Object
- Object
- NgrokAPI::Services::ReservedAddrsClient
- Defined in:
- lib/ngrokapi/services/reserved_addrs_client.rb
Overview
Reserved Addresses are TCP addresses that can be used to listen for traffic.
TCP address hostnames and ports are assigned by ngrok, they cannot be
chosen.
Constant Summary collapse
- PATH =
The API path for the requests
'/reserved_addrs'
- LIST_PROPERTY =
The List Property from the resulting API for list calls
'reserved_addrs'
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
Instance Method Summary collapse
-
#create(description: "", metadata: "", region: "", endpoint_configuration_id: "") ⇒ NgrokAPI::Models::ReservedAddr
Create a new reserved address.
-
#delete(id: "") ⇒ NgrokAPI::Models::Empty
Delete a reserved address.
-
#delete!(id: "") ⇒ NgrokAPI::Models::Empty
Delete a reserved address.
-
#delete_endpoint_config(id: "") ⇒ NgrokAPI::Models::Empty
Detach the endpoint configuration attached to a reserved address.
-
#delete_endpoint_config!(id: "") ⇒ NgrokAPI::Models::Empty
Detach the endpoint configuration attached to a reserved address.
-
#get(id: "") ⇒ NgrokAPI::Models::ReservedAddr
Get the details of a reserved address.
-
#get!(id: "") ⇒ NgrokAPI::Models::ReservedAddr
Get the details of a reserved address.
-
#initialize(client:) ⇒ ReservedAddrsClient
constructor
A new instance of ReservedAddrsClient.
-
#list(before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
List all reserved addresses on this account.
-
#update(id: "", description: nil, metadata: nil, endpoint_configuration_id: nil) ⇒ NgrokAPI::Models::ReservedAddr
Update the attributes of a reserved address.
-
#update!(id: "", description: nil, metadata: nil, endpoint_configuration_id: nil) ⇒ NgrokAPI::Models::ReservedAddr
Update the attributes of a reserved address.
Constructor Details
#initialize(client:) ⇒ ReservedAddrsClient
Returns a new instance of ReservedAddrsClient.
19 20 21 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 19 def initialize(client:) @client = client end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
17 18 19 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 17 def client @client end |
Instance Method Details
#create(description: "", metadata: "", region: "", endpoint_configuration_id: "") ⇒ NgrokAPI::Models::ReservedAddr
Create a new reserved address.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 33 def create( description: "", metadata: "", region: "", endpoint_configuration_id: "" ) path = '/reserved_addrs' replacements = { } data = {} data[:description] = description if description data[:metadata] = if data[:region] = region if region data[:endpoint_configuration_id] = endpoint_configuration_id if endpoint_configuration_id result = @client.post(path % replacements, data: data) NgrokAPI::Models::ReservedAddr.new(client: self, result: result) end |
#delete(id: "") ⇒ NgrokAPI::Models::Empty
Delete a reserved address.
58 59 60 61 62 63 64 65 66 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 58 def delete( id: "" ) path = '/reserved_addrs/%{id}' replacements = { id: id, } @client.delete(path % replacements) end |
#delete!(id: "") ⇒ NgrokAPI::Models::Empty
Delete a reserved address. Throws an exception if API error.
76 77 78 79 80 81 82 83 84 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 76 def delete!( id: "" ) path = '/reserved_addrs/%{id}' replacements = { id: id, } @client.delete(path % replacements, danger: true) end |
#delete_endpoint_config(id: "") ⇒ NgrokAPI::Models::Empty
Detach the endpoint configuration attached to a reserved address.
ngrok.com/docs/api#api-reserved-addrs-delete-endpoint-config
217 218 219 220 221 222 223 224 225 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 217 def delete_endpoint_config( id: "" ) path = '/reserved_addrs/%{id}/endpoint_configuration' replacements = { id: id, } @client.delete(path % replacements) end |
#delete_endpoint_config!(id: "") ⇒ NgrokAPI::Models::Empty
Detach the endpoint configuration attached to a reserved address. Throws an exception if API error.
ngrok.com/docs/api#api-reserved-addrs-delete-endpoint-config
235 236 237 238 239 240 241 242 243 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 235 def delete_endpoint_config!( id: "" ) path = '/reserved_addrs/%{id}/endpoint_configuration' replacements = { id: id, } @client.delete(path % replacements, danger: true) end |
#get(id: "") ⇒ NgrokAPI::Models::ReservedAddr
Get the details of a reserved address.
93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 93 def get( id: "" ) path = '/reserved_addrs/%{id}' replacements = { id: id, } data = {} result = @client.get(path % replacements, data: data) NgrokAPI::Models::ReservedAddr.new(client: self, result: result) end |
#get!(id: "") ⇒ NgrokAPI::Models::ReservedAddr
Get the details of a reserved address. Throws an exception if API error.
113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 113 def get!( id: "" ) path = '/reserved_addrs/%{id}' replacements = { id: id, } data = {} result = @client.get(path % replacements, data: data, danger: true) NgrokAPI::Models::ReservedAddr.new(client: self, result: result) end |
#list(before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
List all reserved addresses on this account.
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 134 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, result: result, list_property: LIST_PROPERTY, klass: NgrokAPI::Models::ReservedAddr ) end |
#update(id: "", description: nil, metadata: nil, endpoint_configuration_id: nil) ⇒ NgrokAPI::Models::ReservedAddr
Update the attributes of a reserved address.
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 163 def update( id: "", description: nil, metadata: nil, endpoint_configuration_id: nil ) path = '/reserved_addrs/%{id}' replacements = { id: id, } data = {} data[:description] = description if description data[:metadata] = if data[:endpoint_configuration_id] = endpoint_configuration_id if endpoint_configuration_id result = @client.patch(path % replacements, data: data) NgrokAPI::Models::ReservedAddr.new(client: self, result: result) end |
#update!(id: "", description: nil, metadata: nil, endpoint_configuration_id: nil) ⇒ NgrokAPI::Models::ReservedAddr
Update the attributes of a reserved address. Throws an exception if API error.
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 192 def update!( id: "", description: nil, metadata: nil, endpoint_configuration_id: nil ) path = '/reserved_addrs/%{id}' replacements = { id: id, } data = {} data[:description] = description if description data[:metadata] = if data[:endpoint_configuration_id] = endpoint_configuration_id if endpoint_configuration_id result = @client.patch(path % replacements, data: data, danger: true) NgrokAPI::Models::ReservedAddr.new(client: self, result: result) end |