DeployedServicePackageInfo

Information about service package deployed on a Service Fabric node.

Properties

Name Type Required
Name string No
Version string No
Status string (enum) No
ServicePackageActivationId string No

Name

Type: string
Required: No

The name of the service package as specified in the service manifest.


Version

Type: string
Required: No

The version of the service package specified in service manifest.


Status

Type: string (enum)
Required: No

Specifies the status of a deployed application or service package on a Service Fabric node.

Possible values are:

  • Invalid - Indicates status of the application or service package is not known or invalid. The value is 0.
  • Downloading - Indicates the application or service package is being downloaded to the node from the ImageStore. The value is 1.
  • Activating - Indicates the application or service package is being activated. The value is 2.
  • Active - Indicates the application or service package is active the node. The value is 3.
  • Upgrading - Indicates the application or service package is being upgraded. The value is 4.
  • Deactivating - Indicates the application or service package is being deactivated. The value is 5.
  • RanToCompletion - Indicates the application or service package has ran to completion successfully. The value is 6.
  • Failed - Indicates the application or service package has failed to run to completion. The value is 7.

ServicePackageActivationId

Type: string
Required: No

The ActivationId of a deployed service package. 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.