Skip to content

Latest commit

 

History

History
61 lines (44 loc) · 1.61 KB

LegacyWafTagApi.md

File metadata and controls

61 lines (44 loc) · 1.61 KB

Fastly::LegacyWafTagApi

require 'fastly'
api_instance = Fastly::LegacyWafTagApi.new

Methods

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()

list_legacy_waf_tags(opts): Object # List WAF tags

List all tags.

Examples

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

Options

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]

Return type

Object

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