Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.69 KB

File metadata and controls

38 lines (29 loc) · 1.69 KB

SLOConfigWithRBACTag

Properties

Name Type Description Notes
created_date datetime Created date of Service Levels Objective Configuration [optional]
entity SloEntity
id str Service Levels Objective Configuration ID [optional]
indicator ServiceLevelIndicator
last_updated datetime Last updated date of Service Levels Objective Configuration [optional]
name str Name of the Service Levels Objective Configuration
rbac_tags List[ApiTag] [optional]
tags List[str] List of tags associated with Service Levels Objective Configuration
target float Service Levels Objective Configuration Target
time_window TimeWindow

Example

from instana_client.models.slo_config_with_rbac_tag import SLOConfigWithRBACTag

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

# convert the object into a dict
slo_config_with_rbac_tag_dict = slo_config_with_rbac_tag_instance.to_dict()
# create an instance of SLOConfigWithRBACTag from a dict
slo_config_with_rbac_tag_from_dict = SLOConfigWithRBACTag.from_dict(slo_config_with_rbac_tag_dict)

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