Class DatasetReference
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.DatasetReference
-
public final class DatasetReference extends Object
Dataset reference type.
-
-
Constructor Summary
Constructors Constructor Description DatasetReference()
Creates an instance of DatasetReference class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
parameters()
Get the parameters property: Arguments for dataset.String
referenceName()
Get the referenceName property: Reference dataset name.String
type()
Get the type property: Dataset reference type.void
validate()
Validates the instance.DatasetReference
withParameters(Map<String,Object> parameters)
Set the parameters property: Arguments for dataset.DatasetReference
withReferenceName(String referenceName)
Set the referenceName property: Reference dataset name.DatasetReference
withType(String type)
Set the type property: Dataset reference type.
-
-
-
Method Detail
-
type
public String type()
Get the type property: Dataset reference type.- Returns:
- the type value.
-
withType
public DatasetReference withType(String type)
Set the type property: Dataset reference type.- Parameters:
type
- the type value to set.- Returns:
- the DatasetReference object itself.
-
referenceName
public String referenceName()
Get the referenceName property: Reference dataset name.- Returns:
- the referenceName value.
-
withReferenceName
public DatasetReference withReferenceName(String referenceName)
Set the referenceName property: Reference dataset name.- Parameters:
referenceName
- the referenceName value to set.- Returns:
- the DatasetReference object itself.
-
parameters
public Map<String,Object> parameters()
Get the parameters property: Arguments for dataset.- Returns:
- the parameters value.
-
withParameters
public DatasetReference withParameters(Map<String,Object> parameters)
Set the parameters property: Arguments for dataset.- Parameters:
parameters
- the parameters value to set.- Returns:
- the DatasetReference object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-