public static interface UserDefinedFunctionInput.Builder extends SdkPojo, CopyableBuilder<UserDefinedFunctionInput.Builder,UserDefinedFunctionInput>
Modifier and Type | Method and Description |
---|---|
UserDefinedFunctionInput.Builder |
className(String className)
The Java class that contains the function code.
|
UserDefinedFunctionInput.Builder |
functionName(String functionName)
The name of the function.
|
UserDefinedFunctionInput.Builder |
ownerName(String ownerName)
The owner of the function.
|
UserDefinedFunctionInput.Builder |
ownerType(PrincipalType ownerType)
The owner type.
|
UserDefinedFunctionInput.Builder |
ownerType(String ownerType)
The owner type.
|
UserDefinedFunctionInput.Builder |
resourceUris(Collection<ResourceUri> resourceUris)
The resource URIs for the function.
|
UserDefinedFunctionInput.Builder |
resourceUris(Consumer<ResourceUri.Builder>... resourceUris)
The resource URIs for the function.
|
UserDefinedFunctionInput.Builder |
resourceUris(ResourceUri... resourceUris)
The resource URIs for the function.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
UserDefinedFunctionInput.Builder functionName(String functionName)
The name of the function.
functionName
- The name of the function.UserDefinedFunctionInput.Builder className(String className)
The Java class that contains the function code.
className
- The Java class that contains the function code.UserDefinedFunctionInput.Builder ownerName(String ownerName)
The owner of the function.
ownerName
- The owner of the function.UserDefinedFunctionInput.Builder ownerType(String ownerType)
The owner type.
ownerType
- The owner type.PrincipalType
,
PrincipalType
UserDefinedFunctionInput.Builder ownerType(PrincipalType ownerType)
The owner type.
ownerType
- The owner type.PrincipalType
,
PrincipalType
UserDefinedFunctionInput.Builder resourceUris(Collection<ResourceUri> resourceUris)
The resource URIs for the function.
resourceUris
- The resource URIs for the function.UserDefinedFunctionInput.Builder resourceUris(ResourceUri... resourceUris)
The resource URIs for the function.
resourceUris
- The resource URIs for the function.UserDefinedFunctionInput.Builder resourceUris(Consumer<ResourceUri.Builder>... resourceUris)
The resource URIs for the function.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #resourceUris(List)
.resourceUris
- a consumer that will call methods on List.Builder
#resourceUris(List)
Copyright © 2020. All rights reserved.