AssessorCheckAction¶
-
class
oci.database_migration.models.AssessorCheckAction(**kwargs)¶ Bases:
objectAssessor Check Action
Attributes
NAME_ACKNOWLEDGEA constant which can be used with the name property of a AssessorCheckAction. NAME_APPROVEA constant which can be used with the name property of a AssessorCheckAction. NAME_DISAPPROVEA constant which can be used with the name property of a AssessorCheckAction. NAME_UNACKNOWLEDGEA constant which can be used with the name property of a AssessorCheckAction. descriptionGets the description of this AssessorCheckAction. display_name[Required] Gets the display_name of this AssessorCheckAction. name[Required] Gets the name of this AssessorCheckAction. user_defined_propertiesGets the user_defined_properties of this AssessorCheckAction. Methods
__init__(**kwargs)Initializes a new AssessorCheckAction object with values from keyword arguments. -
NAME_ACKNOWLEDGE= 'ACKNOWLEDGE'¶ A constant which can be used with the name property of a AssessorCheckAction. This constant has a value of “ACKNOWLEDGE”
-
NAME_APPROVE= 'APPROVE'¶ A constant which can be used with the name property of a AssessorCheckAction. This constant has a value of “APPROVE”
-
NAME_DISAPPROVE= 'DISAPPROVE'¶ A constant which can be used with the name property of a AssessorCheckAction. This constant has a value of “DISAPPROVE”
-
NAME_UNACKNOWLEDGE= 'UNACKNOWLEDGE'¶ A constant which can be used with the name property of a AssessorCheckAction. This constant has a value of “UNACKNOWLEDGE”
-
__init__(**kwargs)¶ Initializes a new AssessorCheckAction object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this AssessorCheckAction. Allowed values for this property are: “APPROVE”, “DISAPPROVE”, “ACKNOWLEDGE”, “UNACKNOWLEDGE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- display_name (str) – The value to assign to the display_name property of this AssessorCheckAction.
- description (str) – The value to assign to the description property of this AssessorCheckAction.
- user_defined_properties (oci.database_migration.models.UserDefinedProperties) – The value to assign to the user_defined_properties property of this AssessorCheckAction.
-
description¶ Gets the description of this AssessorCheckAction. A user-friendly description. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
Returns: The description of this AssessorCheckAction. Return type: str
-
display_name¶ [Required] Gets the display_name of this AssessorCheckAction. A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
Returns: The display_name of this AssessorCheckAction. Return type: str
-
name¶ [Required] Gets the name of this AssessorCheckAction. The Assessor Check Action Name.
Allowed values for this property are: “APPROVE”, “DISAPPROVE”, “ACKNOWLEDGE”, “UNACKNOWLEDGE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The name of this AssessorCheckAction. Return type: str
-
user_defined_properties¶ Gets the user_defined_properties of this AssessorCheckAction.
Returns: The user_defined_properties of this AssessorCheckAction. Return type: oci.database_migration.models.UserDefinedProperties
-