Show / Hide Table of Contents

Class PurgeCache

The list of cached resources to purge. If a resource is not specified, the purge targets all rules in a policy.

Inheritance
object
PurgeCache
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WaasService.Models
Assembly: OCI.DotNetSDK.Waas.dll
Syntax
public class PurgeCache

Properties

Resources

Declaration
[JsonProperty(PropertyName = "resources")]
public List<string> Resources { get; set; }
Property Value
Type Description
List<string>

A resource to purge, specified by either a hostless absolute path starting with a single slash (Example: /path/to/resource) or by a relative path in which the first component will be interpreted as a domain protected by the WAAS policy (

In this article
Back to top