Skip to content

Commit

Permalink
SNOW-723810: Revert get set for storage variables
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-lf committed Oct 18, 2023
1 parent 1f71cae commit 9a9eec0
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9a9eec0

Please sign in to comment.