forked from oracle/oci-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recommendation.go
42 lines (31 loc) · 1.81 KB
/
recommendation.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (c) 2016, 2018, 2020, 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/oracle/oci-go-sdk/common"
)
// Recommendation A recommended protection rule for a web application. This recommendation can be accepted to apply it to the Web Application Firewall configuration for this policy.
// Use the `POST /waasPolicies/{waasPolicyId}/actions/acceptWafConfigRecommendations` method to accept recommended protection rules.
type Recommendation struct {
// The unique key for the recommended protection rule.
Key *string `mandatory:"false" json:"key"`
// The list of the ModSecurity rule IDs associated with the protection rule.
// For more information about ModSecurity's open source WAF rules, see Mod Security's documentation (https://www.modsecurity.org/CRS/Documentation/index.html).
ModSecurityRuleIds []string `mandatory:"false" json:"modSecurityRuleIds"`
// The name of the recommended protection rule.
Name *string `mandatory:"false" json:"name"`
// The description of the recommended protection rule.
Description *string `mandatory:"false" json:"description"`
// The list of labels for the recommended protection rule.
Labels []string `mandatory:"false" json:"labels"`
// The recommended action to apply to the protection rule.
RecommendedAction *string `mandatory:"false" json:"recommendedAction"`
}
func (m Recommendation) String() string {
return common.PointerString(m)
}