-
Notifications
You must be signed in to change notification settings - Fork 82
/
http_redirect_target.go
96 lines (77 loc) · 4.8 KB
/
http_redirect_target.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
// 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"
)
// HttpRedirectTarget The representation of HttpRedirectTarget
type HttpRedirectTarget struct {
// The protocol used for the target, http or https.
Protocol HttpRedirectTargetProtocolEnum `mandatory:"true" json:"protocol"`
// The host portion of the redirect.
Host *string `mandatory:"true" json:"host"`
// The path component of the target URL (e.g., "/path/to/resource" in "https://target.example.com/path/to/resource?redirected"), which can be empty, static, or request-copying, or request-prefixing. Use of \ is not permitted except to escape a following \, {, or }. An empty value is treated the same as static "/". A static value must begin with a leading "/", optionally followed by other path characters. A request-copying value must exactly match "{path}", and will be replaced with the path component of the request URL (including its initial "/"). A request-prefixing value must start with "/" and end with a non-escaped "{path}", which will be replaced with the path component of the request URL (including its initial "/"). Only one such replacement token is allowed.
Path *string `mandatory:"true" json:"path"`
// The query component of the target URL (e.g., "?redirected" in "https://target.example.com/path/to/resource?redirected"), which can be empty, static, or request-copying. Use of \ is not permitted except to escape a following \, {, or }. An empty value results in a redirection target URL with no query component. A static value must begin with a leading "?", optionally followed by other query characters. A request-copying value must exactly match "{query}", and will be replaced with the query component of the request URL (including a leading "?" if and only if the request URL includes a query component).
Query *string `mandatory:"true" json:"query"`
// Port number of the target destination of the redirect, default to match protocol
Port *int `mandatory:"false" json:"port"`
}
func (m HttpRedirectTarget) 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 HttpRedirectTarget) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingHttpRedirectTargetProtocolEnum(string(m.Protocol)); !ok && m.Protocol != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Protocol: %s. Supported values are: %s.", m.Protocol, strings.Join(GetHttpRedirectTargetProtocolEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// HttpRedirectTargetProtocolEnum Enum with underlying type: string
type HttpRedirectTargetProtocolEnum string
// Set of constants representing the allowable values for HttpRedirectTargetProtocolEnum
const (
HttpRedirectTargetProtocolHttp HttpRedirectTargetProtocolEnum = "HTTP"
HttpRedirectTargetProtocolHttps HttpRedirectTargetProtocolEnum = "HTTPS"
)
var mappingHttpRedirectTargetProtocolEnum = map[string]HttpRedirectTargetProtocolEnum{
"HTTP": HttpRedirectTargetProtocolHttp,
"HTTPS": HttpRedirectTargetProtocolHttps,
}
var mappingHttpRedirectTargetProtocolEnumLowerCase = map[string]HttpRedirectTargetProtocolEnum{
"http": HttpRedirectTargetProtocolHttp,
"https": HttpRedirectTargetProtocolHttps,
}
// GetHttpRedirectTargetProtocolEnumValues Enumerates the set of values for HttpRedirectTargetProtocolEnum
func GetHttpRedirectTargetProtocolEnumValues() []HttpRedirectTargetProtocolEnum {
values := make([]HttpRedirectTargetProtocolEnum, 0)
for _, v := range mappingHttpRedirectTargetProtocolEnum {
values = append(values, v)
}
return values
}
// GetHttpRedirectTargetProtocolEnumStringValues Enumerates the set of values in String for HttpRedirectTargetProtocolEnum
func GetHttpRedirectTargetProtocolEnumStringValues() []string {
return []string{
"HTTP",
"HTTPS",
}
}
// GetMappingHttpRedirectTargetProtocolEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingHttpRedirectTargetProtocolEnum(val string) (HttpRedirectTargetProtocolEnum, bool) {
enum, ok := mappingHttpRedirectTargetProtocolEnumLowerCase[strings.ToLower(val)]
return enum, ok
}