1
+ # [Required]
2
+ # Possible values for the Catalog item that can be deployed on a DataMiner System:
3
+ # - Automation: If the Catalog item is a general-purpose DataMiner Automation script.
4
+ # - Ad Hoc Data Source: If the Catalog item is a DataMiner Automation script designed for an ad hoc data source integration.
5
+ # - ChatOps Extension: If the Catalog item is a DataMiner Automation script designed as a ChatOps extension.
6
+ # - Connector: If the Catalog item is a DataMiner XML connector.
7
+ # - Custom Solution: If the Catalog item is a DataMiner Solution.
8
+ # - Data Query: If the Catalog item is a GQI data query.
9
+ # - Dashboard: If the Catalog item is a DataMiner dashboard.
10
+ # - DevTool: If the Catalog item is a DevTool.
11
+ # - Product Solution: If the Catalog item is a DataMiner Solution that is an out-of-the-box solution for a specific product.
12
+ # - Scripted Connector: If the Catalog item is a DataMiner scripted connector.
13
+ # - Standard Solution: If the Catalog item is a DataMiner Solution that is an out-of-the-box solution for a specific use case or application.
14
+ # - System Health: If the Catalog item is intended to monitor the health of a system.
15
+ # - User-Defined API: If the Catalog item is a DataMiner Automation script designed as a user-defined API.
16
+ # - Visual Overview: If the Catalog item is a Microsoft Visio design.
17
+
18
+ type : ' DevTool'
19
+
20
+ # [Required]
21
+ # The ID of the Catalog item.
22
+ # All registered versions for the same ID are shown together in the Catalog.
23
+ # This ID can not be changed.
24
+ # If the ID is not filled in, the registration will fail with HTTP status code 500.
25
+ # If the ID is filled in but does not exist yet, a new Catalog item will be registered with this ID.
26
+ # If the ID is filled in but does exist, properties of the item will be overwritten.
27
+ # Must be a valid GUID.
28
+ id : ' 95a6c64b-42e8-4b01-b154-c55fe2c0750f'
29
+
30
+ # [Required]
31
+ # The human-friendly name of the Catalog item.
32
+ # Can be changed at any time.
33
+ # Max length: 100 characters.
34
+ # Cannot contain newlines.
35
+ # Cannot contain leading or trailing whitespace characters.
36
+ title : ' SkylineCommunications_Low-Code-App-Editor'
37
+
38
+ # [Optional]
39
+ # General information about the Catalog item.
40
+ # Max length: 100,000 characters
41
+ # Currently not shown in the Catalog UI but will be supported in the near future.
42
+ short_description : ' An interactive Automation script to export, and do some general edits to the low-code apps of a DataMiner System.'
43
+
44
+ # [Optional]
45
+ # A valid URL that points to the source code.
46
+ # A valid URL
47
+ # Max length: 2048 characters
48
+ source_code_url : ' https://github.com/SkylineCommunications/Low-Code-App-Editor'
49
+
50
+ # [Optional]
51
+ # A valid URL that points to documentation.
52
+ # A valid URL
53
+ # Max length: 2048 characters
54
+ # Currently not shown in the Catalog UI but will be supported in the near future.
55
+ documentation_url : ' https://github.com/SkylineCommunications/Low-Code-App-Editor/blob/main/Documentation/README.md'
56
+
57
+ # [Optional]
58
+ # People who are responsible for this Catalog item. Might be developers, but this is not required.
59
+ # Format: 'name <email> (url)'
60
+ # The name is required; max 256 characters.
61
+ # The email and url are optional, and should be in valid email/URL formats.
62
+ owners :
63
+ - name : ' Arne Maes'
64
+ email : ' arne.maes@skyline.be'
65
+ url : ' https://github.com/ArneMaes0'
66
+
67
+ # [Optional]
68
+ # Tags that allow you to categorize your Catalog items.
69
+ # Max number of tags: 5
70
+ # Max length: 50 characters.
71
+ # Cannot contain newlines.
72
+ # Cannot contain leading or trailing whitespace characters.
73
+ tags :
74
+ - ' Generic'
75
+ - ' Tool'
76
+ - ' Automation Script'
77
+ - ' Low-Code App'
78
+ - ' LCA'
0 commit comments