Show / Hide Table of Contents

Class ResponderRecipeResponderRuleSummary

Summary information for a responder rule

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

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
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Responder rule description

Details

Declaration
[JsonProperty(PropertyName = "details")]
public ResponderRuleDetails Details { get; set; }
Property Value
Type Description
ResponderRuleDetails

DisplayName

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

Responder rule display name

Id

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

Unique identifier for the responder rule

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 responder rule

Policies

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

List of policies

SupportedModes

Declaration
[JsonProperty(PropertyName = "supportedModes", ItemConverterType = typeof(ResponseEnumConverter))]
public List<ResponderRecipeResponderRuleSummary.SupportedModesEnum> SupportedModes { get; set; }
Property Value
Type Description
List<ResponderRecipeResponderRuleSummary.SupportedModesEnum>

Supported execution modes for the responder rule

TimeCreated

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

The date and time the responder recipe rule 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 responder recipe rule was last updated. Format defined by RFC3339.

Type

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

Type of responder

In this article
Back to top