Dependency¶
- 
class oci.log_analytics.models.Dependency(**kwargs)¶
- Bases: - object- Details of a dependency an object or feature defines on another. For example, a source may depend on a parser either directly or indirectly. - Methods - __init__(**kwargs)- Initializes a new Dependency object with values from keyword arguments. - Attributes - reference_display_name- Gets the reference_display_name of this Dependency. - reference_id- Gets the reference_id of this Dependency. - reference_name- Gets the reference_name of this Dependency. - reference_type- Gets the reference_type of this Dependency. - type- Gets the type of this Dependency. - 
__init__(**kwargs)¶
- Initializes a new Dependency object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - type (str) – The value to assign to the type property of this Dependency.
- reference_type (str) – The value to assign to the reference_type property of this Dependency.
- reference_id (int) – The value to assign to the reference_id property of this Dependency.
- reference_name (str) – The value to assign to the reference_name property of this Dependency.
- reference_display_name (str) – The value to assign to the reference_display_name property of this Dependency.
 
 - 
reference_display_name¶
- Gets the reference_display_name of this Dependency. The display name of the dependency object - Returns: - The reference_display_name of this Dependency. - Return type: - str 
 - 
reference_id¶
- Gets the reference_id of this Dependency. The unique identifier of the reference, if available. - Returns: - The reference_id of this Dependency. - Return type: - int 
 - 
reference_name¶
- Gets the reference_name of this Dependency. The name of the dependency object - Returns: - The reference_name of this Dependency. - Return type: - str 
 - 
reference_type¶
- Gets the reference_type of this Dependency. The type of reference that defines the dependency. - Returns: - The reference_type of this Dependency. - Return type: - str 
 - 
type¶
- Gets the type of this Dependency. The dependency type. - Returns: - The type of this Dependency. - Return type: - str 
 
-