cas_e335ab
Creates, updates, deletes, gets or lists a cas_e335ab resource.
Overview
| Name | cas_e335ab |
| Type | Resource |
| Id | cloudflare.zero_trust.cas_e335ab |
Fields
The following fields are returned by SELECT queries:
- list_by_account
Get a short-lived certificate CA response
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the CA. (example: 7eddae4619b50ab1361ba8ae9bd72269a432fea041529ed9) |
aud | string | The Application Audience (AUD) tag. Identifies the application associated with the CA. (example: 737646a56ab1df6ec9bddc7e5ca84eaf3b0768850f3ffb5d74f1534911fe3893) |
public_key | string | The public key to add to your SSH server configuration. (example: ecdsa-sha2-nistp256 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx= open-ssh-ca@cloudflareaccess.org) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_account | select | app_id, account_id | Fetches a short-lived certificate CA and its public key. |
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. |
app_id | string | The Access application ID. |
SELECT examples
- list_by_account
Fetches a short-lived certificate CA and its public key.
SELECT
id,
aud,
public_key
FROM cloudflare.zero_trust.cas_e335ab
WHERE app_id = '{{ app_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;