-
Notifications
You must be signed in to change notification settings - Fork 1
/
purge_cache.go
25 lines (19 loc) · 1.1 KB
/
purge_cache.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2016, 2018, 2021, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Web Application Acceleration and Security Services API
//
// OCI Web Application Acceleration and Security Services
//
package waas
import (
"github.com/erikcai/oci-go-sdk/v33/common"
)
// PurgeCache The list of cached resources to purge. If a resource is not specified, the purge targets all rules in a policy.
type PurgeCache struct {
// 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 (Example: `example.com/path/to/resource`).
Resources []string `mandatory:"false" json:"resources"`
}
func (m PurgeCache) String() string {
return common.PointerString(m)
}