共用方式為


ServerKey Constructors

Definition

Overloads

ServerKey()

Initializes a new instance of the ServerKey class.

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

Initializes a new instance of the ServerKey class.

ServerKey()

Initializes a new instance of the ServerKey class.

public ServerKey ();
Public Sub New ()

Applies to

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

Initializes a new instance of the ServerKey class.

public ServerKey (string id = default, string name = default, string type = default, string kind = default, string uri = default, DateTime? creationDate = default);
new Microsoft.Azure.Management.MySQL.Models.ServerKey : string * string * string * string * string * Nullable<DateTime> -> Microsoft.Azure.Management.MySQL.Models.ServerKey
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional kind As String = Nothing, Optional uri As String = Nothing, Optional creationDate As Nullable(Of DateTime) = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

kind
String

Kind of encryption protector used to protect the key.

uri
String

The URI of the key.

creationDate
Nullable<DateTime>

The key creation date.

Applies to