Interface representing options for Remote Config list versions operation.
Signature:
export interface ListVersionsOptions
Properties
Property | Type | Description |
---|---|---|
endTime | Date | string | Specifies the latest update time to include in the results. Any entries updated on or after this time are omitted. |
endVersionNumber | string | number | Specifies the newest version number to include in the results. If specified, must be greater than zero. Defaults to the newest version. |
pageSize | number | The maximum number of items to return per page. |
pageToken | string | The nextPageToken value returned from a previous list versions request, if any. |
startTime | Date | string | Specifies the earliest update time to include in the results. Any entries updated before this time are omitted. |
ListVersionsOptions.endTime
Specifies the latest update time to include in the results. Any entries updated on or after this time are omitted.
Signature:
endTime?: Date | string;
ListVersionsOptions.endVersionNumber
Specifies the newest version number to include in the results. If specified, must be greater than zero. Defaults to the newest version.
Signature:
endVersionNumber?: string | number;
ListVersionsOptions.pageSize
The maximum number of items to return per page.
Signature:
pageSize?: number;
ListVersionsOptions.pageToken
The nextPageToken
value returned from a previous list versions request, if any.
Signature:
pageToken?: string;
ListVersionsOptions.startTime
Specifies the earliest update time to include in the results. Any entries updated before this time are omitted.
Signature:
startTime?: Date | string;