Package com.veeva.vault.sdk.api.query
Interface QueryShowTargetsRequest.Builder
- Enclosing interface:
- QueryShowTargetsRequest
public static interface QueryShowTargetsRequest.Builder
Creates an instance of
QueryShowTargetsRequest
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Retrieves the completedQueryShowTargetsRequest
.Optional: Sets aLIKE
clause to filter the returned target names based on a pattern.Enables Query Describe on theSHOW TARGETS
query.
-
Method Details
-
withLike
Optional: Sets aLIKE
clause to filter the returned target names based on a pattern. For example,LIKE 'vql%'
.If this method is called multiple times, the request retains only the value from the last call. If this method is never called, the request does not apply a
LIKE
filter and returns all accessible targets.- Parameters:
likeString
-LIKE
clause- Returns:
- this Builder
-
withQueryDescribe
QueryShowTargetsRequest.Builder withQueryDescribe()Enables Query Describe on theSHOW TARGETS
query.- Returns:
- this Builder
-
build
QueryShowTargetsRequest build()Retrieves the completedQueryShowTargetsRequest
.- Returns:
- the completed QueryShowTargetsRequest
-