From 30f496e3dbfd89b175aeb4964b03d0444f71b04a Mon Sep 17 00:00:00 2001 From: wasuradananjith Date: Fri, 4 Dec 2020 13:31:52 +0530 Subject: [PATCH] Add missing params for endpoint configs --- import-export-cli/specs/params/params.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/import-export-cli/specs/params/params.go b/import-export-cli/specs/params/params.go index f38746e1e..fa4219ef2 100644 --- a/import-export-cli/specs/params/params.go +++ b/import-export-cli/specs/params/params.go @@ -18,6 +18,18 @@ type Configuration struct { RetryDelay *int `yaml:"retryDelay" json:"retryDelay,string"` // Factor used for config Factor *int `yaml:"factor" json:"factor,string"` + // RetryErroCode used for config + RetryErroCode *int `yaml:"retryErroCode" json:"retryErroCode,string"` + // SuspendErrorCode used for config + SuspendErrorCode *int `yaml:"suspendErrorCode" json:"suspendErrorCode,string"` + // SuspendDuration used for config + SuspendDuration *int `yaml:"suspendDuration" json:"suspendDuration,string"` + // SuspendMaxDuration used for config + SuspendMaxDuration *int `yaml:"suspendMaxDuration" json:"suspendMaxDuration,string"` + // ActionSelect used for config + ActionSelect *string `yaml:"actionSelect" json:"actionSelect"` + // ActionDuration used for config + ActionDuration *int `yaml:"actionDuration" json:"actionDuration,string"` } // Endpoint details