Class: NgrokAPI::Models::IPPolicyRule

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client:, result:) ⇒ IPPolicyRule

Returns a new instance of IPPolicyRule.



17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/ngrokapi/models/ip_policy_rule.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']
  @cidr = @result['cidr']
  @ip_policy = @result['ip_policy']
  @action = @result['action']
end

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def action
  @action
end

#cidrObject (readonly)

Returns the value of attribute cidr.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def cidr
  @cidr
end

#clientObject (readonly)

Returns the value of attribute client.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def client
  @client
end

#created_atObject (readonly)

Returns the value of attribute created_at.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def created_at
  @created_at
end

#descriptionObject (readonly)

Returns the value of attribute description.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def description
  @description
end

#idObject (readonly)

Returns the value of attribute id.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def id
  @id
end

#ip_policyObject (readonly)

Returns the value of attribute ip_policy.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def ip_policy
  @ip_policy
end

#metadataObject (readonly)

Returns the value of attribute metadata.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def 
  @metadata
end

#resultObject (readonly)

Returns the value of attribute result.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def result
  @result
end

#uriObject (readonly)

Returns the value of attribute uri.



6
7
8
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 6

def uri
  @uri
end

Instance Method Details

#==(other) ⇒ Object



30
31
32
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 30

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

#deleteObject



42
43
44
45
46
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 42

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

#to_sObject



34
35
36
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 34

def to_s
  @result.to_s
end

#update(description: nil, metadata: nil, cidr: nil) ⇒ Object

Update attributes of an IP policy rule by ID

https://ngrok.com/docs/api#api-ip-policy-rules-update



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/ngrokapi/models/ip_policy_rule.rb', line 52

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