Skip to content

Commit 0203b5d

Browse files
Create catalog.yml
1 parent f1535e5 commit 0203b5d

File tree

1 file changed

+79
-0
lines changed

1 file changed

+79
-0
lines changed

catalog.yml

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# [Required]
2+
# Possible values for the Catalog item that can be deployed on a DataMiner System:
3+
# - automationscript: If the Catalog item is a general-purpose DataMiner Automation script.
4+
# - lifecycleserviceorchestration: If the Catalog item is a DataMiner Automation script designed to manage the life cycle of a service.
5+
# - profileloadscript: If the Catalog item is a DataMiner Automation script designed to load a standard DataMiner profile.
6+
# - userdefinedapi: If the Catalog item is a DataMiner Automation script designed as a user-defined API.
7+
# - adhocdatasource: If the Catalog item is a DataMiner Automation script designed for an ad hoc data source integration.
8+
# - chatopsextension: If the Catalog item is a DataMiner Automation script designed as a ChatOps extension.
9+
# - connector: If the Catalog item is a DataMiner XML connector.
10+
# - slamodel: If the Catalog item is a DataMiner XML connector designed as DataMiner Service Level Agreement model.
11+
# - enhancedservicemodel: If the Catalog item is a DataMiner XML connector designed as DataMiner enhanced service model.
12+
# - visio: If the Catalog item is a Microsoft Visio design.
13+
# - solution: If the Catalog item is a DataMiner Solution.
14+
# - testingsolution: If the Catalog item is a DataMiner Solution designed for automated testing and validation.
15+
# - samplesolution: If the Catalog item is a DataMiner Solution used for training and education.
16+
# - standardsolution: If the Catalog item is a DataMiner Solution that is an out-of-the-box solution for a specific use case or application.
17+
# - dashboard: If the Catalog item is a DataMiner dashboard.
18+
# - lowcodeapp: If the Catalog item is a DataMiner low-code app.
19+
# - datatransformer: If the Catalog item is a Data Transformer.
20+
# - dataquery: If the Catalog item is a GQI data query.
21+
# - functiondefinition: If the Catalog item is a DataMiner function definition.
22+
# - scriptedconnector: If the Catalog item is a DataMiner scripted connector.
23+
# - bestpracticesanalyzer: If the Catalog item is a DataMiner Best Practices Analysis file.
24+
type: connector
25+
26+
# [Required]
27+
# The ID of the Catalog item.
28+
# All registered versions for the same ID are shown together in the Catalog.
29+
# This ID can not be changed.
30+
# If the ID is not filled in, the registration will fail with HTTP status code 500.
31+
# If the ID is filled in but does not exist yet, a new Catalog item will be registered with this ID.
32+
# If the ID is filled in but does exist, properties of the item will be overwritten.
33+
# Must be a valid GUID.
34+
id: f4ee2af6-5c68-487b-b4ba-cccb5b3887a2
35+
36+
# [Required]
37+
# The human-friendly name of the Catalog item.
38+
# Can be changed at any time.
39+
# Max length: 100 characters.
40+
# Cannot contain newlines.
41+
# Cannot contain leading or trailing whitespace characters.
42+
title: Skyline Example - SNMP Base
43+
44+
# [Optional]
45+
# General information about the Catalog item.
46+
# Max length: 100,000 characters
47+
# Currently not shown in the Catalog UI but will be supported in the near future.
48+
short_description: Example connector showing how to retrieve the common SNMP parameters and tables on every device.
49+
50+
# [Optional]
51+
# A valid URL that points to the source code.
52+
# A valid URL
53+
# Max length: 2048 characters
54+
source_code_url: https://github.com/SkylineCommunications/SLC-C-Example_SNMP-Base
55+
56+
# [Optional]
57+
# A valid URL that points to documentation.
58+
# A valid URL
59+
# Max length: 2048 characters
60+
# Currently not shown in the Catalog UI but will be supported in the near future.
61+
documentation_url:
62+
63+
# [Optional]
64+
# People who are responsible for this Catalog item. Might be developers, but this is not required.
65+
# Format: 'name <email> (url)'
66+
# The name is required; max 256 characters.
67+
# The email and url are optional, and should be in valid email/URL formats.
68+
owners: [Simon Vandamme <simon.vandamme@skyline.be>]
69+
70+
# [Optional]
71+
# Tags that allow you to categorize your Catalog items.
72+
# Max number of tags: 5
73+
# Max length: 50 characters.
74+
# Cannot contain newlines.
75+
# Cannot contain leading or trailing whitespace characters.
76+
tags:
77+
- dataminer
78+
- dataminer-connector
79+
- example

0 commit comments

Comments
 (0)