Class: NgrokAPI::Models::AWSAuth
- Inherits:
-
Object
- Object
- NgrokAPI::Models::AWSAuth
- Defined in:
- lib/ngrokapi/models/aws_auth.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#creds ⇒ Object
readonly
Returns the value of attribute creds.
-
#role ⇒ Object
readonly
Returns the value of attribute role.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(client: nil, attrs: {}) ⇒ AWSAuth
constructor
A new instance of AWSAuth.
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ AWSAuth
Returns a new instance of AWSAuth.
11 12 13 14 15 16 |
# File 'lib/ngrokapi/models/aws_auth.rb', line 11 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @role = @attrs['role'] @creds = @attrs['creds'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
6 7 8 |
# File 'lib/ngrokapi/models/aws_auth.rb', line 6 def attrs @attrs end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
6 7 8 |
# File 'lib/ngrokapi/models/aws_auth.rb', line 6 def client @client end |
#creds ⇒ Object (readonly)
Returns the value of attribute creds.
6 7 8 |
# File 'lib/ngrokapi/models/aws_auth.rb', line 6 def creds @creds end |
#role ⇒ Object (readonly)
Returns the value of attribute role.
6 7 8 |
# File 'lib/ngrokapi/models/aws_auth.rb', line 6 def role @role end |
Instance Method Details
#==(other) ⇒ Object
18 19 20 |
# File 'lib/ngrokapi/models/aws_auth.rb', line 18 def ==(other) @attrs == other.attrs end |
#to_h ⇒ Object
26 27 28 |
# File 'lib/ngrokapi/models/aws_auth.rb', line 26 def to_h @attrs.to_h end |
#to_s ⇒ Object
22 23 24 |
# File 'lib/ngrokapi/models/aws_auth.rb', line 22 def to_s @attrs.to_s end |