Show / Hide Table of Contents

Class ResponderRule

A ResponderRule resource contains the default settings for a single responder rule that Cloud Guard provides.
A ResponderRule resource:

  • Is used as the original source for a rule in an Oracle-managed responder of the specified type.
  • Is not directly visible in the Cloud Guard UI.
  • Can\u2019t be modified by users, programmatically or through the UI.
  • May be modified from time to time by Cloud Guard.
Inheritance
object
ResponderRule
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 ResponderRule

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

Responder rule 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 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.

Locks

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

Locks associated with this resource.

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