azure-native.insights.Component
Explore with Pulumi AI
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:
- Application
Type string | Pulumi.Azure Native. Insights. Application Type - 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Disable
Ip boolMasking - Disable IP masking.
- Flow
Type string | Pulumi.Azure Native. Insights. Flow Type - 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 stringId - The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
- Immediate
Purge boolData On30Days - Purge data immediately after 30 days.
- Ingestion
Mode string | Pulumi.Azure Native. Insights. Ingestion Mode - Indicates the flow of the ingestion.
- Location string
- Resource location
- Request
Source string | Pulumi.Azure Native. Insights. Request Source - Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
- Resource
Name string - The name of the Application Insights component resource.
- Retention
In intDays - Retention period in days.
- Sampling
Percentage double - Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
- Dictionary<string, string>
- Resource tags
- Application
Type 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Disable
Ip boolMasking - Disable IP masking.
- Flow
Type 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.
- Hockey
App stringId - The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
- Immediate
Purge boolData On30Days - Purge data immediately after 30 days.
- Ingestion
Mode string | IngestionMode - Indicates the flow of the ingestion.
- Location string
- Resource location
- Request
Source string | RequestSource - Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
- Resource
Name string - The name of the Application Insights component resource.
- Retention
In intDays - Retention period in days.
- Sampling
Percentage float64 - Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
- map[string]string
- Resource tags
- application
Type 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.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- disable
Ip BooleanMasking - Disable IP masking.
- flow
Type 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.
- hockey
App StringId - The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
- immediate
Purge BooleanData On30Days - Purge data immediately after 30 days.
- ingestion
Mode String | IngestionMode - Indicates the flow of the ingestion.
- location String
- Resource location
- request
Source String | RequestSource - Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
- resource
Name String - The name of the Application Insights component resource.
- retention
In IntegerDays - Retention period in days.
- sampling
Percentage Double - Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
- Map<String,String>
- Resource tags
- application
Type 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.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- disable
Ip booleanMasking - Disable IP masking.
- flow
Type 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.
- hockey
App stringId - The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
- immediate
Purge booleanData On30Days - Purge data immediately after 30 days.
- ingestion
Mode string | IngestionMode - Indicates the flow of the ingestion.
- location string
- Resource location
- request
Source string | RequestSource - Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
- resource
Name string - The name of the Application Insights component resource.
- retention
In numberDays - Retention period in days.
- sampling
Percentage number - Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
- {[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_ strname - The name of the resource group. The name is case insensitive.
- disable_
ip_ boolmasking - 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_ strid - The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
- immediate_
purge_ booldata_ on30_ days - 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_ intdays - 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.
- Mapping[str, str]
- Resource tags
- application
Type 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.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- disable
Ip BooleanMasking - Disable IP masking.
- flow
Type 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.
- hockey
App StringId - The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
- immediate
Purge BooleanData On30Days - Purge data immediately after 30 days.
- ingestion
Mode String | "ApplicationInsights" | "Application Insights With Diagnostic Settings" | "Log Analytics" - Indicates the flow of the ingestion.
- location String
- Resource location
- request
Source String | "rest" - Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'.
- resource
Name String - The name of the Application Insights component resource.
- retention
In NumberDays - Retention period in days.
- sampling
Percentage Number - Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
- Map<String>
- Resource tags
Outputs
All input properties are implicitly available as output properties. Additionally, the Component resource produces the following output properties:
- App
Id string - Application Insights Unique ID for your Application.
- Application
Id string - The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
- Connection
String string - Application Insights component connection string.
- Creation
Date string - Creation Date for the Application Insights component, in ISO 8601 format.
- Hockey
App stringToken - Token used to authenticate communications with between Application Insights and HockeyApp.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instrumentation
Key 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
- Private
Link List<Pulumi.Scoped Resources Azure Native. Insights. Outputs. Private Link Scoped Resource Response> - List of linked private link scope resources.
- Provisioning
State 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.
- Tenant
Id string - Azure Tenant Id.
- Type string
- Azure resource type
- App
Id string - Application Insights Unique ID for your Application.
- Application
Id string - The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
- Connection
String string - Application Insights component connection string.
- Creation
Date string - Creation Date for the Application Insights component, in ISO 8601 format.
- Hockey
App stringToken - Token used to authenticate communications with between Application Insights and HockeyApp.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instrumentation
Key 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
- Private
Link []PrivateScoped Resources Link Scoped Resource Response - List of linked private link scope resources.
- Provisioning
State 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.
- Tenant
Id string - Azure Tenant Id.
- Type string
- Azure resource type
- app
Id String - Application Insights Unique ID for your Application.
- application
Id String - The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
- connection
String String - Application Insights component connection string.
- creation
Date String - Creation Date for the Application Insights component, in ISO 8601 format.
- hockey
App StringToken - Token used to authenticate communications with between Application Insights and HockeyApp.
- id String
- The provider-assigned unique ID for this managed resource.
- instrumentation
Key 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
- private
Link List<PrivateScoped Resources Link Scoped Resource Response> - List of linked private link scope resources.
- provisioning
State 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.
- tenant
Id String - Azure Tenant Id.
- type String
- Azure resource type
- app
Id string - Application Insights Unique ID for your Application.
- application
Id string - The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
- connection
String string - Application Insights component connection string.
- creation
Date string - Creation Date for the Application Insights component, in ISO 8601 format.
- hockey
App stringToken - Token used to authenticate communications with between Application Insights and HockeyApp.
- id string
- The provider-assigned unique ID for this managed resource.
- instrumentation
Key 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
- private
Link PrivateScoped Resources Link Scoped Resource Response[] - List of linked private link scope resources.
- provisioning
State 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.
- tenant
Id 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_ strtoken - 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_ Sequence[Privatescoped_ resources Link Scoped Resource Response] - 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
- app
Id String - Application Insights Unique ID for your Application.
- application
Id String - The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
- connection
String String - Application Insights component connection string.
- creation
Date String - Creation Date for the Application Insights component, in ISO 8601 format.
- hockey
App StringToken - Token used to authenticate communications with between Application Insights and HockeyApp.
- id String
- The provider-assigned unique ID for this managed resource.
- instrumentation
Key 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
- private
Link List<Property Map>Scoped Resources - List of linked private link scope resources.
- provisioning
State 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.
- tenant
Id String - Azure Tenant Id.
- type String
- Azure resource type
Supporting Types
ApplicationType, ApplicationTypeArgs
- Web
- web
- Other
- other
- Application
Type Web - web
- Application
Type Other - other
- Web
- web
- Other
- other
- Web
- web
- Other
- other
- WEB
- web
- OTHER
- other
- "web"
- web
- "other"
- other
FlowType, FlowTypeArgs
- Bluefield
- Bluefield
- Flow
Type Bluefield - Bluefield
- Bluefield
- Bluefield
- Bluefield
- Bluefield
- BLUEFIELD
- Bluefield
- "Bluefield"
- Bluefield
IngestionMode, IngestionModeArgs
- Application
Insights - ApplicationInsights
- Application
Insights With Diagnostic Settings - ApplicationInsightsWithDiagnosticSettings
- Log
Analytics - LogAnalytics
- Ingestion
Mode Application Insights - ApplicationInsights
- Ingestion
Mode Application Insights With Diagnostic Settings - ApplicationInsightsWithDiagnosticSettings
- Ingestion
Mode Log Analytics - LogAnalytics
- Application
Insights - ApplicationInsights
- Application
Insights With Diagnostic Settings - ApplicationInsightsWithDiagnosticSettings
- Log
Analytics - LogAnalytics
- Application
Insights - ApplicationInsights
- Application
Insights With Diagnostic Settings - ApplicationInsightsWithDiagnosticSettings
- Log
Analytics - LogAnalytics
- APPLICATION_INSIGHTS
- ApplicationInsights
- APPLICATION_INSIGHTS_WITH_DIAGNOSTIC_SETTINGS
- ApplicationInsightsWithDiagnosticSettings
- LOG_ANALYTICS
- LogAnalytics
- "Application
Insights" - ApplicationInsights
- "Application
Insights With Diagnostic Settings" - ApplicationInsightsWithDiagnosticSettings
- "Log
Analytics" - LogAnalytics
PrivateLinkScopedResourceResponse, PrivateLinkScopedResourceResponseArgs
- Resource
Id string - The full resource Id of the private link scope resource.
- Scope
Id string - The private link scope unique Identifier.
- Resource
Id string - The full resource Id of the private link scope resource.
- Scope
Id string - The private link scope unique Identifier.
- resource
Id String - The full resource Id of the private link scope resource.
- scope
Id String - The private link scope unique Identifier.
- resource
Id string - The full resource Id of the private link scope resource.
- scope
Id 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.
- resource
Id String - The full resource Id of the private link scope resource.
- scope
Id String - The private link scope unique Identifier.
RequestSource, RequestSourceArgs
- Rest
- rest
- Request
Source Rest - 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