AuthorizationPrivilegeChecksIterationSpec
The PrivilegeChecks.IterationSpec structure contains fields used to break results into pages when listing privilege checks, see PrivilegeChecks.list).
Properties
An opaque token which determines where the returned page should end. If unset or empty, privilege checks will be returned up to size, if set, or up to the default page size.
An opaque token which determines where the returned page should begin. If unset or empty, privilege checks will be returned from the first record.
Specifies the maximum number of results to return. If unset defaults to default page size, which is controlled by config.vpxd.privilegeChecks.pageSize advanced option.
Indicates how long the request should wait in ms for a matching check if PrivilegeChecks.IterationSpec.marker is set, and there no matching checks to be added to the result. If unset or empty, the request will not wait for additional privilege checks and will return immediately.
JSON Example
{
"end_marker": "string",
"marker": "string",
"size": 0,
"timeout_ms": 0
}