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