All checks were successful
DCO / DCO (pull_request) Successful in 26s
Signed-off-by: Pavel Gross <p.gross@yando.com>
20 lines
635 B
C#
20 lines
635 B
C#
using FrostFS.SDK.ModelsV2;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace FrostFS.SDK.ClientV2.Parameters;
|
|
|
|
public sealed class PrmContainerCreate(ModelsV2.Container container) : PrmBase, ISessionToken
|
|
{
|
|
public ModelsV2.Container Container { get; set; } = container;
|
|
|
|
/// <summary>
|
|
/// Since the container becomes available with some delay, it needs to poll the container status
|
|
/// </summary>
|
|
/// <value>Rules for polling the result</value>
|
|
public PrmWait? WaitParams { get; set; }
|
|
|
|
/// <summary>
|
|
/// Blank session token
|
|
/// </summary>
|
|
public SessionToken? SessionToken { get; set; }
|
|
}
|