diff --git a/dozer-types/protos/cloud.proto b/dozer-types/protos/cloud.proto index 5174d68772..de66ca8c5f 100644 --- a/dozer-types/protos/cloud.proto +++ b/dozer-types/protos/cloud.proto @@ -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); @@ -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; +}