Skip to content

Commit

Permalink
add state and async op id
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkeycxy committed Apr 16, 2024
1 parent 18103b8 commit ef1fa99
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions temporal/api/cloud/identity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,13 @@ message Group {
string resource_version = 2;
// The group specification
GroupSpec spec = 3;
// The current state of the group
string state = 4;
// The id of the async operation that is creating/updating/deleting the group, if any
string async_operation_id = 5;
// The date and time when the group was created
google.protobuf.Timestamp created_time = 4;
google.protobuf.Timestamp created_time = 6;
// The date and time when the group was last modified
// Will not be set if the group has never been modified
google.protobuf.Timestamp last_modified_time = 5;
google.protobuf.Timestamp last_modified_time = 7;
}

0 comments on commit ef1fa99

Please sign in to comment.