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

docs(transformer): fix names in sample code of 'pattern_add_dataset_domain' #8755

Merged
merged 1 commit into from
Sep 12, 2023
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
6 changes: 3 additions & 3 deletions metadata-ingestion/docs/transformer/dataset_transformer.md
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ in both of the cases domain should be provisioned on DataHub GMS
- Add domains, however replace existing domains sent by ingestion source
```yaml
transformers:
- type: "pattern_add_dataset_ownership"
- type: "pattern_add_dataset_domain"
config:
replace_existing: true # false is default behaviour
domain_pattern:
Expand All @@ -920,7 +920,7 @@ in both of the cases domain should be provisioned on DataHub GMS
- Add domains, however overwrite the domains available for the dataset on DataHub GMS
```yaml
transformers:
- type: "pattern_add_dataset_ownership"
- type: "pattern_add_dataset_domain"
config:
semantics: OVERWRITE # OVERWRITE is default behaviour
domain_pattern:
Expand All @@ -931,7 +931,7 @@ in both of the cases domain should be provisioned on DataHub GMS
- Add domains, however keep the domains available for the dataset on DataHub GMS
```yaml
transformers:
- type: "pattern_add_dataset_ownership"
- type: "pattern_add_dataset_domain"
config:
semantics: PATCH
domain_pattern:
Expand Down