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