azure-native.insights.DataCollectionEndpoint
Explore with Pulumi AI
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 (
insights "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.
Constructor 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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Data
Collection stringEndpoint Name - The name of the data collection endpoint. The name is case insensitive.
- Description string
- Description of the data collection endpoint.
- Identity
Pulumi.
Azure Native. Insights. Inputs. Data Collection Endpoint Resource Identity - Managed service identity of the resource.
- Immutable
Id string - The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
- Kind
string | Pulumi.
Azure Native. Insights. Known Data Collection Endpoint Resource Kind - The kind of the resource.
- Location string
- The geo-location where the resource lives.
- Network
Acls Pulumi.Azure Native. Insights. Inputs. Data Collection Endpoint Network Acls - Network access control rules for the endpoints.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Data
Collection stringEndpoint Name - The name of the data collection endpoint. The name is case insensitive.
- Description string
- Description of the data collection endpoint.
- Identity
Data
Collection Endpoint Resource Identity Args - Managed service identity of the resource.
- Immutable
Id string - The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
- Kind
string | Known
Data Collection Endpoint Resource Kind - The kind of the resource.
- Location string
- The geo-location where the resource lives.
- Network
Acls DataCollection Endpoint Network Acls Args - Network access control rules for the endpoints.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- data
Collection StringEndpoint Name - The name of the data collection endpoint. The name is case insensitive.
- description String
- Description of the data collection endpoint.
- identity
Data
Collection Endpoint Resource Identity - Managed service identity of the resource.
- immutable
Id String - The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
- kind
String | Known
Data Collection Endpoint Resource Kind - The kind of the resource.
- location String
- The geo-location where the resource lives.
- network
Acls DataCollection Endpoint Network Acls - Network access control rules for the endpoints.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- data
Collection stringEndpoint Name - The name of the data collection endpoint. The name is case insensitive.
- description string
- Description of the data collection endpoint.
- identity
Data
Collection Endpoint Resource Identity - Managed service identity of the resource.
- immutable
Id string - The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
- kind
string | Known
Data Collection Endpoint Resource Kind - The kind of the resource.
- location string
- The geo-location where the resource lives.
- network
Acls DataCollection Endpoint Network Acls - Network access control rules for the endpoints.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- data_
collection_ strendpoint_ name - The name of the data collection endpoint. The name is case insensitive.
- description str
- Description of the data collection endpoint.
- identity
Data
Collection Endpoint Resource Identity Args - 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 | Known
Data Collection Endpoint Resource Kind - The kind of the resource.
- location str
- The geo-location where the resource lives.
- network_
acls DataCollection Endpoint Network Acls Args - Network access control rules for the endpoints.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- data
Collection StringEndpoint Name - 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.
- immutable
Id 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.
- network
Acls Property Map - Network access control rules for the endpoints.
- 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).
- Failover
Configuration Pulumi.Azure Native. Insights. Outputs. Data Collection Endpoint Response Failover Configuration - Failover configuration on this endpoint. This property is READ-ONLY.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata
Pulumi.
Azure Native. Insights. Outputs. Data Collection Endpoint Response Metadata - Metadata for the resource. This property is READ-ONLY.
- Name string
- The name of the resource.
- Private
Link List<Pulumi.Scoped Resources Azure Native. Insights. Outputs. Private Link Scoped Resource Response> - List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
- Provisioning
State string - The resource provisioning state. This property is READ-ONLY.
- System
Data Pulumi.Azure Native. Insights. Outputs. Data Collection Endpoint Resource Response System Data - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource.
- Configuration
Access Pulumi.Azure Native. Insights. Outputs. Data Collection Endpoint Response Configuration Access - The endpoint used by clients to access their configuration.
- Logs
Ingestion Pulumi.Azure Native. Insights. Outputs. Data Collection Endpoint Response Logs Ingestion - The endpoint used by clients to ingest logs.
- Metrics
Ingestion Pulumi.Azure Native. Insights. Outputs. Data Collection Endpoint Response Metrics Ingestion - The endpoint used by clients to ingest metrics.
- Etag string
- Resource entity tag (ETag).
- Failover
Configuration DataCollection Endpoint Response Failover Configuration - Failover configuration on this endpoint. This property is READ-ONLY.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata
Data
Collection Endpoint Response Metadata - Metadata for the resource. This property is READ-ONLY.
- Name string
- The name of the resource.
- Private
Link []PrivateScoped Resources Link Scoped Resource Response - List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
- Provisioning
State string - The resource provisioning state. This property is READ-ONLY.
- System
Data DataCollection Endpoint Resource Response System Data - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource.
- Configuration
Access DataCollection Endpoint Response Configuration Access - The endpoint used by clients to access their configuration.
- Logs
Ingestion DataCollection Endpoint Response Logs Ingestion - The endpoint used by clients to ingest logs.
- Metrics
Ingestion DataCollection Endpoint Response Metrics Ingestion - The endpoint used by clients to ingest metrics.
- etag String
- Resource entity tag (ETag).
- failover
Configuration DataCollection Endpoint Response Failover Configuration - Failover configuration on this endpoint. This property is READ-ONLY.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata
Data
Collection Endpoint Response Metadata - Metadata for the resource. This property is READ-ONLY.
- name String
- The name of the resource.
- private
Link List<PrivateScoped Resources Link Scoped Resource Response> - List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
- provisioning
State String - The resource provisioning state. This property is READ-ONLY.
- system
Data DataCollection Endpoint Resource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource.
- configuration
Access DataCollection Endpoint Response Configuration Access - The endpoint used by clients to access their configuration.
- logs
Ingestion DataCollection Endpoint Response Logs Ingestion - The endpoint used by clients to ingest logs.
- metrics
Ingestion DataCollection Endpoint Response Metrics Ingestion - The endpoint used by clients to ingest metrics.
- etag string
- Resource entity tag (ETag).
- failover
Configuration DataCollection Endpoint Response Failover Configuration - Failover configuration on this endpoint. This property is READ-ONLY.
- id string
- The provider-assigned unique ID for this managed resource.
- metadata
Data
Collection Endpoint Response Metadata - Metadata for the resource. This property is READ-ONLY.
- name string
- The name of the resource.
- private
Link PrivateScoped Resources Link Scoped Resource Response[] - List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
- provisioning
State string - The resource provisioning state. This property is READ-ONLY.
- system
Data DataCollection Endpoint Resource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type string
- The type of the resource.
- configuration
Access DataCollection Endpoint Response Configuration Access - The endpoint used by clients to access their configuration.
- logs
Ingestion DataCollection Endpoint Response Logs Ingestion - The endpoint used by clients to ingest logs.
- metrics
Ingestion DataCollection Endpoint Response Metrics Ingestion - The endpoint used by clients to ingest metrics.
- etag str
- Resource entity tag (ETag).
- failover_
configuration DataCollection Endpoint Response Failover Configuration - Failover configuration on this endpoint. This property is READ-ONLY.
- id str
- The provider-assigned unique ID for this managed resource.
- metadata
Data
Collection Endpoint Response Metadata - Metadata for the resource. This property is READ-ONLY.
- name str
- The name of the resource.
- private_
link_ Sequence[Privatescoped_ resources Link Scoped Resource Response] - 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 DataCollection Endpoint Resource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource.
- configuration_
access DataCollection Endpoint Response Configuration Access - The endpoint used by clients to access their configuration.
- logs_
ingestion DataCollection Endpoint Response Logs Ingestion - The endpoint used by clients to ingest logs.
- metrics_
ingestion DataCollection Endpoint Response Metrics Ingestion - The endpoint used by clients to ingest metrics.
- etag String
- Resource entity tag (ETag).
- failover
Configuration 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.
- private
Link List<Property Map>Scoped Resources - List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
- provisioning
State String - The resource provisioning state. This property is READ-ONLY.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource.
- configuration
Access Property Map - The endpoint used by clients to access their configuration.
- logs
Ingestion Property Map - The endpoint used by clients to ingest logs.
- metrics
Ingestion Property Map - The endpoint used by clients to ingest metrics.
Supporting Types
DataCollectionEndpointNetworkAcls, DataCollectionEndpointNetworkAclsArgs
- Public
Network string | Pulumi.Access Azure Native. Insights. Known Public Network Access Options - The configuration to set whether network access from public internet to the endpoints are allowed.
- Public
Network string | KnownAccess Public Network Access Options - The configuration to set whether network access from public internet to the endpoints are allowed.
- public
Network String | KnownAccess Public Network Access Options - The configuration to set whether network access from public internet to the endpoints are allowed.
- public
Network string | KnownAccess Public Network Access Options - The configuration to set whether network access from public internet to the endpoints are allowed.
- public_
network_ str | Knownaccess Public Network Access Options - The configuration to set whether network access from public internet to the endpoints are allowed.
- public
Network String | "Enabled" | "Disabled" | "SecuredAccess By Perimeter" - The configuration to set whether network access from public internet to the endpoints are allowed.
DataCollectionEndpointResourceIdentity, DataCollectionEndpointResourceIdentityArgs
- Type
string | Pulumi.
Azure Native. Insights. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - 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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - 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" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Insights. Inputs. User Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned map[string]UserIdentities Assigned Identity Response - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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_ Mapping[str, Useridentities Assigned Identity Response] - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned Map<Property Map>Identities - 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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
- Active
Location string - Active location where data flow will occur.
- Locations
List<Pulumi.
Azure Native. Insights. Inputs. Location Spec Response> - Locations that are configured for failover.
- Active
Location string - Active location where data flow will occur.
- Locations
[]Location
Spec Response - Locations that are configured for failover.
- active
Location String - Active location where data flow will occur.
- locations
List<Location
Spec Response> - Locations that are configured for failover.
- active
Location string - Active location where data flow will occur.
- locations
Location
Spec Response[] - Locations that are configured for failover.
- active_
location str - Active location where data flow will occur.
- locations
Sequence[Location
Spec Response] - Locations that are configured for failover.
- active
Location 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
- Provisioned
By string - Azure offering managing this resource on-behalf-of customer.
- Provisioned
By stringResource Id - Resource Id of azure offering managing this resource on-behalf-of customer.
- Provisioned
By string - Azure offering managing this resource on-behalf-of customer.
- Provisioned
By stringResource Id - Resource Id of azure offering managing this resource on-behalf-of customer.
- provisioned
By String - Azure offering managing this resource on-behalf-of customer.
- provisioned
By StringResource Id - Resource Id of azure offering managing this resource on-behalf-of customer.
- provisioned
By string - Azure offering managing this resource on-behalf-of customer.
- provisioned
By stringResource Id - 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_ strresource_ id - Resource Id of azure offering managing this resource on-behalf-of customer.
- provisioned
By String - Azure offering managing this resource on-behalf-of customer.
- provisioned
By StringResource Id - 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
- Public
Network stringAccess - The configuration to set whether network access from public internet to the endpoints are allowed.
- Public
Network stringAccess - The configuration to set whether network access from public internet to the endpoints are allowed.
- public
Network StringAccess - The configuration to set whether network access from public internet to the endpoints are allowed.
- public
Network stringAccess - The configuration to set whether network access from public internet to the endpoints are allowed.
- public_
network_ straccess - The configuration to set whether network access from public internet to the endpoints are allowed.
- public
Network StringAccess - The configuration to set whether network access from public internet to the endpoints are allowed.
KnownDataCollectionEndpointResourceKind, KnownDataCollectionEndpointResourceKindArgs
- Linux
- Linux
- Windows
- Windows
- Known
Data Collection Endpoint Resource Kind Linux - Linux
- Known
Data Collection Endpoint Resource Kind Windows - Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- LINUX
- Linux
- WINDOWS
- Windows
- "Linux"
- Linux
- "Windows"
- Windows
KnownPublicNetworkAccessOptions, KnownPublicNetworkAccessOptionsArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Secured
By Perimeter - SecuredByPerimeter
- Known
Public Network Access Options Enabled - Enabled
- Known
Public Network Access Options Disabled - Disabled
- Known
Public Network Access Options Secured By Perimeter - SecuredByPerimeter
- Enabled
- Enabled
- Disabled
- Disabled
- Secured
By Perimeter - SecuredByPerimeter
- Enabled
- Enabled
- Disabled
- Disabled
- Secured
By Perimeter - SecuredByPerimeter
- ENABLED
- Enabled
- DISABLED
- Disabled
- SECURED_BY_PERIMETER
- SecuredByPerimeter
- "Enabled"
- Enabled
- "Disabled"
- Disabled
- "Secured
By Perimeter" - SecuredByPerimeter
LocationSpecResponse, LocationSpecResponseArgs
- Location string
- Name of location.
- Provisioning
Status string - The resource provisioning state in this location.
- Location string
- Name of location.
- Provisioning
Status string - The resource provisioning state in this location.
- location String
- Name of location.
- provisioning
Status String - The resource provisioning state in this location.
- location string
- Name of location.
- provisioning
Status 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.
- provisioning
Status String - The resource provisioning state in this location.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
PrivateLinkScopedResourceResponse, PrivateLinkScopedResourceResponseArgs
- Resource
Id 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.
- Scope
Id string - The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
- Resource
Id 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.
- Scope
Id string - The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
- resource
Id 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.
- scope
Id String - The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
- resource
Id 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.
- scope
Id 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.
- resource
Id 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.
- scope
Id String - The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id 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