Dependency Class

  • java.lang.Object
    • com.microsoft.azure.management.resources.Dependency

public class Dependency

Deployment dependency information.

Constructor Summary

Constructor Description
Dependency()

Method Summary

Modifier and Type Method and Description
java.util.List<BasicDependency> dependsOn()

Get the list of dependencies.

java.lang.String id()

Get the ID of the dependency.

java.lang.String resourceName()

Get the dependency resource name.

java.lang.String resourceType()

Get the dependency resource type.

Dependency withDependsOn(List<BasicDependency> dependsOn)

Set the list of dependencies.

Dependency withId(String id)

Set the ID of the dependency.

Dependency withResourceName(String resourceName)

Set the dependency resource name.

Dependency withResourceType(String resourceType)

Set the dependency resource type.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

Dependency

public Dependency()

Method Details

dependsOn

public List dependsOn()

Get the list of dependencies.

Returns:

the dependsOn value

id

public String id()

Get the ID of the dependency.

Returns:

the id value

resourceName

public String resourceName()

Get the dependency resource name.

Returns:

the resourceName value

resourceType

public String resourceType()

Get the dependency resource type.

Returns:

the resourceType value

withDependsOn

public Dependency withDependsOn(List dependsOn)

Set the list of dependencies.

Parameters:

dependsOn - the dependsOn value to set

Returns:

the Dependency object itself.

withId

public Dependency withId(String id)

Set the ID of the dependency.

Parameters:

id - the id value to set

Returns:

the Dependency object itself.

withResourceName

public Dependency withResourceName(String resourceName)

Set the dependency resource name.

Parameters:

resourceName - the resourceName value to set

Returns:

the Dependency object itself.

withResourceType

public Dependency withResourceType(String resourceType)

Set the dependency resource type.

Parameters:

resourceType - the resourceType value to set

Returns:

the Dependency object itself.

Applies to