public static class CreatePatternDetails.Builder extends Object
Constructor and Description |
---|
Builder() |
Modifier and Type | Method and Description |
---|---|
CreatePatternDetails |
build() |
CreatePatternDetails.Builder |
checkFailureLimit(Integer checkFailureLimit)
The maximum number of UNMATCHED files, in checkFilePathList, above which the check fails.
|
CreatePatternDetails.Builder |
checkFilePathList(List<String> checkFilePathList)
List of file paths against which the pattern can be tried, as a check.
|
CreatePatternDetails.Builder |
copy(CreatePatternDetails model) |
CreatePatternDetails.Builder |
description(String description)
Detailed description of the Pattern.
|
CreatePatternDetails.Builder |
displayName(String displayName)
A user-friendly display name.
|
CreatePatternDetails.Builder |
expression(String expression)
Input string which drives the selection process, allowing for fine-grained control using
qualifiers.
|
CreatePatternDetails.Builder |
filePathPrefix(String filePathPrefix)
Input string which drives the selection process.
|
CreatePatternDetails.Builder |
isEnableCheckFailureLimit(Boolean isEnableCheckFailureLimit)
Indicates whether the pattern check, against the checkFilePathList, will fail the request
if the count of UNMATCHED files is above the checkFailureLimit.
|
CreatePatternDetails.Builder |
properties(Map<String,Map<String,String>> properties)
A map of maps that contains the properties which are specific to the pattern type.
|
public CreatePatternDetails.Builder displayName(String displayName)
A user-friendly display name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
displayName
- the value to setpublic CreatePatternDetails.Builder description(String description)
Detailed description of the Pattern.
description
- the value to setpublic CreatePatternDetails.Builder expression(String expression)
Input string which drives the selection process, allowing for fine-grained control using qualifiers. Refer to the user documentation for details of the format and examples. A pattern cannot include both a prefix and an expression.
expression
- the value to setpublic CreatePatternDetails.Builder filePathPrefix(String filePathPrefix)
Input string which drives the selection process. Refer to the user documentation for details of the format and examples. A pattern cannot include both a prefix and an expression.
filePathPrefix
- the value to setpublic CreatePatternDetails.Builder checkFilePathList(List<String> checkFilePathList)
List of file paths against which the pattern can be tried, as a check. This documents, for reference purposes, some example objects a pattern is meant to work with. If isEnableCheckFailureLimit is set to true, this will be run as a validation during the request, such that if the check fails the request fails. If isEnableCheckFailureLimit instead is set to (the default) false, a pattern will still be created or updated even if the check fails, with a lifecycleState of FAILED.
checkFilePathList
- the value to setpublic CreatePatternDetails.Builder isEnableCheckFailureLimit(Boolean isEnableCheckFailureLimit)
Indicates whether the pattern check, against the checkFilePathList, will fail the request if the count of UNMATCHED files is above the checkFailureLimit.
isEnableCheckFailureLimit
- the value to setpublic CreatePatternDetails.Builder checkFailureLimit(Integer checkFailureLimit)
The maximum number of UNMATCHED files, in checkFilePathList, above which the check fails. Optional, if checkFilePathList is provided - but if isEnableCheckFailureLimit is set to true it is required.
checkFailureLimit
- the value to setpublic CreatePatternDetails.Builder properties(Map<String,Map<String,String>> properties)
A map of maps that contains the properties which are specific to the pattern type. Each
pattern type definition defines it’s set of required and optional properties. Example:
{"properties": { "default": { "tbd"}}}
properties
- the value to setpublic CreatePatternDetails build()
public CreatePatternDetails.Builder copy(CreatePatternDetails model)
Copyright © 2016–2024. All rights reserved.