Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update README and javadoc #109

Merged
merged 1 commit into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ This repo contains the SDK JAR and a pre-configured Java project that uses Gradl
- [Creating your metadata](#creating-your-metadata-2)
- [Configuring your file generator](#configuring-your-file-generator)
- [Default file extension](#default-file-extension)
- [Default input node label](#default-input-node-label)
- [Adding input nodes](#adding-input-nodes)
- [Adding step properties](#adding-step-properties-1)
- [asCustomChooser](#ascustomchooser-1)
Expand All @@ -98,7 +99,7 @@ This repo contains the SDK JAR and a pre-configured Java project that uses Gradl

| SDK version | Compatible Data Studio version | New features released |
|--------------------------------------------------------------------------------------|--------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [2.8.0](https://github.com/experiandataquality/aperture-data-studio-sdk/tree/v2.8.0) | 2.12.3 (or newer) | <ul><li>Data Studio now supports custom file generator. </li></ul> |
| [2.8.0](https://github.com/experiandataquality/aperture-data-studio-sdk/tree/v2.8.0) | 2.12.4 (or newer) | <ul><li>Data Studio now supports custom file generator. </li></ul> |
| [2.7.1](https://github.com/experiandataquality/aperture-data-studio-sdk/tree/v2.7.1) | 2.9.7 (or newer) | <ul><li>Update dependency versions. </li></ul> |
| [2.7.0](https://github.com/experiandataquality/aperture-data-studio-sdk/tree/v2.7.0) | 2.9.7 (or newer) | <ul><li>HTTP Web Request now supports PATCH request. </li></ul> |
| [2.6.0](https://github.com/experiandataquality/aperture-data-studio-sdk/tree/v2.6.0) | 2.5.7 (or newer) | <ul><li>SDK custom parser now supports dropdown parameter definition display type. </li></ul> |
Expand Down Expand Up @@ -1580,6 +1581,13 @@ Define the default file extension that the custom exporter exports.
.withDefaultFileExtension(".json")
```

#### Default input node label

Define the label for default input node.
``` java
.withDefaultInputNodeLabel("Mylabel")
```

#### Adding input nodes

By default, export step will always have one predefined input node. You can add additional input node:
Expand Down
Loading
Loading