Class: NgrokAPI::Models::Tunnel

Inherits:
Object
  • Object
show all
Defined in:
lib/ngrokapi/models/tunnel.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client: nil, attrs: {}) ⇒ Tunnel

Returns a new instance of Tunnel.



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/ngrokapi/models/tunnel.rb', line 24

def initialize(client: nil, attrs: {})
  @client = client
  @attrs = attrs
  @id = @attrs['id']
  unless @attrs['public_url'].nil?
    @public_url = URI(@attrs['public_url'])
  end
  @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

#attrsObject (readonly)

Returns the value of attribute attrs.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def attrs
  @attrs
end

#backendsObject (readonly)

Returns the value of attribute backends.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def backends
  @backends
end

#clientObject (readonly)

Returns the value of attribute client.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def client
  @client
end

#endpointObject (readonly)

Returns the value of attribute endpoint.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def endpoint
  @endpoint
end

#forwards_toObject (readonly)

Returns the value of attribute forwards_to.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def forwards_to
  @forwards_to
end

#idObject (readonly)

Returns the value of attribute id.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def id
  @id
end

#labelsObject (readonly)

Returns the value of attribute labels.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def labels
  @labels
end

#metadataObject (readonly)

Returns the value of attribute metadata.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def 
  @metadata
end

#protoObject (readonly)

Returns the value of attribute proto.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def proto
  @proto
end

#public_urlObject (readonly)

Returns the value of attribute public_url.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def public_url
  @public_url
end

#regionObject (readonly)

Returns the value of attribute region.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def region
  @region
end

#started_atObject (readonly)

Returns the value of attribute started_at.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def started_at
  @started_at
end

#tunnel_sessionObject (readonly)

Returns the value of attribute tunnel_session.



10
11
12
# File 'lib/ngrokapi/models/tunnel.rb', line 10

def tunnel_session
  @tunnel_session
end

Instance Method Details

#==(other) ⇒ Object



42
43
44
# File 'lib/ngrokapi/models/tunnel.rb', line 42

def ==(other)
  @attrs == other.attrs
end

#to_hObject



50
51
52
# File 'lib/ngrokapi/models/tunnel.rb', line 50

def to_h
  @attrs.to_h
end

#to_sObject



46
47
48
# File 'lib/ngrokapi/models/tunnel.rb', line 46

def to_s
  @attrs.to_s
end