Skip to content

cloudDirectClusterLambdaConfig

Query Cloud Direct NAS clusters for Threat Monitoring.

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.
filter ClusterFilterInput Filter by cluster.
sortOrder SortOrder Cluster sort order.
sortBy ClusterSortByEnum Sort clusters by field.

Returns

ThreatHuntCloudDirectClusterConnection!

Sample

query {
  cloudDirectClusterLambdaConfig(first: 10) {
    nodes {
      connectionStatus
      id
      name
      productType
      status
      version
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "cloudDirectClusterLambdaConfig": {
      "nodes": [
        [
          {
            "connectionStatus": "example-string",
            "id": "00000000-0000-0000-0000-000000000000",
            "name": "example-string",
            "productType": "CDM",
            "status": "Connected",
            "version": "example-string"
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}