ApplicationInsightsComponentAPIKey Constructors

Definition

Overloads

ApplicationInsightsComponentAPIKey()

Initializes a new instance of the ApplicationInsightsComponentAPIKey class.

ApplicationInsightsComponentAPIKey(String, String, String, String, IList<String>, IList<String>)

Initializes a new instance of the ApplicationInsightsComponentAPIKey class.

ApplicationInsightsComponentAPIKey()

Initializes a new instance of the ApplicationInsightsComponentAPIKey class.

public ApplicationInsightsComponentAPIKey ();
Public Sub New ()

Applies to

ApplicationInsightsComponentAPIKey(String, String, String, String, IList<String>, IList<String>)

Initializes a new instance of the ApplicationInsightsComponentAPIKey class.

public ApplicationInsightsComponentAPIKey (string id = default, string apiKey = default, string createdDate = default, string name = default, System.Collections.Generic.IList<string> linkedReadProperties = default, System.Collections.Generic.IList<string> linkedWriteProperties = default);
new Microsoft.Azure.Management.ApplicationInsights.Management.Models.ApplicationInsightsComponentAPIKey : string * string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.ApplicationInsights.Management.Models.ApplicationInsightsComponentAPIKey
Public Sub New (Optional id As String = Nothing, Optional apiKey As String = Nothing, Optional createdDate As String = Nothing, Optional name As String = Nothing, Optional linkedReadProperties As IList(Of String) = Nothing, Optional linkedWriteProperties As IList(Of String) = Nothing)

Parameters

id
String

The unique ID of the API key inside an Application Insights component. It is auto generated when the API key is created.

apiKey
String

The API key value. It will be only return once when the API Key was created.

createdDate
String

The create date of this API key.

name
String

The name of the API key.

linkedReadProperties
IList<String>

The read access rights of this API Key.

linkedWriteProperties
IList<String>

The write access rights of this API Key.

Applies to