DeployedServicePackageHealthQueryDescription 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
DeployedServicePackageHealthQueryDescription(Uri, String, String)
Instantiates a DeployedServicePackageHealthQueryDescription class.
public DeployedServicePackageHealthQueryDescription (Uri applicationName, string nodeName, string serviceManifestName);
new System.Fabric.Description.DeployedServicePackageHealthQueryDescription : Uri * string * string -> System.Fabric.Description.DeployedServicePackageHealthQueryDescription
Public Sub New (applicationName As Uri, nodeName As String, serviceManifestName As String)
Parameters
- applicationName
- Uri
The application name. Cannot be null.
- nodeName
- String
The node name. Cannot be null or empty.
- serviceManifestName
- String
The service manifest name. Cannot be null or empty.
Exceptions
A required parameter can't be null.
A required parameter can't be empty.
Applies to
DeployedServicePackageHealthQueryDescription(Uri, String, String, String)
Instantiates a DeployedServicePackageHealthQueryDescription class.
public DeployedServicePackageHealthQueryDescription (Uri applicationName, string nodeName, string serviceManifestName, string servicePackageActivationId);
new System.Fabric.Description.DeployedServicePackageHealthQueryDescription : Uri * string * string * string -> System.Fabric.Description.DeployedServicePackageHealthQueryDescription
Public Sub New (applicationName As Uri, nodeName As String, serviceManifestName As String, servicePackageActivationId As String)
Parameters
- applicationName
- Uri
The application name. Cannot be null.
- nodeName
- String
The node name. Cannot be null or empty.
- serviceManifestName
- String
The service manifest name. Cannot be null or empty.
- servicePackageActivationId
- String
The ServicePackageActivationId of deployed service package. ServicePackageActivationId of a deployed service package can obtained by using GetDeployedServicePackageListAsync(String, Uri) query.
If ServicePackageActivationMode specified at the time of creating the service is SharedProcess (or if it is not specified, in which case it defaults to SharedProcess), then value of ServicePackageActivationId is always an empty string. For more details please see ServicePackageActivationMode.
Exceptions
A required parameter can't be null.
A required parameter can't be empty.
Applies to
Azure SDK for .NET