Show / Hide Table of Contents

Class UpdateWaasPolicyDetails

Updates the configuration details of a WAAS policy.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
UpdateWaasPolicyDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WaasService.Models
Assembly: OCI.DotNetSDK.Waas.dll
Syntax
public class UpdateWaasPolicyDetails

Properties

AdditionalDomains

Declaration
[JsonProperty(PropertyName = "additionalDomains")]
public List<string> AdditionalDomains { get; set; }
Property Value
Type Description
List<string>

An array of additional domains protected by this WAAS policy.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly name for the WAAS policy. The name can be changed and does not need to be unique.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

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.
Example: {"Department": "Finance"}

OriginGroups

Declaration
[JsonProperty(PropertyName = "originGroups")]
public Dictionary<string, OriginGroup> OriginGroups { get; set; }
Property Value
Type Description
Dictionary<string, OriginGroup>

The map of origin groups and their keys used to associate origins to the wafConfig. Origin groups allow you to apply weights to groups of origins for load balancing purposes. Origins with higher weights will receive larger proportions of client requests. To add additional origins to your WAAS policy, update the origins field of a UpdateWaasPolicy request.

Origins

Declaration
[JsonProperty(PropertyName = "origins")]
public Dictionary<string, Origin> Origins { get; set; }
Property Value
Type Description
Dictionary<string, Origin>

A map of host to origin for the web application. The key should be a customer friendly name for the host, ex. primary, secondary, etc.

PolicyConfig

Declaration
[JsonProperty(PropertyName = "policyConfig")]
public PolicyConfig PolicyConfig { get; set; }
Property Value
Type Description
PolicyConfig

WafConfig

Declaration
[JsonProperty(PropertyName = "wafConfig")]
public WafConfig WafConfig { get; set; }
Property Value
Type Description
WafConfig
In this article
Back to top