LiteralArgument

class oci.log_analytics.models.LiteralArgument(**kwargs)

Bases: oci.log_analytics.models.argument.Argument

QueryString argument of type literal.

Attributes

TYPE_FIELD str(object=’’) -> str
TYPE_LITERAL str(object=’’) -> str
data_type Gets the data_type of this LiteralArgument.
type [Required] Gets the type of this Argument.
value Gets the value of this LiteralArgument.

Methods

__init__(**kwargs) Initializes a new LiteralArgument 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.
TYPE_FIELD = 'FIELD'
TYPE_LITERAL = 'LITERAL'
__init__(**kwargs)

Initializes a new LiteralArgument object with values from keyword arguments. The default value of the type attribute of this class is LITERAL and it should not be changed. 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 LiteralArgument. Allowed values for this property are: “FIELD”, “LITERAL”
  • data_type (str) – The value to assign to the data_type property of this LiteralArgument.
  • value (object) – The value to assign to the value property of this LiteralArgument.
data_type

Gets the data_type of this LiteralArgument. Data type of specified literal in queryString.

Returns:The data_type of this LiteralArgument.
Return type:str
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.

type

[Required] Gets the type of this Argument. Classification of argument type.

Allowed values for this property are: “FIELD”, “LITERAL”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The type of this Argument.
Return type:str
value

Gets the value of this LiteralArgument. Literal value specified in queryString.

Returns:The value of this LiteralArgument.
Return type:object