Share via


ArmApplicationInsightsModelFactory.ApplicationInsightsComponentAnalyticsItem Method

Definition

Overloads

ApplicationInsightsComponentAnalyticsItem(String, String, String, String, Nullable<ComponentItemScope>, Nullable<ComponentItemType>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String)

Initializes a new instance of ApplicationInsightsComponentAnalyticsItem.

ApplicationInsightsComponentAnalyticsItem(String, String, String, String, Nullable<ItemScope>, Nullable<ItemType>, String, String, String)

Initializes a new instance of ApplicationInsightsComponentAnalyticsItem.

ApplicationInsightsComponentAnalyticsItem(String, String, String, String, Nullable<ComponentItemScope>, Nullable<ComponentItemType>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, String)

Source:
ArmApplicationInsightsModelFactory.cs

Initializes a new instance of ApplicationInsightsComponentAnalyticsItem.

public static Azure.ResourceManager.ApplicationInsights.Models.ApplicationInsightsComponentAnalyticsItem ApplicationInsightsComponentAnalyticsItem (string id = default, string name = default, string content = default, string version = default, Azure.ResourceManager.ApplicationInsights.Models.ComponentItemScope? scope = default, Azure.ResourceManager.ApplicationInsights.Models.ComponentItemType? componentItemType = default, DateTimeOffset? createdOn = default, DateTimeOffset? modifiedOn = default, string applicationInsightsComponentAnalyticsItemFunctionAlias = default);
static member ApplicationInsightsComponentAnalyticsItem : string * string * string * string * Nullable<Azure.ResourceManager.ApplicationInsights.Models.ComponentItemScope> * Nullable<Azure.ResourceManager.ApplicationInsights.Models.ComponentItemType> * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> * string -> Azure.ResourceManager.ApplicationInsights.Models.ApplicationInsightsComponentAnalyticsItem
Public Shared Function ApplicationInsightsComponentAnalyticsItem (Optional id As String = Nothing, Optional name As String = Nothing, Optional content As String = Nothing, Optional version As String = Nothing, Optional scope As Nullable(Of ComponentItemScope) = Nothing, Optional componentItemType As Nullable(Of ComponentItemType) = Nothing, Optional createdOn As Nullable(Of DateTimeOffset) = Nothing, Optional modifiedOn As Nullable(Of DateTimeOffset) = Nothing, Optional applicationInsightsComponentAnalyticsItemFunctionAlias As String = Nothing) As ApplicationInsightsComponentAnalyticsItem

Parameters

id
String

Internally assigned unique id of the item definition.

name
String

The user-defined name of the item.

content
String

The content of this item.

version
String

This instance's version of the data model. This can change as new features are added.

scope
Nullable<ComponentItemScope>

Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.

componentItemType
Nullable<ComponentItemType>

Enum indicating the type of the Analytics item.

createdOn
Nullable<DateTimeOffset>

Date and time in UTC when this item was created.

modifiedOn
Nullable<DateTimeOffset>

Date and time in UTC of the last modification that was made to this item.

applicationInsightsComponentAnalyticsItemFunctionAlias
String

A set of properties that can be defined in the context of a specific item type. Each type may have its own properties.

Returns

A new ApplicationInsightsComponentAnalyticsItem instance for mocking.

Applies to

ApplicationInsightsComponentAnalyticsItem(String, String, String, String, Nullable<ItemScope>, Nullable<ItemType>, String, String, String)

Source:
ArmApplicationInsightsModelFactory.cs

Initializes a new instance of ApplicationInsightsComponentAnalyticsItem.

public static Azure.ResourceManager.ApplicationInsights.Models.ApplicationInsightsComponentAnalyticsItem ApplicationInsightsComponentAnalyticsItem (string id = default, string name = default, string content = default, string version = default, Azure.ResourceManager.ApplicationInsights.Models.ItemScope? scope = default, Azure.ResourceManager.ApplicationInsights.Models.ItemType? itemType = default, string timeCreated = default, string timeModified = default, string applicationInsightsComponentAnalyticsItemFunctionAlias = default);
static member ApplicationInsightsComponentAnalyticsItem : string * string * string * string * Nullable<Azure.ResourceManager.ApplicationInsights.Models.ItemScope> * Nullable<Azure.ResourceManager.ApplicationInsights.Models.ItemType> * string * string * string -> Azure.ResourceManager.ApplicationInsights.Models.ApplicationInsightsComponentAnalyticsItem
Public Shared Function ApplicationInsightsComponentAnalyticsItem (Optional id As String = Nothing, Optional name As String = Nothing, Optional content As String = Nothing, Optional version As String = Nothing, Optional scope As Nullable(Of ItemScope) = Nothing, Optional itemType As Nullable(Of ItemType) = Nothing, Optional timeCreated As String = Nothing, Optional timeModified As String = Nothing, Optional applicationInsightsComponentAnalyticsItemFunctionAlias As String = Nothing) As ApplicationInsightsComponentAnalyticsItem

Parameters

id
String

Internally assigned unique id of the item definition.

name
String

The user-defined name of the item.

content
String

The content of this item.

version
String

This instance's version of the data model. This can change as new features are added.

scope
Nullable<ItemScope>

Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component.

itemType
Nullable<ItemType>

Enum indicating the type of the Analytics item.

timeCreated
String

Date and time in UTC when this item was created.

timeModified
String

Date and time in UTC of the last modification that was made to this item.

applicationInsightsComponentAnalyticsItemFunctionAlias
String

A set of properties that can be defined in the context of a specific item type. Each type may have its own properties.

Returns

A new ApplicationInsightsComponentAnalyticsItem instance for mocking.

Applies to