-
Notifications
You must be signed in to change notification settings - Fork 1
/
update_http_redirect_details.go
42 lines (32 loc) · 2.09 KB
/
update_http_redirect_details.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, 2021, 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/erikcai/oci-go-sdk/v33/common"
)
// UpdateHttpRedirectDetails The details of a HTTP Redirect configured to redirect traffic from one hostname to another.
// **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
type UpdateHttpRedirectDetails struct {
// The user-friendly name of the HTTP Redirect. The name can be changed and does not need to be unique.
DisplayName *string `mandatory:"false" json:"displayName"`
// The redirect target object including all the redirect data.
Target *HttpRedirectTarget `mandatory:"false" json:"target"`
// The response code returned for the redirect to the client. For more information, see RFC 7231 (https://tools.ietf.org/html/rfc7231#section-6.4).
ResponseCode *int `mandatory:"false" json:"responseCode"`
// Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Department": "Finance"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// Defined tags for this resource. Each key is predefined and scoped to a namespace.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Operations": {"CostCenter": "42"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
}
func (m UpdateHttpRedirectDetails) String() string {
return common.PointerString(m)
}