다음을 통해 공유


ApplicationResourceUpdate Constructors

Definition

Overloads

ApplicationResourceUpdate()

Initializes a new instance of the ApplicationResourceUpdate class.

ApplicationResourceUpdate(String, String, String, String, IDictionary<String, String>, String, String, IDictionary<String,String>, ApplicationUpgradePolicy, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, IList<ApplicationMetricDescription>, IList<ApplicationUserAssignedIdentity>)

Initializes a new instance of the ApplicationResourceUpdate class.

ApplicationResourceUpdate()

Initializes a new instance of the ApplicationResourceUpdate class.

public ApplicationResourceUpdate ();
Public Sub New ()

Applies to

ApplicationResourceUpdate(String, String, String, String, IDictionary<String, String>, String, String, IDictionary<String,String>, ApplicationUpgradePolicy, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, IList<ApplicationMetricDescription>, IList<ApplicationUserAssignedIdentity>)

Initializes a new instance of the ApplicationResourceUpdate class.

public ApplicationResourceUpdate (string id = default, string name = default, string type = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default, string etag = default, string typeVersion = default, System.Collections.Generic.IDictionary<string,string> parameters = default, Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy upgradePolicy = default, long? minimumNodes = default, long? maximumNodes = default, bool? removeApplicationCapacity = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ApplicationMetricDescription> metrics = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUserAssignedIdentity> managedIdentities = default);
new Microsoft.Azure.Management.ServiceFabric.Models.ApplicationResourceUpdate : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * string * string * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUpgradePolicy * Nullable<int64> * Nullable<int64> * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ApplicationMetricDescription> * System.Collections.Generic.IList<Microsoft.Azure.Management.ServiceFabric.Models.ApplicationUserAssignedIdentity> -> Microsoft.Azure.Management.ServiceFabric.Models.ApplicationResourceUpdate
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional location As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional etag As String = Nothing, Optional typeVersion As String = Nothing, Optional parameters As IDictionary(Of String, String) = Nothing, Optional upgradePolicy As ApplicationUpgradePolicy = Nothing, Optional minimumNodes As Nullable(Of Long) = Nothing, Optional maximumNodes As Nullable(Of Long) = Nothing, Optional removeApplicationCapacity As Nullable(Of Boolean) = Nothing, Optional metrics As IList(Of ApplicationMetricDescription) = Nothing, Optional managedIdentities As IList(Of ApplicationUserAssignedIdentity) = Nothing)

Parameters

id
String

Azure resource identifier.

name
String

Azure resource name.

type
String

Azure resource type.

location
String

It will be deprecated in New API, resource location depends on the parent resource.

tags
IDictionary<String,String>

Azure resource tags.

etag
String

Azure resource etag.

typeVersion
String

The version of the application type as defined in the application manifest.

parameters
IDictionary<String,String>

List of application parameters with overridden values from their default values specified in the application manifest.

upgradePolicy
ApplicationUpgradePolicy

Describes the policy for a monitored application upgrade.

minimumNodes
Nullable<Int64>

The minimum number of nodes where Service Fabric will reserve capacity for this application. Note that this does not mean that the services of this application will be placed on all of those nodes. If this property is set to zero, no capacity will be reserved. The value of this property cannot be more than the value of the MaximumNodes property.

maximumNodes
Nullable<Int64>

The maximum number of nodes where Service Fabric will reserve capacity for this application. Note that this does not mean that the services of this application will be placed on all of those nodes. By default, the value of this property is zero and it means that the services can be placed on any node.

removeApplicationCapacity
Nullable<Boolean>

Remove the current application capacity settings.

metrics
IList<ApplicationMetricDescription>

List of application capacity metric description.

managedIdentities
IList<ApplicationUserAssignedIdentity>

List of user assigned identities for the application, each mapped to a friendly name.

Applies to