Class ImportFileConfig.Builder
-
- All Implemented Interfaces:
public abstract class ImportFileConfig.BuilderBuilder for ImportFileConfig.
-
-
Constructor Summary
Constructors Constructor Description ImportFileConfig.Builder()
-
Method Summary
Modifier and Type Method Description abstract ImportFileConfig.BuilderhttpOptions(HttpOptions httpOptions)Setter for httpOptions. ImportFileConfig.BuilderhttpOptions(HttpOptions.Builder httpOptionsBuilder)Setter for httpOptions builder. ImportFileConfig.BuilderclearHttpOptions()Clears the value of httpOptions field. abstract ImportFileConfig.BuildercustomMetadata(List<CustomMetadata> customMetadata)Setter for customMetadata. ImportFileConfig.BuildercustomMetadata(Array<CustomMetadata> customMetadata)Setter for customMetadata. ImportFileConfig.BuildercustomMetadata(Array<CustomMetadata.Builder> customMetadataBuilders)Setter for customMetadata builder. ImportFileConfig.BuilderclearCustomMetadata()Clears the value of customMetadata field. abstract ImportFileConfig.BuilderchunkingConfig(ChunkingConfig chunkingConfig)Setter for chunkingConfig. ImportFileConfig.BuilderchunkingConfig(ChunkingConfig.Builder chunkingConfigBuilder)Setter for chunkingConfig builder. ImportFileConfig.BuilderclearChunkingConfig()Clears the value of chunkingConfig field. abstract ImportFileConfigbuild()-
-
Method Detail
-
httpOptions
abstract ImportFileConfig.Builder httpOptions(HttpOptions httpOptions)
Setter for httpOptions.
httpOptions: Used to override HTTP request options.
-
httpOptions
@CanIgnoreReturnValue() ImportFileConfig.Builder httpOptions(HttpOptions.Builder httpOptionsBuilder)
Setter for httpOptions builder.
httpOptions: Used to override HTTP request options.
-
clearHttpOptions
@CanIgnoreReturnValue() ImportFileConfig.Builder clearHttpOptions()
Clears the value of httpOptions field.
-
customMetadata
abstract ImportFileConfig.Builder customMetadata(List<CustomMetadata> customMetadata)
Setter for customMetadata.
customMetadata: User provided custom metadata stored as key-value pairs used for querying.
-
customMetadata
@CanIgnoreReturnValue() ImportFileConfig.Builder customMetadata(Array<CustomMetadata> customMetadata)
Setter for customMetadata.
customMetadata: User provided custom metadata stored as key-value pairs used for querying.
-
customMetadata
@CanIgnoreReturnValue() ImportFileConfig.Builder customMetadata(Array<CustomMetadata.Builder> customMetadataBuilders)
Setter for customMetadata builder.
customMetadata: User provided custom metadata stored as key-value pairs used for querying.
-
clearCustomMetadata
@CanIgnoreReturnValue() ImportFileConfig.Builder clearCustomMetadata()
Clears the value of customMetadata field.
-
chunkingConfig
abstract ImportFileConfig.Builder chunkingConfig(ChunkingConfig chunkingConfig)
Setter for chunkingConfig.
chunkingConfig: Config for telling the service how to chunk the file.
-
chunkingConfig
@CanIgnoreReturnValue() ImportFileConfig.Builder chunkingConfig(ChunkingConfig.Builder chunkingConfigBuilder)
Setter for chunkingConfig builder.
chunkingConfig: Config for telling the service how to chunk the file.
-
clearChunkingConfig
@CanIgnoreReturnValue() ImportFileConfig.Builder clearChunkingConfig()
Clears the value of chunkingConfig field.
-
build
abstract ImportFileConfig build()
-
-
-
-