ภาษา

ArmMachineLearningModelFactory.MachineLearningSkuPatch Method

Definition

Common SKU definition.

public static Azure.ResourceManager.MachineLearning.Models.MachineLearningSkuPatch MachineLearningSkuPatch(int? capacity = default, string family = default, string name = default, string size = default, Azure.ResourceManager.MachineLearning.Models.MachineLearningSkuTier? tier = default);
static member MachineLearningSkuPatch : Nullable<int> * string * string * string * Nullable<Azure.ResourceManager.MachineLearning.Models.MachineLearningSkuTier> -> Azure.ResourceManager.MachineLearning.Models.MachineLearningSkuPatch
Public Shared Function MachineLearningSkuPatch (Optional capacity As Nullable(Of Integer) = Nothing, Optional family As String = Nothing, Optional name As String = Nothing, Optional size As String = Nothing, Optional tier As Nullable(Of MachineLearningSkuTier) = Nothing) As MachineLearningSkuPatch

Parameters

capacity
Nullable<Int32>

If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.

family
String

If the service has different generations of hardware, for the same SKU, then that can be captured here.

name
String

The name of the SKU. Ex - P3. It is typically a letter+number code.

size
String

The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.

tier
Nullable<MachineLearningSkuTier>

This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.

Returns

A new MachineLearningSkuPatch instance for mocking.

Applies to