AdvisorReport¶
-
class
oci.database_migration.models.
AdvisorReport
(**kwargs)¶ Bases:
object
Premigration Advisor report details.
Attributes
RESULT_BLOCKER
A constant which can be used with the result property of a AdvisorReport. RESULT_FATAL
A constant which can be used with the result property of a AdvisorReport. RESULT_INFORMATIONAL
A constant which can be used with the result property of a AdvisorReport. RESULT_PASS
A constant which can be used with the result property of a AdvisorReport. RESULT_WARNING
A constant which can be used with the result property of a AdvisorReport. number_of_fatal
[Required] Gets the number_of_fatal of this AdvisorReport. number_of_fatal_blockers
[Required] Gets the number_of_fatal_blockers of this AdvisorReport. number_of_informational_results
[Required] Gets the number_of_informational_results of this AdvisorReport. number_of_warnings
[Required] Gets the number_of_warnings of this AdvisorReport. report_location_details
Gets the report_location_details of this AdvisorReport. result
[Required] Gets the result of this AdvisorReport. Methods
__init__
(**kwargs)Initializes a new AdvisorReport object with values from keyword arguments. -
RESULT_BLOCKER
= 'BLOCKER'¶ A constant which can be used with the result property of a AdvisorReport. This constant has a value of “BLOCKER”
-
RESULT_FATAL
= 'FATAL'¶ A constant which can be used with the result property of a AdvisorReport. This constant has a value of “FATAL”
-
RESULT_INFORMATIONAL
= 'INFORMATIONAL'¶ A constant which can be used with the result property of a AdvisorReport. This constant has a value of “INFORMATIONAL”
-
RESULT_PASS
= 'PASS'¶ A constant which can be used with the result property of a AdvisorReport. This constant has a value of “PASS”
-
RESULT_WARNING
= 'WARNING'¶ A constant which can be used with the result property of a AdvisorReport. This constant has a value of “WARNING”
-
__init__
(**kwargs)¶ Initializes a new AdvisorReport object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - report_location_details (oci.database_migration.models.AdvisorReportLocationDetails) – The value to assign to the report_location_details property of this AdvisorReport.
- result (str) – The value to assign to the result property of this AdvisorReport. Allowed values for this property are: “FATAL”, “BLOCKER”, “WARNING”, “INFORMATIONAL”, “PASS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- number_of_fatal (int) – The value to assign to the number_of_fatal property of this AdvisorReport.
- number_of_fatal_blockers (int) – The value to assign to the number_of_fatal_blockers property of this AdvisorReport.
- number_of_warnings (int) – The value to assign to the number_of_warnings property of this AdvisorReport.
- number_of_informational_results (int) – The value to assign to the number_of_informational_results property of this AdvisorReport.
-
number_of_fatal
¶ [Required] Gets the number_of_fatal of this AdvisorReport. Number of Fatal results in the advisor report.
Returns: The number_of_fatal of this AdvisorReport. Return type: int
-
number_of_fatal_blockers
¶ [Required] Gets the number_of_fatal_blockers of this AdvisorReport. Number of Fatal Blocker results in the advisor report.
Returns: The number_of_fatal_blockers of this AdvisorReport. Return type: int
-
number_of_informational_results
¶ [Required] Gets the number_of_informational_results of this AdvisorReport. Number of Informational results in the advisor report.
Returns: The number_of_informational_results of this AdvisorReport. Return type: int
-
number_of_warnings
¶ [Required] Gets the number_of_warnings of this AdvisorReport. Number of Warning results in the advisor report.
Returns: The number_of_warnings of this AdvisorReport. Return type: int
-
report_location_details
¶ Gets the report_location_details of this AdvisorReport.
Returns: The report_location_details of this AdvisorReport. Return type: oci.database_migration.models.AdvisorReportLocationDetails
-
result
¶ [Required] Gets the result of this AdvisorReport. Premigration Advisor result.
Allowed values for this property are: “FATAL”, “BLOCKER”, “WARNING”, “INFORMATIONAL”, “PASS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The result of this AdvisorReport. Return type: str
-