Show / Hide Table of Contents

Class BillingAccountCollectionGetAllOptions

The BillingAccountCollectionGetAllOptions.

Inheritance
System.Object
BillingAccountCollectionGetAllOptions
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.ResourceManager.Billing.dll
Syntax
public class BillingAccountCollectionGetAllOptions

Constructors

BillingAccountCollectionGetAllOptions()

Initializes a new instance of BillingAccountCollectionGetAllOptions.

Declaration
public BillingAccountCollectionGetAllOptions ();

Properties

Expand

Expand is allowed for SoldTo and EnrollmentDetails/PONumber.

Declaration
public string Expand { get; set; }
Property Value
System.String

Filter

The filter query option allows clients to filter a collection of resources that are addressed by a request URL.

Declaration
public string Filter { get; set; }
Property Value
System.String

IncludeAll

When true, results will include Billing Accounts that the user does not have a direct role assignment on if the user has one of the following AAD roles: Global Administrator, Global Reader, Billing Administrator.

Declaration
public Nullable<bool> IncludeAll { get; set; }
Property Value
System.Nullable<System.Boolean>

IncludeAllWithoutBillingProfiles

When true, results will include Billing Accounts that are not fully created if the user has one of the following AAD roles: Global Administrator, Global Reader, Billing Administrator.

Declaration
public Nullable<bool> IncludeAllWithoutBillingProfiles { get; set; }
Property Value
System.Nullable<System.Boolean>

IncludeDeleted

When true, results will include any billing accounts in a deleted state.

Declaration
public Nullable<bool> IncludeDeleted { get; set; }
Property Value
System.Nullable<System.Boolean>

IncludePendingAgreement

Includes billing accounts with agreement pending signature that the user has access to.

Declaration
public Nullable<bool> IncludePendingAgreement { get; set; }
Property Value
System.Nullable<System.Boolean>

IncludeResellee

Includes the customer's billing account of Microsoft Partner Agreement that the user has access to.

Declaration
public Nullable<bool> IncludeResellee { get; set; }
Property Value
System.Nullable<System.Boolean>

LegalOwnerOID

Must be combined with legalOwnerTID, results will only include Billing Accounts for whom is legally responsible for the Billing Accounts. Optional.

Declaration
public string LegalOwnerOID { get; set; }
Property Value
System.String

LegalOwnerTID

Must be combined with legalOwnerOID, results will only include Billing Accounts for whom is legally responsible for the Billing Accounts. Optional.

Declaration
public string LegalOwnerTID { get; set; }
Property Value
System.String

Search

The search query option allows clients to request items within a collection matching a free-text search expression. search is only supported for string fields.

Declaration
public string Search { get; set; }
Property Value
System.String

Skip

The skip query option requests the number of items in the queried collection that are to be skipped and not included in the result.

Declaration
public Nullable<long> Skip { get; set; }
Property Value
System.Nullable<System.Int64>

Top

The top query option requests the number of items in the queried collection to be included in the result. The maximum supported value for top is 50.

Declaration
public Nullable<long> Top { get; set; }
Property Value
System.Nullable<System.Int64>

Back to top Azure SDK for .NET