Class: NgrokAPI::Models::ReservedAddr
- Inherits:
- 
      Object
      
        - Object
- NgrokAPI::Models::ReservedAddr
 
- Defined in:
- lib/ngrokapi/models/reserved_addr.rb
Instance Attribute Summary collapse
- 
  
    
      #addr  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute addr. 
- 
  
    
      #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. 
- 
  
    
      #id  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute id. 
- 
  
    
      #metadata  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute metadata. 
- 
  
    
      #region  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute region. 
- 
  
    
      #uri  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute uri. 
Instance Method Summary collapse
- #==(other) ⇒ Object
- 
  
    
      #delete  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Delete a reserved address. 
- 
  
    
      #initialize(client: nil, attrs: {})  ⇒ ReservedAddr 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ReservedAddr. 
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ ReservedAddr
Returns a new instance of ReservedAddr.
| 20 21 22 23 24 25 26 27 28 29 30 31 32 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 20 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'] @addr = @attrs['addr'] @region = @attrs['region'] end | 
Instance Attribute Details
#addr ⇒ Object (readonly)
Returns the value of attribute addr.
| 10 11 12 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 10 def addr @addr end | 
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
| 10 11 12 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 10 def attrs @attrs end | 
#client ⇒ Object (readonly)
Returns the value of attribute client.
| 10 11 12 | # File 'lib/ngrokapi/models/reserved_addr.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/reserved_addr.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/reserved_addr.rb', line 10 def description @description end | 
#id ⇒ Object (readonly)
Returns the value of attribute id.
| 10 11 12 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 10 def id @id end | 
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
| 10 11 12 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 10 def @metadata end | 
#region ⇒ Object (readonly)
Returns the value of attribute region.
| 10 11 12 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 10 def region @region end | 
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
| 10 11 12 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 10 def uri @uri end | 
Instance Method Details
#==(other) ⇒ Object
| 34 35 36 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 34 def ==(other) @attrs == other.attrs end | 
#delete ⇒ Object
Delete a reserved address.
| 50 51 52 53 54 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 50 def delete @client.delete( id: @id ) end | 
#to_h ⇒ Object
| 42 43 44 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 42 def to_h @attrs.to_h end | 
#to_s ⇒ Object
| 38 39 40 | # File 'lib/ngrokapi/models/reserved_addr.rb', line 38 def to_s @attrs.to_s end |