Enum 9351 Graph ConflictBehavior in 26
- App
- System Application
- Namespace
- System.Integration.Graph
Versions171819202122232425262728latest
Source in 26
src/System Application/App/MicrosoftGraph/src/GraphConflictBehavior.Enum.al33 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Integration.Graph;
/// <summary>
/// The conflict resolution behavior for actions that create a new item.
/// You can use the values fail, replace, or rename.
/// The default for PUT is replace.
/// An item will never be returned with this annotation. Write-only.
/// See: https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0#instance-attributes
/// </summary>
enum 9351 "Graph ConflictBehavior"
{
Access = Public;
Extensible = false;
value(0; Replace)
{
Caption = 'replace', Locked = true;
}
value(1; Fail)
{
Caption = 'fail', Locked = true;
}
value(2; Rename)
{
Caption = 'rename', Locked = true;
}
}Values, 3
| Id | Name | Obsolete |
|---|---|---|
| 0 | Replace | - |
| 1 | Fail | - |
| 2 | Rename | - |