require 'fastly'
api_instance = Fastly::ProductDomainResearchApi.newNote
All URIs are relative to https://api.fastly.com
| Method | HTTP request | Description |
|---|---|---|
| disable_product_domain_research | DELETE /enabled-products/v1/domain_research | Disable product |
| enable_domain_research | PUT /enabled-products/v1/domain_research | Enable product |
| get_domain_research | GET /enabled-products/v1/domain_research | Get product enablement status |
disable_product_domain_research # Disable productDisable the Domain Research product.
api_instance = Fastly::ProductDomainResearchApi.new
begin
# Disable product
api_instance.disable_product_domain_research
rescue Fastly::ApiError => e
puts "Error when calling ProductDomainResearchApi->disable_product_domain_research: #{e}"
endThis endpoint does not need any parameter.
nil (empty response body)
[Back to top] [Back to API list] [Back to README]
enable_domain_research: <DomainResearchResponseBodyEnable> # Enable productEnable the Domain Research product.
api_instance = Fastly::ProductDomainResearchApi.new
begin
# Enable product
result = api_instance.enable_domain_research
p result
rescue Fastly::ApiError => e
puts "Error when calling ProductDomainResearchApi->enable_domain_research: #{e}"
endThis endpoint does not need any parameter.
DomainResearchResponseBodyEnable
[Back to top] [Back to API list] [Back to README]
get_domain_research: <DomainResearchResponseBodyEnable> # Get product enablement statusGet the enablement status of the Domain Research product.
api_instance = Fastly::ProductDomainResearchApi.new
begin
# Get product enablement status
result = api_instance.get_domain_research
p result
rescue Fastly::ApiError => e
puts "Error when calling ProductDomainResearchApi->get_domain_research: #{e}"
endThis endpoint does not need any parameter.