Class PatchInsertInstruction
An operation that inserts a value into an array, shifting array items as necessary and handling NOT_FOUND exceptions by creating the implied containing structure.
Inherited Members
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class PatchInsertInstruction : PatchInstruction
Properties
Position
Declaration
[JsonProperty(PropertyName = "position")]
[JsonConverter(typeof(StringEnumConverter))]
public PatchInsertInstruction.PositionEnum? Position { get; set; }
Property Value
Type | Description |
---|---|
PatchInsertInstruction.PositionEnum? | Where to insert the value, relative to the first item matched by |
SelectedItem
Declaration
[JsonProperty(PropertyName = "selectedItem")]
public string SelectedItem { get; set; }
Property Value
Type | Description |
---|---|
string | A selection to be evaluated against the array for identifying a particular reference item within it, with the same format and semantics as |
Value
Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public object Value { get; set; }
Property Value
Type | Description |
---|---|
object | A value to be inserted into the target. |
Remarks
Required