Show / Hide Table of Contents

Class ThreatFeedAction

The action to take for a request that has been determined to be potentially malicious.

Inheritance
object
ThreatFeedAction
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 ThreatFeedAction

Properties

Action

Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(StringEnumConverter))]
public ThreatFeedAction.ActionEnum? Action { get; set; }
Property Value
Type Description
ThreatFeedAction.ActionEnum?

The selected action. If unspecified, defaults to OFF.

Remarks

Required

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

The unique key of the object for which the action applies.

Remarks

Required

In this article
Back to top