Udostępnij za pośrednictwem


OutputFileBlobContainerDestination Constructors

Definition

Overloads

OutputFileBlobContainerDestination()

Initializes a new instance of the OutputFileBlobContainerDestination class.

OutputFileBlobContainerDestination(String, String, ComputeNodeIdentityReference, IList<HttpHeader>)

Initializes a new instance of the OutputFileBlobContainerDestination class.

OutputFileBlobContainerDestination()

Source:
OutputFileBlobContainerDestination.cs

Initializes a new instance of the OutputFileBlobContainerDestination class.

public OutputFileBlobContainerDestination ();
Public Sub New ()

Applies to

OutputFileBlobContainerDestination(String, String, ComputeNodeIdentityReference, IList<HttpHeader>)

Source:
OutputFileBlobContainerDestination.cs

Initializes a new instance of the OutputFileBlobContainerDestination class.

public OutputFileBlobContainerDestination (string containerUrl, string path = default, Microsoft.Azure.Batch.Protocol.Models.ComputeNodeIdentityReference identityReference = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.HttpHeader> uploadHeaders = default);
new Microsoft.Azure.Batch.Protocol.Models.OutputFileBlobContainerDestination : string * string * Microsoft.Azure.Batch.Protocol.Models.ComputeNodeIdentityReference * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.HttpHeader> -> Microsoft.Azure.Batch.Protocol.Models.OutputFileBlobContainerDestination
Public Sub New (containerUrl As String, Optional path As String = Nothing, Optional identityReference As ComputeNodeIdentityReference = Nothing, Optional uploadHeaders As IList(Of HttpHeader) = Nothing)

Parameters

containerUrl
String

The URL of the container within Azure Blob Storage to which to upload the file(s).

path
String

The destination blob or virtual directory within the Azure Storage container.

identityReference
ComputeNodeIdentityReference

The reference to the user assigned identity to use to access Azure Blob Storage specified by containerUrl

uploadHeaders
IList<HttpHeader>

A list of name-value pairs for headers to be used in uploading output files

Applies to