This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #375 from erezvani1529/master
8.0 Milestone + May16 Service Version Features
- Loading branch information
Showing
549 changed files
with
30,988 additions
and
4,371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
pushd %~dp0 | ||
call Tools\nuget3.4.exe install Microsoft.NETCore.Runtime.CoreCLR -Version 1.0.3 | ||
call Tools\nuget3.4.exe install Microsoft.NETCore.Runtime.CoreCLR -Version 1.1.0 | ||
call dotnet restore | ||
cd Lib\AspNet\Microsoft.WindowsAzure.Storage | ||
call dotnet build --configuration release | ||
cd ..\Microsoft.WindowsAzure.Storage.Facade | ||
call dotnet build --configuration release | ||
popd |
136 changes: 136 additions & 0 deletions
136
...t.WindowsAzure.Storage.Facade/FacadeLib/Microsoft.WindowsAzure.Storage.AccessCondition.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
using System; | ||
namespace Microsoft.WindowsAzure.Storage | ||
{ | ||
public sealed class AccessCondition | ||
{ | ||
public string IfMatchETag | ||
{ | ||
get; set; | ||
} | ||
|
||
public string IfNoneMatchETag | ||
{ | ||
get; set; | ||
} | ||
|
||
public DateTimeOffset? IfModifiedSinceTime | ||
{ | ||
get | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
set | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
public DateTimeOffset? IfNotModifiedSinceTime | ||
{ | ||
get | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
set | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
public long? IfMaxSizeLessThanOrEqual | ||
{ | ||
get; set; | ||
} | ||
|
||
public long? IfAppendPositionEqual | ||
{ | ||
get; set; | ||
} | ||
|
||
public long? IfSequenceNumberLessThanOrEqual | ||
{ | ||
get; set; | ||
} | ||
|
||
public long? IfSequenceNumberLessThan | ||
{ | ||
get; set; | ||
} | ||
|
||
public long? IfSequenceNumberEqual | ||
{ | ||
get; set; | ||
} | ||
|
||
public string LeaseId | ||
{ | ||
get; set; | ||
} | ||
|
||
internal bool IsConditional | ||
{ | ||
get | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
public static AccessCondition GenerateEmptyCondition() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfNotExistsCondition() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfExistsCondition() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfMatchCondition(string etag) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfModifiedSinceCondition(DateTimeOffset modifiedTime) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfNoneMatchCondition(string etag) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfNotModifiedSinceCondition(DateTimeOffset modifiedTime) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfMaxSizeLessThanOrEqualCondition(long maxSize) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfAppendPositionEqualCondition(long appendPosition) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfSequenceNumberLessThanOrEqualCondition(long sequenceNumber) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfSequenceNumberLessThanCondition(long sequenceNumber) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateIfSequenceNumberEqualCondition(long sequenceNumber) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public static AccessCondition GenerateLeaseCondition(string leaseId) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
internal static AccessCondition CloneConditionWithETag(AccessCondition accessCondition, string etag) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
...wsAzure.Storage.Facade/FacadeLib/Microsoft.WindowsAzure.Storage.Auth.StorageAccountKey.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
namespace Microsoft.WindowsAzure.Storage.Auth | ||
{ | ||
internal struct StorageAccountKey | ||
{ | ||
|
||
public StorageAccountKey(string keyName, byte[] keyValue) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
} |
129 changes: 129 additions & 0 deletions
129
...sAzure.Storage.Facade/FacadeLib/Microsoft.WindowsAzure.Storage.Auth.StorageCredentials.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
using Microsoft.WindowsAzure.Storage.Core; | ||
using Microsoft.WindowsAzure.Storage.Core.Util; | ||
using System; | ||
using System.Globalization; | ||
|
||
namespace Microsoft.WindowsAzure.Storage.Auth | ||
{ | ||
public sealed class StorageCredentials | ||
{ | ||
|
||
public string SASToken | ||
{ | ||
get; private set; | ||
} | ||
|
||
public string AccountName | ||
{ | ||
get; private set; | ||
} | ||
|
||
public string KeyName | ||
{ | ||
get | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
internal StorageAccountKey Key | ||
{ | ||
get; private set; | ||
} | ||
|
||
public bool IsAnonymous | ||
{ | ||
get | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
public bool IsSAS | ||
{ | ||
get | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
public bool IsSharedKey | ||
{ | ||
get | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
public string SASSignature | ||
{ | ||
get | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
public StorageCredentials() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public StorageCredentials(string accountName, string keyValue) | ||
: this(accountName, keyValue, (string) null) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public StorageCredentials(string accountName, string keyValue, string keyName) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public StorageCredentials(string sasToken) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public void UpdateKey(string keyValue) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public void UpdateKey(string keyValue, string keyName) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public void UpdateSASToken(string sasToken) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public byte[] ExportKey() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public Uri TransformUri(Uri resourceUri) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public StorageUri TransformUri(StorageUri resourceUri) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public string ExportBase64EncodedKey() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
private static string GetBase64EncodedKey(StorageAccountKey accountKey) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
internal string ToString(bool exportSecrets) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
public bool Equals(StorageCredentials other) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
private void UpdateQueryBuilder() | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
...dowsAzure.Storage.Facade/FacadeLib/Microsoft.WindowsAzure.Storage.AuthenticationScheme.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
namespace Microsoft.WindowsAzure.Storage | ||
{ | ||
public enum AuthenticationScheme | ||
{ | ||
SharedKeyLite, | ||
SharedKey, | ||
} | ||
|
||
} |
Oops, something went wrong.