Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

File metadata and controls

29 lines (20 loc) · 1.23 KB

FixedHttpPathSegmentMatchingRule

Properties

Name Type Description Notes
name str Given `/api/{version}/users` URI, `FIXED` names are `api` and `users` in order.

Example

from instana_client.models.fixed_http_path_segment_matching_rule import FixedHttpPathSegmentMatchingRule

# TODO update the JSON string below
json = "{}"
# create an instance of FixedHttpPathSegmentMatchingRule from a JSON string
fixed_http_path_segment_matching_rule_instance = FixedHttpPathSegmentMatchingRule.from_json(json)
# print the JSON string representation of the object
print(FixedHttpPathSegmentMatchingRule.to_json())

# convert the object into a dict
fixed_http_path_segment_matching_rule_dict = fixed_http_path_segment_matching_rule_instance.to_dict()
# create an instance of FixedHttpPathSegmentMatchingRule from a dict
fixed_http_path_segment_matching_rule_from_dict = FixedHttpPathSegmentMatchingRule.from_dict(fixed_http_path_segment_matching_rule_dict)

[Back to Model list] [Back to API list] [Back to README]