AlternativeOption Constructors

Definition

Overloads

AlternativeOption()

Initializes a new instance of the AlternativeOption class.

AlternativeOption(String, String)

Initializes a new instance of the AlternativeOption class.

AlternativeOption()

Initializes a new instance of the AlternativeOption class.

public AlternativeOption ();
Public Sub New ()

Applies to

AlternativeOption(String, String)

Initializes a new instance of the AlternativeOption class.

public AlternativeOption (string type = default, string value = default);
new Microsoft.Azure.Management.Compute.Models.AlternativeOption : string * string -> Microsoft.Azure.Management.Compute.Models.AlternativeOption
Public Sub New (Optional type As String = Nothing, Optional value As String = Nothing)

Parameters

type
String

Describes the type of the alternative option. Possible values include: 'None', 'Offer', 'Plan'

value
String

Indicates the alternative option value specified by the Publisher. This is the Offer name when the type is Offer or the Plan name when the type is Plan.

Applies to