DataVisibility¶
-
class
oci.threat_intelligence.models.
DataVisibility
(**kwargs)¶ Bases:
object
The visibility level of attribution data, including its Traffic Light Protocol (TLP) color.
Attributes
TLP_NAME_TLP_AMBER
A constant which can be used with the tlp_name property of a DataVisibility. TLP_NAME_TLP_GREEN
A constant which can be used with the tlp_name property of a DataVisibility. TLP_NAME_TLP_INTERNAL_AUDIT
A constant which can be used with the tlp_name property of a DataVisibility. TLP_NAME_TLP_RED
A constant which can be used with the tlp_name property of a DataVisibility. TLP_NAME_TLP_WHITE
A constant which can be used with the tlp_name property of a DataVisibility. name
[Required] Gets the name of this DataVisibility. tlp_name
[Required] Gets the tlp_name of this DataVisibility. Methods
__init__
(**kwargs)Initializes a new DataVisibility object with values from keyword arguments. -
TLP_NAME_TLP_AMBER
= 'TLP_AMBER'¶ A constant which can be used with the tlp_name property of a DataVisibility. This constant has a value of “TLP_AMBER”
-
TLP_NAME_TLP_GREEN
= 'TLP_GREEN'¶ A constant which can be used with the tlp_name property of a DataVisibility. This constant has a value of “TLP_GREEN”
-
TLP_NAME_TLP_INTERNAL_AUDIT
= 'TLP_INTERNAL_AUDIT'¶ A constant which can be used with the tlp_name property of a DataVisibility. This constant has a value of “TLP_INTERNAL_AUDIT”
-
TLP_NAME_TLP_RED
= 'TLP_RED'¶ A constant which can be used with the tlp_name property of a DataVisibility. This constant has a value of “TLP_RED”
-
TLP_NAME_TLP_WHITE
= 'TLP_WHITE'¶ A constant which can be used with the tlp_name property of a DataVisibility. This constant has a value of “TLP_WHITE”
-
__init__
(**kwargs)¶ Initializes a new DataVisibility 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 DataVisibility.
- tlp_name (str) – The value to assign to the tlp_name property of this DataVisibility. Allowed values for this property are: “TLP_INTERNAL_AUDIT”, “TLP_WHITE”, “TLP_GREEN”, “TLP_AMBER”, “TLP_RED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
name
¶ [Required] Gets the name of this DataVisibility. The name of the visibility level.
Returns: The name of this DataVisibility. Return type: str
-
tlp_name
¶ [Required] Gets the tlp_name of this DataVisibility. The Traffic Light Protocol (TLP) color of the visibility level.
Allowed values for this property are: “TLP_INTERNAL_AUDIT”, “TLP_WHITE”, “TLP_GREEN”, “TLP_AMBER”, “TLP_RED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The tlp_name of this DataVisibility. Return type: str
-