From 4e41803934ff9c08d67422a9953247872a19546a Mon Sep 17 00:00:00 2001 From: Shivam Negi Date: Thu, 19 Dec 2024 16:54:19 +0530 Subject: [PATCH] feat: [PIPE-24072]: Added the pipeline name (#617) --- harness/nextgen/model_pipeline_filter_properties.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/harness/nextgen/model_pipeline_filter_properties.go b/harness/nextgen/model_pipeline_filter_properties.go index ba9ddd43..ddb7a71d 100644 --- a/harness/nextgen/model_pipeline_filter_properties.go +++ b/harness/nextgen/model_pipeline_filter_properties.go @@ -16,7 +16,8 @@ type PipelineFilterProperties struct { // This is the list of the Pipeline Identifiers on which the filter will be applied. PipelineIdentifiers []string `json:"pipelineIdentifiers,omitempty"` // This is the Pipeline Name on which the filter will be applied. - Name string `json:"name,omitempty"` + Name string `json:"name,omitempty"` + PipelineName string `json:"pipelineName,omitempty"` // This is the Pipeline Description on which the filter will be applied. Description string `json:"description,omitempty"` ModuleProperties map[string]interface{} `json:"moduleProperties,omitempty"`