FieldArgument¶
- 
class oci.log_analytics.models.FieldArgument(**kwargs)¶
- Bases: - oci.log_analytics.models.argument.Argument- QueryString argument of type field. - Attributes - TYPE_FIELD- str(object=’’) -> str - TYPE_LITERAL- str(object=’’) -> str - type- [Required] Gets the type of this Argument. - value- Gets the value of this FieldArgument. - Methods - __init__(**kwargs)- Initializes a new FieldArgument 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 FieldArgument object with values from keyword arguments. The default value of the - typeattribute of this class is- FIELDand 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 FieldArgument. Allowed values for this property are: “FIELD”, “LITERAL”
- value (oci.log_analytics.models.AbstractField) – The value to assign to the value property of this FieldArgument.
 
 - 
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 FieldArgument. - Returns: - The value of this FieldArgument. - Return type: - oci.log_analytics.models.AbstractField 
 
-