StatelessServiceUpdateProperties 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
StatelessServiceUpdateProperties() |
Initializes a new instance of the StatelessServiceUpdateProperties class. |
StatelessServiceUpdateProperties(String, IList<ServiceCorrelationDescription>, IList<ServiceLoadMetricDescription>, IList<ServicePlacementPolicyDescription>, String, Nullable<Int32>, String) |
Initializes a new instance of the StatelessServiceUpdateProperties class. |
StatelessServiceUpdateProperties()
Initializes a new instance of the StatelessServiceUpdateProperties class.
public StatelessServiceUpdateProperties ();
Public Sub New ()
Applies to
StatelessServiceUpdateProperties(String, IList<ServiceCorrelationDescription>, IList<ServiceLoadMetricDescription>, IList<ServicePlacementPolicyDescription>, String, Nullable<Int32>, String)
Initializes a new instance of the StatelessServiceUpdateProperties class.
public StatelessServiceUpdateProperties (string placementConstraints = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ServiceCorrelationDescription> correlationScheme = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ServiceLoadMetricDescription> serviceLoadMetrics = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ServicePlacementPolicyDescription> servicePlacementPolicies = default, string defaultMoveCost = default, int? instanceCount = default, string instanceCloseDelayDuration = default);
new Microsoft.Azure.Management.ServiceFabric.Models.StatelessServiceUpdateProperties : string * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ServiceCorrelationDescription> * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ServiceLoadMetricDescription> * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ServicePlacementPolicyDescription> * string * Nullable<int> * string -> Microsoft.Azure.Management.ServiceFabric.Models.StatelessServiceUpdateProperties
Public Sub New (Optional placementConstraints As String = Nothing, Optional correlationScheme As IList(Of ServiceCorrelationDescription) = Nothing, Optional serviceLoadMetrics As IList(Of ServiceLoadMetricDescription) = Nothing, Optional servicePlacementPolicies As IList(Of ServicePlacementPolicyDescription) = Nothing, Optional defaultMoveCost As String = Nothing, Optional instanceCount As Nullable(Of Integer) = Nothing, Optional instanceCloseDelayDuration As String = Nothing)
Parameters
- placementConstraints
- String
The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".
- correlationScheme
- IList<ServiceCorrelationDescription>
A list that describes the correlation of the service with other services.
- serviceLoadMetrics
- IList<ServiceLoadMetricDescription>
The service load metrics is given as an array of ServiceLoadMetricDescription objects.
- servicePlacementPolicies
- IList<ServicePlacementPolicyDescription>
A list that describes the correlation of the service with other services.
- defaultMoveCost
- String
Specifies the move cost for the service. Possible values include: 'Zero', 'Low', 'Medium', 'High'
- instanceCloseDelayDuration
- String
Delay duration for RequestDrain feature to ensures that the endpoint advertised by the stateless instance is removed before the delay starts prior to closing the instance. This delay enables existing requests to drain gracefully before the instance actually goes down (https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-application-upgrade-advanced#avoid-connection-drops-during-stateless-service-planned-downtime-preview). It is first interpreted as a string representing an ISO 8601 duration. If that fails, then it is interpreted as a number representing the total number of milliseconds.
Applies to
Azure SDK for .NET