Class: NgrokAPI::Models::SSHHostCertificate
- Inherits:
-
Object
- Object
- NgrokAPI::Models::SSHHostCertificate
- Defined in:
- lib/ngrokapi/models/ssh_host_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.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#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 Host Certificate.
-
#initialize(client: nil, attrs: {}) ⇒ SSHHostCertificate
constructor
A new instance of SSHHostCertificate.
- #to_h ⇒ Object
- #to_s ⇒ Object
-
#update(description: nil, metadata: nil) ⇒ Object
Update an SSH Host Certificate.
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ SSHHostCertificate
Returns a new instance of SSHHostCertificate.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 21 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @id = @attrs['id'] @uri = @attrs['uri'] @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'] @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.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def attrs @attrs end |
#certificate ⇒ Object (readonly)
Returns the value of attribute certificate.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def certificate @certificate end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def client @client end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def created_at @created_at end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def id @id end |
#key_type ⇒ Object (readonly)
Returns the value of attribute key_type.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def key_type @key_type end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def @metadata end |
#principals ⇒ Object (readonly)
Returns the value of attribute principals.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def principals @principals end |
#public_key ⇒ Object (readonly)
Returns the value of attribute public_key.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def public_key @public_key end |
#ssh_certificate_authority_id ⇒ Object (readonly)
Returns the value of attribute ssh_certificate_authority_id.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def @ssh_certificate_authority_id end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def uri @uri end |
#valid_after ⇒ Object (readonly)
Returns the value of attribute valid_after.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def valid_after @valid_after end |
#valid_until ⇒ Object (readonly)
Returns the value of attribute valid_until.
6 7 8 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 6 def valid_until @valid_until end |
Instance Method Details
#==(other) ⇒ Object
38 39 40 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 38 def ==(other) @attrs == other.attrs end |
#delete ⇒ Object
Delete an SSH Host Certificate
54 55 56 57 58 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 54 def delete @client.delete( id: @id ) end |
#to_h ⇒ Object
46 47 48 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 46 def to_h @attrs.to_h end |
#to_s ⇒ Object
42 43 44 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 42 def to_s @attrs.to_s end |
#update(description: nil, metadata: nil) ⇒ Object
Update an SSH Host Certificate
64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/ngrokapi/models/ssh_host_certificate.rb', line 64 def update( description: nil, metadata: nil ) @description = description if description @metadata = if @client.update( id: @id, description: description, metadata: ) end |