ComponentArgs

data class ComponentArgs(val applicationType: Output<Either<String, ApplicationType>>? = null, val disableIpMasking: Output<Boolean>? = null, val disableLocalAuth: Output<Boolean>? = null, val flowType: Output<Either<String, FlowType>>? = null, val forceCustomerStorageForProfiler: Output<Boolean>? = null, val hockeyAppId: Output<String>? = null, val immediatePurgeDataOn30Days: Output<Boolean>? = null, val ingestionMode: Output<Either<String, IngestionMode>>? = null, val kind: Output<String>? = null, val location: Output<String>? = null, val publicNetworkAccessForIngestion: Output<Either<String, PublicNetworkAccessType>>? = null, val publicNetworkAccessForQuery: Output<Either<String, PublicNetworkAccessType>>? = null, val requestSource: Output<Either<String, RequestSource>>? = null, val resourceGroupName: Output<String>? = null, val resourceName: Output<String>? = null, val retentionInDays: Output<Int>? = null, val samplingPercentage: Output<Double>? = null, val tags: Output<Map<String, String>>? = null, val workspaceResourceId: Output<String>? = null) : ConvertibleToJava<ComponentArgs>

An Application Insights component definition. Uses Azure REST API version 2020-02-02. Other available API versions: 2015-05-01, 2018-05-01-preview, 2020-02-02-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native applicationinsights [ApiVersion]. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.

Example Usage

ComponentCreate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var component = new AzureNative.ApplicationInsights.Component("component", new()
{
ApplicationType = AzureNative.ApplicationInsights.ApplicationType.Web,
FlowType = AzureNative.ApplicationInsights.FlowType.Bluefield,
Kind = "web",
Location = "South Central US",
RequestSource = AzureNative.ApplicationInsights.RequestSource.Rest,
ResourceGroupName = "my-resource-group",
ResourceName = "my-component",
WorkspaceResourceId = "/subscriptions/subid/resourcegroups/my-resource-group/providers/microsoft.operationalinsights/workspaces/my-workspace",
});
});
package main
import (
applicationinsights "github.com/pulumi/pulumi-azure-native-sdk/applicationinsights/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := applicationinsights.NewComponent(ctx, "component", &applicationinsights.ComponentArgs{
ApplicationType: pulumi.String(applicationinsights.ApplicationTypeWeb),
FlowType: pulumi.String(applicationinsights.FlowTypeBluefield),
Kind: pulumi.String("web"),
Location: pulumi.String("South Central US"),
RequestSource: pulumi.String(applicationinsights.RequestSourceRest),
ResourceGroupName: pulumi.String("my-resource-group"),
ResourceName: pulumi.String("my-component"),
WorkspaceResourceId: pulumi.String("/subscriptions/subid/resourcegroups/my-resource-group/providers/microsoft.operationalinsights/workspaces/my-workspace"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.applicationinsights.Component;
import com.pulumi.azurenative.applicationinsights.ComponentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var component = new Component("component", ComponentArgs.builder()
.applicationType("web")
.flowType("Bluefield")
.kind("web")
.location("South Central US")
.requestSource("rest")
.resourceGroupName("my-resource-group")
.resourceName("my-component")
.workspaceResourceId("/subscriptions/subid/resourcegroups/my-resource-group/providers/microsoft.operationalinsights/workspaces/my-workspace")
.build());
}
}

ComponentUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var component = new AzureNative.ApplicationInsights.Component("component", new()
{
Kind = "web",
Location = "South Central US",
ResourceGroupName = "my-resource-group",
ResourceName = "my-component",
Tags =
{
{ "ApplicationGatewayType", "Internal-Only" },
{ "BillingEntity", "Self" },
},
});
});
package main
import (
applicationinsights "github.com/pulumi/pulumi-azure-native-sdk/applicationinsights/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := applicationinsights.NewComponent(ctx, "component", &applicationinsights.ComponentArgs{
Kind: pulumi.String("web"),
Location: pulumi.String("South Central US"),
ResourceGroupName: pulumi.String("my-resource-group"),
ResourceName: pulumi.String("my-component"),
Tags: pulumi.StringMap{
"ApplicationGatewayType": pulumi.String("Internal-Only"),
"BillingEntity": pulumi.String("Self"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.applicationinsights.Component;
import com.pulumi.azurenative.applicationinsights.ComponentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var component = new Component("component", ComponentArgs.builder()
.kind("web")
.location("South Central US")
.resourceGroupName("my-resource-group")
.resourceName("my-component")
.tags(Map.ofEntries(
Map.entry("ApplicationGatewayType", "Internal-Only"),
Map.entry("BillingEntity", "Self")
))
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:applicationinsights:Component my-component /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}

Constructors

Link copied to clipboard
constructor(applicationType: Output<Either<String, ApplicationType>>? = null, disableIpMasking: Output<Boolean>? = null, disableLocalAuth: Output<Boolean>? = null, flowType: Output<Either<String, FlowType>>? = null, forceCustomerStorageForProfiler: Output<Boolean>? = null, hockeyAppId: Output<String>? = null, immediatePurgeDataOn30Days: Output<Boolean>? = null, ingestionMode: Output<Either<String, IngestionMode>>? = null, kind: Output<String>? = null, location: Output<String>? = null, publicNetworkAccessForIngestion: Output<Either<String, PublicNetworkAccessType>>? = null, publicNetworkAccessForQuery: Output<Either<String, PublicNetworkAccessType>>? = null, requestSource: Output<Either<String, RequestSource>>? = null, resourceGroupName: Output<String>? = null, resourceName: Output<String>? = null, retentionInDays: Output<Int>? = null, samplingPercentage: Output<Double>? = null, tags: Output<Map<String, String>>? = null, workspaceResourceId: Output<String>? = null)

Properties

Link copied to clipboard
val applicationType: Output<Either<String, ApplicationType>>? = null

Type of application being monitored.

Link copied to clipboard
val disableIpMasking: Output<Boolean>? = null

Disable IP masking.

Link copied to clipboard
val disableLocalAuth: Output<Boolean>? = null

Disable Non-AAD based Auth.

Link copied to clipboard
val flowType: Output<Either<String, FlowType>>? = null

Used by the Application Insights system to determine what kind of flow this component was created by. This is to be set to 'Bluefield' when creating/updating a component via the REST API.

Link copied to clipboard

Force users to create their own storage account for profiler and debugger.

Link copied to clipboard
val hockeyAppId: Output<String>? = null

The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.

Link copied to clipboard
val immediatePurgeDataOn30Days: Output<Boolean>? = null

Purge data immediately after 30 days.

Link copied to clipboard
val ingestionMode: Output<Either<String, IngestionMode>>? = null

Indicates the flow of the ingestion.

Link copied to clipboard
val kind: Output<String>? = null

The kind of application that this component refers to, used to customize UI. This value is a freeform string, values should typically be one of the following: web, ios, other, store, java, phone.

Link copied to clipboard
val location: Output<String>? = null

Resource location

Link copied to clipboard

The network access type for accessing Application Insights ingestion.

Link copied to clipboard

The network access type for accessing Application Insights query.

Link copied to clipboard
val requestSource: Output<Either<String, RequestSource>>? = null

Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group. The name is case insensitive.

Link copied to clipboard
val resourceName: Output<String>? = null

The name of the Application Insights component resource.

Link copied to clipboard
val retentionInDays: Output<Int>? = null

Retention period in days.

Link copied to clipboard
val samplingPercentage: Output<Double>? = null

Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Resource tags

Link copied to clipboard
val workspaceResourceId: Output<String>? = null

Resource Id of the log analytics workspace which the data will be ingested to. This property is required to create an application with this API version. Applications from older versions will not have this property.

Functions

Link copied to clipboard
open override fun toJava(): ComponentArgs