Sha256: c2fa25e35f41b0204de220937466dccf50e38cf8fce35689bdf1e2e04fedeb6f
Contents?: true
Size: 1.25 KB
Versions: 39
Compression:
Stored size: 1.25 KB
Contents
# frozen_string_literal: true module Files class RemoteServerConfigurationFile attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # int64 - Agent ID def id @attributes[:id] end # string - def permission_set @attributes[:permission_set] end # string - private key def private_key @attributes[:private_key] end # string def subdomain @attributes[:subdomain] end # string - Agent local root path def root @attributes[:root] end # string - Files Agent API Token def api_token @attributes[:api_token] end # int64 - Incoming port for files agent connections def port @attributes[:port] end # string def hostname @attributes[:hostname] end # string - public key def public_key @attributes[:public_key] end # string - either running or shutdown def status @attributes[:status] end # string def server_host_key @attributes[:server_host_key] end # string - agent config version def config_version @attributes[:config_version] end end end
Version data entries
39 entries across 39 versions & 1 rubygems