Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 646073053
Change-Id: Ia1fa82b08fbc5c79f30069d4279a801a1de8f88c
  • Loading branch information
Google Cloud Healthcare Team authored and copybara-github committed Jun 24, 2024
1 parent 9abbb6c commit f43dbfc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion proto/dam/v1/dam_secrets.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ syntax = "proto3";
// end points to receive requests and returns responses using these messages.
package dam.v1;

import "storage/datapol/annotations/proto/semantic_annotations.proto";

option go_package = "github.com/GoogleCloudPlatform/healthcare-federated-access-services/proto/dam/v1";

message DamSecrets {
Expand All @@ -30,7 +32,7 @@ message DamSecrets {
map<string, string> public_token_keys = 5 [deprecated = true];

message GatekeeperTokenKeys {
string private_key = 1;
string private_key = 1 [(datapol.semantic_type) = ST_SECURITY_MATERIAL];
string public_key = 2;
}
GatekeeperTokenKeys gatekeeper_token_keys = 6 [deprecated = true];
Expand Down
3 changes: 2 additions & 1 deletion proto/dam/v1/dam_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ syntax = "proto3";
// end points to receive requests and returns responses using these messages.
package dam.v1;

import "storage/datapol/annotations/proto/semantic_annotations.proto";
import "proto/common/v1/common.proto"; /* copybara-comment */
import "proto/common/v1/oauthclient.proto"; /* copybara-comment */
import "proto/process/v1/process.proto"; /* copybara-comment */
Expand Down Expand Up @@ -382,7 +383,7 @@ message ConfigViewRequest {
message ConfigTrustedIssuerRequest {
TrustedIssuer item = 1;
// client_secret is write only field.
string client_secret = 3;
string client_secret = 3 [(datapol.semantic_type) = ST_SECURITY_MATERIAL];
ConfigModification modification = 2;
}

Expand Down

0 comments on commit f43dbfc

Please sign in to comment.