OBJECT

SyslogServer

link GraphQL Schema definition

  • type SyslogServer {
  • # ID
  • id: ID!
  • # Name
  • name: String!
  • # Protocol of syslog server
  • protocol: String!
  • # Address of syslog server
  • address: String!
  • # Port of syslog server
  • port: Int!
  • # Flag for caching
  • caching: Boolean!
  • # Is syslog server archived
  • archived: Boolean!
  • # Object usage information
  • usageInfo: UsageInfo!
  • # Policies the entity participates in
  • #
  • # 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.
  • policies(after: String, first: Int, before: String, last: Int): PolicyConnection!
  • # syslog server is used for systemLog
  • usedForSystemLog: Boolean!
  • # Is keep alive message enabled
  • keepAlive: Boolean!
  • }