Class VirtualNetworkProfile
- java.lang.Object
-
- com.microsoft.azure.management.appservice.VirtualNetworkProfile
-
public class VirtualNetworkProfile extends Object
Specification for using a Virtual Network.
-
-
Constructor Summary
Constructors Constructor Description VirtualNetworkProfile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringid()Get resource id of the Virtual Network.Stringname()Get name of the Virtual Network (read-only).Stringsubnet()Get subnet within the Virtual Network.Stringtype()Get resource type of the Virtual Network (read-only).VirtualNetworkProfilewithId(String id)Set resource id of the Virtual Network.VirtualNetworkProfilewithSubnet(String subnet)Set subnet within the Virtual Network.
-
-
-
Method Detail
-
id
public String id()
Get resource id of the Virtual Network.- Returns:
- the id value
-
withId
public VirtualNetworkProfile withId(String id)
Set resource id of the Virtual Network.- Parameters:
id- the id value to set- Returns:
- the VirtualNetworkProfile object itself.
-
name
public String name()
Get name of the Virtual Network (read-only).- Returns:
- the name value
-
type
public String type()
Get resource type of the Virtual Network (read-only).- Returns:
- the type value
-
subnet
public String subnet()
Get subnet within the Virtual Network.- Returns:
- the subnet value
-
withSubnet
public VirtualNetworkProfile withSubnet(String subnet)
Set subnet within the Virtual Network.- Parameters:
subnet- the subnet value to set- Returns:
- the VirtualNetworkProfile object itself.
-
-