Class CloudServiceConfiguration
- java.lang.Object
-
- com.microsoft.azure.management.batch.CloudServiceConfiguration
-
public class CloudServiceConfiguration extends Object
The configuration for nodes in a pool based on the Azure Cloud Services platform.
-
-
Constructor Summary
Constructors Constructor Description CloudServiceConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringcurrentOSVersion()Get the currentOSVersion value.StringosFamily()Get the osFamily value.StringtargetOSVersion()Get the targetOSVersion value.CloudServiceConfigurationwithCurrentOSVersion(String currentOSVersion)Set the currentOSVersion value.CloudServiceConfigurationwithOsFamily(String osFamily)Set the osFamily value.CloudServiceConfigurationwithTargetOSVersion(String targetOSVersion)Set the targetOSVersion value.
-
-
-
Method Detail
-
osFamily
public String osFamily()
Get the osFamily value.- Returns:
- the osFamily value
-
withOsFamily
public CloudServiceConfiguration withOsFamily(String osFamily)
Set the osFamily value.- Parameters:
osFamily- the osFamily value to set- Returns:
- the CloudServiceConfiguration object itself.
-
targetOSVersion
public String targetOSVersion()
Get the targetOSVersion value.- Returns:
- the targetOSVersion value
-
withTargetOSVersion
public CloudServiceConfiguration withTargetOSVersion(String targetOSVersion)
Set the targetOSVersion value.- Parameters:
targetOSVersion- the targetOSVersion value to set- Returns:
- the CloudServiceConfiguration object itself.
-
currentOSVersion
public String currentOSVersion()
Get the currentOSVersion value.- Returns:
- the currentOSVersion value
-
withCurrentOSVersion
public CloudServiceConfiguration withCurrentOSVersion(String currentOSVersion)
Set the currentOSVersion value.- Parameters:
currentOSVersion- the currentOSVersion value to set- Returns:
- the CloudServiceConfiguration object itself.
-
-