Class RRSetRoutingPolicyPrimaryBackupPolicy
Configures a RRSetRoutingPolicy such that all queries are responded with the primary_targets if they are
healthy. And if all of them are unhealthy, then we fallback to a geo localized policy.
Inheritance
RRSetRoutingPolicyPrimaryBackupPolicy
Assembly: Google.Apis.Dns.v1beta2.dll
Syntax
public class RRSetRoutingPolicyPrimaryBackupPolicy : IDirectResponseSchema
Properties
BackupGeoTargets
Backup targets provide a regional failover policy for the otherwise global primary targets. If serving state
is set to BACKUP, this policy essentially becomes a geo routing policy.
Declaration
[JsonProperty("backupGeoTargets")]
public virtual RRSetRoutingPolicyGeoPolicy BackupGeoTargets { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
Kind
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
PrimaryTargets
Declaration
[JsonProperty("primaryTargets")]
public virtual RRSetRoutingPolicyHealthCheckTargets PrimaryTargets { get; set; }
Property Value
TrickleTraffic
When serving state is PRIMARY, this field provides the option of sending a small percentage of the traffic
to the backup targets.
Declaration
[JsonProperty("trickleTraffic")]
public virtual double? TrickleTraffic { get; set; }
Property Value
Implements