target_industries_catalog
Creates, updates, deletes, gets or lists a target_industries_catalog resource.
Overview
| Name | target_industries_catalog |
| Type | Resource |
| Id | cloudflare.cloudforce_one.target_industries_catalog |
Fields
The following fields are returned by SELECT queries:
- list
Returns all target industries from industry map catalog.
| Name | Datatype | Description |
|---|---|---|
items | object | |
type | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id |
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
Returns all target industries from industry map catalog.
SELECT
items,
type
FROM cloudflare.cloudforce_one.target_industries_catalog
WHERE account_id = '{{ account_id }}' -- required
;