All checks were successful
DCO / DCO (pull_request) Successful in 47s
API methods' parameters types with optional session, polling settings, xHeaders etc. and corresponding handlers have been added Signed-off-by: Pavel Gross <p.gross@yadro.com>
21 lines
617 B
C#
21 lines
617 B
C#
using System.Collections.Specialized;
|
|
using FrostFS.SDK.ModelsV2;
|
|
|
|
namespace FrostFS.SDK.ClientV2.Parameters;
|
|
|
|
public sealed class PrmDeleteObject(ContainerId containerId, ObjectId objectId) : IContext, ISessionToken
|
|
{
|
|
public ContainerId ContainerId { get; set; } = containerId;
|
|
public ObjectId ObjectId { get; set; } = objectId;
|
|
|
|
/// <summary>
|
|
/// FrostFS request X-Headers
|
|
/// </summary>
|
|
public NameValueCollection XHeaders { get; set; } = [];
|
|
|
|
/// <inheritdoc />
|
|
public Context? Context { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public SessionToken? SessionToken { get; set; }
|
|
}
|