Share via


CostManagement.DimensionsListViaIdentity Method

Definition

Lists the dimensions by the defined scope.

public System.Threading.Tasks.Task DimensionsListViaIdentity (string viaIdentity, string Filter, string Expand, string Skiptoken, int? Top, Func<System.Net.Http.HttpResponseMessage,System.Threading.Tasks.Task<Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Models.Api20211001.IDimensionsListResult>,System.Threading.Tasks.Task> onOk, Func<System.Net.Http.HttpResponseMessage,System.Threading.Tasks.Task> onNoContent, Func<System.Net.Http.HttpResponseMessage,System.Threading.Tasks.Task<Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Models.Api20211001.IErrorResponse>,System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Runtime.ISendAsync sender);
member this.DimensionsListViaIdentity : string * string * string * string * Nullable<int> * Func<System.Net.Http.HttpResponseMessage, System.Threading.Tasks.Task<Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Models.Api20211001.IDimensionsListResult>, System.Threading.Tasks.Task> * Func<System.Net.Http.HttpResponseMessage, System.Threading.Tasks.Task> * Func<System.Net.Http.HttpResponseMessage, System.Threading.Tasks.Task<Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Models.Api20211001.IErrorResponse>, System.Threading.Tasks.Task> * Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Runtime.IEventListener * Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Runtime.ISendAsync -> System.Threading.Tasks.Task
Public Function DimensionsListViaIdentity (viaIdentity As String, Filter As String, Expand As String, Skiptoken As String, Top As Nullable(Of Integer), onOk As Func(Of HttpResponseMessage, Task(Of IDimensionsListResult), Task), onNoContent As Func(Of HttpResponseMessage, Task), onDefault As Func(Of HttpResponseMessage, Task(Of IErrorResponse), Task), eventListener As IEventListener, sender As ISendAsync) As Task

Parameters

viaIdentity
String
Filter
String

May be used to filter dimensions by properties/category, properties/usageStart, properties/usageEnd. Supported operators are 'eq','lt', 'gt', 'le', 'ge'.

Expand
String

May be used to expand the properties/data within a dimension category. By default, data is not included when listing dimensions.

Skiptoken
String

Skiptoken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skiptoken parameter that specifies a starting point to use for subsequent calls.

Top
Nullable<Int32>

May be used to limit the number of results to the most recent N dimension data.

onOk
Func<HttpResponseMessage,Task<IDimensionsListResult>,Task>

a delegate that is called when the remote service returns 200 (OK).

onNoContent
Func<HttpResponseMessage,Task>

a delegate that is called when the remote service returns 204 (NoContent).

onDefault
Func<HttpResponseMessage,Task<IErrorResponse>,Task>

a delegate that is called when the remote service returns default (any response code not handled elsewhere).

eventListener
IEventListener

an IEventListener instance that will receive events.

sender
ISendAsync

an instance of an Microsoft.Azure.PowerShell.Cmdlets.CostManagement.Runtime.ISendAsync pipeline to use to make the request.

Returns

A Task that will be complete when handling of the response is completed.

Applies to