Show / Hide Table of Contents

Class DataSourceMappingInfo

Details of the detector recipe and detector rule mapped to the data source.

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

Properties

DetectorRecipeId

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

ID of the detector recipe attached to the data source

Remarks

Required

DetectorRuleId

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

ID of the detector rule attached to the data source

Remarks

Required

In this article
Back to top