Class: NgrokAPI::Models::IPRestriction

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of IPRestriction.



21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/ngrokapi/models/ip_restriction.rb', line 21

def initialize(client: nil, attrs: {})
  @client = client
  @attrs = attrs
  @id = @attrs['id']
  unless @attrs['uri'].nil?
    @uri = URI(@attrs['uri'])
  end
  @created_at = @attrs['created_at']
  @description = @attrs['description']
  @metadata = @attrs['metadata']
  @enforced = @attrs['enforced']
  @type = @attrs['type']
  @ip_policies = @attrs['ip_policies']
end

Instance Attribute Details

#attrsObject (readonly)

Returns the value of attribute attrs.



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

def attrs
  @attrs
end

#clientObject (readonly)

Returns the value of attribute client.



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

def client
  @client
end

#created_atObject (readonly)

Returns the value of attribute created_at.



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

def created_at
  @created_at
end

#descriptionObject (readonly)

Returns the value of attribute description.



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

def description
  @description
end

#enforcedObject (readonly)

Returns the value of attribute enforced.



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

def enforced
  @enforced
end

#idObject (readonly)

Returns the value of attribute id.



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

def id
  @id
end

#ip_policiesObject (readonly)

Returns the value of attribute ip_policies.



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

def ip_policies
  @ip_policies
end

#metadataObject (readonly)

Returns the value of attribute metadata.



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

def 
  @metadata
end

#typeObject (readonly)

Returns the value of attribute type.



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

def type
  @type
end

#uriObject (readonly)

Returns the value of attribute uri.



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

def uri
  @uri
end

Instance Method Details

#==(other) ⇒ Object



36
37
38
# File 'lib/ngrokapi/models/ip_restriction.rb', line 36

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

#deleteObject



52
53
54
55
56
# File 'lib/ngrokapi/models/ip_restriction.rb', line 52

def delete
  @client.delete(
    id: @id
  )
end

#to_hObject



44
45
46
# File 'lib/ngrokapi/models/ip_restriction.rb', line 44

def to_h
  @attrs.to_h
end

#to_sObject



40
41
42
# File 'lib/ngrokapi/models/ip_restriction.rb', line 40

def to_s
  @attrs.to_s
end