Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

RetentionPeriod

Properties

Name Type Description Notes
log_volume int
log_volume_groups List[LogVolumeGroup] [optional]
retention_days int [optional]

Example

from instana_client.models.retention_period import RetentionPeriod

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

# convert the object into a dict
retention_period_dict = retention_period_instance.to_dict()
# create an instance of RetentionPeriod from a dict
retention_period_from_dict = RetentionPeriod.from_dict(retention_period_dict)

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