-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port add & delete volume redfish api
- Loading branch information
1 parent
8d6b86d
commit c9c5287
Showing
15 changed files
with
169 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,44 @@ | ||
{ | ||
"copyright": "Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.", | ||
"definitions": { | ||
"drivers": { | ||
"description": "Specify drivers for adding volume", | ||
"drives": { | ||
"description": "Specify drives for adding volume", | ||
"type": "string" | ||
}, | ||
"shutdownType": { | ||
"description": "Specify the type of system shutdown: Graceful(0), Forced(1), default value is 0", | ||
"type": "integer", | ||
"enum": [0,1] | ||
}, | ||
"ipAddress": { | ||
"description": "Specify ipAddress for obm setting", | ||
"type": "string" | ||
}, | ||
"username": { | ||
"description": "Specify username for obm setting", | ||
"type": "string" | ||
}, | ||
"password": { | ||
"description": "Specify password for obm setting", | ||
"type": "string" | ||
} | ||
}, | ||
"properties": { | ||
"drivers": { | ||
"$ref": "#/definitions/drivers" | ||
"drives": { | ||
"$ref": "#/definitions/drives" | ||
}, | ||
"shutdownType": { | ||
"$ref": "#/definitions/shutdownType" | ||
}, | ||
"ipAddress": { | ||
"$ref": "#/definitions/ipAddress" | ||
}, | ||
"username": { | ||
"$ref": "#/definitions/username" | ||
}, | ||
"password": { | ||
"$ref": "#/definitions/password" | ||
} | ||
}, | ||
"required": ["drivers"] | ||
"required": ["drives"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.