AuthorizationPrivilegeChecksIterationSpec

The PrivilegeChecks.IterationSpec structure contains fields used to break results into pages when listing privilege checks, see PrivilegeChecks.list).


Properties

string
end_marker Optional

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.


string
marker Optional

An opaque token which determines where the returned page should begin. If unset or empty, privilege checks will be returned from the first record.


integer as int64
size Optional

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.


integer as int64
timeout_ms Optional

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
}

Feedback

Was this page helpful?