-
Notifications
You must be signed in to change notification settings - Fork 82
/
human_interaction_challenge.go
110 lines (86 loc) · 5.07 KB
/
human_interaction_challenge.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
// Copyright (c) 2016, 2018, 2024, 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 (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// HumanInteractionChallenge The human interaction challenge settings. The human interaction challenge checks various event listeners in the user's browser to determine if there is a human user making a request.
type HumanInteractionChallenge struct {
// Enables or disables the human interaction challenge Web Application Firewall feature.
IsEnabled *bool `mandatory:"true" json:"isEnabled"`
// The action to take against requests from detected bots. If unspecified, defaults to `DETECT`.
Action HumanInteractionChallengeActionEnum `mandatory:"false" json:"action,omitempty"`
// The number of failed requests before taking action. If unspecified, defaults to `10`.
FailureThreshold *int `mandatory:"false" json:"failureThreshold"`
// The number of seconds between challenges for the same IP address. If unspecified, defaults to `60`.
ActionExpirationInSeconds *int `mandatory:"false" json:"actionExpirationInSeconds"`
// The number of seconds before the failure threshold resets. If unspecified, defaults to `60`.
FailureThresholdExpirationInSeconds *int `mandatory:"false" json:"failureThresholdExpirationInSeconds"`
// The number of interactions required to pass the challenge. If unspecified, defaults to `3`.
InteractionThreshold *int `mandatory:"false" json:"interactionThreshold"`
// The number of seconds to record the interactions from the user. If unspecified, defaults to `15`.
RecordingPeriodInSeconds *int `mandatory:"false" json:"recordingPeriodInSeconds"`
// Adds an additional HTTP header to requests that fail the challenge before being passed to the origin. Only applicable when the `action` is set to `DETECT`.
SetHttpHeader *Header `mandatory:"false" json:"setHttpHeader"`
ChallengeSettings *BlockChallengeSettings `mandatory:"false" json:"challengeSettings"`
// When enabled, the user is identified not only by the IP address but also by an unique additional hash, which prevents blocking visitors with shared IP addresses.
IsNatEnabled *bool `mandatory:"false" json:"isNatEnabled"`
}
func (m HumanInteractionChallenge) 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 HumanInteractionChallenge) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingHumanInteractionChallengeActionEnum(string(m.Action)); !ok && m.Action != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Action: %s. Supported values are: %s.", m.Action, strings.Join(GetHumanInteractionChallengeActionEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// HumanInteractionChallengeActionEnum Enum with underlying type: string
type HumanInteractionChallengeActionEnum string
// Set of constants representing the allowable values for HumanInteractionChallengeActionEnum
const (
HumanInteractionChallengeActionDetect HumanInteractionChallengeActionEnum = "DETECT"
HumanInteractionChallengeActionBlock HumanInteractionChallengeActionEnum = "BLOCK"
)
var mappingHumanInteractionChallengeActionEnum = map[string]HumanInteractionChallengeActionEnum{
"DETECT": HumanInteractionChallengeActionDetect,
"BLOCK": HumanInteractionChallengeActionBlock,
}
var mappingHumanInteractionChallengeActionEnumLowerCase = map[string]HumanInteractionChallengeActionEnum{
"detect": HumanInteractionChallengeActionDetect,
"block": HumanInteractionChallengeActionBlock,
}
// GetHumanInteractionChallengeActionEnumValues Enumerates the set of values for HumanInteractionChallengeActionEnum
func GetHumanInteractionChallengeActionEnumValues() []HumanInteractionChallengeActionEnum {
values := make([]HumanInteractionChallengeActionEnum, 0)
for _, v := range mappingHumanInteractionChallengeActionEnum {
values = append(values, v)
}
return values
}
// GetHumanInteractionChallengeActionEnumStringValues Enumerates the set of values in String for HumanInteractionChallengeActionEnum
func GetHumanInteractionChallengeActionEnumStringValues() []string {
return []string{
"DETECT",
"BLOCK",
}
}
// GetMappingHumanInteractionChallengeActionEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingHumanInteractionChallengeActionEnum(val string) (HumanInteractionChallengeActionEnum, bool) {
enum, ok := mappingHumanInteractionChallengeActionEnumLowerCase[strings.ToLower(val)]
return enum, ok
}