OBJECT
NessusUserScan
link GraphQL Schema definition
- type NessusUserScan {
- # Nessus user scan ID
- : Int!
- # Nessus user scan name
- : String!
- # Scan status
- : UserScanStatus!
- # Last execution creation time
- : Time
- # Last status modification time
- : Time
- # Plugins families
- #
- # 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): PluginFamilyConnection!
- # User scan CIDRs
- : [String!]!
- # User scan origins
- #
- # 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): OriginConnection!
- # User scan settings
- : NessusUserScanSettings
- }