Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.38 KB

EnableTenantAnomalySettingsResponse.md

File metadata and controls

31 lines (22 loc) · 1.38 KB

EnableTenantAnomalySettingsResponse

Properties

Name Type Description Notes
config_overrides AnomalyLogicOperation [optional]
state TenantAnomalyState The state of the policy template.
id str The unique identifier of the tenant policy.

Example

from onelens_backend_client.models.enable_tenant_anomaly_settings_response import EnableTenantAnomalySettingsResponse

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

# convert the object into a dict
enable_tenant_anomaly_settings_response_dict = enable_tenant_anomaly_settings_response_instance.to_dict()
# create an instance of EnableTenantAnomalySettingsResponse from a dict
enable_tenant_anomaly_settings_response_form_dict = enable_tenant_anomaly_settings_response.from_dict(enable_tenant_anomaly_settings_response_dict)

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