Skip to content

policy

Returns detailed policy information.

Arguments

Argument Type Description
policyId (required) String!
workloadTypes [DataGovObjectType!] Types of workloads used for filtering the query results.
sortBy PolicyDetailsSortBy Name of the column to sort result by.
sortOrder SortOrder Sorts the order of results.
clusterIdsFilter [String!] List of Rubrik clusters for filtering results.
replicationFilter [String!] List of replication types for filtering results.
searchObjectName String Object name to search.
hierarchyAncestorIdFilter String Hierarchy ancestor ID.
policyAssignmentType PolicyAssignmentType Specifies whether the policy assignment type is direct or inherited.
includeDataTypeHits Boolean Include data type hits.
first Int Returns the first n elements from the list.
after String Returns the elements in the list that occur after the specified cursor.
last Int Returns the last n elements from the list.
before String Returns the elements in the list that occur before the specified cursor.

Returns

ClassificationPolicyDetail!

Sample

query Policy($policyId: String!) {
  policy(policyId: $policyId) {
    colorEnum
    createdTime
    deletable
    description
    hierarchyObjectIds
    id
    isInactive
    lastUpdatedTime
    mode
    name
    numAnalyzers
    totalObjects
  }
}
{
  "policyId": "example-string"
}
{
  "data": {
    "policy": {
      "colorEnum": "COLOR_001",
      "createdTime": 0,
      "deletable": true,
      "description": "example-string",
      "hierarchyObjectIds": [
        "example-string"
      ],
      "id": "example-string",
      "analyzers": [
        {
          "analyzerType": "ABA_ROUTING_NUMBER",
          "dictionary": [
            "example-string"
          ],
          "dictionaryCsv": "example-string",
          "excludeFieldNamePattern": "example-string",
          "excludePathPattern": "example-string",
          "id": "example-string"
        }
      ],
      "assignmentResources": {
        "nodes": [
          [
            {}
          ]
        ],
        "pageInfo": {
          "endCursor": "example-string",
          "hasNextPage": true,
          "hasPreviousPage": true,
          "startCursor": "example-string"
        }
      }
    }
  }
}