LogAnalyticsCategory¶
- 
class oci.log_analytics.models.LogAnalyticsCategory(**kwargs)¶
- Bases: - object- A category into which resources can be placed. - Methods - __init__(**kwargs)- Initializes a new LogAnalyticsCategory object with values from keyword arguments. - Attributes - description- Gets the description of this LogAnalyticsCategory. - display_name- Gets the display_name of this LogAnalyticsCategory. - is_system- Gets the is_system of this LogAnalyticsCategory. - name- Gets the name of this LogAnalyticsCategory. - type- Gets the type of this LogAnalyticsCategory. - 
__init__(**kwargs)¶
- Initializes a new LogAnalyticsCategory 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 LogAnalyticsCategory.
- description (str) – The value to assign to the description property of this LogAnalyticsCategory.
- display_name (str) – The value to assign to the display_name property of this LogAnalyticsCategory.
- type (str) – The value to assign to the type property of this LogAnalyticsCategory.
- is_system (bool) – The value to assign to the is_system property of this LogAnalyticsCategory.
 
 - 
description¶
- Gets the description of this LogAnalyticsCategory. The category description. - Returns: - The description of this LogAnalyticsCategory. - Return type: - str 
 - 
display_name¶
- Gets the display_name of this LogAnalyticsCategory. The category display name. - Returns: - The display_name of this LogAnalyticsCategory. - Return type: - str 
 - 
is_system¶
- Gets the is_system of this LogAnalyticsCategory. The system flag. A value of false denotes a user-created category. A value of true denotes an Oracle-defined category. - Returns: - The is_system of this LogAnalyticsCategory. - Return type: - bool 
 - 
name¶
- Gets the name of this LogAnalyticsCategory. The unique name that identifies the category. - Returns: - The name of this LogAnalyticsCategory. - Return type: - str 
 - 
type¶
- Gets the type of this LogAnalyticsCategory. The category type. Values include “PRODUCT”, “TIER”, “VENDOR” and “GENERIC”. - Returns: - The type of this LogAnalyticsCategory. - Return type: - str 
 
-