Skip to content

BuilderQueryExpression🔗

Definition🔗

class BuilderQueryExpression:
    from_val: typing.Optional[azuremonitor.BuilderQueryEditorPropertyExpression]
    columns: typing.Optional[azuremonitor.BuilderQueryEditorColumnsExpression]
    where: typing.Optional[azuremonitor.BuilderQueryEditorWhereExpressionArray]
    reduce: typing.Optional[azuremonitor.BuilderQueryEditorReduceExpressionArray]
    group_by: typing.Optional[azuremonitor.BuilderQueryEditorGroupByExpressionArray]
    limit: typing.Optional[int]
    order_by: typing.Optional[azuremonitor.BuilderQueryEditorOrderByExpressionArray]
    fuzzy_search: typing.Optional[azuremonitor.BuilderQueryEditorWhereExpressionArray]
    time_filter: typing.Optional[azuremonitor.BuilderQueryEditorWhereExpressionArray]

Methods🔗

to_json🔗

Converts this object into a representation that can easily be encoded to JSON.

def to_json() -> dict[str, object]

from_json🔗

Builds this object from a JSON-decoded dict.

@classmethod
def from_json(data: dict[str, typing.Any]) -> typing.Self

See also🔗