Properties
| Name | Type | Description |
|---|---|---|
| access_client_id | string | If present, this id will be passed in the `CF-Access-Client-ID` header when hitting the `api_url` |
| access_client_secret | string | If present, this secret will be passed in the `CF-Access-Client-Secret` header when hitting the `api_url` |
| api_url | string | The Tanium API URL. |
| client_secret | string | The Tanium client secret. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/teams-devices_tanium_config_request",
"title": "Tanium Config",
"properties": {
"access_client_id": {
"description": "If present, this id will be passed in the `CF-Access-Client-ID` header when hitting the `api_url`",
"example": "88bf3b6d86161464f6509f7219099e57.access",
"type": "string"
},
"access_client_secret": {
"description": "If present, this secret will be passed in the `CF-Access-Client-Secret` header when hitting the `api_url`",
"example": "bdd31cbc4dec990953e39163fbbb194c93313ca9f0a6e420346af9d326b1d2a5",
"type": "string"
},
"api_url": {
"description": "The Tanium API URL.",
"example": "https://dummy-tanium-api.cloudflare.com/plugin/products/gateway/graphql",
"type": "string"
},
"client_secret": {
"description": "The Tanium client secret.",
"example": "example client secret",
"type": "string"
}
},
"required": [
"api_url",
"client_secret"
],
"type": "object"
}