-
Notifications
You must be signed in to change notification settings - Fork 82
/
health_check.go
180 lines (147 loc) · 8 KB
/
health_check.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
// 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 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"
)
// HealthCheck Health checks monitor the status of your origin servers and only route traffic to the origins that pass the health check. If the health check fails, origin is automatically removed from the load balancing.
// There is roughly one health check per EDGE POP per period. Any checks that pass will be reported as "healthy".
type HealthCheck struct {
// Enables or disables the health checks.
IsEnabled *bool `mandatory:"false" json:"isEnabled"`
// An HTTP verb (i.e. HEAD, GET, or POST) to use when performing the health check.
Method HealthCheckMethodEnum `mandatory:"false" json:"method,omitempty"`
// Path to visit on your origins when performing the health check.
Path *string `mandatory:"false" json:"path"`
// HTTP header fields to include in health check requests, expressed as `"name": "value"` properties. Because HTTP header field names are case-insensitive, any use of names that are case-insensitive equal to other names will be rejected. If Host is not specified, requests will include a Host header field with value matching the policy's protected domain. If User-Agent is not specified, requests will include a User-Agent header field with value "waf health checks".
// **Note:** The only currently-supported header fields are Host and User-Agent.
Headers map[string]string `mandatory:"false" json:"headers"`
// The HTTP response codes that signify a healthy state.
// - **2XX:** Success response code group.
// - **3XX:** Redirection response code group.
// - **4XX:** Client errors response code group.
// - **5XX:** Server errors response code group.
ExpectedResponseCodeGroup []HealthCheckExpectedResponseCodeGroupEnum `mandatory:"false" json:"expectedResponseCodeGroup,omitempty"`
// Enables or disables additional check for predefined text in addition to response code.
IsResponseTextCheckEnabled *bool `mandatory:"false" json:"isResponseTextCheckEnabled"`
// Health check will search for the given text in a case-sensitive manner within the response body and will fail if the text is not found.
ExpectedResponseText *string `mandatory:"false" json:"expectedResponseText"`
// Time between health checks of an individual origin server, in seconds.
IntervalInSeconds *int `mandatory:"false" json:"intervalInSeconds"`
// Response timeout represents wait time until request is considered failed, in seconds.
TimeoutInSeconds *int `mandatory:"false" json:"timeoutInSeconds"`
// Number of successful health checks after which the server is marked up.
HealthyThreshold *int `mandatory:"false" json:"healthyThreshold"`
// Number of failed health checks after which the server is marked down.
UnhealthyThreshold *int `mandatory:"false" json:"unhealthyThreshold"`
}
func (m HealthCheck) 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 HealthCheck) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingHealthCheckMethodEnum(string(m.Method)); !ok && m.Method != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Method: %s. Supported values are: %s.", m.Method, strings.Join(GetHealthCheckMethodEnumStringValues(), ",")))
}
for _, val := range m.ExpectedResponseCodeGroup {
if _, ok := GetMappingHealthCheckExpectedResponseCodeGroupEnum(string(val)); !ok && val != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for ExpectedResponseCodeGroup: %s. Supported values are: %s.", val, strings.Join(GetHealthCheckExpectedResponseCodeGroupEnumStringValues(), ",")))
}
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// HealthCheckMethodEnum Enum with underlying type: string
type HealthCheckMethodEnum string
// Set of constants representing the allowable values for HealthCheckMethodEnum
const (
HealthCheckMethodGet HealthCheckMethodEnum = "GET"
HealthCheckMethodHead HealthCheckMethodEnum = "HEAD"
HealthCheckMethodPost HealthCheckMethodEnum = "POST"
)
var mappingHealthCheckMethodEnum = map[string]HealthCheckMethodEnum{
"GET": HealthCheckMethodGet,
"HEAD": HealthCheckMethodHead,
"POST": HealthCheckMethodPost,
}
var mappingHealthCheckMethodEnumLowerCase = map[string]HealthCheckMethodEnum{
"get": HealthCheckMethodGet,
"head": HealthCheckMethodHead,
"post": HealthCheckMethodPost,
}
// GetHealthCheckMethodEnumValues Enumerates the set of values for HealthCheckMethodEnum
func GetHealthCheckMethodEnumValues() []HealthCheckMethodEnum {
values := make([]HealthCheckMethodEnum, 0)
for _, v := range mappingHealthCheckMethodEnum {
values = append(values, v)
}
return values
}
// GetHealthCheckMethodEnumStringValues Enumerates the set of values in String for HealthCheckMethodEnum
func GetHealthCheckMethodEnumStringValues() []string {
return []string{
"GET",
"HEAD",
"POST",
}
}
// GetMappingHealthCheckMethodEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingHealthCheckMethodEnum(val string) (HealthCheckMethodEnum, bool) {
enum, ok := mappingHealthCheckMethodEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// HealthCheckExpectedResponseCodeGroupEnum Enum with underlying type: string
type HealthCheckExpectedResponseCodeGroupEnum string
// Set of constants representing the allowable values for HealthCheckExpectedResponseCodeGroupEnum
const (
HealthCheckExpectedResponseCodeGroup2xx HealthCheckExpectedResponseCodeGroupEnum = "2XX"
HealthCheckExpectedResponseCodeGroup3xx HealthCheckExpectedResponseCodeGroupEnum = "3XX"
HealthCheckExpectedResponseCodeGroup4xx HealthCheckExpectedResponseCodeGroupEnum = "4XX"
HealthCheckExpectedResponseCodeGroup5xx HealthCheckExpectedResponseCodeGroupEnum = "5XX"
)
var mappingHealthCheckExpectedResponseCodeGroupEnum = map[string]HealthCheckExpectedResponseCodeGroupEnum{
"2XX": HealthCheckExpectedResponseCodeGroup2xx,
"3XX": HealthCheckExpectedResponseCodeGroup3xx,
"4XX": HealthCheckExpectedResponseCodeGroup4xx,
"5XX": HealthCheckExpectedResponseCodeGroup5xx,
}
var mappingHealthCheckExpectedResponseCodeGroupEnumLowerCase = map[string]HealthCheckExpectedResponseCodeGroupEnum{
"2xx": HealthCheckExpectedResponseCodeGroup2xx,
"3xx": HealthCheckExpectedResponseCodeGroup3xx,
"4xx": HealthCheckExpectedResponseCodeGroup4xx,
"5xx": HealthCheckExpectedResponseCodeGroup5xx,
}
// GetHealthCheckExpectedResponseCodeGroupEnumValues Enumerates the set of values for HealthCheckExpectedResponseCodeGroupEnum
func GetHealthCheckExpectedResponseCodeGroupEnumValues() []HealthCheckExpectedResponseCodeGroupEnum {
values := make([]HealthCheckExpectedResponseCodeGroupEnum, 0)
for _, v := range mappingHealthCheckExpectedResponseCodeGroupEnum {
values = append(values, v)
}
return values
}
// GetHealthCheckExpectedResponseCodeGroupEnumStringValues Enumerates the set of values in String for HealthCheckExpectedResponseCodeGroupEnum
func GetHealthCheckExpectedResponseCodeGroupEnumStringValues() []string {
return []string{
"2XX",
"3XX",
"4XX",
"5XX",
}
}
// GetMappingHealthCheckExpectedResponseCodeGroupEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingHealthCheckExpectedResponseCodeGroupEnum(val string) (HealthCheckExpectedResponseCodeGroupEnum, bool) {
enum, ok := mappingHealthCheckExpectedResponseCodeGroupEnumLowerCase[strings.ToLower(val)]
return enum, ok
}