Class: NgrokAPI::Models::SSHUserCertificate
- Inherits:
-
Object
- Object
- NgrokAPI::Models::SSHUserCertificate
- Defined in:
- lib/ngrokapi/models/ssh_user_certificate.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#certificate ⇒ Object
readonly
Returns the value of attribute certificate.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#critical_options ⇒ Object
readonly
Returns the value of attribute critical_options.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#extensions ⇒ Object
readonly
Returns the value of attribute extensions.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#key_type ⇒ Object
readonly
Returns the value of attribute key_type.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
-
#principals ⇒ Object
readonly
Returns the value of attribute principals.
-
#public_key ⇒ Object
readonly
Returns the value of attribute public_key.
-
#ssh_certificate_authority_id ⇒ Object
readonly
Returns the value of attribute ssh_certificate_authority_id.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
-
#valid_after ⇒ Object
readonly
Returns the value of attribute valid_after.
-
#valid_until ⇒ Object
readonly
Returns the value of attribute valid_until.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#delete ⇒ Object
Delete an SSH User Certificate.
-
#initialize(client: nil, attrs: {}) ⇒ SSHUserCertificate
constructor
A new instance of SSHUserCertificate.
- #to_h ⇒ Object
- #to_s ⇒ Object
-
#update(description: nil, metadata: nil) ⇒ Object
Update an SSH User Certificate.
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ SSHUserCertificate
Returns a new instance of SSHUserCertificate.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 27 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'] @public_key = @attrs['public_key'] @key_type = @attrs['key_type'] @ssh_certificate_authority_id = @attrs['ssh_certificate_authority_id'] @principals = @attrs['principals'] @critical_options = @attrs['critical_options'] @extensions = @attrs['extensions'] @valid_after = @attrs['valid_after'] @valid_until = @attrs['valid_until'] @certificate = @attrs['certificate'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def attrs @attrs end |
#certificate ⇒ Object (readonly)
Returns the value of attribute certificate.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def certificate @certificate end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.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/ssh_user_certificate.rb', line 10 def created_at @created_at end |
#critical_options ⇒ Object (readonly)
Returns the value of attribute critical_options.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def @critical_options end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def description @description end |
#extensions ⇒ Object (readonly)
Returns the value of attribute extensions.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def extensions @extensions end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def id @id end |
#key_type ⇒ Object (readonly)
Returns the value of attribute key_type.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def key_type @key_type end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def @metadata end |
#principals ⇒ Object (readonly)
Returns the value of attribute principals.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def principals @principals end |
#public_key ⇒ Object (readonly)
Returns the value of attribute public_key.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def public_key @public_key end |
#ssh_certificate_authority_id ⇒ Object (readonly)
Returns the value of attribute ssh_certificate_authority_id.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def @ssh_certificate_authority_id end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def uri @uri end |
#valid_after ⇒ Object (readonly)
Returns the value of attribute valid_after.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def valid_after @valid_after end |
#valid_until ⇒ Object (readonly)
Returns the value of attribute valid_until.
10 11 12 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 10 def valid_until @valid_until end |
Instance Method Details
#==(other) ⇒ Object
48 49 50 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 48 def ==(other) @attrs == other.attrs end |
#delete ⇒ Object
Delete an SSH User Certificate
64 65 66 67 68 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 64 def delete @client.delete( id: @id ) end |
#to_h ⇒ Object
56 57 58 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 56 def to_h @attrs.to_h end |
#to_s ⇒ Object
52 53 54 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 52 def to_s @attrs.to_s end |
#update(description: nil, metadata: nil) ⇒ Object
Update an SSH User Certificate
74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/ngrokapi/models/ssh_user_certificate.rb', line 74 def update( description: nil, metadata: nil ) @description = description if description @metadata = if @client.update( id: @id, description: description, metadata: ) end |