ResourceFile Constructors

Definition

Overloads

ResourceFile()

Initializes a new instance of the ResourceFile class.

ResourceFile(String, String, String, String, String, String, ComputeNodeIdentityReference)

Initializes a new instance of the ResourceFile class.

ResourceFile()

Initializes a new instance of the ResourceFile class.

public ResourceFile ();
Public Sub New ()

Applies to

ResourceFile(String, String, String, String, String, String, ComputeNodeIdentityReference)

Initializes a new instance of the ResourceFile class.

public ResourceFile (string autoStorageContainerName = default, string storageContainerUrl = default, string httpUrl = default, string blobPrefix = default, string filePath = default, string fileMode = default, Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference identityReference = default);
new Microsoft.Azure.Management.Batch.Models.ResourceFile : string * string * string * string * string * string * Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference -> Microsoft.Azure.Management.Batch.Models.ResourceFile
Public Sub New (Optional autoStorageContainerName As String = Nothing, Optional storageContainerUrl As String = Nothing, Optional httpUrl As String = Nothing, Optional blobPrefix As String = Nothing, Optional filePath As String = Nothing, Optional fileMode As String = Nothing, Optional identityReference As ComputeNodeIdentityReference = Nothing)

Parameters

autoStorageContainerName
String

The storage container name in the auto storage account.

storageContainerUrl
String

The URL of the blob container within Azure Blob Storage.

httpUrl
String

The URL of the file to download.

blobPrefix
String

The blob prefix to use when downloading blobs from an Azure Storage container. Only the blobs whose names begin with the specified prefix will be downloaded.

filePath
String

The location on the compute node to which to download the file, relative to the task's working directory.

fileMode
String

The file permission mode attribute in octal format.

identityReference
ComputeNodeIdentityReference

The reference to the user assigned identity to use to access Azure Blob Storage specified by storageContainerUrl or httpUrl

Applies to