Share via


ContainerPropertiesInstanceView Constructors

Definition

Overloads

ContainerPropertiesInstanceView()

Initializes a new instance of the ContainerPropertiesInstanceView class.

ContainerPropertiesInstanceView(Nullable<Int32>, ContainerState, ContainerState, IList<EventModel>)

Initializes a new instance of the ContainerPropertiesInstanceView class.

ContainerPropertiesInstanceView()

Initializes a new instance of the ContainerPropertiesInstanceView class.

public ContainerPropertiesInstanceView ();
Public Sub New ()

Applies to

ContainerPropertiesInstanceView(Nullable<Int32>, ContainerState, ContainerState, IList<EventModel>)

Initializes a new instance of the ContainerPropertiesInstanceView class.

public ContainerPropertiesInstanceView (int? restartCount = default, Microsoft.Azure.Management.ContainerInstance.Models.ContainerState currentState = default, Microsoft.Azure.Management.ContainerInstance.Models.ContainerState previousState = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerInstance.Models.EventModel> events = default);
new Microsoft.Azure.Management.ContainerInstance.Models.ContainerPropertiesInstanceView : Nullable<int> * Microsoft.Azure.Management.ContainerInstance.Models.ContainerState * Microsoft.Azure.Management.ContainerInstance.Models.ContainerState * System.Collections.Generic.IList<Microsoft.Azure.Management.ContainerInstance.Models.EventModel> -> Microsoft.Azure.Management.ContainerInstance.Models.ContainerPropertiesInstanceView
Public Sub New (Optional restartCount As Nullable(Of Integer) = Nothing, Optional currentState As ContainerState = Nothing, Optional previousState As ContainerState = Nothing, Optional events As IList(Of EventModel) = Nothing)

Parameters

restartCount
Nullable<Int32>

The number of times that the container instance has been restarted.

currentState
ContainerState

Current container instance state.

previousState
ContainerState

Previous container instance state.

events
IList<EventModel>

The events of the container instance.

Applies to