-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate missing .net 8.0 api for WebJobs Extensions Storage (#48030)
- Loading branch information
Showing
2 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
60 changes: 60 additions & 0 deletions
60
...s.Extensions.Storage.Blobs/api/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.net8.0.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,60 @@ | ||
namespace Microsoft.Azure.WebJobs | ||
{ | ||
[Microsoft.Azure.WebJobs.ConnectionProviderAttribute(typeof(Microsoft.Azure.WebJobs.StorageAccountAttribute))] | ||
[Microsoft.Azure.WebJobs.Description.BindingAttribute] | ||
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter | System.AttributeTargets.ReturnValue)] | ||
[System.Diagnostics.DebuggerDisplayAttribute("{BlobPath,nq}")] | ||
public sealed partial class BlobAttribute : System.Attribute, Microsoft.Azure.WebJobs.IConnectionProvider | ||
{ | ||
public BlobAttribute(string blobPath) { } | ||
public BlobAttribute(string blobPath, System.IO.FileAccess access) { } | ||
public System.IO.FileAccess? Access { get { throw null; } set { } } | ||
[Microsoft.Azure.WebJobs.Description.AutoResolveAttribute] | ||
public string BlobPath { get { throw null; } } | ||
public string Connection { get { throw null; } set { } } | ||
} | ||
[Microsoft.Azure.WebJobs.ConnectionProviderAttribute(typeof(Microsoft.Azure.WebJobs.StorageAccountAttribute))] | ||
[Microsoft.Azure.WebJobs.Description.BindingAttribute] | ||
[System.AttributeUsageAttribute(System.AttributeTargets.Parameter)] | ||
[System.Diagnostics.DebuggerDisplayAttribute("{BlobPath,nq}")] | ||
public sealed partial class BlobTriggerAttribute : System.Attribute, Microsoft.Azure.WebJobs.IConnectionProvider | ||
{ | ||
public BlobTriggerAttribute(string blobPath) { } | ||
public string BlobPath { get { throw null; } } | ||
public string Connection { get { throw null; } set { } } | ||
public Microsoft.Azure.WebJobs.BlobTriggerSource Source { get { throw null; } set { } } | ||
} | ||
public enum BlobTriggerSource | ||
{ | ||
LogsAndContainerScan = 0, | ||
EventGrid = 1, | ||
} | ||
} | ||
namespace Microsoft.Azure.WebJobs.Extensions.Storage | ||
{ | ||
public partial class AzureStorageBlobsWebJobsStartup : Microsoft.Azure.WebJobs.Hosting.IWebJobsStartup | ||
{ | ||
public AzureStorageBlobsWebJobsStartup() { } | ||
public void Configure(Microsoft.Azure.WebJobs.IWebJobsBuilder builder) { } | ||
} | ||
} | ||
namespace Microsoft.Azure.WebJobs.Host | ||
{ | ||
public partial class BlobsOptions : Microsoft.Azure.WebJobs.Hosting.IOptionsFormatter | ||
{ | ||
public BlobsOptions() { } | ||
public int MaxDegreeOfParallelism { get { throw null; } set { } } | ||
public int PoisonBlobThreshold { get { throw null; } set { } } | ||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] | ||
string Microsoft.Azure.WebJobs.Hosting.IOptionsFormatter.Format() { throw null; } | ||
} | ||
} | ||
namespace Microsoft.Extensions.Hosting | ||
{ | ||
public static partial class StorageBlobsWebJobsBuilderExtensions | ||
{ | ||
public static Microsoft.Azure.WebJobs.IWebJobsBuilder AddAzureStorageBlobs(this Microsoft.Azure.WebJobs.IWebJobsBuilder builder, System.Action<Microsoft.Azure.WebJobs.Host.BlobsOptions> configureBlobs = null) { throw null; } | ||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] | ||
public static Microsoft.Azure.WebJobs.IWebJobsBuilder AddAzureStorageBlobsScaleForTrigger(this Microsoft.Azure.WebJobs.IWebJobsBuilder builder, Microsoft.Azure.WebJobs.Host.Scale.TriggerMetadata triggerMetadata) { throw null; } | ||
} | ||
} |
Empty file.