Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions buf.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
version: v2
deps:
- name: buf.build/bufbuild/protovalidate
commit: 63bb56e204954558946a641ef0d68910
digest: b5:ec5661b2855484eca2043fe61d27eb22673ab926ccd0e849531752eb17b08402fae1382705cee7f7b42d4d9ec56aff72bba7ec6835902cf6f86323c9ac682d16
commit: 6c6e0d3c608e4549802254a2eee81bc8
digest: b5:a7ca081f38656fc0f5aaa685cc111d3342876723851b47ca6b80cbb810cbb2380f8c444115c495ada58fa1f85eff44e68dc54a445761c195acdb5e8d9af675b6
- name: buf.build/googleapis/googleapis
commit: 83c0f6c19b2f4ea0b0fd84a80e753659
digest: b5:e9d077ad9d2eaa08a056108a15292a69548880d3a935781c498f2e591e60e531e49e1f5fc1d7356e5f989d3a8540e9885a02df18cb0cecc4ffa439fa4438a09e
commit: 61b203b9a9164be9a834f58c37be6f62
digest: b5:7811a98b35bd2e4ae5c3ac73c8b3d9ae429f3a790da15de188dc98fc2b77d6bb10e45711f14903af9553fa9821dff256054f2e4b7795789265bc476bec2f088c
- name: buf.build/grpc-ecosystem/grpc-gateway
commit: 4c5ba75caaf84e928b7137ae5c18c26a
digest: b5:c113e62fb3b29289af785866cae062b55ec8ae19ab3f08f3004098928fbca657730a06810b2012951294326b95669547194fa84476b9e9b688d4f8bf77a0691d
4 changes: 2 additions & 2 deletions service/policy/attributes/attributes.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ message GetAttributeRequest {
// Deprecated
string id = 1 [
deprecated = true,
(buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE,
(buf.validate.field).ignore = IGNORE_IF_ZERO_VALUE,
(buf.validate.field).string.uuid = true
];

Expand Down Expand Up @@ -192,7 +192,7 @@ message GetAttributeValueRequest {
// Deprecated
string id = 1 [
deprecated = true,
(buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE,
(buf.validate.field).ignore = IGNORE_IF_ZERO_VALUE,
(buf.validate.field).string.uuid = true
];

Expand Down
4 changes: 2 additions & 2 deletions service/policy/kasregistry/key_access_server_registry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ message GetKeyAccessServerRequest {
// Deprecated
string id = 1 [
deprecated = true,
(buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE,
(buf.validate.field).ignore = IGNORE_IF_ZERO_VALUE,
(buf.validate.field).string.uuid = true
];

Expand Down Expand Up @@ -244,7 +244,7 @@ message ListPublicKeyMappingRequest {
// Optional Public Key ID
string public_key_id = 4 [
(buf.validate.field).string.uuid = true,
(buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE
(buf.validate.field).ignore = IGNORE_IF_ZERO_VALUE
];

// Optional
Expand Down
2 changes: 1 addition & 1 deletion service/policy/namespaces/namespaces.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ message GetNamespaceRequest {
// Deprecated
string id = 1 [
deprecated = true,
(buf.validate.field).ignore = IGNORE_IF_DEFAULT_VALUE,
(buf.validate.field).ignore = IGNORE_IF_ZERO_VALUE,
(buf.validate.field).string.uuid = true
];

Expand Down
Loading