Show / Hide Table of Contents

Class BillingProfileCollectionGetAllOptions

The BillingProfileCollectionGetAllOptions.

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

Constructors

BillingProfileCollectionGetAllOptions()

Initializes a new instance of BillingProfileCollectionGetAllOptions.

Declaration
public BillingProfileCollectionGetAllOptions ();

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>

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 profiles.

Declaration
public Nullable<bool> IncludeDeleted { 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