ManagedClusterUpdateParameters 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
ManagedClusterUpdateParameters() |
Initializes a new instance of the ManagedClusterUpdateParameters class. |
ManagedClusterUpdateParameters(Nullable<Int32>, Nullable<Int32>, IList<LoadBalancingRule>, IList<ClientCertificate>, AzureActiveDirectory, IList<SettingsSectionDescription>, String, String, ClusterUpgradePolicy, Nullable<Int32>, IDictionary<String,String>) |
Initializes a new instance of the ManagedClusterUpdateParameters class. |
ManagedClusterUpdateParameters()
Initializes a new instance of the ManagedClusterUpdateParameters class.
public ManagedClusterUpdateParameters ();
Public Sub New ()
Applies to
ManagedClusterUpdateParameters(Nullable<Int32>, Nullable<Int32>, IList<LoadBalancingRule>, IList<ClientCertificate>, AzureActiveDirectory, IList<SettingsSectionDescription>, String, String, ClusterUpgradePolicy, Nullable<Int32>, IDictionary<String,String>)
Initializes a new instance of the ManagedClusterUpdateParameters class.
public ManagedClusterUpdateParameters (int? clientConnectionPort = default, int? httpGatewayConnectionPort = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule> loadBalancingRules = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate> clients = default, Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory azureActiveDirectory = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription> fabricSettings = default, string clusterCodeVersion = default, string clusterUpgradeMode = default, Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy clusterUpgradeDescription = default, int? reverseProxyEndpointPort = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.ServiceFabric.Models.ManagedClusterUpdateParameters : Nullable<int> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.LoadBalancingRule> * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ClientCertificate> * Microsoft.Azure.Management.ServiceFabric.Models.AzureActiveDirectory * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.SettingsSectionDescription> * string * string * Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradePolicy * Nullable<int> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.ServiceFabric.Models.ManagedClusterUpdateParameters
Public Sub New (Optional clientConnectionPort As Nullable(Of Integer) = Nothing, Optional httpGatewayConnectionPort As Nullable(Of Integer) = Nothing, Optional loadBalancingRules As IList(Of LoadBalancingRule) = Nothing, Optional clients As IList(Of ClientCertificate) = Nothing, Optional azureActiveDirectory As AzureActiveDirectory = Nothing, Optional fabricSettings As IList(Of SettingsSectionDescription) = Nothing, Optional clusterCodeVersion As String = Nothing, Optional clusterUpgradeMode As String = Nothing, Optional clusterUpgradeDescription As ClusterUpgradePolicy = Nothing, Optional reverseProxyEndpointPort As Nullable(Of Integer) = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)
Parameters
- loadBalancingRules
- IList<LoadBalancingRule>
Describes a load balancing rule.
- clients
- IList<ClientCertificate>
client certificates for the cluster.
- azureActiveDirectory
- AzureActiveDirectory
Azure active directory.
- fabricSettings
- IList<SettingsSectionDescription>
The list of custom fabric settings to configure the cluster.
- clusterCodeVersion
- String
The Service Fabric runtime version of the cluster. This property can only by set the user when upgradeMode is set to 'Manual'. To get list of available Service Fabric versions for new clusters use ClusterVersion API. To get the list of available version for existing clusters use availableClusterVersions.
- clusterUpgradeMode
- String
The upgrade mode of the cluster when new Service Fabric runtime version is available.
- Automatic - The cluster will be automatically upgraded to the
latest Service Fabric runtime version as soon as it is available.
- Manual - The cluster will not be automatically upgraded to the
latest Service Fabric runtime version. The cluster is upgraded by
setting the **clusterCodeVersion** property in the cluster
resource.
. Possible values include: 'Automatic', 'Manual'
- clusterUpgradeDescription
- ClusterUpgradePolicy
Describes the policy used when upgrading the cluster.
- tags
- IDictionary<String,String>
Managed cluster update parameters
Applies to
Azure SDK for .NET