OBJECT
NetworkArea
Network area for overlapping ips
link GraphQL Schema definition
- type NetworkArea {
- # The id of the network area
- : ID!
- # The name of the network area
- : String!
- # The networks of the network area
- : [String!]
- # If the network area supports querying assets
- : Boolean!
- # The description of the network area
- : String!
- # Whether the network area was explicitly created by a user
- : Boolean!
- : [SensorDetails!]
- : [OtAgentDetails!]
- : [Source!]
- # Names of agents and sensors that have historically reported data to this area
- : [String!]
- # Discovery queries the network area is used 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.
- (: String, : Int, : String, : Int): ActiveQueryConnection!
- # Nessus user scans the network area is used 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.
- (: String, : Int, : String, : Int): NessusUserScanConnection!
- # Object usage information
- : UsageInfo!
- }