Enum UpdateSteeringPolicyDetails.Template
- java.lang.Object
-
- java.lang.Enum<UpdateSteeringPolicyDetails.Template>
-
- com.oracle.bmc.dns.model.UpdateSteeringPolicyDetails.Template
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<UpdateSteeringPolicyDetails.Template>
- Enclosing class:
- UpdateSteeringPolicyDetails
public static enum UpdateSteeringPolicyDetails.Template extends Enum<UpdateSteeringPolicyDetails.Template> implements BmcEnum
A set of predefined rules based on the desired purpose of the steering policy.Each template utilizes Traffic Management’s rules in a different order to produce the desired results when answering DNS queries.
**Example:** The FAILOVER template determines answers by filtering the policy's answers using the FILTER rule first, then the following rules in succession: HEALTH, PRIORITY, and LIMIT. This gives the domain dynamic failover capability.
It is **strongly recommended** to use a template other than CUSTOM when creating a steering policy.
All templates require the rule order to begin with an unconditional FILTER rule that keeps answers contingent upon answer.isDisabled != true, except for CUSTOM. A defined HEALTH rule must follow the FILTER rule if the policy references a healthCheckMonitorId. The last rule of a template must must be a LIMIT rule. For more information about templates and code examples, see [Traffic Management API Guide](https://docs.oracle.com/iaas/Content/TrafficManagement/Concepts/trafficmanagementapi.htm).
*Template Types**
FAILOVER - Uses health check information on your endpoints to determine which DNS answers to serve. If an endpoint fails a health check, the answer for that endpoint will be removed from the list of available answers until the endpoint is detected as healthy.
* LOAD_BALANCE - Distributes web traffic to specified endpoints based on defined weights.
* ROUTE_BY_GEO - Answers DNS queries based on the query's geographic location. For a list of geographic locations to route by, see [Traffic Management Geographic Locations](https://docs.oracle.com/iaas/Content/TrafficManagement/Reference/trafficmanagementgeo.htm).
* ROUTE_BY_ASN - Answers DNS queries based on the query's originating ASN.
* ROUTE_BY_IP - Answers DNS queries based on the query's IP address.
* CUSTOM - Allows a customized configuration of rules.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Custom
Failover
LoadBalance
RouteByAsn
RouteByGeo
RouteByIp
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateSteeringPolicyDetails.Template
create(String key)
String
getValue()
static UpdateSteeringPolicyDetails.Template
valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateSteeringPolicyDetails.Template[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Failover
public static final UpdateSteeringPolicyDetails.Template Failover
-
LoadBalance
public static final UpdateSteeringPolicyDetails.Template LoadBalance
-
RouteByGeo
public static final UpdateSteeringPolicyDetails.Template RouteByGeo
-
RouteByAsn
public static final UpdateSteeringPolicyDetails.Template RouteByAsn
-
RouteByIp
public static final UpdateSteeringPolicyDetails.Template RouteByIp
-
Custom
public static final UpdateSteeringPolicyDetails.Template Custom
-
-
Method Detail
-
values
public static UpdateSteeringPolicyDetails.Template[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UpdateSteeringPolicyDetails.Template c : UpdateSteeringPolicyDetails.Template.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateSteeringPolicyDetails.Template valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static UpdateSteeringPolicyDetails.Template create(String key)
-
-