MachineExtensionUpdatePropertiesModel Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MachineExtensionUpdatePropertiesModel() |
Initializes a new instance of the MachineExtensionUpdatePropertiesModel class. |
MachineExtensionUpdatePropertiesModel(String, String, String, String, Nullable<Boolean>, Object, Object) |
Initializes a new instance of the MachineExtensionUpdatePropertiesModel class. |
MachineExtensionUpdatePropertiesModel()
Initializes a new instance of the MachineExtensionUpdatePropertiesModel class.
public MachineExtensionUpdatePropertiesModel ();
Public Sub New ()
Applies to
MachineExtensionUpdatePropertiesModel(String, String, String, String, Nullable<Boolean>, Object, Object)
Initializes a new instance of the MachineExtensionUpdatePropertiesModel class.
public MachineExtensionUpdatePropertiesModel (string forceUpdateTag = default, string publisher = default, string type = default, string typeHandlerVersion = default, bool? autoUpgradeMinorVersion = default, object settings = default, object protectedSettings = default);
new Microsoft.Azure.Management.HybridCompute.Models.MachineExtensionUpdatePropertiesModel : string * string * string * string * Nullable<bool> * obj * obj -> Microsoft.Azure.Management.HybridCompute.Models.MachineExtensionUpdatePropertiesModel
Public Sub New (Optional forceUpdateTag As String = Nothing, Optional publisher As String = Nothing, Optional type As String = Nothing, Optional typeHandlerVersion As String = Nothing, Optional autoUpgradeMinorVersion As Nullable(Of Boolean) = Nothing, Optional settings As Object = Nothing, Optional protectedSettings As Object = Nothing)
Parameters
- forceUpdateTag
- String
How the extension handler should be forced to update even if the extension configuration has not changed.
- publisher
- String
The name of the extension handler publisher.
- type
- String
Specifies the type of the extension; an example is "CustomScriptExtension".
- typeHandlerVersion
- String
Specifies the version of the script handler.
Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- settings
- Object
Json formatted public settings for the extension.
- protectedSettings
- Object
The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
Applies to
Azure SDK for .NET