Show / Hide Table of Contents

Class TargetDetectorRecipeSummary

Summary information for a target detector recipe

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

Properties

CompartmentId

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

Compartment OCID

Remarks

Required

Description

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

Detector recipe's description

Remarks

Required

Detector

Declaration
[JsonProperty(PropertyName = "detector")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DetectorEnum? Detector { get; set; }
Property Value
Type Description
DetectorEnum?

Type of detector

DetectorRecipeId

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

Unique identifier for detector recipe of which this is an extension

Remarks

Required

DetectorRecipeType

Declaration
[JsonProperty(PropertyName = "detectorRecipeType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DetectorRecipeEnum? DetectorRecipeType { get; set; }
Property Value
Type Description
DetectorRecipeEnum?

Recipe type ( STANDARD, ENTERPRISE )

DisplayName

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

Detector recipe's display name

Remarks

Required

Id

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

Unique identifier that can't be changed after creation

Remarks

Required

LifecycleDetails

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

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LifecycleState? LifecycleState { get; set; }
Property Value
Type Description
LifecycleState?

The current lifecycle state of the resource

Locks

Declaration
[JsonProperty(PropertyName = "locks")]
public List<ResourceLock> Locks { get; set; }
Property Value
Type Description
List<ResourceLock>

Locks associated with this resource.

Owner

Declaration
[Required(ErrorMessage = "Owner is required.")]
[JsonProperty(PropertyName = "owner")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OwnerType? Owner { get; set; }
Property Value
Type Description
OwnerType?

Detector recipe's owner

Remarks

Required

SourceDataRetention

Declaration
[JsonProperty(PropertyName = "sourceDataRetention")]
public int? SourceDataRetention { get; set; }
Property Value
Type Description
int?

The number of days for which source data is retained

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the target detector recipe was created. Format defined by RFC3339.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time the target detector recipe was last updated. Format defined by RFC3339.

In this article
Back to top