Skip to content

Commit

Permalink
feat: Add get configuration API
Browse files Browse the repository at this point in the history
  • Loading branch information
karolisg committed Sep 25, 2023
1 parent edb21fc commit df7d960
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions dozer-types/protos/cloud.proto
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ service DozerCloud {
rpc upsert_version(UpsertVersionRequest) returns (UpsertVersionResponse);
rpc set_current_version(SetCurrentVersionRequest) returns (SetCurrentVersionResponse);
rpc list_files(ListFilesRequest) returns (ListFilesResponse);
rpc get_configuration(GetConfigurationRequest) returns (GetConfigurationResponse);

// returns a list of all the steps for a deployment
rpc get_deployment_status(GetDeploymentStatusRequest) returns (GetDeploymentStatusResponse);
Expand Down Expand Up @@ -369,3 +370,12 @@ message GetEndpointCommandsSamplesRequest {
message GetEndpointCommandsSamplesResponse {
repeated CommandSample samples = 1;
}

message GetConfigurationRequest {
string app_id = 1;
optional uint32 version = 2;
}

message GetConfigurationResponse {
string config = 1;
}

0 comments on commit df7d960

Please sign in to comment.