// Copyright (c) 2016, 2018, 2025, 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. // DNS API // // API for the DNS service. Use this API to manage DNS zones, records, and other DNS resources. // For more information, see Overview of the DNS Service (https://docs.oracle.com/iaas/Content/DNS/Concepts/dnszonemanagement.htm). // package dns import ( "encoding/json" "fmt" "strings" "github.com/nrdcg/oci-go-sdk/common/v1065" ) // SteeringPolicyRule The configuration of the sorting and filtering behaviors in a steering policy. Rules can // filter and sort answers based on weight, priority, endpoint health, and other data. // // A rule may optionally include a sequence of cases, each with an optional `caseCondition` // expression. Cases allow a sequence of conditions to be defined that will apply different // parameters to the rule when the conditions are met. For more information about cases, // see Traffic Management API Guide (https://docs.oracle.com/iaas/Content/TrafficManagement/Concepts/trafficmanagementapi.htm). // // **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API. type SteeringPolicyRule interface { // A user-defined description of the rule's purpose or behavior. GetDescription() *string } type steeringpolicyrule struct { JsonData []byte Description *string `mandatory:"false" json:"description"` RuleType string `json:"ruleType"` } // UnmarshalJSON unmarshals json func (m *steeringpolicyrule) UnmarshalJSON(data []byte) error { m.JsonData = data type Unmarshalersteeringpolicyrule steeringpolicyrule s := struct { Model Unmarshalersteeringpolicyrule }{} err := json.Unmarshal(data, &s.Model) if err != nil { return err } m.Description = s.Model.Description m.RuleType = s.Model.RuleType return err } // UnmarshalPolymorphicJSON unmarshals polymorphic json func (m *steeringpolicyrule) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) { if data == nil || string(data) == "null" { return nil, nil } var err error switch m.RuleType { case "FILTER": mm := SteeringPolicyFilterRule{} err = json.Unmarshal(data, &mm) return mm, err case "WEIGHTED": mm := SteeringPolicyWeightedRule{} err = json.Unmarshal(data, &mm) return mm, err case "LIMIT": mm := SteeringPolicyLimitRule{} err = json.Unmarshal(data, &mm) return mm, err case "HEALTH": mm := SteeringPolicyHealthRule{} err = json.Unmarshal(data, &mm) return mm, err case "PRIORITY": mm := SteeringPolicyPriorityRule{} err = json.Unmarshal(data, &mm) return mm, err default: common.Logf("Received unsupported enum value for SteeringPolicyRule: %s.", m.RuleType) return *m, nil } } // GetDescription returns Description func (m steeringpolicyrule) GetDescription() *string { return m.Description } func (m steeringpolicyrule) 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 steeringpolicyrule) ValidateEnumValue() (bool, error) { errMessage := []string{} if len(errMessage) > 0 { return true, fmt.Errorf("%s", strings.Join(errMessage, "\n")) } return false, nil } // SteeringPolicyRuleRuleTypeEnum Enum with underlying type: string type SteeringPolicyRuleRuleTypeEnum string // Set of constants representing the allowable values for SteeringPolicyRuleRuleTypeEnum const ( SteeringPolicyRuleRuleTypeFilter SteeringPolicyRuleRuleTypeEnum = "FILTER" SteeringPolicyRuleRuleTypeHealth SteeringPolicyRuleRuleTypeEnum = "HEALTH" SteeringPolicyRuleRuleTypeWeighted SteeringPolicyRuleRuleTypeEnum = "WEIGHTED" SteeringPolicyRuleRuleTypePriority SteeringPolicyRuleRuleTypeEnum = "PRIORITY" SteeringPolicyRuleRuleTypeLimit SteeringPolicyRuleRuleTypeEnum = "LIMIT" ) var mappingSteeringPolicyRuleRuleTypeEnum = map[string]SteeringPolicyRuleRuleTypeEnum{ "FILTER": SteeringPolicyRuleRuleTypeFilter, "HEALTH": SteeringPolicyRuleRuleTypeHealth, "WEIGHTED": SteeringPolicyRuleRuleTypeWeighted, "PRIORITY": SteeringPolicyRuleRuleTypePriority, "LIMIT": SteeringPolicyRuleRuleTypeLimit, } var mappingSteeringPolicyRuleRuleTypeEnumLowerCase = map[string]SteeringPolicyRuleRuleTypeEnum{ "filter": SteeringPolicyRuleRuleTypeFilter, "health": SteeringPolicyRuleRuleTypeHealth, "weighted": SteeringPolicyRuleRuleTypeWeighted, "priority": SteeringPolicyRuleRuleTypePriority, "limit": SteeringPolicyRuleRuleTypeLimit, } // GetSteeringPolicyRuleRuleTypeEnumValues Enumerates the set of values for SteeringPolicyRuleRuleTypeEnum func GetSteeringPolicyRuleRuleTypeEnumValues() []SteeringPolicyRuleRuleTypeEnum { values := make([]SteeringPolicyRuleRuleTypeEnum, 0) for _, v := range mappingSteeringPolicyRuleRuleTypeEnum { values = append(values, v) } return values } // GetSteeringPolicyRuleRuleTypeEnumStringValues Enumerates the set of values in String for SteeringPolicyRuleRuleTypeEnum func GetSteeringPolicyRuleRuleTypeEnumStringValues() []string { return []string{ "FILTER", "HEALTH", "WEIGHTED", "PRIORITY", "LIMIT", } } // GetMappingSteeringPolicyRuleRuleTypeEnum performs case Insensitive comparison on enum value and return the desired enum func GetMappingSteeringPolicyRuleRuleTypeEnum(val string) (SteeringPolicyRuleRuleTypeEnum, bool) { enum, ok := mappingSteeringPolicyRuleRuleTypeEnumLowerCase[strings.ToLower(val)] return enum, ok }