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.
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 17 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @id = @attrs['id'] @uri = @attrs['uri'] @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.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def attrs @attrs end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def client @client end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def description @description end |
#enforced ⇒ Object (readonly)
Returns the value of attribute enforced.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def enforced @enforced end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def id @id end |
#ip_policies ⇒ Object (readonly)
Returns the value of attribute ip_policies.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def ip_policies @ip_policies end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def @metadata end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def type @type end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def uri @uri end |
Instance Method Details
#==(other) ⇒ Object
30 31 32 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 30 def ==(other) @attrs == other.attrs end |
#delete ⇒ Object
Delete an IP restriction
46 47 48 49 50 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 46 def delete @client.delete( id: @id ) end |
#to_h ⇒ Object
38 39 40 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 38 def to_h @attrs.to_h end |
#to_s ⇒ Object
34 35 36 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 34 def to_s @attrs.to_s end |