Show / Hide Table of Contents

Class CreateRemediationRecipeDetails

Details to create a new Remediation Recipe.

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

Properties

CompartmentId

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

The compartment Oracle Cloud Identifier (OCID) of the remediation recipe.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

DetectConfiguration

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

Required

DisplayName

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

The name of the remediation recipe.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

IsRunTriggeredOnKbChange

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

Boolean indicating if a run should be automatically triggered once the knowledge base is updated.

Remarks

Required

KnowledgeBaseId

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

The Oracle Cloud Identifier (OCID) of the knowledge base.

Remarks

Required

NetworkConfiguration

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

Required

ScmConfiguration

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

Required

VerifyConfiguration

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

Required

In this article
Back to top