-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to
feature/egressExtension
Part 1 (#2759)
- Loading branch information
1 parent
f83894c
commit c804040
Showing
44 changed files
with
331 additions
and
688 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
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
47 changes: 47 additions & 0 deletions
47
src/Extensions/AzureBlobStorage/AzureBlobEgressProviderOptions.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,47 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel.DataAnnotations; | ||
|
||
namespace Microsoft.Diagnostics.Monitoring.AzureBlobStorage | ||
{ | ||
/// <summary> | ||
/// Egress provider options for Azure blob storage. | ||
/// </summary> | ||
internal sealed partial class AzureBlobEgressProviderOptions | ||
{ | ||
[Required] | ||
public Uri AccountUri { get; set; } | ||
|
||
public string AccountKey { get; set; } | ||
|
||
public string AccountKeyName { get; set; } | ||
|
||
public string SharedAccessSignature { get; set; } | ||
|
||
public string SharedAccessSignatureName { get; set; } | ||
|
||
public string ManagedIdentityClientId { get; set; } | ||
|
||
[Required] | ||
public string ContainerName { get; set; } | ||
|
||
public string BlobPrefix { get; set; } | ||
|
||
public int? CopyBufferSize { get; set; } | ||
|
||
public string QueueName { get; set; } | ||
|
||
public Uri QueueAccountUri { get; set; } | ||
|
||
public string QueueSharedAccessSignature { get; set; } | ||
|
||
public string QueueSharedAccessSignatureName { get; set; } | ||
|
||
public IDictionary<string, string> Metadata { get; set; } | ||
= new Dictionary<string, string>(0); | ||
} | ||
} |
Oops, something went wrong.