ParserTestResultFieldValue¶
-
class
oci.log_analytics.models.ParserTestResultFieldValue(**kwargs)¶ Bases:
objectA parser test result field value object.
Methods
__init__(**kwargs)Initializes a new ParserTestResultFieldValue object with values from keyword arguments. Attributes
field_nameGets the field_name of this ParserTestResultFieldValue. parser_nameGets the parser_name of this ParserTestResultFieldValue. positionGets the position of this ParserTestResultFieldValue. sub_parser_resultGets the sub_parser_result of this ParserTestResultFieldValue. valueGets the value of this ParserTestResultFieldValue. -
__init__(**kwargs)¶ Initializes a new ParserTestResultFieldValue object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - position (int) – The value to assign to the position property of this ParserTestResultFieldValue.
- field_name (str) – The value to assign to the field_name property of this ParserTestResultFieldValue.
- value (str) – The value to assign to the value property of this ParserTestResultFieldValue.
- parser_name (str) – The value to assign to the parser_name property of this ParserTestResultFieldValue.
- sub_parser_result (oci.log_analytics.models.ParserTestResult) – The value to assign to the sub_parser_result property of this ParserTestResultFieldValue.
-
field_name¶ Gets the field_name of this ParserTestResultFieldValue. The field name.
Returns: The field_name of this ParserTestResultFieldValue. Return type: str
-
parser_name¶ Gets the parser_name of this ParserTestResultFieldValue. The sub parser name.
Returns: The parser_name of this ParserTestResultFieldValue. Return type: str
-
position¶ Gets the position of this ParserTestResultFieldValue. The field position.
Returns: The position of this ParserTestResultFieldValue. Return type: int
-
sub_parser_result¶ Gets the sub_parser_result of this ParserTestResultFieldValue.
Returns: The sub_parser_result of this ParserTestResultFieldValue. Return type: oci.log_analytics.models.ParserTestResult
-
value¶ Gets the value of this ParserTestResultFieldValue. The field value.
Returns: The value of this ParserTestResultFieldValue. Return type: str
-