BucketServerProperties Constructors

Definition

Overloads

Name Description
BucketServerProperties()

Initializes a new instance of the BucketServerProperties class.

BucketServerProperties(String, String, Nullable<DateTime>, String, String, String)

Initializes a new instance of the BucketServerProperties class.

BucketServerProperties()

Initializes a new instance of the BucketServerProperties class.

public BucketServerProperties();
Public Sub New ()

Applies to

BucketServerProperties(String, String, Nullable<DateTime>, String, String, String)

Initializes a new instance of the BucketServerProperties class.

public BucketServerProperties(string fqdn = default, string certificateCommonName = default, DateTime? certificateExpiryDate = default, string ipAddress = default, string certificateObject = default, string onCertificateConflictAction = default);
new Microsoft.Azure.Management.NetApp.Models.BucketServerProperties : string * string * Nullable<DateTime> * string * string * string -> Microsoft.Azure.Management.NetApp.Models.BucketServerProperties
Public Sub New (Optional fqdn As String = Nothing, Optional certificateCommonName As String = Nothing, Optional certificateExpiryDate As Nullable(Of DateTime) = Nothing, Optional ipAddress As String = Nothing, Optional certificateObject As String = Nothing, Optional onCertificateConflictAction As String = Nothing)

Parameters

fqdn
String

The host part of the bucket URL, resolving to the bucket IP address and allowed by the server certificate.

certificateCommonName
String

Certificate Common Name taken from the certificate installed on the bucket server

certificateExpiryDate
Nullable<DateTime>

The bucket server's certificate expiry date.

ipAddress
String

The bucket server's IPv4 address

certificateObject
String

The base64-encoded contents of a PEM file, which includes both the bucket server's certificate and private key. It is generated by the end user and allows the user to access volume data in a read-only manner. Note: This is only used when Azure Key Vault is not configured. This property is mutually exclusive with the Azure Key Vault 'akv' properties.

onCertificateConflictAction
String

Action to take when there is a certificate conflict. Possible values include: 'Update', 'Fail' Possible values include: 'Update', 'Fail'

Applies to