共用方式為


ManagedClusterUpdateParameters Constructors

Definition

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

clientConnectionPort
Nullable<Int32>

The port used for client connections to the cluster.

httpGatewayConnectionPort
Nullable<Int32>

The port used for http connections to the cluster.

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.

reverseProxyEndpointPort
Nullable<Int32>

The endpoint used by reverse proxy.

tags
IDictionary<String,String>

Managed cluster update parameters

Applies to