Class GlobalParameterSpecification
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.GlobalParameterSpecification
-
public final class GlobalParameterSpecification extends Object
Definition of a single parameter for an entity.
-
-
Constructor Summary
Constructors Constructor Description GlobalParameterSpecification()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GlobalParameterType
type()
Get the type property: Global Parameter type.void
validate()
Validates the instance.Object
value()
Get the value property: Value of parameter.GlobalParameterSpecification
withType(GlobalParameterType type)
Set the type property: Global Parameter type.GlobalParameterSpecification
withValue(Object value)
Set the value property: Value of parameter.
-
-
-
Method Detail
-
type
public GlobalParameterType type()
Get the type property: Global Parameter type.- Returns:
- the type value.
-
withType
public GlobalParameterSpecification withType(GlobalParameterType type)
Set the type property: Global Parameter type.- Parameters:
type
- the type value to set.- Returns:
- the GlobalParameterSpecification object itself.
-
value
public Object value()
Get the value property: Value of parameter.- Returns:
- the value value.
-
withValue
public GlobalParameterSpecification withValue(Object value)
Set the value property: Value of parameter.- Parameters:
value
- the value value to set.- Returns:
- the GlobalParameterSpecification object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-