1. Packages
  2. Azure Native
  3. API Docs
  4. insights
  5. DataCollectionEndpoint
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.insights.DataCollectionEndpoint

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Definition of ARM tracked top level resource. Azure REST API version: 2022-06-01. Prior API version in Azure Native 1.x: 2021-09-01-preview.

    Other available API versions: 2023-03-11.

    Example Usage

    Create or update data collection endpoint

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var dataCollectionEndpoint = new AzureNative.Insights.DataCollectionEndpoint("dataCollectionEndpoint", new()
        {
            DataCollectionEndpointName = "myCollectionEndpoint",
            Location = "eastus",
            NetworkAcls = new AzureNative.Insights.Inputs.DataCollectionEndpointNetworkAclsArgs
            {
                PublicNetworkAccess = AzureNative.Insights.KnownPublicNetworkAccessOptions.Enabled,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/insights/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := insights.NewDataCollectionEndpoint(ctx, "dataCollectionEndpoint", &insights.DataCollectionEndpointArgs{
    			DataCollectionEndpointName: pulumi.String("myCollectionEndpoint"),
    			Location:                   pulumi.String("eastus"),
    			NetworkAcls: &insights.DataCollectionEndpointNetworkAclsArgs{
    				PublicNetworkAccess: pulumi.String(insights.KnownPublicNetworkAccessOptionsEnabled),
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.DataCollectionEndpoint;
    import com.pulumi.azurenative.insights.DataCollectionEndpointArgs;
    import com.pulumi.azurenative.insights.inputs.DataCollectionEndpointNetworkAclsArgs;
    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 dataCollectionEndpoint = new DataCollectionEndpoint("dataCollectionEndpoint", DataCollectionEndpointArgs.builder()        
                .dataCollectionEndpointName("myCollectionEndpoint")
                .location("eastus")
                .networkAcls(DataCollectionEndpointNetworkAclsArgs.builder()
                    .publicNetworkAccess("Enabled")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    data_collection_endpoint = azure_native.insights.DataCollectionEndpoint("dataCollectionEndpoint",
        data_collection_endpoint_name="myCollectionEndpoint",
        location="eastus",
        network_acls=azure_native.insights.DataCollectionEndpointNetworkAclsArgs(
            public_network_access=azure_native.insights.KnownPublicNetworkAccessOptions.ENABLED,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const dataCollectionEndpoint = new azure_native.insights.DataCollectionEndpoint("dataCollectionEndpoint", {
        dataCollectionEndpointName: "myCollectionEndpoint",
        location: "eastus",
        networkAcls: {
            publicNetworkAccess: azure_native.insights.KnownPublicNetworkAccessOptions.Enabled,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      dataCollectionEndpoint:
        type: azure-native:insights:DataCollectionEndpoint
        properties:
          dataCollectionEndpointName: myCollectionEndpoint
          location: eastus
          networkAcls:
            publicNetworkAccess: Enabled
          resourceGroupName: myResourceGroup
    

    Create DataCollectionEndpoint Resource

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

    Constructor syntax

    new DataCollectionEndpoint(name: string, args: DataCollectionEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def DataCollectionEndpoint(resource_name: str,
                               args: DataCollectionEndpointArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def DataCollectionEndpoint(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               resource_group_name: Optional[str] = None,
                               data_collection_endpoint_name: Optional[str] = None,
                               description: Optional[str] = None,
                               identity: Optional[DataCollectionEndpointResourceIdentityArgs] = None,
                               immutable_id: Optional[str] = None,
                               kind: Optional[Union[str, KnownDataCollectionEndpointResourceKind]] = None,
                               location: Optional[str] = None,
                               network_acls: Optional[DataCollectionEndpointNetworkAclsArgs] = None,
                               tags: Optional[Mapping[str, str]] = None)
    func NewDataCollectionEndpoint(ctx *Context, name string, args DataCollectionEndpointArgs, opts ...ResourceOption) (*DataCollectionEndpoint, error)
    public DataCollectionEndpoint(string name, DataCollectionEndpointArgs args, CustomResourceOptions? opts = null)
    public DataCollectionEndpoint(String name, DataCollectionEndpointArgs args)
    public DataCollectionEndpoint(String name, DataCollectionEndpointArgs args, CustomResourceOptions options)
    
    type: azure-native:insights:DataCollectionEndpoint
    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 DataCollectionEndpointArgs
    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 DataCollectionEndpointArgs
    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 DataCollectionEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DataCollectionEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DataCollectionEndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var dataCollectionEndpointResource = new AzureNative.Insights.DataCollectionEndpoint("dataCollectionEndpointResource", new()
    {
        ResourceGroupName = "string",
        DataCollectionEndpointName = "string",
        Description = "string",
        Identity = new AzureNative.Insights.Inputs.DataCollectionEndpointResourceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        ImmutableId = "string",
        Kind = "string",
        Location = "string",
        NetworkAcls = new AzureNative.Insights.Inputs.DataCollectionEndpointNetworkAclsArgs
        {
            PublicNetworkAccess = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := insights.NewDataCollectionEndpoint(ctx, "dataCollectionEndpointResource", &insights.DataCollectionEndpointArgs{
    ResourceGroupName: pulumi.String("string"),
    DataCollectionEndpointName: pulumi.String("string"),
    Description: pulumi.String("string"),
    Identity: &insights.DataCollectionEndpointResourceIdentityArgs{
    Type: pulumi.String("string"),
    UserAssignedIdentities: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    ImmutableId: pulumi.String("string"),
    Kind: pulumi.String("string"),
    Location: pulumi.String("string"),
    NetworkAcls: &insights.DataCollectionEndpointNetworkAclsArgs{
    PublicNetworkAccess: pulumi.String("string"),
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var dataCollectionEndpointResource = new DataCollectionEndpoint("dataCollectionEndpointResource", DataCollectionEndpointArgs.builder()        
        .resourceGroupName("string")
        .dataCollectionEndpointName("string")
        .description("string")
        .identity(DataCollectionEndpointResourceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .immutableId("string")
        .kind("string")
        .location("string")
        .networkAcls(DataCollectionEndpointNetworkAclsArgs.builder()
            .publicNetworkAccess("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    data_collection_endpoint_resource = azure_native.insights.DataCollectionEndpoint("dataCollectionEndpointResource",
        resource_group_name="string",
        data_collection_endpoint_name="string",
        description="string",
        identity=azure_native.insights.DataCollectionEndpointResourceIdentityArgs(
            type="string",
            user_assigned_identities=["string"],
        ),
        immutable_id="string",
        kind="string",
        location="string",
        network_acls=azure_native.insights.DataCollectionEndpointNetworkAclsArgs(
            public_network_access="string",
        ),
        tags={
            "string": "string",
        })
    
    const dataCollectionEndpointResource = new azure_native.insights.DataCollectionEndpoint("dataCollectionEndpointResource", {
        resourceGroupName: "string",
        dataCollectionEndpointName: "string",
        description: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        immutableId: "string",
        kind: "string",
        location: "string",
        networkAcls: {
            publicNetworkAccess: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:insights:DataCollectionEndpoint
    properties:
        dataCollectionEndpointName: string
        description: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        immutableId: string
        kind: string
        location: string
        networkAcls:
            publicNetworkAccess: string
        resourceGroupName: string
        tags:
            string: string
    

    DataCollectionEndpoint 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 DataCollectionEndpoint resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DataCollectionEndpointName string
    The name of the data collection endpoint. The name is case insensitive.
    Description string
    Description of the data collection endpoint.
    Identity Pulumi.AzureNative.Insights.Inputs.DataCollectionEndpointResourceIdentity
    Managed service identity of the resource.
    ImmutableId string
    The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
    Kind string | Pulumi.AzureNative.Insights.KnownDataCollectionEndpointResourceKind
    The kind of the resource.
    Location string
    The geo-location where the resource lives.
    NetworkAcls Pulumi.AzureNative.Insights.Inputs.DataCollectionEndpointNetworkAcls
    Network access control rules for the endpoints.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DataCollectionEndpointName string
    The name of the data collection endpoint. The name is case insensitive.
    Description string
    Description of the data collection endpoint.
    Identity DataCollectionEndpointResourceIdentityArgs
    Managed service identity of the resource.
    ImmutableId string
    The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
    Kind string | KnownDataCollectionEndpointResourceKind
    The kind of the resource.
    Location string
    The geo-location where the resource lives.
    NetworkAcls DataCollectionEndpointNetworkAclsArgs
    Network access control rules for the endpoints.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    dataCollectionEndpointName String
    The name of the data collection endpoint. The name is case insensitive.
    description String
    Description of the data collection endpoint.
    identity DataCollectionEndpointResourceIdentity
    Managed service identity of the resource.
    immutableId String
    The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
    kind String | KnownDataCollectionEndpointResourceKind
    The kind of the resource.
    location String
    The geo-location where the resource lives.
    networkAcls DataCollectionEndpointNetworkAcls
    Network access control rules for the endpoints.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    dataCollectionEndpointName string
    The name of the data collection endpoint. The name is case insensitive.
    description string
    Description of the data collection endpoint.
    identity DataCollectionEndpointResourceIdentity
    Managed service identity of the resource.
    immutableId string
    The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
    kind string | KnownDataCollectionEndpointResourceKind
    The kind of the resource.
    location string
    The geo-location where the resource lives.
    networkAcls DataCollectionEndpointNetworkAcls
    Network access control rules for the endpoints.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    data_collection_endpoint_name str
    The name of the data collection endpoint. The name is case insensitive.
    description str
    Description of the data collection endpoint.
    identity DataCollectionEndpointResourceIdentityArgs
    Managed service identity of the resource.
    immutable_id str
    The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
    kind str | KnownDataCollectionEndpointResourceKind
    The kind of the resource.
    location str
    The geo-location where the resource lives.
    network_acls DataCollectionEndpointNetworkAclsArgs
    Network access control rules for the endpoints.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    dataCollectionEndpointName String
    The name of the data collection endpoint. The name is case insensitive.
    description String
    Description of the data collection endpoint.
    identity Property Map
    Managed service identity of the resource.
    immutableId String
    The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
    kind String | "Linux" | "Windows"
    The kind of the resource.
    location String
    The geo-location where the resource lives.
    networkAcls Property Map
    Network access control rules for the endpoints.
    tags Map<String>
    Resource tags.

    Outputs

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

    Etag string
    Resource entity tag (ETag).
    FailoverConfiguration Pulumi.AzureNative.Insights.Outputs.DataCollectionEndpointResponseFailoverConfiguration
    Failover configuration on this endpoint. This property is READ-ONLY.
    Id string
    The provider-assigned unique ID for this managed resource.
    Metadata Pulumi.AzureNative.Insights.Outputs.DataCollectionEndpointResponseMetadata
    Metadata for the resource. This property is READ-ONLY.
    Name string
    The name of the resource.
    PrivateLinkScopedResources List<Pulumi.AzureNative.Insights.Outputs.PrivateLinkScopedResourceResponse>
    List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
    ProvisioningState string
    The resource provisioning state. This property is READ-ONLY.
    SystemData Pulumi.AzureNative.Insights.Outputs.DataCollectionEndpointResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource.
    ConfigurationAccess Pulumi.AzureNative.Insights.Outputs.DataCollectionEndpointResponseConfigurationAccess
    The endpoint used by clients to access their configuration.
    LogsIngestion Pulumi.AzureNative.Insights.Outputs.DataCollectionEndpointResponseLogsIngestion
    The endpoint used by clients to ingest logs.
    MetricsIngestion Pulumi.AzureNative.Insights.Outputs.DataCollectionEndpointResponseMetricsIngestion
    The endpoint used by clients to ingest metrics.
    Etag string
    Resource entity tag (ETag).
    FailoverConfiguration DataCollectionEndpointResponseFailoverConfiguration
    Failover configuration on this endpoint. This property is READ-ONLY.
    Id string
    The provider-assigned unique ID for this managed resource.
    Metadata DataCollectionEndpointResponseMetadata
    Metadata for the resource. This property is READ-ONLY.
    Name string
    The name of the resource.
    PrivateLinkScopedResources []PrivateLinkScopedResourceResponse
    List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
    ProvisioningState string
    The resource provisioning state. This property is READ-ONLY.
    SystemData DataCollectionEndpointResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource.
    ConfigurationAccess DataCollectionEndpointResponseConfigurationAccess
    The endpoint used by clients to access their configuration.
    LogsIngestion DataCollectionEndpointResponseLogsIngestion
    The endpoint used by clients to ingest logs.
    MetricsIngestion DataCollectionEndpointResponseMetricsIngestion
    The endpoint used by clients to ingest metrics.
    etag String
    Resource entity tag (ETag).
    failoverConfiguration DataCollectionEndpointResponseFailoverConfiguration
    Failover configuration on this endpoint. This property is READ-ONLY.
    id String
    The provider-assigned unique ID for this managed resource.
    metadata DataCollectionEndpointResponseMetadata
    Metadata for the resource. This property is READ-ONLY.
    name String
    The name of the resource.
    privateLinkScopedResources List<PrivateLinkScopedResourceResponse>
    List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
    provisioningState String
    The resource provisioning state. This property is READ-ONLY.
    systemData DataCollectionEndpointResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource.
    configurationAccess DataCollectionEndpointResponseConfigurationAccess
    The endpoint used by clients to access their configuration.
    logsIngestion DataCollectionEndpointResponseLogsIngestion
    The endpoint used by clients to ingest logs.
    metricsIngestion DataCollectionEndpointResponseMetricsIngestion
    The endpoint used by clients to ingest metrics.
    etag string
    Resource entity tag (ETag).
    failoverConfiguration DataCollectionEndpointResponseFailoverConfiguration
    Failover configuration on this endpoint. This property is READ-ONLY.
    id string
    The provider-assigned unique ID for this managed resource.
    metadata DataCollectionEndpointResponseMetadata
    Metadata for the resource. This property is READ-ONLY.
    name string
    The name of the resource.
    privateLinkScopedResources PrivateLinkScopedResourceResponse[]
    List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
    provisioningState string
    The resource provisioning state. This property is READ-ONLY.
    systemData DataCollectionEndpointResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    type string
    The type of the resource.
    configurationAccess DataCollectionEndpointResponseConfigurationAccess
    The endpoint used by clients to access their configuration.
    logsIngestion DataCollectionEndpointResponseLogsIngestion
    The endpoint used by clients to ingest logs.
    metricsIngestion DataCollectionEndpointResponseMetricsIngestion
    The endpoint used by clients to ingest metrics.
    etag str
    Resource entity tag (ETag).
    failover_configuration DataCollectionEndpointResponseFailoverConfiguration
    Failover configuration on this endpoint. This property is READ-ONLY.
    id str
    The provider-assigned unique ID for this managed resource.
    metadata DataCollectionEndpointResponseMetadata
    Metadata for the resource. This property is READ-ONLY.
    name str
    The name of the resource.
    private_link_scoped_resources Sequence[PrivateLinkScopedResourceResponse]
    List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
    provisioning_state str
    The resource provisioning state. This property is READ-ONLY.
    system_data DataCollectionEndpointResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    type str
    The type of the resource.
    configuration_access DataCollectionEndpointResponseConfigurationAccess
    The endpoint used by clients to access their configuration.
    logs_ingestion DataCollectionEndpointResponseLogsIngestion
    The endpoint used by clients to ingest logs.
    metrics_ingestion DataCollectionEndpointResponseMetricsIngestion
    The endpoint used by clients to ingest metrics.
    etag String
    Resource entity tag (ETag).
    failoverConfiguration Property Map
    Failover configuration on this endpoint. This property is READ-ONLY.
    id String
    The provider-assigned unique ID for this managed resource.
    metadata Property Map
    Metadata for the resource. This property is READ-ONLY.
    name String
    The name of the resource.
    privateLinkScopedResources List<Property Map>
    List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
    provisioningState String
    The resource provisioning state. This property is READ-ONLY.
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource.
    configurationAccess Property Map
    The endpoint used by clients to access their configuration.
    logsIngestion Property Map
    The endpoint used by clients to ingest logs.
    metricsIngestion Property Map
    The endpoint used by clients to ingest metrics.

    Supporting Types

    DataCollectionEndpointNetworkAcls, DataCollectionEndpointNetworkAclsArgs

    PublicNetworkAccess string | Pulumi.AzureNative.Insights.KnownPublicNetworkAccessOptions
    The configuration to set whether network access from public internet to the endpoints are allowed.
    PublicNetworkAccess string | KnownPublicNetworkAccessOptions
    The configuration to set whether network access from public internet to the endpoints are allowed.
    publicNetworkAccess String | KnownPublicNetworkAccessOptions
    The configuration to set whether network access from public internet to the endpoints are allowed.
    publicNetworkAccess string | KnownPublicNetworkAccessOptions
    The configuration to set whether network access from public internet to the endpoints are allowed.
    public_network_access str | KnownPublicNetworkAccessOptions
    The configuration to set whether network access from public internet to the endpoints are allowed.
    publicNetworkAccess String | "Enabled" | "Disabled" | "SecuredByPerimeter"
    The configuration to set whether network access from public internet to the endpoints are allowed.

    DataCollectionEndpointResourceIdentity, DataCollectionEndpointResourceIdentityArgs

    Type string | Pulumi.AzureNative.Insights.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    DataCollectionEndpointResourceResponseIdentity, DataCollectionEndpointResourceResponseIdentityArgs

    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Insights.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    DataCollectionEndpointResourceResponseSystemData, DataCollectionEndpointResourceResponseSystemDataArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    DataCollectionEndpointResponseConfigurationAccess, DataCollectionEndpointResponseConfigurationAccessArgs

    Endpoint string
    The endpoint. This property is READ-ONLY.
    Endpoint string
    The endpoint. This property is READ-ONLY.
    endpoint String
    The endpoint. This property is READ-ONLY.
    endpoint string
    The endpoint. This property is READ-ONLY.
    endpoint str
    The endpoint. This property is READ-ONLY.
    endpoint String
    The endpoint. This property is READ-ONLY.

    DataCollectionEndpointResponseFailoverConfiguration, DataCollectionEndpointResponseFailoverConfigurationArgs

    ActiveLocation string
    Active location where data flow will occur.
    Locations List<Pulumi.AzureNative.Insights.Inputs.LocationSpecResponse>
    Locations that are configured for failover.
    ActiveLocation string
    Active location where data flow will occur.
    Locations []LocationSpecResponse
    Locations that are configured for failover.
    activeLocation String
    Active location where data flow will occur.
    locations List<LocationSpecResponse>
    Locations that are configured for failover.
    activeLocation string
    Active location where data flow will occur.
    locations LocationSpecResponse[]
    Locations that are configured for failover.
    active_location str
    Active location where data flow will occur.
    locations Sequence[LocationSpecResponse]
    Locations that are configured for failover.
    activeLocation String
    Active location where data flow will occur.
    locations List<Property Map>
    Locations that are configured for failover.

    DataCollectionEndpointResponseLogsIngestion, DataCollectionEndpointResponseLogsIngestionArgs

    Endpoint string
    The endpoint. This property is READ-ONLY.
    Endpoint string
    The endpoint. This property is READ-ONLY.
    endpoint String
    The endpoint. This property is READ-ONLY.
    endpoint string
    The endpoint. This property is READ-ONLY.
    endpoint str
    The endpoint. This property is READ-ONLY.
    endpoint String
    The endpoint. This property is READ-ONLY.

    DataCollectionEndpointResponseMetadata, DataCollectionEndpointResponseMetadataArgs

    ProvisionedBy string
    Azure offering managing this resource on-behalf-of customer.
    ProvisionedByResourceId string
    Resource Id of azure offering managing this resource on-behalf-of customer.
    ProvisionedBy string
    Azure offering managing this resource on-behalf-of customer.
    ProvisionedByResourceId string
    Resource Id of azure offering managing this resource on-behalf-of customer.
    provisionedBy String
    Azure offering managing this resource on-behalf-of customer.
    provisionedByResourceId String
    Resource Id of azure offering managing this resource on-behalf-of customer.
    provisionedBy string
    Azure offering managing this resource on-behalf-of customer.
    provisionedByResourceId string
    Resource Id of azure offering managing this resource on-behalf-of customer.
    provisioned_by str
    Azure offering managing this resource on-behalf-of customer.
    provisioned_by_resource_id str
    Resource Id of azure offering managing this resource on-behalf-of customer.
    provisionedBy String
    Azure offering managing this resource on-behalf-of customer.
    provisionedByResourceId String
    Resource Id of azure offering managing this resource on-behalf-of customer.

    DataCollectionEndpointResponseMetricsIngestion, DataCollectionEndpointResponseMetricsIngestionArgs

    Endpoint string
    The endpoint. This property is READ-ONLY.
    Endpoint string
    The endpoint. This property is READ-ONLY.
    endpoint String
    The endpoint. This property is READ-ONLY.
    endpoint string
    The endpoint. This property is READ-ONLY.
    endpoint str
    The endpoint. This property is READ-ONLY.
    endpoint String
    The endpoint. This property is READ-ONLY.

    DataCollectionEndpointResponseNetworkAcls, DataCollectionEndpointResponseNetworkAclsArgs

    PublicNetworkAccess string
    The configuration to set whether network access from public internet to the endpoints are allowed.
    PublicNetworkAccess string
    The configuration to set whether network access from public internet to the endpoints are allowed.
    publicNetworkAccess String
    The configuration to set whether network access from public internet to the endpoints are allowed.
    publicNetworkAccess string
    The configuration to set whether network access from public internet to the endpoints are allowed.
    public_network_access str
    The configuration to set whether network access from public internet to the endpoints are allowed.
    publicNetworkAccess String
    The configuration to set whether network access from public internet to the endpoints are allowed.

    KnownDataCollectionEndpointResourceKind, KnownDataCollectionEndpointResourceKindArgs

    Linux
    Linux
    Windows
    Windows
    KnownDataCollectionEndpointResourceKindLinux
    Linux
    KnownDataCollectionEndpointResourceKindWindows
    Windows
    Linux
    Linux
    Windows
    Windows
    Linux
    Linux
    Windows
    Windows
    LINUX
    Linux
    WINDOWS
    Windows
    "Linux"
    Linux
    "Windows"
    Windows

    KnownPublicNetworkAccessOptions, KnownPublicNetworkAccessOptionsArgs

    Enabled
    Enabled
    Disabled
    Disabled
    SecuredByPerimeter
    SecuredByPerimeter
    KnownPublicNetworkAccessOptionsEnabled
    Enabled
    KnownPublicNetworkAccessOptionsDisabled
    Disabled
    KnownPublicNetworkAccessOptionsSecuredByPerimeter
    SecuredByPerimeter
    Enabled
    Enabled
    Disabled
    Disabled
    SecuredByPerimeter
    SecuredByPerimeter
    Enabled
    Enabled
    Disabled
    Disabled
    SecuredByPerimeter
    SecuredByPerimeter
    ENABLED
    Enabled
    DISABLED
    Disabled
    SECURED_BY_PERIMETER
    SecuredByPerimeter
    "Enabled"
    Enabled
    "Disabled"
    Disabled
    "SecuredByPerimeter"
    SecuredByPerimeter

    LocationSpecResponse, LocationSpecResponseArgs

    Location string
    Name of location.
    ProvisioningStatus string
    The resource provisioning state in this location.
    Location string
    Name of location.
    ProvisioningStatus string
    The resource provisioning state in this location.
    location String
    Name of location.
    provisioningStatus String
    The resource provisioning state in this location.
    location string
    Name of location.
    provisioningStatus string
    The resource provisioning state in this location.
    location str
    Name of location.
    provisioning_status str
    The resource provisioning state in this location.
    location String
    Name of location.
    provisioningStatus String
    The resource provisioning state in this location.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned,UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned,UserAssigned"
    SystemAssigned,UserAssigned

    PrivateLinkScopedResourceResponse, PrivateLinkScopedResourceResponseArgs

    ResourceId string
    The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
    ScopeId string
    The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
    ResourceId string
    The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
    ScopeId string
    The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
    resourceId String
    The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
    scopeId String
    The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
    resourceId string
    The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
    scopeId string
    The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
    resource_id str
    The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
    scope_id str
    The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
    resourceId String
    The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
    scopeId String
    The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Import

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

    $ pulumi import azure-native:insights:DataCollectionEndpoint myCollectionEndpoint /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/dataCollectionEndpoints/{dataCollectionEndpointName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi