1. Packages
  2. Azure Native v1
  3. API Docs
  4. insights
  5. Component
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.insights.Component

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    An Application Insights component definition. API Version: 2015-05-01.

    Example Usage

    ComponentCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var component = new AzureNative.Insights.Component("component", new()
        {
            ApplicationType = "web",
            FlowType = "Bluefield",
            Kind = "web",
            Location = "South Central US",
            RequestSource = "rest",
            ResourceGroupName = "my-resource-group",
            ResourceName = "my-component",
        });
    
    });
    
    package main
    
    import (
    	insights "github.com/pulumi/pulumi-azure-native-sdk/insights"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := insights.NewComponent(ctx, "component", &insights.ComponentArgs{
    			ApplicationType:   pulumi.String("web"),
    			FlowType:          pulumi.String("Bluefield"),
    			Kind:              pulumi.String("web"),
    			Location:          pulumi.String("South Central US"),
    			RequestSource:     pulumi.String("rest"),
    			ResourceGroupName: pulumi.String("my-resource-group"),
    			ResourceName:      pulumi.String("my-component"),
    		})
    		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.insights.Component;
    import com.pulumi.azurenative.insights.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")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    component = azure_native.insights.Component("component",
        application_type="web",
        flow_type="Bluefield",
        kind="web",
        location="South Central US",
        request_source="rest",
        resource_group_name="my-resource-group",
        resource_name_="my-component")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const component = new azure_native.insights.Component("component", {
        applicationType: "web",
        flowType: "Bluefield",
        kind: "web",
        location: "South Central US",
        requestSource: "rest",
        resourceGroupName: "my-resource-group",
        resourceName: "my-component",
    });
    
    resources:
      component:
        type: azure-native:insights:Component
        properties:
          applicationType: web
          flowType: Bluefield
          kind: web
          location: South Central US
          requestSource: rest
          resourceGroupName: my-resource-group
          resourceName: my-component
    

    ComponentUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var component = new AzureNative.Insights.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 (
    	insights "github.com/pulumi/pulumi-azure-native-sdk/insights"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := insights.NewComponent(ctx, "component", &insights.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.insights.Component;
    import com.pulumi.azurenative.insights.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 pulumi
    import pulumi_azure_native as azure_native
    
    component = azure_native.insights.Component("component",
        kind="web",
        location="South Central US",
        resource_group_name="my-resource-group",
        resource_name_="my-component",
        tags={
            "ApplicationGatewayType": "Internal-Only",
            "BillingEntity": "Self",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const component = new azure_native.insights.Component("component", {
        kind: "web",
        location: "South Central US",
        resourceGroupName: "my-resource-group",
        resourceName: "my-component",
        tags: {
            ApplicationGatewayType: "Internal-Only",
            BillingEntity: "Self",
        },
    });
    
    resources:
      component:
        type: azure-native:insights:Component
        properties:
          kind: web
          location: South Central US
          resourceGroupName: my-resource-group
          resourceName: my-component
          tags:
            ApplicationGatewayType: Internal-Only
            BillingEntity: Self
    

    Create Component Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Component(name: string, args: ComponentArgs, opts?: CustomResourceOptions);
    @overload
    def Component(resource_name: str,
                  args: ComponentArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Component(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  resource_group_name: Optional[str] = None,
                  kind: Optional[str] = None,
                  application_type: Optional[Union[str, ApplicationType]] = None,
                  immediate_purge_data_on30_days: Optional[bool] = None,
                  location: Optional[str] = None,
                  ingestion_mode: Optional[Union[str, IngestionMode]] = None,
                  disable_ip_masking: Optional[bool] = None,
                  hockey_app_id: Optional[str] = None,
                  resource_name_: Optional[str] = None,
                  flow_type: Optional[Union[str, FlowType]] = None,
                  request_source: Optional[Union[str, RequestSource]] = None,
                  retention_in_days: Optional[int] = None,
                  sampling_percentage: Optional[float] = None,
                  tags: Optional[Mapping[str, str]] = None)
    func NewComponent(ctx *Context, name string, args ComponentArgs, opts ...ResourceOption) (*Component, error)
    public Component(string name, ComponentArgs args, CustomResourceOptions? opts = null)
    public Component(String name, ComponentArgs args)
    public Component(String name, ComponentArgs args, CustomResourceOptions options)
    
    type: azure-native:insights:Component
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ComponentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ComponentArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ComponentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ComponentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ComponentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var componentResource = new AzureNative.Insights.Component("componentResource", new()
    {
        ResourceGroupName = "string",
        Kind = "string",
        ApplicationType = "string",
        ImmediatePurgeDataOn30Days = false,
        Location = "string",
        IngestionMode = "string",
        DisableIpMasking = false,
        HockeyAppId = "string",
        ResourceName = "string",
        FlowType = "string",
        RequestSource = "string",
        RetentionInDays = 0,
        SamplingPercentage = 0,
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := insights.NewComponent(ctx, "componentResource", &insights.ComponentArgs{
    	ResourceGroupName:          "string",
    	Kind:                       "string",
    	ApplicationType:            "string",
    	ImmediatePurgeDataOn30Days: false,
    	Location:                   "string",
    	IngestionMode:              "string",
    	DisableIpMasking:           false,
    	HockeyAppId:                "string",
    	ResourceName:               "string",
    	FlowType:                   "string",
    	RequestSource:              "string",
    	RetentionInDays:            0,
    	SamplingPercentage:         0,
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    })
    
    var componentResource = new Component("componentResource", ComponentArgs.builder()
        .resourceGroupName("string")
        .kind("string")
        .applicationType("string")
        .immediatePurgeDataOn30Days(false)
        .location("string")
        .ingestionMode("string")
        .disableIpMasking(false)
        .hockeyAppId("string")
        .resourceName("string")
        .flowType("string")
        .requestSource("string")
        .retentionInDays(0)
        .samplingPercentage(0)
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    component_resource = azure_native.insights.Component("componentResource",
        resource_group_name=string,
        kind=string,
        application_type=string,
        immediate_purge_data_on30_days=False,
        location=string,
        ingestion_mode=string,
        disable_ip_masking=False,
        hockey_app_id=string,
        resource_name_=string,
        flow_type=string,
        request_source=string,
        retention_in_days=0,
        sampling_percentage=0,
        tags={
            string: string,
        })
    
    const componentResource = new azure_native.insights.Component("componentResource", {
        resourceGroupName: "string",
        kind: "string",
        applicationType: "string",
        immediatePurgeDataOn30Days: false,
        location: "string",
        ingestionMode: "string",
        disableIpMasking: false,
        hockeyAppId: "string",
        resourceName: "string",
        flowType: "string",
        requestSource: "string",
        retentionInDays: 0,
        samplingPercentage: 0,
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:insights:Component
    properties:
        applicationType: string
        disableIpMasking: false
        flowType: string
        hockeyAppId: string
        immediatePurgeDataOn30Days: false
        ingestionMode: string
        kind: string
        location: string
        requestSource: string
        resourceGroupName: string
        resourceName: string
        retentionInDays: 0
        samplingPercentage: 0
        tags:
            string: string
    

    Component Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Component resource accepts the following input properties:

    ApplicationType string | Pulumi.AzureNative.Insights.ApplicationType
    Type of application being monitored.
    Kind string
    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.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DisableIpMasking bool
    Disable IP masking.
    FlowType string | Pulumi.AzureNative.Insights.FlowType
    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.
    HockeyAppId string
    The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
    ImmediatePurgeDataOn30Days bool
    Purge data immediately after 30 days.
    IngestionMode string | Pulumi.AzureNative.Insights.IngestionMode
    Indicates the flow of the ingestion.
    Location string
    Resource location
    RequestSource string | Pulumi.AzureNative.Insights.RequestSource
    Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
    ResourceName string
    The name of the Application Insights component resource.
    RetentionInDays int
    Retention period in days.
    SamplingPercentage double
    Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
    Tags Dictionary<string, string>
    Resource tags
    ApplicationType string | ApplicationType
    Type of application being monitored.
    Kind string
    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.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DisableIpMasking bool
    Disable IP masking.
    FlowType string | FlowType
    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.
    HockeyAppId string
    The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
    ImmediatePurgeDataOn30Days bool
    Purge data immediately after 30 days.
    IngestionMode string | IngestionMode
    Indicates the flow of the ingestion.
    Location string
    Resource location
    RequestSource string | RequestSource
    Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
    ResourceName string
    The name of the Application Insights component resource.
    RetentionInDays int
    Retention period in days.
    SamplingPercentage float64
    Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
    Tags map[string]string
    Resource tags
    applicationType String | ApplicationType
    Type of application being monitored.
    kind String
    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.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    disableIpMasking Boolean
    Disable IP masking.
    flowType String | FlowType
    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.
    hockeyAppId String
    The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
    immediatePurgeDataOn30Days Boolean
    Purge data immediately after 30 days.
    ingestionMode String | IngestionMode
    Indicates the flow of the ingestion.
    location String
    Resource location
    requestSource String | RequestSource
    Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
    resourceName String
    The name of the Application Insights component resource.
    retentionInDays Integer
    Retention period in days.
    samplingPercentage Double
    Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
    tags Map<String,String>
    Resource tags
    applicationType string | ApplicationType
    Type of application being monitored.
    kind string
    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.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    disableIpMasking boolean
    Disable IP masking.
    flowType string | FlowType
    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.
    hockeyAppId string
    The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
    immediatePurgeDataOn30Days boolean
    Purge data immediately after 30 days.
    ingestionMode string | IngestionMode
    Indicates the flow of the ingestion.
    location string
    Resource location
    requestSource string | RequestSource
    Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
    resourceName string
    The name of the Application Insights component resource.
    retentionInDays number
    Retention period in days.
    samplingPercentage number
    Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
    tags {[key: string]: string}
    Resource tags
    application_type str | ApplicationType
    Type of application being monitored.
    kind str
    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.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    disable_ip_masking bool
    Disable IP masking.
    flow_type str | FlowType
    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.
    hockey_app_id str
    The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
    immediate_purge_data_on30_days bool
    Purge data immediately after 30 days.
    ingestion_mode str | IngestionMode
    Indicates the flow of the ingestion.
    location str
    Resource location
    request_source str | RequestSource
    Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
    resource_name str
    The name of the Application Insights component resource.
    retention_in_days int
    Retention period in days.
    sampling_percentage float
    Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
    tags Mapping[str, str]
    Resource tags
    applicationType String | "web" | "other"
    Type of application being monitored.
    kind String
    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.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    disableIpMasking Boolean
    Disable IP masking.
    flowType String | "Bluefield"
    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.
    hockeyAppId String
    The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
    immediatePurgeDataOn30Days Boolean
    Purge data immediately after 30 days.
    ingestionMode String | "ApplicationInsights" | "ApplicationInsightsWithDiagnosticSettings" | "LogAnalytics"
    Indicates the flow of the ingestion.
    location String
    Resource location
    requestSource String | "rest"
    Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
    resourceName String
    The name of the Application Insights component resource.
    retentionInDays Number
    Retention period in days.
    samplingPercentage Number
    Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
    tags Map<String>
    Resource tags

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Component resource produces the following output properties:

    AppId string
    Application Insights Unique ID for your Application.
    ApplicationId string
    The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
    ConnectionString string
    Application Insights component connection string.
    CreationDate string
    Creation Date for the Application Insights component, in ISO 8601 format.
    HockeyAppToken string
    Token used to authenticate communications with between Application Insights and HockeyApp.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstrumentationKey string
    Application Insights Instrumentation key. A read-only value that applications can use to identify the destination for all telemetry sent to Azure Application Insights. This value will be supplied upon construction of each new Application Insights component.
    Name string
    Azure resource name
    PrivateLinkScopedResources List<Pulumi.AzureNative.Insights.Outputs.PrivateLinkScopedResourceResponse>
    List of linked private link scope resources.
    ProvisioningState string
    Current state of this component: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.
    TenantId string
    Azure Tenant Id.
    Type string
    Azure resource type
    AppId string
    Application Insights Unique ID for your Application.
    ApplicationId string
    The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
    ConnectionString string
    Application Insights component connection string.
    CreationDate string
    Creation Date for the Application Insights component, in ISO 8601 format.
    HockeyAppToken string
    Token used to authenticate communications with between Application Insights and HockeyApp.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstrumentationKey string
    Application Insights Instrumentation key. A read-only value that applications can use to identify the destination for all telemetry sent to Azure Application Insights. This value will be supplied upon construction of each new Application Insights component.
    Name string
    Azure resource name
    PrivateLinkScopedResources []PrivateLinkScopedResourceResponse
    List of linked private link scope resources.
    ProvisioningState string
    Current state of this component: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.
    TenantId string
    Azure Tenant Id.
    Type string
    Azure resource type
    appId String
    Application Insights Unique ID for your Application.
    applicationId String
    The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
    connectionString String
    Application Insights component connection string.
    creationDate String
    Creation Date for the Application Insights component, in ISO 8601 format.
    hockeyAppToken String
    Token used to authenticate communications with between Application Insights and HockeyApp.
    id String
    The provider-assigned unique ID for this managed resource.
    instrumentationKey String
    Application Insights Instrumentation key. A read-only value that applications can use to identify the destination for all telemetry sent to Azure Application Insights. This value will be supplied upon construction of each new Application Insights component.
    name String
    Azure resource name
    privateLinkScopedResources List<PrivateLinkScopedResourceResponse>
    List of linked private link scope resources.
    provisioningState String
    Current state of this component: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.
    tenantId String
    Azure Tenant Id.
    type String
    Azure resource type
    appId string
    Application Insights Unique ID for your Application.
    applicationId string
    The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
    connectionString string
    Application Insights component connection string.
    creationDate string
    Creation Date for the Application Insights component, in ISO 8601 format.
    hockeyAppToken string
    Token used to authenticate communications with between Application Insights and HockeyApp.
    id string
    The provider-assigned unique ID for this managed resource.
    instrumentationKey string
    Application Insights Instrumentation key. A read-only value that applications can use to identify the destination for all telemetry sent to Azure Application Insights. This value will be supplied upon construction of each new Application Insights component.
    name string
    Azure resource name
    privateLinkScopedResources PrivateLinkScopedResourceResponse[]
    List of linked private link scope resources.
    provisioningState string
    Current state of this component: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.
    tenantId string
    Azure Tenant Id.
    type string
    Azure resource type
    app_id str
    Application Insights Unique ID for your Application.
    application_id str
    The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
    connection_string str
    Application Insights component connection string.
    creation_date str
    Creation Date for the Application Insights component, in ISO 8601 format.
    hockey_app_token str
    Token used to authenticate communications with between Application Insights and HockeyApp.
    id str
    The provider-assigned unique ID for this managed resource.
    instrumentation_key str
    Application Insights Instrumentation key. A read-only value that applications can use to identify the destination for all telemetry sent to Azure Application Insights. This value will be supplied upon construction of each new Application Insights component.
    name str
    Azure resource name
    private_link_scoped_resources Sequence[PrivateLinkScopedResourceResponse]
    List of linked private link scope resources.
    provisioning_state str
    Current state of this component: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.
    tenant_id str
    Azure Tenant Id.
    type str
    Azure resource type
    appId String
    Application Insights Unique ID for your Application.
    applicationId String
    The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
    connectionString String
    Application Insights component connection string.
    creationDate String
    Creation Date for the Application Insights component, in ISO 8601 format.
    hockeyAppToken String
    Token used to authenticate communications with between Application Insights and HockeyApp.
    id String
    The provider-assigned unique ID for this managed resource.
    instrumentationKey String
    Application Insights Instrumentation key. A read-only value that applications can use to identify the destination for all telemetry sent to Azure Application Insights. This value will be supplied upon construction of each new Application Insights component.
    name String
    Azure resource name
    privateLinkScopedResources List<Property Map>
    List of linked private link scope resources.
    provisioningState String
    Current state of this component: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.
    tenantId String
    Azure Tenant Id.
    type String
    Azure resource type

    Supporting Types

    ApplicationType, ApplicationTypeArgs

    Web
    web
    Other
    other
    ApplicationTypeWeb
    web
    ApplicationTypeOther
    other
    Web
    web
    Other
    other
    Web
    web
    Other
    other
    WEB
    web
    OTHER
    other
    "web"
    web
    "other"
    other

    FlowType, FlowTypeArgs

    Bluefield
    Bluefield
    FlowTypeBluefield
    Bluefield
    Bluefield
    Bluefield
    Bluefield
    Bluefield
    BLUEFIELD
    Bluefield
    "Bluefield"
    Bluefield

    IngestionMode, IngestionModeArgs

    ApplicationInsights
    ApplicationInsights
    ApplicationInsightsWithDiagnosticSettings
    ApplicationInsightsWithDiagnosticSettings
    LogAnalytics
    LogAnalytics
    IngestionModeApplicationInsights
    ApplicationInsights
    IngestionModeApplicationInsightsWithDiagnosticSettings
    ApplicationInsightsWithDiagnosticSettings
    IngestionModeLogAnalytics
    LogAnalytics
    ApplicationInsights
    ApplicationInsights
    ApplicationInsightsWithDiagnosticSettings
    ApplicationInsightsWithDiagnosticSettings
    LogAnalytics
    LogAnalytics
    ApplicationInsights
    ApplicationInsights
    ApplicationInsightsWithDiagnosticSettings
    ApplicationInsightsWithDiagnosticSettings
    LogAnalytics
    LogAnalytics
    APPLICATION_INSIGHTS
    ApplicationInsights
    APPLICATION_INSIGHTS_WITH_DIAGNOSTIC_SETTINGS
    ApplicationInsightsWithDiagnosticSettings
    LOG_ANALYTICS
    LogAnalytics
    "ApplicationInsights"
    ApplicationInsights
    "ApplicationInsightsWithDiagnosticSettings"
    ApplicationInsightsWithDiagnosticSettings
    "LogAnalytics"
    LogAnalytics

    PrivateLinkScopedResourceResponse, PrivateLinkScopedResourceResponseArgs

    ResourceId string
    The full resource Id of the private link scope resource.
    ScopeId string
    The private link scope unique Identifier.
    ResourceId string
    The full resource Id of the private link scope resource.
    ScopeId string
    The private link scope unique Identifier.
    resourceId String
    The full resource Id of the private link scope resource.
    scopeId String
    The private link scope unique Identifier.
    resourceId string
    The full resource Id of the private link scope resource.
    scopeId string
    The private link scope unique Identifier.
    resource_id str
    The full resource Id of the private link scope resource.
    scope_id str
    The private link scope unique Identifier.
    resourceId String
    The full resource Id of the private link scope resource.
    scopeId String
    The private link scope unique Identifier.

    RequestSource, RequestSourceArgs

    Rest
    rest
    RequestSourceRest
    rest
    Rest
    rest
    Rest
    rest
    REST
    rest
    "rest"
    rest

    Import

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

    $ pulumi import azure-native:insights:Component my-component /subscriptions/subid/resourceGroups/my-resource-group/providers/Microsoft.Insights/components/my-component 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi