Class UpdateScriptDetails.Builder
- java.lang.Object
-
- com.oracle.bmc.apmsynthetics.model.UpdateScriptDetails.Builder
-
- Enclosing class:
- UpdateScriptDetails
public static class UpdateScriptDetails.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateScriptDetails
build()
UpdateScriptDetails.Builder
content(String content)
The content of the script.UpdateScriptDetails.Builder
contentFileName(String contentFileName)
File name of uploaded script content.UpdateScriptDetails.Builder
contentType(ContentTypes contentType)
Content type of script.UpdateScriptDetails.Builder
copy(UpdateScriptDetails model)
UpdateScriptDetails.Builder
definedTags(Map<String,Map<String,Object>> definedTags)
Defined tags for this resource.UpdateScriptDetails.Builder
displayName(String displayName)
Unique name that can be edited.UpdateScriptDetails.Builder
freeformTags(Map<String,String> freeformTags)
Simple key-value pair that is applied without any predefined name, type or scope.UpdateScriptDetails.Builder
parameters(List<ScriptParameter> parameters)
List of script parameters.
-
-
-
Method Detail
-
displayName
public UpdateScriptDetails.Builder displayName(String displayName)
Unique name that can be edited.The name should not contain any confidential information.
- Parameters:
displayName
- the value to set- Returns:
- this builder
-
contentType
public UpdateScriptDetails.Builder contentType(ContentTypes contentType)
Content type of script.- Parameters:
contentType
- the value to set- Returns:
- this builder
-
content
public UpdateScriptDetails.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:
. Param value and isParamValueSecret are optional, the default value for isParamValueSecret is false. Examples: With mandatory param name :param name param value isParamValueSecret(true/false) With parameter name and value :param name 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.param name param value - Parameters:
content
- the value to set- Returns:
- this builder
-
contentFileName
public UpdateScriptDetails.Builder contentFileName(String contentFileName)
File name of uploaded script content.- Parameters:
contentFileName
- the value to set- Returns:
- this builder
-
parameters
public UpdateScriptDetails.Builder parameters(List<ScriptParameter> parameters)
List of script parameters.Example: [{“paramName”: “userid”, “paramValue”:“testuser”, “isSecret”: false}]
- Parameters:
parameters
- the value to set- Returns:
- this builder
-
freeformTags
public UpdateScriptDetails.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”}
- Parameters:
freeformTags
- the value to set- Returns:
- this builder
-
definedTags
public UpdateScriptDetails.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”}}
- Parameters:
definedTags
- the value to set- Returns:
- this builder
-
build
public UpdateScriptDetails build()
-
copy
public UpdateScriptDetails.Builder copy(UpdateScriptDetails model)
-
-