OBJECT

ClassificationPolicyDetail

link GraphQL Schema definition

  • type ClassificationPolicyDetail {
  • id: String!
  • name: String!
  • description: String!
  • colorEnum: ClassificationPolicyColor!
  • createdTime: Long!
  • lastUpdatedTime: Long!
  • mode: ClassificationPolicyMode!
  • hierarchyObjectIds: [String!]!
  • analyzers: [Analyzer!]!
  • deletable: Boolean!
  • creator: User
  • # Connection on hierarchy objects.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # sortOrder: Sorting order for the results.
  • hierarchyObjectConnection(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortOrder: SortOrder
  • ): HierarchyObjectConnection!
  • # Connection on AssignmentResourceDetails.
  • #
  • # Arguments
  • # searchObjectName: Object name to search.
  • # workloadTypes: Types of workloads used for filtering the query
  • # results.
  • # sortOrder: Sorting order for the results.
  • # directResourceAssignmentSortBy: Sort by policy resource
  • # assignment type.
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • assignmentResources(
  • searchObjectName: String,
  • workloadTypes: [DataGovObjectType!],
  • sortOrder: SortOrder,
  • directResourceAssignmentSortBy: DirectResourceAssignmentSortBy,
  • first: Int,
  • after: String,
  • last: Int,
  • before: String
  • ): AssignmentResourceDetailsConnection!
  • hierarchyObjects: [HierarchyObject]!
  • objectStatuses: [ObjectStatus!]!
  • totalObjects: Int!
  • numAnalyzers: Int!
  • whitelists: [ClassificationPolicyWhitelistDetailedEntry!]!
  • }