Class ServiceUpdateStatus
Describes the virtual IP address assigned to the service on a specific attached network.
Namespace: Neon.Docker
Assembly: Neon.Docker.dll
Syntax
public class ServiceUpdateStatus
Properties
CompletedAt
Indicates when the service update was completed.
Declaration
public string CompletedAt { get; set; }
Property Value
Type | Description |
---|---|
string |
CompletedAtUtc
Returns the time (UTC) the service update was completed (as a DateTime).
Declaration
public DateTime CompletedAtUtc { get; }
Property Value
Type | Description |
---|---|
DateTime |
Message
A textual message describing the update.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
StartedAt
Indicates when the service update was started.
Declaration
public string StartedAt { get; set; }
Property Value
Type | Description |
---|---|
string |
StartedAtUtc
Returns the time (UTC) the service was started (as a DateTime).
Declaration
public DateTime StartedAtUtc { get; }
Property Value
Type | Description |
---|---|
DateTime |
State
Indicates the saervice updating state.
Declaration
public ServiceUpdateState State { get; set; }
Property Value
Type | Description |
---|---|
ServiceUpdateState |
Methods
Normalize()
Recursively ensures ensures that any null class or list related properties are replaced with instances with default values or empty lists.
Declaration
public void Normalize()