Class ExtensionProperties
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.ExtensionProperties
-
public abstract class ExtensionProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description ExtensionProperties()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Boolean
autoUpgradeMinorVersion()
The autoUpgradeMinorVersion reference of the extension propertiesstatic ExtensionProperties
create(String publisher, String type, String typeHandlerVersion, Boolean autoUpgradeMinorVersion, ExtensionProfileSettings settings, Map<String,String> protectedSettings)
abstract Map<String,String>
protectedSettings()
The list of the protectedSettings of the extension propertiesabstract String
publisher()
The publisher reference of the extension propertiesabstract ExtensionProfileSettings
settings()
The ExtensionProfileSettings of the extension propertiesabstract String
type()
The type reference of the extension propertiesabstract String
typeHandlerVersion()
The typeHandlerVersion reference of the extension properties
-
-
-
Method Detail
-
publisher
public abstract String publisher()
The publisher reference of the extension properties
-
type
public abstract String type()
The type reference of the extension properties
-
typeHandlerVersion
public abstract String typeHandlerVersion()
The typeHandlerVersion reference of the extension properties
-
autoUpgradeMinorVersion
public abstract Boolean autoUpgradeMinorVersion()
The autoUpgradeMinorVersion reference of the extension properties
-
settings
public abstract ExtensionProfileSettings settings()
The ExtensionProfileSettings of the extension properties
-
protectedSettings
public abstract Map<String,String> protectedSettings()
The list of the protectedSettings of the extension properties
-
create
public static ExtensionProperties create(String publisher, String type, String typeHandlerVersion, Boolean autoUpgradeMinorVersion, ExtensionProfileSettings settings, Map<String,String> protectedSettings)
-
-