From 76bd1bb212177824379c485c553e54530a854009 Mon Sep 17 00:00:00 2001 From: George Goldberg Date: Mon, 2 Oct 2017 12:43:21 +0100 Subject: PLT-7705: API to get data retention policy. (#7539) * PLT-7705: API to get data retention policy. * Fix review comments. --- model/client4.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'model/client4.go') diff --git a/model/client4.go b/model/client4.go index eb8568a5e..3bd3b2125 100644 --- a/model/client4.go +++ b/model/client4.go @@ -254,6 +254,10 @@ func (c *Client4) GetBrandRoute() string { return fmt.Sprintf("/brand") } +func (c *Client4) GetDataRetentionRoute() string { + return fmt.Sprintf("/data_retention") +} + func (c *Client4) GetElasticsearchRoute() string { return fmt.Sprintf("/elasticsearch") } @@ -2747,6 +2751,18 @@ func (c *Client4) PurgeElasticsearchIndexes() (bool, *Response) { } } +// Data Retention Section + +// GetDataRetentionPolicy will get the current server data retention policy details. +func (c *Client4) GetDataRetentionPolicy() (*DataRetentionPolicy, *Response) { + if r, err := c.DoApiGet(c.GetDataRetentionRoute()+"/policy", ""); err != nil { + return nil, BuildErrorResponse(r, err) + } else { + defer closeBody(r) + return DataRetentionPolicyFromJson(r.Body), BuildResponse(r) + } +} + // Commands Section // CreateCommand will create a new command if the user have the right permissions. -- cgit v1.2.3-1-g7c22