OutputFileBlobContainerDestination Constructors

Definition

Overloads

OutputFileBlobContainerDestination()

Default constructor to support mocking the OutputFileBlobContainerDestination class.

OutputFileBlobContainerDestination(String, String)

Initializes a new instance of the OutputFileBlobContainerDestination class.

OutputFileBlobContainerDestination(String, ComputeNodeIdentityReference, String)

Initializes a new instance of the OutputFileBlobContainerDestination class.

OutputFileBlobContainerDestination()

Source:
OutputFileBlobContainerDestination.cs

Default constructor to support mocking the OutputFileBlobContainerDestination class.

protected OutputFileBlobContainerDestination ();
Protected Sub New ()

Applies to

OutputFileBlobContainerDestination(String, String)

Source:
OutputFileBlobContainerDestination.cs

Initializes a new instance of the OutputFileBlobContainerDestination class.

public OutputFileBlobContainerDestination (string containerUrl, string path = default);
new Microsoft.Azure.Batch.OutputFileBlobContainerDestination : string * string -> Microsoft.Azure.Batch.OutputFileBlobContainerDestination
Public Sub New (containerUrl As String, Optional path As String = 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 to which to upload the file(s).

Applies to

OutputFileBlobContainerDestination(String, ComputeNodeIdentityReference, String)

Source:
OutputFileBlobContainerDestination.cs

Initializes a new instance of the OutputFileBlobContainerDestination class.

public OutputFileBlobContainerDestination (string containerUrl, Microsoft.Azure.Batch.ComputeNodeIdentityReference identityReference, string path = default);
new Microsoft.Azure.Batch.OutputFileBlobContainerDestination : string * Microsoft.Azure.Batch.ComputeNodeIdentityReference * string -> Microsoft.Azure.Batch.OutputFileBlobContainerDestination
Public Sub New (containerUrl As String, identityReference As ComputeNodeIdentityReference, Optional path As String = Nothing)

Parameters

containerUrl
String

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

identityReference
ComputeNodeIdentityReference

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

path
String

The destination blob or virtual directory within the Azure Storage container to which to upload the file(s).

Applies to