Class: NgrokAPI::Models::IPRestriction
- Inherits:
-
Object
- Object
- NgrokAPI::Models::IPRestriction
- Defined in:
- lib/ngrokapi/models/ip_restriction.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.
-
#enforced ⇒ Object
readonly
Returns the value of attribute enforced.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#ip_policies ⇒ Object
readonly
Returns the value of attribute ip_policies.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#delete ⇒ Object
Delete an IP restriction.
-
#initialize(client: nil, attrs: {}) ⇒ IPRestriction
constructor
A new instance of IPRestriction.
- #to_h ⇒ Object
- #to_s ⇒ Object
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
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
10 11 12 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 10 def attrs @attrs end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
10 11 12 |
# File 'lib/ngrokapi/models/ip_restriction.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/ip_restriction.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/ip_restriction.rb', line 10 def description @description end |
#enforced ⇒ Object (readonly)
Returns the value of attribute enforced.
10 11 12 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 10 def enforced @enforced end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
10 11 12 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 10 def id @id end |
#ip_policies ⇒ Object (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 |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
10 11 12 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 10 def @metadata end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
10 11 12 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 10 def type @type end |
#uri ⇒ Object (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 |
#delete ⇒ Object
Delete an IP restriction
52 53 54 55 56 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 52 def delete @client.delete( id: @id ) end |
#to_h ⇒ Object
44 45 46 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 44 def to_h @attrs.to_h end |
#to_s ⇒ Object
40 41 42 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 40 def to_s @attrs.to_s end |