public static class CreateScriptDetails.Builder extends Object
Constructor and Description |
---|
Builder() |
Modifier and Type | Method and Description |
---|---|
CreateScriptDetails |
build() |
CreateScriptDetails.Builder |
content(String content)
The content of the script.
|
CreateScriptDetails.Builder |
contentFileName(String contentFileName)
File name of uploaded script content.
|
CreateScriptDetails.Builder |
contentType(ContentTypes contentType)
Content type of script.
|
CreateScriptDetails.Builder |
copy(CreateScriptDetails o) |
CreateScriptDetails.Builder |
definedTags(Map<String,Map<String,Object>> definedTags)
Defined tags for this resource.
|
CreateScriptDetails.Builder |
displayName(String displayName)
Unique name that can be edited.
|
CreateScriptDetails.Builder |
freeformTags(Map<String,String> freeformTags)
Simple key-value pair that is applied without any predefined name, type or scope.
|
CreateScriptDetails.Builder |
parameters(List<ScriptParameter> parameters)
List of script parameters.
|
public CreateScriptDetails.Builder displayName(String displayName)
Unique name that can be edited. The name should not contain any confidential information.
displayName
- the value to setpublic CreateScriptDetails.Builder contentType(ContentTypes contentType)
Content type of script.
contentType
- the value to setpublic CreateScriptDetails.Builder content(String content)
The content of the script. It may contain custom-defined tags that can be used for setting dynamic parameters.
The format to set dynamic parameters is: <ORAP><ON>param name</ON><OV>param value</OV><OS>isParamValueSecret(true/false)</OS></ORAP>
.
Param value and isParamValueSecret are optional, the default value for isParamValueSecret is false.
Examples:
With mandatory param name : <ORAP><ON>param name</ON></ORAP>
With parameter name and value : <ORAP><ON>param name</ON><OV>param value</OV></ORAP>
Note that the content is valid if it matches the given content type. For example, if the content type is SIDE, then the content should be in Side script format. If the content type is JS, then the content should be in JavaScript format.
content
- the value to setpublic CreateScriptDetails.Builder contentFileName(String contentFileName)
File name of uploaded script content.
contentFileName
- the value to setpublic CreateScriptDetails.Builder parameters(List<ScriptParameter> parameters)
List of script parameters. Example: [{"paramName": "userid", "paramValue":"testuser", "isSecret": false}]
parameters
- the value to setpublic CreateScriptDetails.Builder freeformTags(Map<String,String> freeformTags)
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
Example: {"bar-key": "value"}
freeformTags
- the value to setpublic CreateScriptDetails.Builder definedTags(Map<String,Map<String,Object>> definedTags)
Defined tags for this resource. Each key is predefined and scoped to a namespace.
Example: {"foo-namespace": {"bar-key": "value"}}
definedTags
- the value to setpublic CreateScriptDetails build()
public CreateScriptDetails.Builder copy(CreateScriptDetails o)
Copyright © 2016–2022. All rights reserved.