Skip to content

Commit 223aa57

Browse files
authoredJan 6, 2025··
Updated Catalog item types (#16)
* Updated Catalog item types Updated to match with the types mentioned on https://docs.dataminer.services/user-guide/Cloud_Platform/Catalog/Register_Catalog_Item.html?q=slamodel#manifest-file * Update Constants.cs Updated based on comments from Jarno & Jan
1 parent dd453dc commit 223aa57

File tree

1 file changed

+18
-19
lines changed
  • Skyline.DataMiner.CICD.Tools.GitHubToCatalogYaml

1 file changed

+18
-19
lines changed
 

‎Skyline.DataMiner.CICD.Tools.GitHubToCatalogYaml/Constants.cs

+18-19
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,24 @@ internal static class Constants
88
{
99
public static readonly List<ArtifactType> ArtifactTypeMap = new List<ArtifactType>()
1010
{
11-
{ new ArtifactType(new[] { "AS" }, "automationscript", "Automation Script") },
12-
{ new ArtifactType(new[] { "C" }, "connector", "Connector")},
13-
{ new ArtifactType(new[] { "CF" }, "companionfile", "Companion File")},
14-
{ new ArtifactType(new[] { "CHATOPS" }, "chatopsextension", "ChatOps Extension")},
15-
{ new ArtifactType(new[] { "D" }, "dashboard", "Dashboard")},
16-
{ new ArtifactType(new[] { "DISMACRO" }, "dismacro", "DIS Macro")},
17-
{ new ArtifactType(new[] { "DOC" }, "documentation", "Documentation")},
18-
{ new ArtifactType(new[] { "F" }, "functiondefinition", "Function Definition")},
19-
{ new ArtifactType(new[] { "GQIDS" }, "adhocdatasource", "gqidatasource", "Ad Hoc Data Source")},
20-
{ new ArtifactType(new[] { "GQIO" }, "gqioperator", "GQI Operator")},
21-
{ new ArtifactType(new[] { "LSO" }, "lifecycleserviceorchestration", "Live Cycle Service Orchestration")},
22-
{ new ArtifactType(new[] { "PA" }, "processautomation", "Process Automation") },
23-
{ new ArtifactType(new[] { "PLS" }, "profileloadscript", "Profile Load Script") },
24-
{ new ArtifactType(new[] { "S" }, "solution", "Solution") },
25-
{ new ArtifactType(new[] { "SC" }, "scriptedconnector", "Scriped Connector") },
26-
{ new ArtifactType(new[] { "T" }, "testingsolution", "Testing Solution") },
27-
{ new ArtifactType(new[] { "UDAPI" }, "userdefinedapi", "User Defined API") },
28-
{ new ArtifactType(new[] { "V" }, "visio", "Visio") },
29-
{ new ArtifactType(new[] { "LCA" }, "lowcodeapp", "Low-Code App") }
11+
{ new ArtifactType(new[] { "AS" }, "Automation", "Automation Script") },
12+
{ new ArtifactType(new[] { "C" }, "Connector", "Connector")},
13+
{ new ArtifactType(new[] { "CF" }, "Custom Solution", "Companion File")},
14+
{ new ArtifactType(new[] { "CHATOPS" }, "ChatOps Extension", "ChatOps Extension")},
15+
{ new ArtifactType(new[] { "D" }, "Dashboard", "Dashboard")},
16+
{ new ArtifactType(new[] { "DOC" }, "Custom Solution", "Documentation")},
17+
{ new ArtifactType(new[] { "F" }, "Custom Solution", "Function Definition")},
18+
{ new ArtifactType(new[] { "GQIDS" }, "Ad Hoc Data Source", "gqidatasource", "Ad Hoc Data Source")},
19+
{ new ArtifactType(new[] { "GQIO" }, "Data Transformer", "GQI Operator")},
20+
{ new ArtifactType(new[] { "LSO" }, "Automation", "Live Cycle Service Orchestration")},
21+
{ new ArtifactType(new[] { "PA" }, "Automation", "Process Automation") },
22+
{ new ArtifactType(new[] { "PLS" }, "Automation", "Profile Load Script") },
23+
{ new ArtifactType(new[] { "S" }, "Custom Solution", "Solution") },
24+
{ new ArtifactType(new[] { "SC" }, "Scripted Connector", "Scripted Connector") },
25+
{ new ArtifactType(new[] { "T" }, "Custom Solution", "Testing Solution") },
26+
{ new ArtifactType(new[] { "UDAPI" }, "User-Defined API", "User Defined API") },
27+
{ new ArtifactType(new[] { "V" }, "Visual Overview", "Visio") },
28+
{ new ArtifactType(new[] { "LCA" }, "Custom Solution", "Low-Code App") }
3029
};
3130
}
3231

0 commit comments

Comments
 (0)
Please sign in to comment.