Class: NgrokAPI::Models::HTTPSEdge
- Inherits:
-
Object
- Object
- NgrokAPI::Models::HTTPSEdge
- Defined in:
- lib/ngrokapi/models/https_edge.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#hostports ⇒ Object
readonly
Returns the value of attribute hostports.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
-
#mutual_tls ⇒ Object
readonly
Returns the value of attribute mutual_tls.
-
#routes ⇒ Object
readonly
Returns the value of attribute routes.
-
#tls_termination ⇒ Object
readonly
Returns the value of attribute tls_termination.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#delete ⇒ Object
Delete an HTTPS Edge by ID.
-
#initialize(client: nil, attrs: {}) ⇒ HTTPSEdge
constructor
A new instance of HTTPSEdge.
- #to_h ⇒ Object
- #to_s ⇒ Object
-
#update(description: nil, metadata: nil, hostports: nil, mutual_tls: nil, tls_termination: nil) ⇒ Object
Updates an HTTPS Edge by ID.
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ HTTPSEdge
Returns a new instance of HTTPSEdge.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/ngrokapi/models/https_edge.rb', line 22 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @id = @attrs['id'] @description = @attrs['description'] @metadata = @attrs['metadata'] @created_at = @attrs['created_at'] unless @attrs['uri'].nil? @uri = URI(@attrs['uri']) end @hostports = @attrs['hostports'] @mutual_tls = @attrs['mutual_tls'] @tls_termination = @attrs['tls_termination'] @routes = @attrs['routes'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def attrs @attrs end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def client @client end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def description @description end |
#hostports ⇒ Object (readonly)
Returns the value of attribute hostports.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def hostports @hostports end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def id @id end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def @metadata end |
#mutual_tls ⇒ Object (readonly)
Returns the value of attribute mutual_tls.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def mutual_tls @mutual_tls end |
#routes ⇒ Object (readonly)
Returns the value of attribute routes.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def routes @routes end |
#tls_termination ⇒ Object (readonly)
Returns the value of attribute tls_termination.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def tls_termination @tls_termination end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
10 11 12 |
# File 'lib/ngrokapi/models/https_edge.rb', line 10 def uri @uri end |
Instance Method Details
#==(other) ⇒ Object
38 39 40 |
# File 'lib/ngrokapi/models/https_edge.rb', line 38 def ==(other) @attrs == other.attrs end |
#delete ⇒ Object
Delete an HTTPS Edge by ID
83 84 85 86 87 |
# File 'lib/ngrokapi/models/https_edge.rb', line 83 def delete @client.delete( id: @id ) end |
#to_h ⇒ Object
46 47 48 |
# File 'lib/ngrokapi/models/https_edge.rb', line 46 def to_h @attrs.to_h end |
#to_s ⇒ Object
42 43 44 |
# File 'lib/ngrokapi/models/https_edge.rb', line 42 def to_s @attrs.to_s end |
#update(description: nil, metadata: nil, hostports: nil, mutual_tls: nil, tls_termination: nil) ⇒ Object
Updates an HTTPS 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.
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/ngrokapi/models/https_edge.rb', line 57 def update( description: nil, metadata: nil, hostports: nil, mutual_tls: nil, tls_termination: nil ) @description = description if description @metadata = if @hostports = hostports if hostports @mutual_tls = mutual_tls if mutual_tls @tls_termination = tls_termination if tls_termination @client.update( id: @id, description: description, metadata: , hostports: hostports, mutual_tls: mutual_tls, tls_termination: tls_termination ) end |