Skip to content

identityDataLocationsEncryptionInfo

Retrieve the encryption information for identity data locations.

Arguments

Argument Type Description
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.
sortBy IdentityDataLocationSortByField Sort order for sorting data locations.
filter IdentityDataLocationsFilter Filter for listing identity data locations.
pagination Pagination Pagination param.

Returns

IdentityDataLocationEncryptionInfoConnection!

Sample

query {
  identityDataLocationsEncryptionInfo(first: 10) {
    nodes {
      cipher
      encryptionType
      keyName
      keyVaultName
      keyVersion
      locationName
      workloadId
      workloadType
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "identityDataLocationsEncryptionInfo": {
      "nodes": [
        [
          {
            "cipher": "example-string",
            "encryptionType": "ENCRYPTION_TYPE_BYOK",
            "keyName": "example-string",
            "keyVaultName": "example-string",
            "keyVersion": "example-string",
            "locationName": "example-string"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}