Skip to content

Commit

Permalink
Add MIXED storage pool type (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-v authored Mar 11, 2021
1 parent 4c05408 commit aa77007
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion delfin/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ class ControllerStatus(object):
class StorageType(object):
BLOCK = 'block'
FILE = 'file'
UNIFIED = 'unified'

ALL = (BLOCK, FILE)
ALL = (BLOCK, FILE, UNIFIED)


class SyncStatus(object):
Expand Down
1 change: 1 addition & 0 deletions openapi-spec/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1934,6 +1934,7 @@ components:
enum:
- block
- file
- unified
description:
type: string
status:
Expand Down

0 comments on commit aa77007

Please sign in to comment.