-
Notifications
You must be signed in to change notification settings - Fork 82
/
web_app_firewall_policy_rule.go
214 lines (179 loc) · 8.23 KB
/
web_app_firewall_policy_rule.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// Copyright (c) 2016, 2018, 2023, 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 Firewall (WAF) API
//
// API for the Web Application Firewall service.
// Use this API to manage regional Web App Firewalls and corresponding policies for protecting HTTP services.
//
package waf
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// WebAppFirewallPolicyRule Base schema for WebAppFirewallPolicyRules, including properties common to all of them.
type WebAppFirewallPolicyRule interface {
// Rule name. Must be unique within the module.
GetName() *string
// References action by name from actions defined in WebAppFirewallPolicy.
GetActionName() *string
// The language used to parse condition from field `condition`. Available languages:
// * **JMESPATH** an extended JMESPath language syntax.
GetConditionLanguage() WebAppFirewallPolicyRuleConditionLanguageEnum
// An expression that determines whether or not the rule action should be executed.
GetCondition() *string
}
type webappfirewallpolicyrule struct {
JsonData []byte
Name *string `mandatory:"true" json:"name"`
ActionName *string `mandatory:"true" json:"actionName"`
ConditionLanguage WebAppFirewallPolicyRuleConditionLanguageEnum `mandatory:"false" json:"conditionLanguage,omitempty"`
Condition *string `mandatory:"false" json:"condition"`
Type string `json:"type"`
}
// UnmarshalJSON unmarshals json
func (m *webappfirewallpolicyrule) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshalerwebappfirewallpolicyrule webappfirewallpolicyrule
s := struct {
Model Unmarshalerwebappfirewallpolicyrule
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.Name = s.Model.Name
m.ActionName = s.Model.ActionName
m.ConditionLanguage = s.Model.ConditionLanguage
m.Condition = s.Model.Condition
m.Type = s.Model.Type
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *webappfirewallpolicyrule) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.Type {
case "PROTECTION":
mm := ProtectionRule{}
err = json.Unmarshal(data, &mm)
return mm, err
case "REQUEST_RATE_LIMITING":
mm := RequestRateLimitingRule{}
err = json.Unmarshal(data, &mm)
return mm, err
case "ACCESS_CONTROL":
mm := AccessControlRule{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
common.Logf("Recieved unsupported enum value for WebAppFirewallPolicyRule: %s.", m.Type)
return *m, nil
}
}
//GetName returns Name
func (m webappfirewallpolicyrule) GetName() *string {
return m.Name
}
//GetActionName returns ActionName
func (m webappfirewallpolicyrule) GetActionName() *string {
return m.ActionName
}
//GetConditionLanguage returns ConditionLanguage
func (m webappfirewallpolicyrule) GetConditionLanguage() WebAppFirewallPolicyRuleConditionLanguageEnum {
return m.ConditionLanguage
}
//GetCondition returns Condition
func (m webappfirewallpolicyrule) GetCondition() *string {
return m.Condition
}
func (m webappfirewallpolicyrule) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m webappfirewallpolicyrule) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingWebAppFirewallPolicyRuleConditionLanguageEnum(string(m.ConditionLanguage)); !ok && m.ConditionLanguage != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for ConditionLanguage: %s. Supported values are: %s.", m.ConditionLanguage, strings.Join(GetWebAppFirewallPolicyRuleConditionLanguageEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// WebAppFirewallPolicyRuleConditionLanguageEnum Enum with underlying type: string
type WebAppFirewallPolicyRuleConditionLanguageEnum string
// Set of constants representing the allowable values for WebAppFirewallPolicyRuleConditionLanguageEnum
const (
WebAppFirewallPolicyRuleConditionLanguageJmespath WebAppFirewallPolicyRuleConditionLanguageEnum = "JMESPATH"
)
var mappingWebAppFirewallPolicyRuleConditionLanguageEnum = map[string]WebAppFirewallPolicyRuleConditionLanguageEnum{
"JMESPATH": WebAppFirewallPolicyRuleConditionLanguageJmespath,
}
var mappingWebAppFirewallPolicyRuleConditionLanguageEnumLowerCase = map[string]WebAppFirewallPolicyRuleConditionLanguageEnum{
"jmespath": WebAppFirewallPolicyRuleConditionLanguageJmespath,
}
// GetWebAppFirewallPolicyRuleConditionLanguageEnumValues Enumerates the set of values for WebAppFirewallPolicyRuleConditionLanguageEnum
func GetWebAppFirewallPolicyRuleConditionLanguageEnumValues() []WebAppFirewallPolicyRuleConditionLanguageEnum {
values := make([]WebAppFirewallPolicyRuleConditionLanguageEnum, 0)
for _, v := range mappingWebAppFirewallPolicyRuleConditionLanguageEnum {
values = append(values, v)
}
return values
}
// GetWebAppFirewallPolicyRuleConditionLanguageEnumStringValues Enumerates the set of values in String for WebAppFirewallPolicyRuleConditionLanguageEnum
func GetWebAppFirewallPolicyRuleConditionLanguageEnumStringValues() []string {
return []string{
"JMESPATH",
}
}
// GetMappingWebAppFirewallPolicyRuleConditionLanguageEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingWebAppFirewallPolicyRuleConditionLanguageEnum(val string) (WebAppFirewallPolicyRuleConditionLanguageEnum, bool) {
enum, ok := mappingWebAppFirewallPolicyRuleConditionLanguageEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// WebAppFirewallPolicyRuleTypeEnum Enum with underlying type: string
type WebAppFirewallPolicyRuleTypeEnum string
// Set of constants representing the allowable values for WebAppFirewallPolicyRuleTypeEnum
const (
WebAppFirewallPolicyRuleTypeAccessControl WebAppFirewallPolicyRuleTypeEnum = "ACCESS_CONTROL"
WebAppFirewallPolicyRuleTypeProtection WebAppFirewallPolicyRuleTypeEnum = "PROTECTION"
WebAppFirewallPolicyRuleTypeRequestRateLimiting WebAppFirewallPolicyRuleTypeEnum = "REQUEST_RATE_LIMITING"
)
var mappingWebAppFirewallPolicyRuleTypeEnum = map[string]WebAppFirewallPolicyRuleTypeEnum{
"ACCESS_CONTROL": WebAppFirewallPolicyRuleTypeAccessControl,
"PROTECTION": WebAppFirewallPolicyRuleTypeProtection,
"REQUEST_RATE_LIMITING": WebAppFirewallPolicyRuleTypeRequestRateLimiting,
}
var mappingWebAppFirewallPolicyRuleTypeEnumLowerCase = map[string]WebAppFirewallPolicyRuleTypeEnum{
"access_control": WebAppFirewallPolicyRuleTypeAccessControl,
"protection": WebAppFirewallPolicyRuleTypeProtection,
"request_rate_limiting": WebAppFirewallPolicyRuleTypeRequestRateLimiting,
}
// GetWebAppFirewallPolicyRuleTypeEnumValues Enumerates the set of values for WebAppFirewallPolicyRuleTypeEnum
func GetWebAppFirewallPolicyRuleTypeEnumValues() []WebAppFirewallPolicyRuleTypeEnum {
values := make([]WebAppFirewallPolicyRuleTypeEnum, 0)
for _, v := range mappingWebAppFirewallPolicyRuleTypeEnum {
values = append(values, v)
}
return values
}
// GetWebAppFirewallPolicyRuleTypeEnumStringValues Enumerates the set of values in String for WebAppFirewallPolicyRuleTypeEnum
func GetWebAppFirewallPolicyRuleTypeEnumStringValues() []string {
return []string{
"ACCESS_CONTROL",
"PROTECTION",
"REQUEST_RATE_LIMITING",
}
}
// GetMappingWebAppFirewallPolicyRuleTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingWebAppFirewallPolicyRuleTypeEnum(val string) (WebAppFirewallPolicyRuleTypeEnum, bool) {
enum, ok := mappingWebAppFirewallPolicyRuleTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}