CryptoAssessmentFindingCategorySummary¶
-
class
oci.data_safe.models.CryptoAssessmentFindingCategorySummary(**kwargs)¶ Bases:
objectAggregate finding counts for one crypto finding category.
Methods
__init__(**kwargs)Initializes a new CryptoAssessmentFindingCategorySummary object with values from keyword arguments. Attributes
findings[Required] Gets the findings of this CryptoAssessmentFindingCategorySummary. pass_checks[Required] Gets the pass_checks of this CryptoAssessmentFindingCategorySummary. total_checks[Required] Gets the total_checks of this CryptoAssessmentFindingCategorySummary. -
__init__(**kwargs)¶ Initializes a new CryptoAssessmentFindingCategorySummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - pass_checks (int) – The value to assign to the pass_checks property of this CryptoAssessmentFindingCategorySummary.
- findings (int) – The value to assign to the findings property of this CryptoAssessmentFindingCategorySummary.
- total_checks (int) – The value to assign to the total_checks property of this CryptoAssessmentFindingCategorySummary.
-
findings¶ [Required] Gets the findings of this CryptoAssessmentFindingCategorySummary. Findings with FAIL or EVALUATE status.
Returns: The findings of this CryptoAssessmentFindingCategorySummary. Return type: int
-
pass_checks¶ [Required] Gets the pass_checks of this CryptoAssessmentFindingCategorySummary. Findings with PASS status.
Returns: The pass_checks of this CryptoAssessmentFindingCategorySummary. Return type: int
-
total_checks¶ [Required] Gets the total_checks of this CryptoAssessmentFindingCategorySummary. Total findings across all statuses in this category.
Returns: The total_checks of this CryptoAssessmentFindingCategorySummary. Return type: int
-