Sha256: 96a16ca16a172afcbda55ca6281af1f5900f38f4e19082c75fca67fdc5d32ba9

Contents?: true

Size: 1.61 KB

Versions: 4

Compression:

Stored size: 1.61 KB

Contents

# frozen_string_literal: true

# Code generated for API Clients. DO NOT EDIT.

require 'uri'

module NgrokAPI
  module Models
    class SSHCredential
      attr_reader :client,
        :attrs,
        :id,
        :uri,
        :created_at,
        :description,
        :metadata,
        :public_key,
        :acl,
        :owner_id

      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']
        @acl = @attrs['acl']
        @owner_id = @attrs['owner_id']
      end

      def ==(other)
        @attrs == other.attrs
      end

      def to_s
        @attrs.to_s
      end

      def to_h
        @attrs.to_h
      end

      ##
      # Delete an ssh_credential by ID
      #
      # https://ngrok.com/docs/api#api-ssh-credentials-delete
      def delete
        @client.delete(
          id: @id
        )
      end

      ##
      # Update attributes of an ssh_credential by ID
      #
      # https://ngrok.com/docs/api#api-ssh-credentials-update
      def update(
        description: nil,
        metadata: nil,
        acl: nil
      )
        @description = description if description
        @metadata = metadata if metadata
        @acl = acl if acl
        @client.update(
          id: @id,
          description: description,
          metadata: metadata,
          acl: acl
        )
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ngrok-api-0.24.0 lib/ngrokapi/models/ssh_credential.rb
ngrok-api-0.23.0 lib/ngrokapi/models/ssh_credential.rb
ngrok-api-0.22.0 lib/ngrokapi/models/ssh_credential.rb
ngrok-api-0.21.0 lib/ngrokapi/models/ssh_credential.rb