Class: NgrokAPI::Models::WeightedBackend
- Inherits:
-
Object
- Object
- NgrokAPI::Models::WeightedBackend
- Defined in:
- lib/ngrokapi/models/weighted_backend.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#backends ⇒ Object
readonly
Returns the value of attribute backends.
-
#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.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#delete ⇒ Object
Delete a Weighted backend by ID.
-
#initialize(client: nil, attrs: {}) ⇒ WeightedBackend
constructor
A new instance of WeightedBackend.
- #to_h ⇒ Object
- #to_s ⇒ Object
-
#update(description: nil, metadata: nil, backends: {}) ⇒ Object
Update Weighted backend by ID.
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ WeightedBackend
Returns a new instance of WeightedBackend.
19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 19 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'] @backends = @attrs['backends'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
10 11 12 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 10 def attrs @attrs end |
#backends ⇒ Object (readonly)
Returns the value of attribute backends.
10 11 12 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 10 def backends @backends end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
10 11 12 |
# File 'lib/ngrokapi/models/weighted_backend.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/weighted_backend.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/weighted_backend.rb', line 10 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
10 11 12 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 10 def id @id end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
10 11 12 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 10 def @metadata end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
10 11 12 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 10 def uri @uri end |
Instance Method Details
#==(other) ⇒ Object
32 33 34 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 32 def ==(other) @attrs == other.attrs end |
#delete ⇒ Object
Delete a Weighted backend by ID.
48 49 50 51 52 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 48 def delete @client.delete( id: @id ) end |
#to_h ⇒ Object
40 41 42 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 40 def to_h @attrs.to_h end |
#to_s ⇒ Object
36 37 38 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 36 def to_s @attrs.to_s end |
#update(description: nil, metadata: nil, backends: {}) ⇒ Object
Update Weighted backend by ID
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/ngrokapi/models/weighted_backend.rb', line 58 def update( description: nil, metadata: nil, backends: {} ) @description = description if description @metadata = if @backends = backends if backends @client.update( id: @id, description: description, metadata: , backends: backends ) end |