OBJECT

Config

Configuration settings

link GraphQL Schema definition

  • type Config {
  • CharacteristicsInterval: Duration
  • DNSConf: DnsConf
  • ManagementInterface: IPConf
  • # Answer PING requests
  • PingEnabled: Boolean
  • NameQueryInterval: Duration
  • PortScanEnabled: Boolean
  • RunStatusInterval: Duration
  • SnapshotInterval: Duration
  • CaptureEnabled: Boolean
  • # Monitor own traffic (self sniff)
  • SelfSniffEnabled: Boolean
  • # Auto approve sensors
  • SensorsAutoApprove: Boolean
  • # Nessus user scans are available
  • NessusUserScansAvailable: Boolean
  • # Private networks. Conversations (L2 or L3) in those subnets will create assets.
  • # Returns an array of CIDRs
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • privateNetworks(after: String, first: Int, before: String, last: Int): StringConnection!
  • }