From 780b42c1f12f63130f10957c10df5e0598dc1c5a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:10:41 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Bump=20GraphQL=20Schema=20-=2020?= =?UTF-8?q?241211000359=20(#77)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mondoo Tools --- enum.go | 11 +++++++++++ input.go | 6 ++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/enum.go b/enum.go index a791b0d..9f77d94 100644 --- a/enum.go +++ b/enum.go @@ -1099,6 +1099,17 @@ const ( RiskFactorActionDisable RiskFactorAction = "DISABLE" // Disable risk factor. ) +// ScoreRating +type ScoreRating string + +const ( + ScoreRatingCritical ScoreRating = "CRITICAL" // Critical - 0-10. + ScoreRatingHigh ScoreRating = "HIGH" // High - 11-30. + ScoreRatingMedium ScoreRating = "MEDIUM" // Medium - 31-60. + ScoreRatingLow ScoreRating = "LOW" // Low - 61-99. + ScoreRatingNone ScoreRating = "NONE" // None - 100. +) + // ScoreResultType type ScoreResultType string diff --git a/input.go b/input.go index 35c9b4c..64e5965 100644 --- a/input.go +++ b/input.go @@ -2384,15 +2384,17 @@ type SecurityDashboardPageInfo struct { // SentinelOneConfigurationOptionsInput represents sentinelOne integration input. type SentinelOneConfigurationOptionsInput struct { - // (Required.) + // The host of the SentinelOne integration. (Required.) Host String `json:"host"` - // (Required.) + // The account ID of the SentinelOne integration. (Required.) Account String `json:"account"` // certificate or client secret is required. (Optional.) Certificate *String `json:"certificate,omitempty"` // (Optional.) ClientSecret *String `json:"clientSecret,omitempty"` + // createAssets is a flag to create assets in the backend when they are not found. (Optional.) + CreateAssets *Boolean `json:"createAssets,omitempty"` } // ServiceAccountOrder