require 'fastly'
api_instance = Fastly::LegacyWafTagApi.new
Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
list_legacy_waf_tags | GET /wafs/tags | List WAF tags |
list_legacy_waf_tags(opts): Object # List WAF tags
List all tags.
api_instance = Fastly::LegacyWafTagApi.new
opts = {
filter_name: 'filter_name_example', # String | Limit the returned tags to a specific name.
page_number: 1, # Integer | Current page.
page_size: 20, # Integer | Number of records per page.
include: 'rules', # String | Include relationships. Optional, comma separated values. Permitted values: `rules`.
}
begin
# List WAF tags
result = api_instance.list_legacy_waf_tags(opts)
p result
rescue Fastly::ApiError => e
puts "Error when calling LegacyWafTagApi->list_legacy_waf_tags: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
filter_name | String | Limit the returned tags to a specific name. | [optional] |
page_number | Integer | Current page. | [optional] |
page_size | Integer | Number of records per page. | [optional][default to 20] |
include | String | Include relationships. Optional, comma separated values. Permitted values: rules . |
[optional] |
Object