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.md #116

Merged
merged 1 commit into from
Jun 28, 2024
Merged
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
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ 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.1](https://github.com/experiandataquality/aperture-data-studio-sdk/tree/v2.8.0) | 2.12.6 (or newer) | <ul><li>Included Unified SDK API</li><li>Custom file generator now supports step configuration level validation. </li></ul> |
| [2.8.2](https://github.com/experiandataquality/aperture-data-studio-sdk/tree/v2.8.2) | 2.14.7 (or newer) | <ul><li>Custom file generator now supports checkbox (boolean) configuration. </li></ul> |
| [2.8.1](https://github.com/experiandataquality/aperture-data-studio-sdk/tree/v2.8.1) | 2.12.6 (or newer) | <ul><li>Included Unified SDK API</li><li>Custom file generator now supports step configuration level validation. </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> |
Expand Down Expand Up @@ -1641,6 +1642,14 @@ Step properties for custom file generator is configurable through export dialog.
.next()
```

##### asBoolean

``` java
.addStepProperty(TAX_CUSTOM_CHOOSER)
.asBoolean()
.next()
```

### Generate custom file

Use `GeneratorContext` in the `generate` method to implement the logic of the custom file generator output context.
Expand Down
Loading