你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

QueryOptions 类

参数组。

继承
QueryOptions

构造函数

QueryOptions(*, top: int | None = None, filter: str | None = None, order_by: str | None = None, select: str | None = None, from_property: datetime | None = None, to: datetime | None = None, apply: str | None = None, skip_token: str | None = None, expand: str | None = None, **kwargs)

参数

top
int
必需

要返回的最大记录数。

filter
str
必需

OData 筛选器表达式。

order_by
str
必需

使用 OData 表示法对表达式进行排序。 一个或多个逗号分隔列名,带有可选的“desc” (默认) 或“asc”,例如“$orderby=PolicyAssignmentId, ResourceId asc”。

select
str
必需

使用 OData 表示法选择表达式。 将每条记录上的列限制为仅请求的列,例如“$select=PolicyAssignmentId, ResourceId”。

from_property
datetime
必需

ISO 8601 格式化时间戳,指定查询间隔的开始时间。 如果未指定,该服务将使用 ($to - 1 天的) 。

to
datetime
必需

ISO 8601 格式时间戳,指定查询间隔的结束时间。 如果未指定,服务将使用请求时间。

apply
str
必需

OData 为聚合应用表达式。

skip_token
str
必需

仅当上一个响应返回部分结果作为 nextLink 元素的一部分时,才提供 Skiptoken。

expand
str
必需

$expand查询参数。 例如,若要扩展组件,请使用 $expand=components。