Class: NgrokAPI::Models::IPPolicyRule
- Inherits:
-
Object
- Object
- NgrokAPI::Models::IPPolicyRule
- Defined in:
- lib/ngrokapi/models/ip_policy_rule.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
readonly
Returns the value of attribute action.
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#cidr ⇒ Object
readonly
Returns the value of attribute cidr.
-
#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.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#ip_policy ⇒ Object
readonly
Returns the value of attribute ip_policy.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#delete ⇒ Object
Delete an IP policy rule.
-
#initialize(client: nil, attrs: {}) ⇒ IPPolicyRule
constructor
A new instance of IPPolicyRule.
- #to_h ⇒ Object
- #to_s ⇒ Object
-
#update(description: nil, metadata: nil, cidr: nil) ⇒ Object
Update attributes of an IP policy rule by ID.
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ IPPolicyRule
Returns a new instance of IPPolicyRule.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/ngrokapi/models/ip_policy_rule.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'] @cidr = @attrs['cidr'] @ip_policy = @attrs['ip_policy'] @action = @attrs['action'] end |
Instance Attribute Details
#action ⇒ Object (readonly)
Returns the value of attribute action.
10 11 12 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 10 def action @action end |
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
10 11 12 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 10 def attrs @attrs end |
#cidr ⇒ Object (readonly)
Returns the value of attribute cidr.
10 11 12 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 10 def cidr @cidr end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
10 11 12 |
# File 'lib/ngrokapi/models/ip_policy_rule.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_policy_rule.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_policy_rule.rb', line 10 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
10 11 12 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 10 def id @id end |
#ip_policy ⇒ Object (readonly)
Returns the value of attribute ip_policy.
10 11 12 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 10 def ip_policy @ip_policy end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
10 11 12 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 10 def @metadata end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
10 11 12 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 10 def uri @uri end |
Instance Method Details
#==(other) ⇒ Object
36 37 38 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 36 def ==(other) @attrs == other.attrs end |
#delete ⇒ Object
Delete an IP policy rule.
52 53 54 55 56 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 52 def delete @client.delete( id: @id ) end |
#to_h ⇒ Object
44 45 46 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 44 def to_h @attrs.to_h end |
#to_s ⇒ Object
40 41 42 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 40 def to_s @attrs.to_s end |
#update(description: nil, metadata: nil, cidr: nil) ⇒ Object
Update attributes of an IP policy rule by ID
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 62 def update( description: nil, metadata: nil, cidr: nil ) @description = description if description @metadata = if @cidr = cidr if cidr @client.update( id: @id, description: description, metadata: , cidr: cidr ) end |