Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 473876088
  • Loading branch information
ecclesia-robot authored and copybara-github committed Oct 5, 2022
1 parent aa69759 commit 00f88b7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ecclesia/lib/redfish/proto/redfish_v1.proto
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ message Response {
uint32 code = 2;
}

message GetOverridePolicyRequest {}

message GetOverridePolicyResponse {
// Contents of the policy file as raw bytes. Encoding is defined by the source
// file.
bytes policy = 1;
}

// The dynamic Redfish service definition.
service RedfishV1 {
// Sends a GET request
Expand All @@ -49,4 +57,7 @@ service RedfishV1 {
rpc Put(Request) returns (Response) {}
// Sends a DELETE request
rpc Delete(Request) returns (Response) {}
// Get Redfish override data
rpc GetOverridePolicy(GetOverridePolicyRequest)
returns (GetOverridePolicyResponse) {}
}

0 comments on commit 00f88b7

Please sign in to comment.