RecoveryBackupSystemNameArchiveFilterSpec
The Archive.FilterSpec structure contains fields used to filter the results when listing backup archives (see Archive.list). If multiple fields are specified, only backup archives matching all of the fields match the filter.
Properties
string
comment_substring
Optional
Backup comment must contain this string to match the filter. If unset the filter will match backups with any comment.
string as date-time
end_timestamp
Optional
Backup must have been taken on or before this time to match the filter. If unset the filter will match most recent backups.
integer as int64
max_results
Optional
Limit result to a max count of most recent backups. If unset it defaults to 128.
string as date-time
start_timestamp
Optional
Backup must have been taken on or after this time to match the filter. If unset the filter will match oldest backups.
JSON Example
{
"comment_substring": "string",
"end_timestamp": "string",
"max_results": 0,
"start_timestamp": "string"
}