Class: NgrokAPI::Services::EdgeRouteResponseHeadersModuleClient
- Inherits:
-
Object
- Object
- NgrokAPI::Services::EdgeRouteResponseHeadersModuleClient
- Defined in:
- lib/ngrokapi/services/edge_route_response_headers_module_client.rb
Overview
Constant Summary collapse
- PATH =
The API path for the requests
'/edges/https/%{edge_id}/routes/%{id}/response_headers'
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
Instance Method Summary collapse
- #delete(edge_id: "", id: "") ⇒ NgrokAPI::Models::Empty
- #delete!(edge_id: "", id: "") ⇒ NgrokAPI::Models::Empty
- #get(edge_id: "", id: "") ⇒ NgrokAPI::Models::EndpointResponseHeaders
- #get!(edge_id: "", id: "") ⇒ NgrokAPI::Models::EndpointResponseHeaders
-
#initialize(client:) ⇒ EdgeRouteResponseHeadersModuleClient
constructor
A new instance of EdgeRouteResponseHeadersModuleClient.
- #replace(edge_id: "", id: "", a_module: nil) ⇒ NgrokAPI::Models::EndpointResponseHeaders
- #replace!(edge_id: "", id: "", a_module: nil) ⇒ NgrokAPI::Models::EndpointResponseHeaders
Constructor Details
#initialize(client:) ⇒ EdgeRouteResponseHeadersModuleClient
Returns a new instance of EdgeRouteResponseHeadersModuleClient.
13 14 15 |
# File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 13 def initialize(client:) @client = client end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
11 12 13 |
# File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 11 def client @client end |
Instance Method Details
#delete(edge_id: "", id: "") ⇒ NgrokAPI::Models::Empty
93 94 95 96 97 98 99 100 |
# File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 93 def delete(edge_id: "", id: "") path = '/edges/https/%{edge_id}/routes/%{id}/response_headers' replacements = { edge_id: edge_id, id: id, } @client.delete(path % replacements) end |
#delete!(edge_id: "", id: "") ⇒ NgrokAPI::Models::Empty
108 109 110 111 112 113 114 115 |
# File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 108 def delete!(edge_id: "", id: "") path = '/edges/https/%{edge_id}/routes/%{id}/response_headers' replacements = { edge_id: edge_id, id: id, } @client.delete(path % replacements, danger: true) end |
#get(edge_id: "", id: "") ⇒ NgrokAPI::Models::EndpointResponseHeaders
59 60 61 62 63 64 65 66 67 68 |
# File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 59 def get(edge_id: "", id: "") path = '/edges/https/%{edge_id}/routes/%{id}/response_headers' replacements = { edge_id: edge_id, id: id, } data = {} result = @client.get(path % replacements, data: data) NgrokAPI::Models::EndpointResponseHeaders.new(client: self, attrs: result) end |
#get!(edge_id: "", id: "") ⇒ NgrokAPI::Models::EndpointResponseHeaders
76 77 78 79 80 81 82 83 84 85 |
# File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 76 def get!(edge_id: "", id: "") path = '/edges/https/%{edge_id}/routes/%{id}/response_headers' replacements = { edge_id: edge_id, id: id, } data = {} result = @client.get(path % replacements, data: data, danger: true) NgrokAPI::Models::EndpointResponseHeaders.new(client: self, attrs: result) end |
#replace(edge_id: "", id: "", a_module: nil) ⇒ NgrokAPI::Models::EndpointResponseHeaders
24 25 26 27 28 29 30 31 32 33 |
# File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 24 def replace(edge_id: "", id: "", a_module: nil) path = '/edges/https/%{edge_id}/routes/%{id}/response_headers' replacements = { edge_id: edge_id, id: id, } data = a_module result = @client.put(path % replacements, data: data) NgrokAPI::Models::EndpointResponseHeaders.new(client: self, attrs: result) end |
#replace!(edge_id: "", id: "", a_module: nil) ⇒ NgrokAPI::Models::EndpointResponseHeaders
42 43 44 45 46 47 48 49 50 51 |
# File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 42 def replace!(edge_id: "", id: "", a_module: nil) path = '/edges/https/%{edge_id}/routes/%{id}/response_headers' replacements = { edge_id: edge_id, id: id, } data = a_module result = @client.put(path % replacements, data: data, danger: true) NgrokAPI::Models::EndpointResponseHeaders.new(client: self, attrs: result) end |