/** * DevOps API * Use the DevOps API to create DevOps projects, configure code repositories, add artifacts to deploy, build and test software applications, configure target deployment environments, and deploy software applications. For more information, see [DevOps](https://docs.oracle.com/iaas/Content/devops/using/home.htm). * OpenAPI spec version: 20210630 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * An operation that \"puts\" values from elsewhere in the target, functionally equivalent to a single add and then a remove. * The first item of the selection is replaced, or created if the selection is empty. * NOT_FOUND exceptions in the selection are handled by creating the implied containing structure. * This operation fails if the {@code from} selection yields any exceptions, or if an item is moved to any of its descendants. * */ export interface PatchMoveInstruction extends model.PatchInstruction { /** * The selection that is to be moved, with the same format and semantics as {@code selection}. */ "from": string; /** * Where to insert the value in an array, relative to the first item in the selection. * If there is no such item, then \"BEFORE\" specifies insertion at the first position in an array and \"AFTER\" specifies insertion at the last position. * If the first item in the selection is not the child of an array, then this field has no effect. * */ "position"?: PatchMoveInstruction.Position; "operation": string; } export declare namespace PatchMoveInstruction { enum Position { At = "AT", Before = "BEFORE", After = "AFTER" } function getJsonObj(obj: PatchMoveInstruction, isParentJsonObj?: boolean): object; const operation = "MOVE"; function getDeserializedJsonObj(obj: PatchMoveInstruction, isParentJsonObj?: boolean): object; }