LoggingSourceDetails¶
-
class
oci.sch.models.
LoggingSourceDetails
(**kwargs)¶ Bases:
oci.sch.models.source_details.SourceDetails
The Logging source. For configuration instructions, see Creating a Connector with a Logging Source.
Attributes
KIND_LOGGING
str(object=’’) -> str KIND_MONITORING
str(object=’’) -> str KIND_PLUGIN
str(object=’’) -> str KIND_STREAMING
str(object=’’) -> str kind
[Required] Gets the kind of this SourceDetails. log_sources
[Required] Gets the log_sources of this LoggingSourceDetails. Methods
__init__
(**kwargs)Initializes a new LoggingSourceDetails object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
KIND_LOGGING
= 'logging'¶
-
KIND_MONITORING
= 'monitoring'¶
-
KIND_PLUGIN
= 'plugin'¶
-
KIND_STREAMING
= 'streaming'¶
-
__init__
(**kwargs)¶ Initializes a new LoggingSourceDetails object with values from keyword arguments. The default value of the
kind
attribute of this class islogging
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - kind (str) – The value to assign to the kind property of this LoggingSourceDetails. Allowed values for this property are: “logging”, “monitoring”, “streaming”, “plugin”
- log_sources (list[oci.sch.models.LogSource]) – The value to assign to the log_sources property of this LoggingSourceDetails.
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
kind
¶ [Required] Gets the kind of this SourceDetails. The type discriminator.
Allowed values for this property are: “logging”, “monitoring”, “streaming”, “plugin”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The kind of this SourceDetails. Return type: str
-
log_sources
¶ [Required] Gets the log_sources of this LoggingSourceDetails. The logs for this Logging source.
Returns: The log_sources of this LoggingSourceDetails. Return type: list[oci.sch.models.LogSource]
-