ArmBatchModelFactory.BatchSupportedSku Method

Definition

Overloads

BatchSupportedSku(String, String, IEnumerable<BatchSkuCapability>)

Initializes a new instance of BatchSupportedSku.

BatchSupportedSku(String, String, IEnumerable<BatchSkuCapability>, Nullable<DateTimeOffset>)

Initializes a new instance of BatchSupportedSku.

BatchSupportedSku(String, String, IEnumerable<BatchSkuCapability>)

Source:
ArmBatchModelFactory.cs

Initializes a new instance of BatchSupportedSku.

public static Azure.ResourceManager.Batch.Models.BatchSupportedSku BatchSupportedSku (string name = default, string familyName = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Batch.Models.BatchSkuCapability> capabilities = default);
static member BatchSupportedSku : string * string * seq<Azure.ResourceManager.Batch.Models.BatchSkuCapability> -> Azure.ResourceManager.Batch.Models.BatchSupportedSku
Public Shared Function BatchSupportedSku (Optional name As String = Nothing, Optional familyName As String = Nothing, Optional capabilities As IEnumerable(Of BatchSkuCapability) = Nothing) As BatchSupportedSku

Parameters

name
String

The name of the SKU.

familyName
String

The family name of the SKU.

capabilities
IEnumerable<BatchSkuCapability>

A collection of capabilities which this SKU supports.

Returns

A new BatchSupportedSku instance for mocking.

Applies to

BatchSupportedSku(String, String, IEnumerable<BatchSkuCapability>, Nullable<DateTimeOffset>)

Source:
ArmBatchModelFactory.cs

Initializes a new instance of BatchSupportedSku.

public static Azure.ResourceManager.Batch.Models.BatchSupportedSku BatchSupportedSku (string name = default, string familyName = default, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Batch.Models.BatchSkuCapability> capabilities = default, DateTimeOffset? batchSupportEndOfLife = default);
static member BatchSupportedSku : string * string * seq<Azure.ResourceManager.Batch.Models.BatchSkuCapability> * Nullable<DateTimeOffset> -> Azure.ResourceManager.Batch.Models.BatchSupportedSku
Public Shared Function BatchSupportedSku (Optional name As String = Nothing, Optional familyName As String = Nothing, Optional capabilities As IEnumerable(Of BatchSkuCapability) = Nothing, Optional batchSupportEndOfLife As Nullable(Of DateTimeOffset) = Nothing) As BatchSupportedSku

Parameters

name
String

The name of the SKU.

familyName
String

The family name of the SKU.

capabilities
IEnumerable<BatchSkuCapability>

A collection of capabilities which this SKU supports.

batchSupportEndOfLife
Nullable<DateTimeOffset>

The time when Azure Batch service will retire this SKU.

Returns

A new BatchSupportedSku instance for mocking.

Applies to