Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.18 KB

WafTagsApi.md

File metadata and controls

48 lines (30 loc) · 1.18 KB

WafTagsApi

Note

All URIs are relative to https://api.fastly.com

Method HTTP request Description
list_waf_tags GET /waf/tags List tags

list_waf_tags

List all tags.

let cfg = &Configuration::default();
let params = ListWafTagsParams {
    // parameters
};
list_waf_tags(cfg, params)

Parameters

Name Type Description Required Notes
filter_name Option<String> Limit the returned tags to a specific name.
page_number Option<i32> Current page.
page_size Option<i32> Number of records per page. [default to 20]
include Option<String> Include relationships. Optional. [default to waf_rules]

Return type

crate::models::WafTagsResponse

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/vnd.api+json

[Back to top] [Back to API list] [Back to README]