using System.IO;
namespace FrostFS.SDK.ClientV2;
public sealed class PrmObjectPut(CallContext? ctx = null) : PrmBase(ctx), ISessionToken
{
///
/// Need to provide values like ContainerId and ObjectType to create and object.
/// Optional parameters ike Attributes can be provided as well.
///
/// Header with required parameters to create an object
public FrostFsObjectHeader? Header { get; set; }
///
/// A stream with source data
///
public Stream? Payload { get; set; }
///
/// Object size is limited. In the data exceeds the limit, the object will be splitted.
/// If the parameter is true, the client side cut is applied. Otherwise, the data is transferred
/// as a stream and will be cut on server side.
///
/// Is client cut is applied
public bool ClientCut { get; set; }
///
/// Overrides default size of the buffer for stream transferring.
///
/// Size of the buffer
public int BufferMaxSize { get; set; }
///
/// Allows to define a buffer for chunks to manage by the memory allocation and releasing.
///
public byte[]? CustomBuffer { get; set; }
///
public FrostFsSessionToken? SessionToken { get; set; }
internal int MaxObjectSizeCache { get; set; }
internal ulong CurrentStreamPosition { get; set; }
internal ulong FullLength { get; set; }
}