DeployedServicePackageInfo Class

Information about service package deployed on a Service Fabric node.

Inheritance
DeployedServicePackageInfo

Constructor

DeployedServicePackageInfo(*, name: Optional[str] = None, version: Optional[str] = None, status=None, service_package_activation_id: Optional[str] = None, **kwargs)

Parameters

name
str
Required

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

version
str
Required

The version of the service package specified in service manifest.

status
str or DeploymentStatus
Required

Specifies the status of a deployed application or service package on a Service Fabric node. Possible values include: 'Invalid', 'Downloading', 'Activating', 'Active', 'Upgrading', 'Deactivating', 'RanToCompletion', 'Failed'

service_package_activation_id
str
Required

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.