Interface ExtractorsCreateRequest._FinalStage
-
- All Known Implementing Classes:
ExtractorsCreateRequest.Builder
- Enclosing class:
- ExtractorsCreateRequest
public static interface ExtractorsCreateRequest._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExtractorsCreateRequestbuild()ExtractorsCreateRequest._FinalStagecloneExtractorId(java.lang.String cloneExtractorId)ExtractorsCreateRequest._FinalStagecloneExtractorId(java.util.Optional<java.lang.String> cloneExtractorId)The ID of an existing extractor to clone.ExtractorsCreateRequest._FinalStageconfig(ExtractConfigJson config)ExtractorsCreateRequest._FinalStageconfig(java.util.Optional<ExtractConfigJson> config)The configuration for the extractor.
-
-
-
Method Detail
-
build
ExtractorsCreateRequest build()
-
cloneExtractorId
ExtractorsCreateRequest._FinalStage cloneExtractorId(java.util.Optional<java.lang.String> cloneExtractorId)
The ID of an existing extractor to clone. If provided, the new extractor will be created with the same config as the extractor with this ID. Cannot be provided together with
config.Example:
"ex_BMdfq_yWM3sT-ZzvCnA3f"
-
cloneExtractorId
ExtractorsCreateRequest._FinalStage cloneExtractorId(java.lang.String cloneExtractorId)
-
config
ExtractorsCreateRequest._FinalStage config(java.util.Optional<ExtractConfigJson> config)
The configuration for the extractor. Cannot be provided together with
cloneExtractorId.
-
config
ExtractorsCreateRequest._FinalStage config(ExtractConfigJson config)
-
-