class Nexpose::EngineSummary

Object representing the current details of a scan engine attached to the security console.

Attributes

address[R]

The hostname or IP address of the engine.

id[R]

A unique ID that identifies this scan engine.

name[R]

The name of this scan engine.

port[R]

The port there the engine is listening.

scope[R]

A parameter that specifies whether the engine has a global or silo-specific scope.

status[R]

The engine status. One of: active, pending-auth, incompatible, not-responding, unknown

Public Class Methods

new(id, name, address, port, status, scope = 'silo') click to toggle source
# File lib/nexpose/engine.rb, line 111
def initialize(id, name, address, port, status, scope = 'silo')
  @id      = id
  @name    = name
  @address = address
  @port    = port
  @status  = status
  @scope   = scope
end