共用方式為


BucketPatchDefinition Constructors

Definition

Overloads

BucketPatchDefinition()

Initializes a new instance of the BucketPatchDefinition class.

BucketPatchDefinition(String, String, Nullable<Boolean>, Nullable<Int64>, Nullable<Int64>, String, String)

Initializes a new instance of the BucketPatchDefinition class.

BucketPatchDefinition()

Initializes a new instance of the BucketPatchDefinition class.

public BucketPatchDefinition ();
Public Sub New ()

Applies to

BucketPatchDefinition(String, String, Nullable<Boolean>, Nullable<Int64>, Nullable<Int64>, String, String)

Initializes a new instance of the BucketPatchDefinition class.

public BucketPatchDefinition (string url = default, string bucketName = default, bool? insecure = default, long? timeoutInSeconds = default, long? syncIntervalInSeconds = default, string accessKey = default, string localAuthRef = default);
new Microsoft.Azure.Management.KubernetesConfiguration.Models.BucketPatchDefinition : string * string * Nullable<bool> * Nullable<int64> * Nullable<int64> * string * string -> Microsoft.Azure.Management.KubernetesConfiguration.Models.BucketPatchDefinition
Public Sub New (Optional url As String = Nothing, Optional bucketName As String = Nothing, Optional insecure As Nullable(Of Boolean) = Nothing, Optional timeoutInSeconds As Nullable(Of Long) = Nothing, Optional syncIntervalInSeconds As Nullable(Of Long) = Nothing, Optional accessKey As String = Nothing, Optional localAuthRef As String = Nothing)

Parameters

url
String

The URL to sync for the flux configuration S3 bucket.

bucketName
String

The bucket name to sync from the url endpoint for the flux configuration.

insecure
Nullable<Boolean>

Specify whether to use insecure communication when puling data from the S3 bucket.

timeoutInSeconds
Nullable<Int64>

The maximum time to attempt to reconcile the cluster git repository source with the remote.

syncIntervalInSeconds
Nullable<Int64>

The interval at which to re-reconcile the cluster git repository source with the remote.

accessKey
String

Plaintext access key used to securely access the S3 bucket

localAuthRef
String

Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.

Applies to