HelmReleasePropertiesDefinition Constructors

Definition

Overloads

HelmReleasePropertiesDefinition()

Initializes a new instance of the HelmReleasePropertiesDefinition class.

HelmReleasePropertiesDefinition(Nullable<Int64>, ObjectReferenceDefinition, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the HelmReleasePropertiesDefinition class.

HelmReleasePropertiesDefinition()

Initializes a new instance of the HelmReleasePropertiesDefinition class.

public HelmReleasePropertiesDefinition ();
Public Sub New ()

Applies to

HelmReleasePropertiesDefinition(Nullable<Int64>, ObjectReferenceDefinition, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the HelmReleasePropertiesDefinition class.

public HelmReleasePropertiesDefinition (long? lastRevisionApplied = default, Microsoft.Azure.Management.KubernetesConfiguration.Models.ObjectReferenceDefinition helmChartRef = default, long? failureCount = default, long? installFailureCount = default, long? upgradeFailureCount = default);
new Microsoft.Azure.Management.KubernetesConfiguration.Models.HelmReleasePropertiesDefinition : Nullable<int64> * Microsoft.Azure.Management.KubernetesConfiguration.Models.ObjectReferenceDefinition * Nullable<int64> * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.KubernetesConfiguration.Models.HelmReleasePropertiesDefinition
Public Sub New (Optional lastRevisionApplied As Nullable(Of Long) = Nothing, Optional helmChartRef As ObjectReferenceDefinition = Nothing, Optional failureCount As Nullable(Of Long) = Nothing, Optional installFailureCount As Nullable(Of Long) = Nothing, Optional upgradeFailureCount As Nullable(Of Long) = Nothing)

Parameters

lastRevisionApplied
Nullable<Int64>

The revision number of the last released object change

helmChartRef
ObjectReferenceDefinition

The reference to the HelmChart object used as the source to this HelmRelease

failureCount
Nullable<Int64>

Total number of times that the HelmRelease failed to install or upgrade

installFailureCount
Nullable<Int64>

Number of times that the HelmRelease failed to install

upgradeFailureCount
Nullable<Int64>

Number of times that the HelmRelease failed to upgrade

Applies to