Show / Hide Table of Contents

Class PatchInstruction

A single instruction to be included as part of Patch request content.

Inheritance
object
PatchInstruction
PatchInsertInstruction
PatchMergeInstruction
PatchMoveInstruction
PatchProhibitInstruction
PatchRemoveInstruction
PatchReplaceInstruction
PatchRequireInstruction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
[JsonConverter(typeof(PatchInstructionModelConverter))]
public class PatchInstruction

Properties

Selection

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

The set of values to which the operation applies as a JMESPath expression for evaluation against the context resource. An operation fails if the selection yields an exception, except as otherwise specified. Note that comparisons involving non-primitive values (objects or arrays) are not supported and will always evaluate to false.

Remarks

Required

In this article
Back to top