From 849826703260970766af547ea1d042332b33d2b4 Mon Sep 17 00:00:00 2001 From: Don Browne Date: Tue, 18 Jun 2024 12:04:40 +0100 Subject: [PATCH] change comment to keep mdx happy --- docs/docs/ref/proto.md | 6 +++--- pkg/api/protobuf/go/minder/v1/minder.pb.go | 6 +++--- proto/minder/v1/minder.proto | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/docs/ref/proto.md b/docs/docs/ref/proto.md index b94cbd5c8c..59f0edb6d2 100644 --- a/docs/docs/ref/proto.md +++ b/docs/docs/ref/proto.md @@ -747,7 +747,7 @@ EvalResultAlert holds the alert details for a given rule evaluation | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| status | [string](#string) | | status is one of {on, off, error, skipped, not available} not using enums to mirror the behaviour of the existing API contracts. | +| status | [string](#string) | | status is one of (on, off, error, skipped, not available) not using enums to mirror the behaviour of the existing API contracts. | | details | [string](#string) | | details contains optional details about the alert. the structure and contents are alert specific, and are subject to change. | @@ -772,7 +772,7 @@ EvalResultAlert holds the alert details for a given rule evaluation | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| status | [string](#string) | | status is one of {success, error, failure, skipped, not available} not using enums to mirror the behaviour of the existing API contracts. | +| status | [string](#string) | | status is one of (success, error, failure, skipped, not available) not using enums to mirror the behaviour of the existing API contracts. | | details | [string](#string) | | details contains optional details about the remediation. the structure and contents are remediation specific, and are subject to change. | @@ -797,7 +797,7 @@ EvalResultAlert holds the alert details for a given rule evaluation | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| status | [string](#string) | | status is one of {success, error, failure, skipped} not using enums to mirror the behaviour of the existing API contracts. | +| status | [string](#string) | | status is one of (success, error, failure, skipped) not using enums to mirror the behaviour of the existing API contracts. | | details | [string](#string) | | details contains optional details about the evaluation. the structure and contents are rule type specific, and are subject to change. | diff --git a/pkg/api/protobuf/go/minder/v1/minder.pb.go b/pkg/api/protobuf/go/minder/v1/minder.pb.go index 898221dc77..f699efd9f8 100644 --- a/pkg/api/protobuf/go/minder/v1/minder.pb.go +++ b/pkg/api/protobuf/go/minder/v1/minder.pb.go @@ -10450,7 +10450,7 @@ type EvaluationHistoryStatus struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - // status is one of {success, error, failure, skipped} + // status is one of (success, error, failure, skipped) // not using enums to mirror the behaviour of the existing API contracts. Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` // details contains optional details about the evaluation. @@ -10509,7 +10509,7 @@ type EvaluationHistoryRemediation struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - // status is one of {success, error, failure, skipped, not available} + // status is one of (success, error, failure, skipped, not available) // not using enums to mirror the behaviour of the existing API contracts. Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` // details contains optional details about the remediation. @@ -10568,7 +10568,7 @@ type EvaluationHistoryAlert struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - // status is one of {on, off, error, skipped, not available} + // status is one of (on, off, error, skipped, not available) // not using enums to mirror the behaviour of the existing API contracts. Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` // details contains optional details about the alert. diff --git a/proto/minder/v1/minder.proto b/proto/minder/v1/minder.proto index 4ae79d957e..e121837d11 100644 --- a/proto/minder/v1/minder.proto +++ b/proto/minder/v1/minder.proto @@ -2496,7 +2496,7 @@ message EvaluationHistoryRule { } message EvaluationHistoryStatus { - // status is one of {success, error, failure, skipped} + // status is one of (success, error, failure, skipped) // not using enums to mirror the behaviour of the existing API contracts. string status = 1; @@ -2506,7 +2506,7 @@ message EvaluationHistoryStatus { } message EvaluationHistoryRemediation { - // status is one of {success, error, failure, skipped, not available} + // status is one of (success, error, failure, skipped, not available) // not using enums to mirror the behaviour of the existing API contracts. string status = 1; @@ -2516,7 +2516,7 @@ message EvaluationHistoryRemediation { } message EvaluationHistoryAlert { - // status is one of {on, off, error, skipped, not available} + // status is one of (on, off, error, skipped, not available) // not using enums to mirror the behaviour of the existing API contracts. string status = 1;