From 9a9eec0b9bdbfe52f5a9972af9ec1fb553105218 Mon Sep 17 00:00:00 2001 From: sfc-gh-ext-simba-lf Date: Wed, 18 Oct 2023 09:28:51 -0700 Subject: [PATCH] SNOW-723810: Revert get set for storage variables --- .../StorageClient/ISFRemoteStorageClient.cs | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Snowflake.Data/Core/FileTransfer/StorageClient/ISFRemoteStorageClient.cs b/Snowflake.Data/Core/FileTransfer/StorageClient/ISFRemoteStorageClient.cs index 3b688d224..b20907d9a 100644 --- a/Snowflake.Data/Core/FileTransfer/StorageClient/ISFRemoteStorageClient.cs +++ b/Snowflake.Data/Core/FileTransfer/StorageClient/ISFRemoteStorageClient.cs @@ -11,29 +11,29 @@ namespace Snowflake.Data.Core.FileTransfer { internal class WrappedContentInfo { - public string KeyId { get; set; } - public string EncryptedKey { get; set; } - public string Algorithm { get; set; } + public string KeyId; + public string EncryptedKey; + public string Algorithm; } internal class EncryptionAgentInfo { - public string Protocol { get; set; } - public string EncryptionAlgorithm { get; set; } + public string Protocol; + public string EncryptionAlgorithm; } internal class KeyWrappingMetadataInfo { - public string EncryptionLibrary { get; set; } + public string EncryptionLibrary; } internal class EncryptionData { - public string EncryptionMode { get; set; } - public WrappedContentInfo WrappedContentKey { get; set; } - public EncryptionAgentInfo EncryptionAgent { get; set; } - public string ContentEncryptionIV { get; set; } - public KeyWrappingMetadataInfo KeyWrappingMetadata { get; set; } + public string EncryptionMode; + public WrappedContentInfo WrappedContentKey; + public EncryptionAgentInfo EncryptionAgent; + public string ContentEncryptionIV; + public KeyWrappingMetadataInfo KeyWrappingMetadata; } internal class RemoteLocation