ConnectivityValidation¶
-
class
oci.data_connectivity.models.
ConnectivityValidation
(**kwargs)¶ Bases:
object
The information about connectivity validation results
Methods
__init__
(**kwargs)Initializes a new ConnectivityValidation object with values from keyword arguments. Attributes
error_message_count
Gets the error_message_count of this ConnectivityValidation. info_message_count
Gets the info_message_count of this ConnectivityValidation. total_message_count
[Required] Gets the total_message_count of this ConnectivityValidation. validation_messages
Gets the validation_messages of this ConnectivityValidation. warn_message_count
Gets the warn_message_count of this ConnectivityValidation. -
__init__
(**kwargs)¶ Initializes a new ConnectivityValidation object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - total_message_count (int) – The value to assign to the total_message_count property of this ConnectivityValidation.
- error_message_count (int) – The value to assign to the error_message_count property of this ConnectivityValidation.
- warn_message_count (int) – The value to assign to the warn_message_count property of this ConnectivityValidation.
- info_message_count (int) – The value to assign to the info_message_count property of this ConnectivityValidation.
- validation_messages (dict(str, list[ValidationMessage])) – The value to assign to the validation_messages property of this ConnectivityValidation.
-
error_message_count
¶ Gets the error_message_count of this ConnectivityValidation. Total number of validation error messages
Returns: The error_message_count of this ConnectivityValidation. Return type: int
-
info_message_count
¶ Gets the info_message_count of this ConnectivityValidation. Total number of validation information messages
Returns: The info_message_count of this ConnectivityValidation. Return type: int
-
total_message_count
¶ [Required] Gets the total_message_count of this ConnectivityValidation. Total number of validation messages
Returns: The total_message_count of this ConnectivityValidation. Return type: int
-
validation_messages
¶ Gets the validation_messages of this ConnectivityValidation. Detailed information of the connectivity validation.
Returns: The validation_messages of this ConnectivityValidation. Return type: dict(str, list[ValidationMessage])
-
warn_message_count
¶ Gets the warn_message_count of this ConnectivityValidation. Total number of validation warning messages
Returns: The warn_message_count of this ConnectivityValidation. Return type: int
-