Skip to content

Commit 0de2a54

Browse files
Add antero mock (#7)
* Add Antero mockup
1 parent 69e520a commit 0de2a54

File tree

2,592 files changed

+121867
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,592 files changed

+121867
-1
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0
1+
1.5.2

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,18 @@ Fixed - for any bug fixes
2424
Security - in case of vulnerabilities
2525
-->
2626

27+
## [1.5.2] - 2023-10/30
28+
29+
### Added
30+
31+
- Added an Antero mockup
32+
33+
## [1.5.1] - 2023-08-17
34+
35+
### Added
36+
37+
- Added an Open BMC mockup
38+
2739
## [1.5.0] - 2023-04-19
2840
### Fixed
2941
- Fixed delete for redfish subscriptions

mockups/EX4252/$metadata/index.xml

Whitespace-only changes.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"@odata.etag": "W/\"1697739578\"",
3+
"@odata.id": "/redfish/v1/AccountService/Accounts/1",
4+
"@odata.type": "#ManagerAccount.v1_1_1.ManagerAccount",
5+
"Description": "Default Account",
6+
"Enabled": true,
7+
"Id": "1",
8+
"Links": {
9+
"Role": {
10+
"@odata.id": "/redfish/v1/AccountService/Roles/Administrator"
11+
}
12+
},
13+
"Locked": false,
14+
"Name": "Default Account",
15+
"RoleId": "Administrator",
16+
"UserName": "root"
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"@odata.etag": "W/\"1697739578\"",
3+
"@odata.id": "/redfish/v1/AccountService/Accounts/2",
4+
"@odata.type": "#ManagerAccount.v1_1_1.ManagerAccount",
5+
"Description": "An account for operational hardware control",
6+
"Enabled": true,
7+
"Id": "2",
8+
"Links": {
9+
"Role": {
10+
"@odata.id": "/redfish/v1/AccountService/Roles/Operator"
11+
}
12+
},
13+
"Locked": false,
14+
"Name": "Operator Account",
15+
"RoleId": "Operator",
16+
"UserName": "operator"
17+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"@odata.etag": "W/\"1697739578\"",
3+
"@odata.id": "/redfish/v1/AccountService/Accounts/3",
4+
"@odata.type": "#ManagerAccount.v1_1_1.ManagerAccount",
5+
"Description": "An unprivileged, read-only account",
6+
"Enabled": true,
7+
"Id": "3",
8+
"Links": {
9+
"Role": {
10+
"@odata.id": "/redfish/v1/AccountService/Roles/ReadOnly"
11+
}
12+
},
13+
"Locked": false,
14+
"Name": "Guest Account",
15+
"RoleId": "ReadOnly",
16+
"UserName": "guest"
17+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"@odata.etag": "W/\"1697739578\"",
3+
"@odata.id": "/redfish/v1/AccountService/Accounts",
4+
"@odata.type": "#ManagerAccountCollection.ManagerAccountCollection",
5+
"Description": "Collection for Manager Accounts",
6+
"Members": [
7+
{
8+
"@odata.id": "/redfish/v1/AccountService/Accounts/3"
9+
},
10+
{
11+
"@odata.id": "/redfish/v1/AccountService/Accounts/2"
12+
},
13+
{
14+
"@odata.id": "/redfish/v1/AccountService/Accounts/1"
15+
}
16+
],
17+
"Members@odata.count": 3,
18+
"Name": "Accounts Collection"
19+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"@odata.etag": "W/\"1697739578\"",
3+
"@odata.id": "/redfish/v1/AccountService/Roles/Administrator",
4+
"@odata.type": "#Role.v1_2_0.Role",
5+
"AssignedPrivileges": [
6+
"ConfigureManager",
7+
"ConfigureUsers",
8+
"Login",
9+
"ConfigureSelf",
10+
"ConfigureComponents"
11+
],
12+
"Description": "Admin User Role",
13+
"Id": "Administrator",
14+
"IsPredefined": true,
15+
"Name": "User Role",
16+
"OemPrivileges": [
17+
"ConfigureManager",
18+
"ConfigureUsers",
19+
"Login",
20+
"ConfigureSelf",
21+
"ConfigureComponents"
22+
]
23+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"@odata.etag": "W/\"1697739578\"",
3+
"@odata.id": "/redfish/v1/AccountService/Roles/Operator",
4+
"@odata.type": "#Role.v1_2_0.Role",
5+
"AssignedPrivileges": [
6+
"ConfigureComponents",
7+
"Login",
8+
"ConfigureSelf"
9+
],
10+
"Description": "Operator User Role",
11+
"Id": "Operator",
12+
"IsPredefined": true,
13+
"Name": "User Role",
14+
"OemPrivileges": [
15+
"ConfigureComponents",
16+
"Login",
17+
"ConfigureSelf"
18+
]
19+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"@odata.etag": "W/\"1697739578\"",
3+
"@odata.id": "/redfish/v1/AccountService/Roles/ReadOnly",
4+
"@odata.type": "#Role.v1_2_0.Role",
5+
"AssignedPrivileges": [
6+
"Login",
7+
"ConfigureSelf"
8+
],
9+
"Description": "ReadOnlyUser User Role",
10+
"Id": "ReadOnly",
11+
"IsPredefined": true,
12+
"Name": "User Role",
13+
"OemPrivileges": [
14+
"Login",
15+
"ConfigureSelf"
16+
]
17+
}

0 commit comments

Comments
 (0)