Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No public description #612

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion proto/google/events/cloud/alloydb/v1/data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
import "google/type/dayofweek.proto";
import "google/type/timeofday.proto";
import "storage/datapol/annotations/proto/semantic_annotations.proto";

option csharp_namespace = "Google.Events.Protobuf.Cloud.AlloyDb.V1";
option php_namespace = "Google\\Events\\Cloud\\AlloyDb\\V1";
Expand All @@ -32,7 +33,7 @@ message UserPassword {
string user = 1;

// The initial password for the user.
string password = 2;
string password = 2 [(datapol.semantic_type) = ST_ACCOUNT_CREDENTIAL];
}

// Subset of the source instance configuration that is available when reading
Expand Down
3 changes: 2 additions & 1 deletion proto/google/events/cloud/batch/v1/data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package google.events.cloud.batch.v1;

import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
import "storage/datapol/annotations/proto/semantic_annotations.proto";

option csharp_namespace = "Google.Events.Protobuf.Cloud.Batch.V1";
option php_namespace = "Google\\Events\\Cloud\\Batch\\V1";
Expand Down Expand Up @@ -177,7 +178,7 @@ message Runnable {
// Optional password for logging in to a docker registry. If password
// matches `projects/*/secrets/*/versions/*` then Batch will read the
// password from the Secret Manager;
string password = 11;
string password = 11 [(datapol.semantic_type) = ST_ACCOUNT_CREDENTIAL];
}

// Script runnable.
Expand Down
Loading