Skip to content

Commit d903937

Browse files
Update code samples [skip ci]
1 parent f6dd922 commit d903937

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

snippets/samples/code_samples_export_post_1.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,11 @@ curl \
1313
}
1414
}'
1515
```
16+
17+
```java Java
18+
Map<String, ExportIndexFilter> indexes = new HashMap<>();
19+
indexes.put("*", ExportIndexFilter.builder().overrideSettings(true).build());
20+
ExportRequest request = ExportRequest.builder().url("TARGET_INSTANCE_URL").indexes(indexes).build();
21+
client.export(request);
22+
```
1623
</CodeGroup>

0 commit comments

Comments
 (0)