Class ParameterDefinition
- java.lang.Object
-
- com.azure.resourcemanager.videoanalyzer.models.ParameterDefinition
-
public final class ParameterDefinition extends Object
Defines the parameter value of an specific pipeline topology parameter. See pipeline topology parameters for more information.
-
-
Constructor Summary
Constructors Constructor Description ParameterDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringname()Get the name property: Name of the parameter declared in the pipeline topology.voidvalidate()Validates the instance.Stringvalue()Get the value property: Parameter value to be applied on this specific pipeline.ParameterDefinitionwithName(String name)Set the name property: Name of the parameter declared in the pipeline topology.ParameterDefinitionwithValue(String value)Set the value property: Parameter value to be applied on this specific pipeline.
-
-
-
Method Detail
-
name
public String name()
Get the name property: Name of the parameter declared in the pipeline topology.- Returns:
- the name value.
-
withName
public ParameterDefinition withName(String name)
Set the name property: Name of the parameter declared in the pipeline topology.- Parameters:
name- the name value to set.- Returns:
- the ParameterDefinition object itself.
-
value
public String value()
Get the value property: Parameter value to be applied on this specific pipeline.- Returns:
- the value value.
-
withValue
public ParameterDefinition withValue(String value)
Set the value property: Parameter value to be applied on this specific pipeline.- Parameters:
value- the value value to set.- Returns:
- the ParameterDefinition object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-