BillingProfile Constructors

Definition

Overloads

BillingProfile()

Initializes a new instance of the BillingProfile class.

BillingProfile(String, String, String, String, String, AddressDetails, Nullable<Boolean>, Nullable<Int32>, String, IList<AzurePlan>, InvoiceSectionsOnExpand, Nullable<Boolean>, String, String, String, String)

Initializes a new instance of the BillingProfile class.

BillingProfile()

Initializes a new instance of the BillingProfile class.

public BillingProfile ();
Public Sub New ()

Applies to

BillingProfile(String, String, String, String, String, AddressDetails, Nullable<Boolean>, Nullable<Int32>, String, IList<AzurePlan>, InvoiceSectionsOnExpand, Nullable<Boolean>, String, String, String, String)

Initializes a new instance of the BillingProfile class.

public BillingProfile (string id = default, string name = default, string type = default, string displayName = default, string poNumber = default, Microsoft.Azure.Management.Billing.Models.AddressDetails billTo = default, bool? invoiceEmailOptIn = default, int? invoiceDay = default, string currency = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.AzurePlan> enabledAzurePlans = default, Microsoft.Azure.Management.Billing.Models.InvoiceSectionsOnExpand invoiceSections = default, bool? hasReadAccess = default, string systemId = default, string status = default, string statusReasonCode = default, string spendingLimit = default);
new Microsoft.Azure.Management.Billing.Models.BillingProfile : string * string * string * string * string * Microsoft.Azure.Management.Billing.Models.AddressDetails * Nullable<bool> * Nullable<int> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.AzurePlan> * Microsoft.Azure.Management.Billing.Models.InvoiceSectionsOnExpand * Nullable<bool> * string * string * string * string -> Microsoft.Azure.Management.Billing.Models.BillingProfile
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional displayName As String = Nothing, Optional poNumber As String = Nothing, Optional billTo As AddressDetails = Nothing, Optional invoiceEmailOptIn As Nullable(Of Boolean) = Nothing, Optional invoiceDay As Nullable(Of Integer) = Nothing, Optional currency As String = Nothing, Optional enabledAzurePlans As IList(Of AzurePlan) = Nothing, Optional invoiceSections As InvoiceSectionsOnExpand = Nothing, Optional hasReadAccess As Nullable(Of Boolean) = Nothing, Optional systemId As String = Nothing, Optional status As String = Nothing, Optional statusReasonCode As String = Nothing, Optional spendingLimit As String = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource name.

type
String

Resource type.

displayName
String

The name of the billing profile.

poNumber
String

The purchase order name that will appear on the invoices generated for the billing profile.

billTo
AddressDetails

Billing address.

invoiceEmailOptIn
Nullable<Boolean>

Flag controlling whether the invoices for the billing profile are sent through email.

invoiceDay
Nullable<Int32>

The day of the month when the invoice for the billing profile is generated.

currency
String

The currency in which the charges for the billing profile are billed.

enabledAzurePlans
IList<AzurePlan>

Information about the enabled azure plans.

invoiceSections
InvoiceSectionsOnExpand

The invoice sections associated to the billing profile. By default this is not populated, unless it's specified in $expand.

hasReadAccess
Nullable<Boolean>

Indicates whether user has read access to the billing profile.

systemId
String

The system generated unique identifier for a billing profile.

status
String

The status of the billing profile. Possible values include: 'Active', 'Disabled', 'Warned'

statusReasonCode
String

Reason for the specified billing profile status. Possible values include: 'PastDue', 'SpendingLimitReached', 'SpendingLimitExpired'

spendingLimit
String

The billing profile spending limit. Possible values include: 'Off', 'On'

Applies to