PatchExtension 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
PatchExtension() |
Initializes a new instance of the PatchExtension class. |
PatchExtension(Nullable<Boolean>, String, String, IDictionary<String,String>, IDictionary<String,String>) |
Initializes a new instance of the PatchExtension class. |
PatchExtension()
Initializes a new instance of the PatchExtension class.
public PatchExtension ();
Public Sub New ()
Applies to
PatchExtension(Nullable<Boolean>, String, String, IDictionary<String,String>, IDictionary<String,String>)
Initializes a new instance of the PatchExtension class.
public PatchExtension (bool? autoUpgradeMinorVersion = default, string releaseTrain = default, string version = default, System.Collections.Generic.IDictionary<string,string> configurationSettings = default, System.Collections.Generic.IDictionary<string,string> configurationProtectedSettings = default);
new Microsoft.Azure.Management.KubernetesConfiguration.Extensions.Models.PatchExtension : Nullable<bool> * string * string * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.KubernetesConfiguration.Extensions.Models.PatchExtension
Public Sub New (Optional autoUpgradeMinorVersion As Nullable(Of Boolean) = Nothing, Optional releaseTrain As String = Nothing, Optional version As String = Nothing, Optional configurationSettings As IDictionary(Of String, String) = Nothing, Optional configurationProtectedSettings As IDictionary(Of String, String) = Nothing)
Parameters
Flag to note if this extension participates in auto upgrade of minor version, or not.
- releaseTrain
- String
ReleaseTrain this extension participates in for auto-upgrade (e.g. Stable, Preview, etc.) - only if autoUpgradeMinorVersion is 'true'.
- version
- String
Version of the extension for this extension, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.
- configurationSettings
- IDictionary<String,String>
Configuration settings, as name-value pairs for configuring this extension.
- configurationProtectedSettings
- IDictionary<String,String>
Configuration settings that are sensitive, as name-value pairs for configuring this extension.
Applies to
Azure SDK for .NET