Skip to content

Commit

Permalink
Add createdAt field in Entry type (#38)
Browse files Browse the repository at this point in the history
Signed-off-by: Guilherme Carvalho <[email protected]>
  • Loading branch information
guilhermocc authored and azdagron committed Apr 14, 2023
1 parent a8e1544 commit 26eac54
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 33 deletions.
88 changes: 55 additions & 33 deletions proto/spire/api/types/entry.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions proto/spire/api/types/entry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ message Entry {
// An operator-specified string used to provide guidance on how this
// identity should be used by a workload when more than one SVID is returned.
string hint = 14;

// When the entry was created (seconds since Unix epoch).
int64 created_at = 15;
}

// Field mask for Entry fields
Expand Down Expand Up @@ -103,4 +106,7 @@ message EntryMask {

// hint field mask
bool hint = 14;

// created_at field mask
bool created_at = 15;
}

0 comments on commit 26eac54

Please sign in to comment.