Skip to content
Merged
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
9 changes: 8 additions & 1 deletion gotocompany/guardian/v1beta1/guardian.proto
Original file line number Diff line number Diff line change
Expand Up @@ -811,6 +811,7 @@ message ListGrantsRequest {
string q = 15;
repeated string group_ids = 16;
repeated string group_types = 17;
bool with_approvals = 18;
}

message ListGrantsResponse {
Expand Down Expand Up @@ -997,7 +998,7 @@ message PolicyAppealConfig {
}
repeated Question questions = 5;
bool allow_creator_details_failure = 6;

message MetadataSource {
string name = 1;
string description = 2;
Expand Down Expand Up @@ -1069,6 +1070,12 @@ message Policy {
IAM iam = 9;

PolicyAppealConfig appeal = 10;

message CustomSteps {
string type = 1;
google.protobuf.Value config = 2;
}
CustomSteps custom_steps = 11;
}

message AppealOptions {
Expand Down
Loading