Share via


UploadBatchServiceLogsConfiguration Constructors

Definition

Overloads

UploadBatchServiceLogsConfiguration()

Initializes a new instance of the UploadBatchServiceLogsConfiguration class.

UploadBatchServiceLogsConfiguration(String, DateTime, Nullable<DateTime>, ComputeNodeIdentityReference)

Initializes a new instance of the UploadBatchServiceLogsConfiguration class.

UploadBatchServiceLogsConfiguration()

Source:
UploadBatchServiceLogsConfiguration.cs

Initializes a new instance of the UploadBatchServiceLogsConfiguration class.

public UploadBatchServiceLogsConfiguration ();
Public Sub New ()

Applies to

UploadBatchServiceLogsConfiguration(String, DateTime, Nullable<DateTime>, ComputeNodeIdentityReference)

Source:
UploadBatchServiceLogsConfiguration.cs

Initializes a new instance of the UploadBatchServiceLogsConfiguration class.

public UploadBatchServiceLogsConfiguration (string containerUrl, DateTime startTime, DateTime? endTime = default, Microsoft.Azure.Batch.Protocol.Models.ComputeNodeIdentityReference identityReference = default);
new Microsoft.Azure.Batch.Protocol.Models.UploadBatchServiceLogsConfiguration : string * DateTime * Nullable<DateTime> * Microsoft.Azure.Batch.Protocol.Models.ComputeNodeIdentityReference -> Microsoft.Azure.Batch.Protocol.Models.UploadBatchServiceLogsConfiguration
Public Sub New (containerUrl As String, startTime As DateTime, Optional endTime As Nullable(Of DateTime) = Nothing, Optional identityReference As ComputeNodeIdentityReference = Nothing)

Parameters

containerUrl
String

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

startTime
DateTime

The start of the time range from which to upload Batch Service log file(s).

endTime
Nullable<DateTime>

The end of the time range from which to upload Batch Service log file(s).

identityReference
ComputeNodeIdentityReference

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

Applies to