proto/dam/v1/dam_secrets.proto (31 lines of code) (raw):
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax = "proto3";
// Package dam provides protocol buffer versions of the DAM API, allowing
// end points to receive requests and returns responses using these messages.
package dam.v1;
option go_package = "github.com/GoogleCloudPlatform/healthcare-federated-access-services/proto/dam/v1";
message DamSecrets {
string version = 1;
int64 revision = 2;
double commit_time = 3;
map<string, string> client_secrets = 4;
map<string, string> broker_secrets = 7;
map<string, string> public_token_keys = 5 [deprecated = true];
message GatekeeperTokenKeys {
string private_key = 1;
string public_key = 2;
}
GatekeeperTokenKeys gatekeeper_token_keys = 6 [deprecated = true];
}