Show / Hide Table of Contents

Class ResponderRuleSummary

Summary information for a responder rule.

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

Properties

Description

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

Responder rule description

Remarks

Required

Details

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

DisplayName

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

Display name for responder rule

Remarks

Required

Id

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

Unique identifier for 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<ResponderRuleSummary.SupportedModesEnum> SupportedModes { get; set; }
Property Value
Type Description
List<ResponderRuleSummary.SupportedModesEnum>

Supported execution modes for responder rule

TimeCreated

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

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

Type

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

Type of responder

Remarks

Required

In this article
Back to top