-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port clientside encryption to mono-dll #12183
Changes from 14 commits
8e20e5b
2df8a86
7906d8e
4d71759
5219aa5
295f1e8
df0ccc9
cada706
801fb3b
69be140
e0ae520
1633ce0
e32eaa6
55ab4cc
9b8b321
5d2220d
b506071
77c38c3
b3f5bc0
46eeb8b
7d3ce1b
a04f168
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -989,6 +989,10 @@ public BlobBaseClient(System.Uri blobUri, Azure.Storage.StorageSharedKeyCredenti | |
public virtual Azure.Storage.Blobs.Specialized.BlobBaseClient WithSnapshot(string snapshot) { throw null; } | ||
protected virtual Azure.Storage.Blobs.Specialized.BlobBaseClient WithSnapshotCore(string snapshot) { throw null; } | ||
} | ||
public static partial class BlobClientExtensions | ||
{ | ||
public static Azure.Storage.Blobs.BlobClient WithClientSideEncryptionOptions(this Azure.Storage.Blobs.BlobClient client, Azure.Storage.ClientSideEncryptionOptions clientSideEncryptionOptions) { throw null; } | ||
} | ||
public partial class BlobLeaseClient | ||
{ | ||
public static readonly System.TimeSpan InfiniteLeaseDuration; | ||
|
@@ -1037,6 +1041,11 @@ public BlockBlobClient(System.Uri blobUri, Azure.Storage.StorageSharedKeyCredent | |
public new Azure.Storage.Blobs.Specialized.BlockBlobClient WithSnapshot(string snapshot) { throw null; } | ||
protected sealed override Azure.Storage.Blobs.Specialized.BlobBaseClient WithSnapshotCore(string snapshot) { throw null; } | ||
} | ||
public partial class ExtendedBlobClientOptions : Azure.Storage.Blobs.BlobClientOptions | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
{ | ||
public ExtendedBlobClientOptions(Azure.Storage.Blobs.BlobClientOptions.ServiceVersion version = Azure.Storage.Blobs.BlobClientOptions.ServiceVersion.V2019_07_07) : base (default(Azure.Storage.Blobs.BlobClientOptions.ServiceVersion)) { } | ||
public Azure.Storage.ClientSideEncryptionOptions ClientSideEncryption { get { throw null; } set { } } | ||
} | ||
public partial class PageBlobClient : Azure.Storage.Blobs.Specialized.BlobBaseClient | ||
{ | ||
protected PageBlobClient() { } | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should go in SpecializedBlobExtensions so we don't add a new type.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll mirror this in Queues as well. There needed to be a new type no matter what, but now it will be in line with this Blobs change.