Type Alias DeploymentPatch

DeploymentPatch: {
    op: "replace";
    path: "/name" | "/description" | "/spaceId";
    value: AnyType;
}[]

Type declaration

  • op: "replace"

    All patch requests use the replace operation

  • path: "/name" | "/description" | "/spaceId"

    Path for the property you want to update

  • value: AnyType

    Use for fields that can be any type (string, number, etc.)