共用方式為


KustomizationPatchDefinition Constructors

Definition

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.

dependsOn
IList<String>

Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.

timeoutInSeconds
Nullable<Int64>

The maximum time to attempt to reconcile the Kustomization on the cluster.

syncIntervalInSeconds
Nullable<Int64>

The interval at which to re-reconcile the Kustomization on the cluster.

retryIntervalInSeconds
Nullable<Int64>

The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.

prune
Nullable<Boolean>

Enable/disable garbage collections of Kubernetes objects created by this Kustomization.

force
Nullable<Boolean>

Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.

Applies to