app_types
Creates, updates, deletes, gets or lists an app_types resource.
Overview
| Name | app_types |
| Type | Resource |
| Id | cloudflare.zero_trust.app_types |
Fields
The following fields are returned by SELECT queries:
- list
List application and application type mappings response.
| Name | Datatype | Description |
|---|---|---|
id | integer | Identify this application. Only one application per ID. |
name | string | Specify the name of the application or application type. (example: Facebook) |
application_type_id | integer | Identify the type of this application. Multiple applications can share the same type. Refers to the id of a returned application type. |
created_at | string (date-time) | (example: 2014-01-01T05:20:00.12345Z) |
description | string | Provide a short summary of applications with this type. (example: Applications used to communicate or collaborate in a business setting.) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | List all application and application type mappings. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
List all application and application type mappings.
SELECT
id,
name,
application_type_id,
created_at,
description
FROM cloudflare.zero_trust.app_types
WHERE account_id = '{{ account_id }}' -- required
;