OBJECT

IpList

An IP list group for policies

link GraphQL Schema definition

  • type IpList implements AssetGroup {
  • # ID
  • id: ID!
  • # The group name
  • name: String!
  • # The group type
  • type: AssetGroupType!
  • # Indicates if the group is archived
  • archived: Boolean!
  • # Indicates if the group is system generated
  • system: Boolean!
  • # Group key
  • key: String!
  • # The last date the entity was modified by a user
  • lastModifiedDate: String
  • # The last user that modified the entity
  • lastModifiedBy: String
  • # 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!
  • # Active queries the asset group 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.
  • queries(after: String, first: Int, before: String, last: Int): ActiveQueryConnection!
  • # Zones that the asset group 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.
  • zones(after: String, first: Int, before: String, last: Int): ZoneConnection!
  • # Asset group is used by active queries restrictions
  • usedInRestrictions: Boolean!
  • # Object usage information
  • usageInfo: UsageInfo!
  • # The list of IPs in this group
  • #
  • # 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.
  • ips(after: String, first: Int, before: String, last: Int): StringConnection!
  • }

link Require by