Class: NgrokAPI::Models::Tunnel
- Inherits:
-
Object
- Object
- NgrokAPI::Models::Tunnel
- Defined in:
- lib/ngrokapi/models/tunnel.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#backends ⇒ Object
readonly
Returns the value of attribute backends.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#endpoint ⇒ Object
readonly
Returns the value of attribute endpoint.
-
#forwards_to ⇒ Object
readonly
Returns the value of attribute forwards_to.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#labels ⇒ Object
readonly
Returns the value of attribute labels.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
-
#proto ⇒ Object
readonly
Returns the value of attribute proto.
-
#public_url ⇒ Object
readonly
Returns the value of attribute public_url.
-
#region ⇒ Object
readonly
Returns the value of attribute region.
-
#started_at ⇒ Object
readonly
Returns the value of attribute started_at.
-
#tunnel_session ⇒ Object
readonly
Returns the value of attribute tunnel_session.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(client: nil, attrs: {}) ⇒ Tunnel
constructor
A new instance of Tunnel.
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ Tunnel
Returns a new instance of Tunnel.
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/ngrokapi/models/tunnel.rb', line 20 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @id = @attrs['id'] @public_url = @attrs['public_url'] @started_at = @attrs['started_at'] @metadata = @attrs['metadata'] @proto = @attrs['proto'] @region = @attrs['region'] @tunnel_session = @attrs['tunnel_session'] @endpoint = @attrs['endpoint'] @labels = @attrs['labels'] @backends = @attrs['backends'] @forwards_to = @attrs['forwards_to'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def attrs @attrs end |
#backends ⇒ Object (readonly)
Returns the value of attribute backends.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def backends @backends end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def client @client end |
#endpoint ⇒ Object (readonly)
Returns the value of attribute endpoint.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def endpoint @endpoint end |
#forwards_to ⇒ Object (readonly)
Returns the value of attribute forwards_to.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def forwards_to @forwards_to end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def id @id end |
#labels ⇒ Object (readonly)
Returns the value of attribute labels.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def labels @labels end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def @metadata end |
#proto ⇒ Object (readonly)
Returns the value of attribute proto.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def proto @proto end |
#public_url ⇒ Object (readonly)
Returns the value of attribute public_url.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def public_url @public_url end |
#region ⇒ Object (readonly)
Returns the value of attribute region.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def region @region end |
#started_at ⇒ Object (readonly)
Returns the value of attribute started_at.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def started_at @started_at end |
#tunnel_session ⇒ Object (readonly)
Returns the value of attribute tunnel_session.
6 7 8 |
# File 'lib/ngrokapi/models/tunnel.rb', line 6 def tunnel_session @tunnel_session end |
Instance Method Details
#==(other) ⇒ Object
36 37 38 |
# File 'lib/ngrokapi/models/tunnel.rb', line 36 def ==(other) @attrs == other.attrs end |
#to_h ⇒ Object
44 45 46 |
# File 'lib/ngrokapi/models/tunnel.rb', line 44 def to_h @attrs.to_h end |
#to_s ⇒ Object
40 41 42 |
# File 'lib/ngrokapi/models/tunnel.rb', line 40 def to_s @attrs.to_s end |