...
name | description | required? | default |
---|---|---|---|
name | artifact name | yes | |
jar | name of jar file in package archive | yes | |
archivelink | link to download 3rd party archive | no | none |
archivesig | link to get 3rd party archive signature | no | none |
scope | artifact scope (implies API to add system artifacts is added in 4.0) | no | user |
version | artifact version to pass as Artifact-Version header | no | none |
parents | artifact parents to pass as Artifact-Extends header | no | none |
plugins | artifact plugins to pass as Artifact-Plugins header | no | none |
...
Code Block |
---|
GET /groups/hydrator-plugins/packages/mysql-jdbc-driver/versions [ { "name": "mysql-jdbc-driver", "label": "MySQL JDBC Driver", "description": "JDBC Driver for MySQL databases.", "author": "MySQL", "org": "Oracle", "version": "5.1.3839", "created": 1234567899, "changelog": [ ], "dependencies": { } }, ... ] |
...
Code Block |
---|
GET /groups/hydrator-plugins/packages/mysql-jdbc-driver/versions/5.1.3839/spec.asc GET /groups/hydrator-plugins/packages/mysql-jdbc-driver/versions/5.1.3839/spec { "name": "mysql-jdbc-driver", "label": "MySQL JDBC Driver", "description": "JDBC Driver for MySQL databases.", "author": "MySQL", "org": "Oracle", "version": "5.1.3839", "created": 1234567899, "actions": [ { "type": "create_artifact", "arguments": [ { "name": "scope", "value": "user", "canModify": false }, { "name": "name", "value": "mysql-connector-java", "canModify": false }, { "name": "version", "value": "5.1.3839", "canModify": false }, { "name": "parents", "value": "system:cdap-data-pipeline[3.0.0,10.0.0]/system:cdap-data-streams[3.0.0,10.0.0]", "canModify": false }, { "name": "jar", "value": "mysql-connector-java-5.1.3839-bin.jar", // file in the archive "canModify": false }, { "name": "pluginsarchivelink", "value": "plugins.json", // file in the archivehttps://dev.mysql.com/downloads/file/?id=462849", "canModify": false }, { "name": "archivesig", "value": "https://dev.mysql.com/downloads/gpg/?file=mysql-connector-java-5.1.39.tar.gz" } { "name": "plugins", "value": { "parents": [ "cdap-data-pipeline[3.0.0,10.0.0]" ], "plugins": [ { "name" : "mysql", "type" : "jdbc", "className" : "com.mysql.jdbc.Driver", "description" : "Plugin for MySQL JDBC driver" } ] }, "canModify": false } ] } ] } |
...