Class Dependency
- java.lang.Object
-
- com.microsoft.azure.management.resources.Dependency
-
public class Dependency extends Object
Deployment dependency information.
-
-
Constructor Summary
Constructors Constructor Description Dependency()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BasicDependency>dependsOn()Get the dependsOn value.Stringid()Get the id value.StringresourceName()Get the resourceName value.StringresourceType()Get the resourceType value.DependencywithDependsOn(List<BasicDependency> dependsOn)Set the dependsOn value.DependencywithId(String id)Set the id value.DependencywithResourceName(String resourceName)Set the resourceName value.DependencywithResourceType(String resourceType)Set the resourceType value.
-
-
-
Method Detail
-
dependsOn
public List<BasicDependency> dependsOn()
Get the dependsOn value.- Returns:
- the dependsOn value
-
withDependsOn
public Dependency withDependsOn(List<BasicDependency> dependsOn)
Set the dependsOn value.- Parameters:
dependsOn- the dependsOn value to set- Returns:
- the Dependency object itself.
-
id
public String id()
Get the id value.- Returns:
- the id value
-
withId
public Dependency withId(String id)
Set the id value.- Parameters:
id- the id value to set- Returns:
- the Dependency object itself.
-
resourceType
public String resourceType()
Get the resourceType value.- Returns:
- the resourceType value
-
withResourceType
public Dependency withResourceType(String resourceType)
Set the resourceType value.- Parameters:
resourceType- the resourceType value to set- Returns:
- the Dependency object itself.
-
resourceName
public String resourceName()
Get the resourceName value.- Returns:
- the resourceName value
-
withResourceName
public Dependency withResourceName(String resourceName)
Set the resourceName value.- Parameters:
resourceName- the resourceName value to set- Returns:
- the Dependency object itself.
-
-