Class: NgrokAPI::Models::IPRestriction
- Inherits:
-
Object
- Object
- NgrokAPI::Models::IPRestriction
- Defined in:
- lib/ngrokapi/models/ip_restriction.rb
Instance Attribute Summary collapse
-
#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.
-
#result ⇒ Object
readonly
Returns the value of attribute result.
-
#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:, result:) ⇒ IPRestriction
constructor
A new instance of IPRestriction.
- #to_s ⇒ Object
Constructor Details
#initialize(client:, result:) ⇒ 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:, result:) @client = client @result = result @id = @result['id'] @uri = @result['uri'] @created_at = @result['created_at'] @description = @result['description'] @metadata = @result['metadata'] @enforced = @result['enforced'] @type = @result['type'] @ip_policies = @result['ip_policies'] end |
Instance Attribute Details
#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 |
#result ⇒ Object (readonly)
Returns the value of attribute result.
6 7 8 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 6 def result @result 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) @result == other.result end |
#delete ⇒ Object
Delete an IP restriction
42 43 44 45 46 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 42 def delete @client.delete( id: @id ) end |
#to_s ⇒ Object
34 35 36 |
# File 'lib/ngrokapi/models/ip_restriction.rb', line 34 def to_s @result.to_s end |