File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ type Project struct {
4242 VariableSetID string `json:"VariableSetId,omitempty"`
4343 VersioningStrategy * VersioningStrategy `json:"VersioningStrategy,omitempty"`
4444 CombineHealthAndSyncStatusInDashboardLiveStatus bool `json:"CombineHealthAndSyncStatusInDashboardLiveStatus"`
45+ ProjectTags []string `json:"ProjectTags,omitempty"`
4546
4647 resources.Resource
4748}
@@ -103,6 +104,7 @@ func (p *Project) UnmarshalJSON(data []byte) error {
103104 VariableSetID string `json:"VariableSetId,omitempty"`
104105 VersioningStrategy * VersioningStrategy `json:"VersioningStrategy,omitempty"`
105106 CombineHealthAndSyncStatusInDashboardLiveStatus bool `json:"CombineHealthAndSyncStatusInDashboardLiveStatus"`
107+ ProjectTags []string `json:"ProjectTags,omitempty"`
106108 resources.Resource
107109 }
108110
@@ -145,6 +147,7 @@ func (p *Project) UnmarshalJSON(data []byte) error {
145147 p .VersioningStrategy = fields .VersioningStrategy
146148 p .Resource = fields .Resource
147149 p .CombineHealthAndSyncStatusInDashboardLiveStatus = fields .CombineHealthAndSyncStatusInDashboardLiveStatus
150+ p .ProjectTags = fields .ProjectTags
148151
149152 var project map [string ]* json.RawMessage
150153 if err := json .Unmarshal (data , & project ); err != nil {
You can’t perform that action at this time.
0 commit comments