Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

AnomalyRcaIdsMixin

Properties

Name Type Description Notes
anomaly_id str The unique identifier of the anomaly
rca_ids List[str] List of rca ids associated with the anomaly
actual_cost float Actual cost of the resource because of the anomaly
expected_cost float Expected cost of the resource without the anomaly

Example

from onelens_backend_client.models.anomaly_rca_ids_mixin import AnomalyRcaIdsMixin

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

# convert the object into a dict
anomaly_rca_ids_mixin_dict = anomaly_rca_ids_mixin_instance.to_dict()
# create an instance of AnomalyRcaIdsMixin from a dict
anomaly_rca_ids_mixin_form_dict = anomaly_rca_ids_mixin.from_dict(anomaly_rca_ids_mixin_dict)

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