Support filtering on zone import/export list

List operations should add the task_type criterion to the user
provided criterion.

Change-Id: I983d930f975c109cce24a9587bba6db563b3f19f
Launchpad: 1926058
This commit is contained in:
Michael Chapman 2021-05-05 16:54:18 +10:00 committed by Erik Olof Gunnar Andersson
parent 40b5633dfd
commit fb9f0b33d3
1 changed files with 14 additions and 6 deletions

View File

@ -2817,9 +2817,13 @@ class Service(service.RPCService):
target = {'tenant_id': context.project_id}
policy.check('find_zone_imports', context, target)
if not criterion:
criterion = {
'task_type': 'IMPORT'
}
else:
criterion['task_type'] = 'IMPORT'
return self.storage.find_zone_imports(context, criterion, marker,
limit, sort_key, sort_dir)
@ -2886,9 +2890,13 @@ class Service(service.RPCService):
target = {'tenant_id': context.project_id}
policy.check('find_zone_exports', context, target)
if not criterion:
criterion = {
'task_type': 'EXPORT'
}
else:
criterion['task_type'] = 'EXPORT'
return self.storage.find_zone_exports(context, criterion, marker,
limit, sort_key, sort_dir)