Show / Hide Table of Contents

Class AnalyticsItemArgs

Inheritance
System.Object
InputArgs
ResourceArgs
AnalyticsItemArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.AppInsights
Assembly: Pulumi.Azure.dll
Syntax
public sealed class AnalyticsItemArgs : ResourceArgs

Constructors

View Source

AnalyticsItemArgs()

Declaration
public AnalyticsItemArgs()

Properties

View Source

ApplicationInsightsId

The ID of the Application Insights component on which the Analytics Item exists. Changing this forces a new resource to be created.

Declaration
public Input<string> ApplicationInsightsId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Content

The content for the Analytics Item, for example the query text if type is query.

Declaration
public Input<string> Content { get; set; }
Property Value
Type Description
Input<System.String>
View Source

FunctionAlias

The alias to use for the function. Required when type is function.

Declaration
public Input<string> FunctionAlias { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the Application Insights Analytics Item. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Scope

The scope for the Analytics Item. Can be shared or user. Changing this forces a new resource to be created. Must be shared for functions.

Declaration
public Input<string> Scope { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Type

The type of Analytics Item to create. Can be one of query, function, folder, recent. Changing this forces a new resource to be created.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.