Instruction Constructors

Definition

Overloads

Instruction()

Initializes a new instance of the Instruction class.

Instruction(Double, DateTime, DateTime, String, String, String, Nullable<DateTime>)

Initializes a new instance of the Instruction class.

Instruction()

Initializes a new instance of the Instruction class.

public Instruction ();
Public Sub New ()

Applies to

Instruction(Double, DateTime, DateTime, String, String, String, Nullable<DateTime>)

Initializes a new instance of the Instruction class.

public Instruction (double amount, DateTime startDate, DateTime endDate, string id = default, string name = default, string type = default, DateTime? creationDate = default);
new Microsoft.Azure.Management.Billing.Models.Instruction : double * DateTime * DateTime * string * string * string * Nullable<DateTime> -> Microsoft.Azure.Management.Billing.Models.Instruction
Public Sub New (amount As Double, startDate As DateTime, endDate As DateTime, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional creationDate As Nullable(Of DateTime) = Nothing)

Parameters

amount
Double

The amount budgeted for this billing instruction.

startDate
DateTime

The date this billing instruction goes into effect.

endDate
DateTime

The date this billing instruction is no longer in effect.

id
String

Resource Id.

name
String

Resource name.

type
String

Resource type.

creationDate
Nullable<DateTime>

The date this billing instruction was created.

Applies to