Specify the expression to match, For example, endpoint.name contains health.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str |
from instana_client.models.match_expression_dto import MatchExpressionDTO
# TODO update the JSON string below
json = "{}"
# create an instance of MatchExpressionDTO from a JSON string
match_expression_dto_instance = MatchExpressionDTO.from_json(json)
# print the JSON string representation of the object
print(MatchExpressionDTO.to_json())
# convert the object into a dict
match_expression_dto_dict = match_expression_dto_instance.to_dict()
# create an instance of MatchExpressionDTO from a dict
match_expression_dto_from_dict = MatchExpressionDTO.from_dict(match_expression_dto_dict)