Delen via


ImageInformation Constructors

Definition

Overloads

ImageInformation()

Initializes a new instance of the ImageInformation class.

ImageInformation(String, ImageReference, OSType, VerificationType, IList<String>, Nullable<DateTime>)

Initializes a new instance of the ImageInformation class.

ImageInformation()

Source:
ImageInformation.cs

Initializes a new instance of the ImageInformation class.

public ImageInformation ();
Public Sub New ()

Applies to

ImageInformation(String, ImageReference, OSType, VerificationType, IList<String>, Nullable<DateTime>)

Source:
ImageInformation.cs

Initializes a new instance of the ImageInformation class.

public ImageInformation (string nodeAgentSKUId, Microsoft.Azure.Batch.Protocol.Models.ImageReference imageReference, Microsoft.Azure.Batch.Protocol.Models.OSType osType, Microsoft.Azure.Batch.Protocol.Models.VerificationType verificationType, System.Collections.Generic.IList<string> capabilities = default, DateTime? batchSupportEndOfLife = default);
new Microsoft.Azure.Batch.Protocol.Models.ImageInformation : string * Microsoft.Azure.Batch.Protocol.Models.ImageReference * Microsoft.Azure.Batch.Protocol.Models.OSType * Microsoft.Azure.Batch.Protocol.Models.VerificationType * System.Collections.Generic.IList<string> * Nullable<DateTime> -> Microsoft.Azure.Batch.Protocol.Models.ImageInformation
Public Sub New (nodeAgentSKUId As String, imageReference As ImageReference, osType As OSType, verificationType As VerificationType, Optional capabilities As IList(Of String) = Nothing, Optional batchSupportEndOfLife As Nullable(Of DateTime) = Nothing)

Parameters

nodeAgentSKUId
String

The ID of the Compute Node agent SKU which the Image supports.

imageReference
ImageReference

The reference to the Azure Virtual Machine's Marketplace Image.

osType
OSType

The type of operating system (e.g. Windows or Linux) of the Image.

verificationType
VerificationType

Whether the Azure Batch service actively verifies that the Image is compatible with the associated Compute Node agent SKU.

capabilities
IList<String>

The capabilities or features which the Image supports.

batchSupportEndOfLife
Nullable<DateTime>

The time when the Azure Batch service will stop accepting create Pool requests for the Image.

Applies to