List and view rulesets
- List existing rulesets
- View a specific ruleset
- List all versions of a ruleset
- View a specific version of a ruleset
- List rules in a managed ruleset with a specific tag
Returns the list of existing rulesets at the account level or at the zone level.
Use one of the following API endpoints:
Operation | Method + Endpoint |
---|---|
List account rulesets | GET /accounts/{account_id}/rulesets |
List zone rulesets | GET /zones/{zone_id}/rulesets |
The result includes rulesets across all phases at a given level (account or zone). The phase
field in each result element indicates the phase where that ruleset is defined.
Also, the list of rulesets at the zone level includes the account-level rulesets you may want to deploy to the specified zone.
The result does not include the list of rules in the ruleset. Refer to View a specific version of a ruleset to learn how to obtain the list of rules.
Returns the properties of the most recent version of the ruleset with the specified ruleset ID.
Use one of the following API endpoints:
Operation | Method + Endpoint |
---|---|
Get an account ruleset | GET /accounts/{account_id}/rulesets/{ruleset_id} |
Get a zone ruleset | GET /zones/{zone_id}/rulesets/{ruleset_id} |
Get an account entry point ruleset | GET /accounts/{account_id}/rulesets/phases/{phase_name}/entrypoint |
Get a zone entry point ruleset | GET /zones/{zone_id}/rulesets/phases/{phase_name}/entrypoint |
The API returns a 404 Not Found
HTTP status code under these conditions:
- When a ruleset cannot be found.
- When the specified ruleset is not a managed ruleset the calling account is entitled to execute.
Returns a list of all the versions of a ruleset.
Use one of the following API endpoints:
Operation | Method + Endpoint |
---|---|
List account ruleset versions | GET /accounts/{account_id}/rulesets/{ruleset_id}/versions |
List zone ruleset versions | GET /zones/{zone_id}/rulesets/{ruleset_id}/versions |
List account entry point ruleset versions | GET /accounts/{account_id}/rulesets/phases/{phase_name}/entrypoint/versions |
List zone entry point ruleset versions | GET /zones/{zone_id}/rulesets/phases/{phase_name}/entrypoint/versions |
The result contains the ruleset properties of each version, but it does not include the list of rules. Refer to View a specific version of a ruleset for instructions on obtaining this information.
When the specified phase entry point ruleset does not exist, this API method returns an empty array in the result
field.
Returns the configuration of a specific version of a ruleset, including its rules.
Use one of the following API endpoints:
Operation | Method + Endpoint |
---|---|
Get an account ruleset version | GET /account/{account_id}/rulesets/{ruleset_id}/versions/{version_number} |
Get a zone ruleset version | GET /zones/{zone_id}/rulesets/{ruleset_id}/versions/{version_number} |
Get an account entry point ruleset version | GET /accounts/{account_id}/rulesets/phases/{phase_name}/entrypoint/versions/{version_number} |
Get a zone entry point ruleset version | GET /zones/{zone_id}/rulesets/phases/{phase_name}/entrypoint/versions/{version_number} |
When the specified phase entry point ruleset does not exist, this API method returns a 404 Not Found
HTTP status code.
Returns a list of all the rules in a managed ruleset with a specific tag.
Operation | Method + Endpoint |
---|---|
List rules in account ruleset version by tag | GET /accounts/{account_id}/rulesets/{managed_ruleset_id}/versions/{version_number}/by_tag/{tag_name} |