DependentSource¶
-
class
oci.log_analytics.models.
DependentSource
(**kwargs)¶ Bases:
object
A source that uses the parser, either directly or indirectly.
Methods
__init__
(**kwargs)Initializes a new DependentSource object with values from keyword arguments. Attributes
dependencies
Gets the dependencies of this DependentSource. entity_types
Gets the entity_types of this DependentSource. is_auto_association_enabled
Gets the is_auto_association_enabled of this DependentSource. is_system
Gets the is_system of this DependentSource. source_display_name
Gets the source_display_name of this DependentSource. source_id
Gets the source_id of this DependentSource. source_name
Gets the source_name of this DependentSource. source_type
Gets the source_type of this DependentSource. -
__init__
(**kwargs)¶ Initializes a new DependentSource object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - source_name (str) – The value to assign to the source_name property of this DependentSource.
- source_display_name (str) – The value to assign to the source_display_name property of this DependentSource.
- source_id (int) – The value to assign to the source_id property of this DependentSource.
- source_type (str) – The value to assign to the source_type property of this DependentSource.
- is_system (bool) – The value to assign to the is_system property of this DependentSource.
- is_auto_association_enabled (bool) – The value to assign to the is_auto_association_enabled property of this DependentSource.
- entity_types (list[oci.log_analytics.models.LogAnalyticsSourceEntityType]) – The value to assign to the entity_types property of this DependentSource.
- dependencies (list[oci.log_analytics.models.Dependency]) – The value to assign to the dependencies property of this DependentSource.
-
dependencies
¶ Gets the dependencies of this DependentSource. The list of dependencies defined by the source.
Returns: The dependencies of this DependentSource. Return type: list[oci.log_analytics.models.Dependency]
-
entity_types
¶ Gets the entity_types of this DependentSource. The entity types.
Returns: The entity_types of this DependentSource. Return type: list[oci.log_analytics.models.LogAnalyticsSourceEntityType]
-
is_auto_association_enabled
¶ Gets the is_auto_association_enabled of this DependentSource. A flag indicating whether or not the source is marked for auto association.
Returns: The is_auto_association_enabled of this DependentSource. Return type: bool
-
is_system
¶ Gets the is_system of this DependentSource. The system flag. A value of false denotes a custom, or user defined object. A value of true denotes a built in object.
Returns: The is_system of this DependentSource. Return type: bool
-
source_display_name
¶ Gets the source_display_name of this DependentSource. The source display name.
Returns: The source_display_name of this DependentSource. Return type: str
-
source_id
¶ Gets the source_id of this DependentSource. The source unique identifier.
Returns: The source_id of this DependentSource. Return type: int
-
source_name
¶ Gets the source_name of this DependentSource. The source name.
Returns: The source_name of this DependentSource. Return type: str
-
source_type
¶ Gets the source_type of this DependentSource. The source type.
Returns: The source_type of this DependentSource. Return type: str
-