From 5ffab67bfeabcf28ad67bed4bbc3faeaff9cdae1 Mon Sep 17 00:00:00 2001 From: Pavel Gross Date: Tue, 12 Nov 2024 00:31:50 +0300 Subject: [PATCH] v2 --- src/FrostFS.SDK.Client/FrostFSClient.cs | 4 ++-- src/FrostFS.SDK.Client/Interfaces/IFrostFSClient.cs | 3 ++- src/FrostFS.SDK.Client/Models/Chain/ChainTarget.cs | 2 +- src/FrostFS.SDK.Client/Pool/Pool.cs | 2 +- src/FrostFS.SDK.Client/Services/ApeManagerServiceProvider.cs | 4 ++-- src/FrostFS.SDK.Protos/apemanager/Extension.Message.cs | 2 +- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/FrostFS.SDK.Client/FrostFSClient.cs b/src/FrostFS.SDK.Client/FrostFSClient.cs index 05e2731..8dc4d3f 100644 --- a/src/FrostFS.SDK.Client/FrostFSClient.cs +++ b/src/FrostFS.SDK.Client/FrostFSClient.cs @@ -3,8 +3,8 @@ using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; -using Frostfs.Proto.Ape; -using Frostfs.Proto.Apemanager; +using Frostfs.V2.Ape; +using Frostfs.V2.Apemanager; using FrostFS.Accounting; using FrostFS.Container; diff --git a/src/FrostFS.SDK.Client/Interfaces/IFrostFSClient.cs b/src/FrostFS.SDK.Client/Interfaces/IFrostFSClient.cs index e4444a9..5749249 100644 --- a/src/FrostFS.SDK.Client/Interfaces/IFrostFSClient.cs +++ b/src/FrostFS.SDK.Client/Interfaces/IFrostFSClient.cs @@ -2,7 +2,8 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; -using Frostfs.Proto.Ape; +using Frostfs.V2.Ape; + namespace FrostFS.SDK.Client.Interfaces; public interface IFrostFSClient : IDisposable diff --git a/src/FrostFS.SDK.Client/Models/Chain/ChainTarget.cs b/src/FrostFS.SDK.Client/Models/Chain/ChainTarget.cs index 3d53dcb..dbdde51 100644 --- a/src/FrostFS.SDK.Client/Models/Chain/ChainTarget.cs +++ b/src/FrostFS.SDK.Client/Models/Chain/ChainTarget.cs @@ -1,6 +1,6 @@ using System; -using Frostfs.Proto.Ape; +using Frostfs.V2.Ape; namespace FrostFS.SDK.Client; diff --git a/src/FrostFS.SDK.Client/Pool/Pool.cs b/src/FrostFS.SDK.Client/Pool/Pool.cs index 91444b6..44ae06a 100644 --- a/src/FrostFS.SDK.Client/Pool/Pool.cs +++ b/src/FrostFS.SDK.Client/Pool/Pool.cs @@ -5,7 +5,7 @@ using System.Security.Cryptography; using System.Threading; using System.Threading.Tasks; -using Frostfs.Proto.Ape; +using Frostfs.V2.Ape; using FrostFS.Refs; using FrostFS.SDK.Client.Interfaces; diff --git a/src/FrostFS.SDK.Client/Services/ApeManagerServiceProvider.cs b/src/FrostFS.SDK.Client/Services/ApeManagerServiceProvider.cs index ca737bc..840223d 100644 --- a/src/FrostFS.SDK.Client/Services/ApeManagerServiceProvider.cs +++ b/src/FrostFS.SDK.Client/Services/ApeManagerServiceProvider.cs @@ -1,8 +1,8 @@ using System; using System.Threading.Tasks; -using Frostfs.Proto.Ape; -using Frostfs.Proto.Apemanager; +using Frostfs.V2.Ape; +using Frostfs.V2.Apemanager; namespace FrostFS.SDK.Client.Services; diff --git a/src/FrostFS.SDK.Protos/apemanager/Extension.Message.cs b/src/FrostFS.SDK.Protos/apemanager/Extension.Message.cs index ac30c08..53b7fdb 100644 --- a/src/FrostFS.SDK.Protos/apemanager/Extension.Message.cs +++ b/src/FrostFS.SDK.Protos/apemanager/Extension.Message.cs @@ -3,7 +3,7 @@ using FrostFS.Session; using Google.Protobuf; -namespace Frostfs.Proto.Apemanager; +namespace Frostfs.V2.Apemanager; public partial class AddChainRequest : IRequest {