using System.Collections.Specialized; using System.IO; using FrostFS.SDK.ModelsV2; namespace FrostFS.SDK.ClientV2.Parameters; public sealed class PrmPutObject : IContext, 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 ObjectHeader? 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; } /// /// FrostFS request X-Headers /// public NameValueCollection XHeaders { get; set; } = []; /// public Context? Context { get; set; } /// public SessionToken? SessionToken { get; set; } }