Show / Hide Table of Contents

Class UpdateRemediationRecipeDetails

Details to update an existing remediation recipe.

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

Properties

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

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
[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.

KnowledgeBaseId

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

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

NetworkConfiguration

Declaration
[JsonProperty(PropertyName = "networkConfiguration")]
public NetworkConfiguration NetworkConfiguration { get; set; }
Property Value
Type Description
NetworkConfiguration

ScmConfiguration

Declaration
[JsonProperty(PropertyName = "scmConfiguration")]
public ScmConfiguration ScmConfiguration { get; set; }
Property Value
Type Description
ScmConfiguration

VerifyConfiguration

Declaration
[JsonProperty(PropertyName = "verifyConfiguration")]
public VerifyConfiguration VerifyConfiguration { get; set; }
Property Value
Type Description
VerifyConfiguration
In this article
Back to top