KustomizationPatchDefinition Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
KustomizationPatchDefinition() |
Initializes a new instance of the KustomizationPatchDefinition class. |
KustomizationPatchDefinition(String, IList<String>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>) |
Initializes a new instance of the KustomizationPatchDefinition class. |
KustomizationPatchDefinition()
Initializes a new instance of the KustomizationPatchDefinition class.
public KustomizationPatchDefinition ();
Public Sub New ()
Applies to
KustomizationPatchDefinition(String, IList<String>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>)
Initializes a new instance of the KustomizationPatchDefinition class.
public KustomizationPatchDefinition (string path = default, System.Collections.Generic.IList<string> dependsOn = default, long? timeoutInSeconds = default, long? syncIntervalInSeconds = default, long? retryIntervalInSeconds = default, bool? prune = default, bool? force = default);
new Microsoft.Azure.Management.KubernetesConfiguration.Models.KustomizationPatchDefinition : string * System.Collections.Generic.IList<string> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.KubernetesConfiguration.Models.KustomizationPatchDefinition
Public Sub New (Optional path As String = Nothing, Optional dependsOn As IList(Of String) = Nothing, Optional timeoutInSeconds As Nullable(Of Long) = Nothing, Optional syncIntervalInSeconds As Nullable(Of Long) = Nothing, Optional retryIntervalInSeconds As Nullable(Of Long) = Nothing, Optional prune As Nullable(Of Boolean) = Nothing, Optional force As Nullable(Of Boolean) = Nothing)
Parameters
- path
- String
The path in the source reference to reconcile on the cluster.
Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
The maximum time to attempt to reconcile the Kustomization on the cluster.
The interval at which to re-reconcile the Kustomization on the cluster.
The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.
Applies to
Azure SDK for .NET