Show / Hide Table of Contents

Class BillingSubscriptionCollectionGetAllOptions

The BillingSubscriptionCollectionGetAllOptions.

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

Constructors

BillingSubscriptionCollectionGetAllOptions()

Initializes a new instance of BillingSubscriptionCollectionGetAllOptions.

Declaration
public BillingSubscriptionCollectionGetAllOptions ();

Properties

Count

The count query option allows clients to request a count of the matching resources included with the resources in the response.

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

Expand

Can be used to expand Reseller, ConsumptionCostCenter, LastMonthCharges and MonthToDateCharges.

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

IncludeDeleted

Can be used to get deleted billing subscriptions.

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

IncludeFailed

Can be used to get failed billing subscriptions.

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

IncludeTenantSubscriptions

Can be used to get tenant-owned billing subscriptions. This field is only applies to Microsoft Online Services Program billing accounts.

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

OrderBy

The orderby query option allows clients to request resources in a particular order.

Declaration
public string OrderBy { 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