CodePackageEntryPoint
Information about setup or main entry point of a code package deployed on a Service Fabric node.
Properties
Name | Type | Required |
---|---|---|
EntryPointLocation |
string | No |
ProcessId |
string | No |
RunAsUserName |
string | No |
CodePackageEntryPointStatistics |
CodePackageEntryPointStatistics | No |
Status |
string (enum) | No |
NextActivationTime |
string (date-time) | No |
InstanceId |
string | No |
ContainerId |
string | No |
EntryPointLocation
Type: string
Required: No
The location of entry point executable on the node.
ProcessId
Type: string
Required: No
The process ID of the entry point.
RunAsUserName
Type: string
Required: No
The user name under which entry point executable is run on the node.
CodePackageEntryPointStatistics
Type: CodePackageEntryPointStatistics
Required: No
Statistics about setup or main entry point of a code package deployed on a Service Fabric node.
Status
Type: string (enum)
Required: No
Specifies the status of the code package entry point deployed on a Service Fabric node.
Possible values are:
Invalid
- Indicates status of entry point is not known or invalid. The value is 0.Pending
- Indicates the entry point is scheduled to be started. The value is 1.Starting
- Indicates the entry point is being started. The value is 2.Started
- Indicates the entry point was started successfully and is running. The value is 3.Stopping
- Indicates the entry point is being stopped. The value is 4.Stopped
- Indicates the entry point is not running. The value is 5.
NextActivationTime
Type: string (date-time)
Required: No
The time (in UTC) when the entry point executable will be run next.
InstanceId
Type: string
Required: No
The instance ID for current running entry point. For a code package setup entry point (if specified) runs first and after it finishes main entry point is started. Each time entry point executable is run, its instance id will change.
ContainerId
Type: string
Required: No
The container ID of the entry point. Only valid for container hosts.