Class ProviderResourceType
- java.lang.Object
-
- com.microsoft.azure.management.resources.ProviderResourceType
-
public class ProviderResourceType extends Object
Resource type managed by the resource provider.
-
-
Constructor Summary
Constructors Constructor Description ProviderResourceType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AliasType>aliases()Get the aliases value.List<String>apiVersions()Get the apiVersions value.List<String>locations()Get the locations value.Map<String,String>properties()Get the properties value.StringresourceType()Get the resourceType value.ProviderResourceTypewithAliases(List<AliasType> aliases)Set the aliases value.ProviderResourceTypewithApiVersions(List<String> apiVersions)Set the apiVersions value.ProviderResourceTypewithLocations(List<String> locations)Set the locations value.ProviderResourceTypewithProperties(Map<String,String> properties)Set the properties value.ProviderResourceTypewithResourceType(String resourceType)Set the resourceType value.
-
-
-
Method Detail
-
resourceType
public String resourceType()
Get the resourceType value.- Returns:
- the resourceType value
-
withResourceType
public ProviderResourceType withResourceType(String resourceType)
Set the resourceType value.- Parameters:
resourceType- the resourceType value to set- Returns:
- the ProviderResourceType object itself.
-
withLocations
public ProviderResourceType withLocations(List<String> locations)
Set the locations value.- Parameters:
locations- the locations value to set- Returns:
- the ProviderResourceType object itself.
-
withAliases
public ProviderResourceType withAliases(List<AliasType> aliases)
Set the aliases value.- Parameters:
aliases- the aliases value to set- Returns:
- the ProviderResourceType object itself.
-
apiVersions
public List<String> apiVersions()
Get the apiVersions value.- Returns:
- the apiVersions value
-
withApiVersions
public ProviderResourceType withApiVersions(List<String> apiVersions)
Set the apiVersions value.- Parameters:
apiVersions- the apiVersions value to set- Returns:
- the ProviderResourceType object itself.
-
properties
public Map<String,String> properties()
Get the properties value.- Returns:
- the properties value
-
withProperties
public ProviderResourceType withProperties(Map<String,String> properties)
Set the properties value.- Parameters:
properties- the properties value to set- Returns:
- the ProviderResourceType object itself.
-
-