1. Packages
  2. Azure Native
  3. API Docs
  4. healthcareapis
  5. AnalyticsConnector
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.8.0 published on Monday, Sep 18, 2023 by Pulumi

azure-native.healthcareapis.AnalyticsConnector

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.8.0 published on Monday, Sep 18, 2023 by Pulumi

    Analytics Connector definition. Azure REST API version: 2022-10-01-preview.

    Example Usage

    Create or update a Analytics Connectors Service

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var analyticsConnector = new AzureNative.HealthcareApis.AnalyticsConnector("analyticsConnector", new()
        {
            AnalyticsConnectorName = "exampleconnector",
            DataDestinationConfiguration = new AzureNative.HealthcareApis.Inputs.AnalyticsConnectorDataLakeDataDestinationArgs
            {
                DataLakeName = "exampledatalake",
                Type = "datalake",
            },
            DataMappingConfiguration = new AzureNative.HealthcareApis.Inputs.AnalyticsConnectorFhirToParquetMappingArgs
            {
                ExtensionSchemaReference = "acrexample.azurecr.io/blah@sha256aaa/Extension",
                FilterConfigurationReference = "acrexample.azurecr.io/blah@sha256xxx",
                Type = "fhirToParquet",
            },
            DataSourceConfiguration = new AzureNative.HealthcareApis.Inputs.AnalyticsConnectorFhirServiceDataSourceArgs
            {
                Kind = "R4",
                Type = "fhirservice",
                Url = "https://workspace-examplefhir.fhir.azurehealthcareapis.com",
            },
            Location = "westus",
            ResourceGroupName = "testRG",
            WorkspaceName = "workspace1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/healthcareapis/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
    _, err := healthcareapis.NewAnalyticsConnector(ctx, "analyticsConnector", &healthcareapis.AnalyticsConnectorArgs{
    AnalyticsConnectorName: pulumi.String("exampleconnector"),
    DataDestinationConfiguration: interface{}{
    DataLakeName: pulumi.String("exampledatalake"),
    Type: pulumi.String("datalake"),
    },
    DataMappingConfiguration: interface{}{
    ExtensionSchemaReference: pulumi.String("acrexample.azurecr.io/blah@sha256aaa/Extension"),
    FilterConfigurationReference: pulumi.String("acrexample.azurecr.io/blah@sha256xxx"),
    Type: pulumi.String("fhirToParquet"),
    },
    DataSourceConfiguration: interface{}{
    Kind: pulumi.String("R4"),
    Type: pulumi.String("fhirservice"),
    Url: pulumi.String("https://workspace-examplefhir.fhir.azurehealthcareapis.com"),
    },
    Location: pulumi.String("westus"),
    ResourceGroupName: pulumi.String("testRG"),
    WorkspaceName: pulumi.String("workspace1"),
    })
    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.healthcareapis.AnalyticsConnector;
    import com.pulumi.azurenative.healthcareapis.AnalyticsConnectorArgs;
    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 analyticsConnector = new AnalyticsConnector("analyticsConnector", AnalyticsConnectorArgs.builder()        
                .analyticsConnectorName("exampleconnector")
                .dataDestinationConfiguration(Map.ofEntries(
                    Map.entry("dataLakeName", "exampledatalake"),
                    Map.entry("type", "datalake")
                ))
                .dataMappingConfiguration(Map.ofEntries(
                    Map.entry("extensionSchemaReference", "acrexample.azurecr.io/blah@sha256aaa/Extension"),
                    Map.entry("filterConfigurationReference", "acrexample.azurecr.io/blah@sha256xxx"),
                    Map.entry("type", "fhirToParquet")
                ))
                .dataSourceConfiguration(Map.ofEntries(
                    Map.entry("kind", "R4"),
                    Map.entry("type", "fhirservice"),
                    Map.entry("url", "https://workspace-examplefhir.fhir.azurehealthcareapis.com")
                ))
                .location("westus")
                .resourceGroupName("testRG")
                .workspaceName("workspace1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    analytics_connector = azure_native.healthcareapis.AnalyticsConnector("analyticsConnector",
        analytics_connector_name="exampleconnector",
        data_destination_configuration=azure_native.healthcareapis.AnalyticsConnectorDataLakeDataDestinationResponseArgs(
            data_lake_name="exampledatalake",
            type="datalake",
        ),
        data_mapping_configuration=azure_native.healthcareapis.AnalyticsConnectorFhirToParquetMappingResponseArgs(
            extension_schema_reference="acrexample.azurecr.io/blah@sha256aaa/Extension",
            filter_configuration_reference="acrexample.azurecr.io/blah@sha256xxx",
            type="fhirToParquet",
        ),
        data_source_configuration=azure_native.healthcareapis.AnalyticsConnectorFhirServiceDataSourceResponseArgs(
            kind="R4",
            type="fhirservice",
            url="https://workspace-examplefhir.fhir.azurehealthcareapis.com",
        ),
        location="westus",
        resource_group_name="testRG",
        workspace_name="workspace1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const analyticsConnector = new azure_native.healthcareapis.AnalyticsConnector("analyticsConnector", {
        analyticsConnectorName: "exampleconnector",
        dataDestinationConfiguration: {
            dataLakeName: "exampledatalake",
            type: "datalake",
        },
        dataMappingConfiguration: {
            extensionSchemaReference: "acrexample.azurecr.io/blah@sha256aaa/Extension",
            filterConfigurationReference: "acrexample.azurecr.io/blah@sha256xxx",
            type: "fhirToParquet",
        },
        dataSourceConfiguration: {
            kind: "R4",
            type: "fhirservice",
            url: "https://workspace-examplefhir.fhir.azurehealthcareapis.com",
        },
        location: "westus",
        resourceGroupName: "testRG",
        workspaceName: "workspace1",
    });
    
    resources:
      analyticsConnector:
        type: azure-native:healthcareapis:AnalyticsConnector
        properties:
          analyticsConnectorName: exampleconnector
          dataDestinationConfiguration:
            dataLakeName: exampledatalake
            type: datalake
          dataMappingConfiguration:
            extensionSchemaReference: acrexample.azurecr.io/blah@sha256aaa/Extension
            filterConfigurationReference: acrexample.azurecr.io/blah@sha256xxx
            type: fhirToParquet
          dataSourceConfiguration:
            kind: R4
            type: fhirservice
            url: https://workspace-examplefhir.fhir.azurehealthcareapis.com
          location: westus
          resourceGroupName: testRG
          workspaceName: workspace1
    

    Create AnalyticsConnector Resource

    new AnalyticsConnector(name: string, args: AnalyticsConnectorArgs, opts?: CustomResourceOptions);
    @overload
    def AnalyticsConnector(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           analytics_connector_name: Optional[str] = None,
                           data_destination_configuration: Optional[AnalyticsConnectorDataLakeDataDestinationArgs] = None,
                           data_mapping_configuration: Optional[AnalyticsConnectorFhirToParquetMappingArgs] = None,
                           data_source_configuration: Optional[AnalyticsConnectorFhirServiceDataSourceArgs] = None,
                           identity: Optional[ServiceManagedIdentityIdentityArgs] = None,
                           location: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           workspace_name: Optional[str] = None)
    @overload
    def AnalyticsConnector(resource_name: str,
                           args: AnalyticsConnectorArgs,
                           opts: Optional[ResourceOptions] = None)
    func NewAnalyticsConnector(ctx *Context, name string, args AnalyticsConnectorArgs, opts ...ResourceOption) (*AnalyticsConnector, error)
    public AnalyticsConnector(string name, AnalyticsConnectorArgs args, CustomResourceOptions? opts = null)
    public AnalyticsConnector(String name, AnalyticsConnectorArgs args)
    public AnalyticsConnector(String name, AnalyticsConnectorArgs args, CustomResourceOptions options)
    
    type: azure-native:healthcareapis:AnalyticsConnector
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AnalyticsConnectorArgs
    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 AnalyticsConnectorArgs
    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 AnalyticsConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AnalyticsConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AnalyticsConnectorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    DataDestinationConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.AnalyticsConnectorDataLakeDataDestination

    Data destination configuration for Analytics Connector.

    DataMappingConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.AnalyticsConnectorFhirToParquetMapping

    Data mapping configuration for Analytics Connector.

    DataSourceConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.AnalyticsConnectorFhirServiceDataSource

    Data source for Analytics Connector.

    ResourceGroupName string

    The name of the resource group that contains the service instance.

    WorkspaceName string

    The name of workspace resource.

    AnalyticsConnectorName string

    The name of Analytics Connector resource.

    Identity Pulumi.AzureNative.HealthcareApis.Inputs.ServiceManagedIdentityIdentity

    Setting indicating whether the service has a managed identity associated with it.

    Location string

    The resource location.

    Tags Dictionary<string, string>

    Resource tags.

    DataDestinationConfiguration AnalyticsConnectorDataLakeDataDestinationArgs

    Data destination configuration for Analytics Connector.

    DataMappingConfiguration AnalyticsConnectorFhirToParquetMappingArgs

    Data mapping configuration for Analytics Connector.

    DataSourceConfiguration AnalyticsConnectorFhirServiceDataSourceArgs

    Data source for Analytics Connector.

    ResourceGroupName string

    The name of the resource group that contains the service instance.

    WorkspaceName string

    The name of workspace resource.

    AnalyticsConnectorName string

    The name of Analytics Connector resource.

    Identity ServiceManagedIdentityIdentityArgs

    Setting indicating whether the service has a managed identity associated with it.

    Location string

    The resource location.

    Tags map[string]string

    Resource tags.

    dataDestinationConfiguration AnalyticsConnectorDataLakeDataDestination

    Data destination configuration for Analytics Connector.

    dataMappingConfiguration AnalyticsConnectorFhirToParquetMapping

    Data mapping configuration for Analytics Connector.

    dataSourceConfiguration AnalyticsConnectorFhirServiceDataSource

    Data source for Analytics Connector.

    resourceGroupName String

    The name of the resource group that contains the service instance.

    workspaceName String

    The name of workspace resource.

    analyticsConnectorName String

    The name of Analytics Connector resource.

    identity ServiceManagedIdentityIdentity

    Setting indicating whether the service has a managed identity associated with it.

    location String

    The resource location.

    tags Map<String,String>

    Resource tags.

    dataDestinationConfiguration AnalyticsConnectorDataLakeDataDestination

    Data destination configuration for Analytics Connector.

    dataMappingConfiguration AnalyticsConnectorFhirToParquetMapping

    Data mapping configuration for Analytics Connector.

    dataSourceConfiguration AnalyticsConnectorFhirServiceDataSource

    Data source for Analytics Connector.

    resourceGroupName string

    The name of the resource group that contains the service instance.

    workspaceName string

    The name of workspace resource.

    analyticsConnectorName string

    The name of Analytics Connector resource.

    identity ServiceManagedIdentityIdentity

    Setting indicating whether the service has a managed identity associated with it.

    location string

    The resource location.

    tags {[key: string]: string}

    Resource tags.

    data_destination_configuration AnalyticsConnectorDataLakeDataDestinationArgs

    Data destination configuration for Analytics Connector.

    data_mapping_configuration AnalyticsConnectorFhirToParquetMappingArgs

    Data mapping configuration for Analytics Connector.

    data_source_configuration AnalyticsConnectorFhirServiceDataSourceArgs

    Data source for Analytics Connector.

    resource_group_name str

    The name of the resource group that contains the service instance.

    workspace_name str

    The name of workspace resource.

    analytics_connector_name str

    The name of Analytics Connector resource.

    identity ServiceManagedIdentityIdentityArgs

    Setting indicating whether the service has a managed identity associated with it.

    location str

    The resource location.

    tags Mapping[str, str]

    Resource tags.

    dataDestinationConfiguration Property Map

    Data destination configuration for Analytics Connector.

    dataMappingConfiguration Property Map

    Data mapping configuration for Analytics Connector.

    dataSourceConfiguration Property Map

    Data source for Analytics Connector.

    resourceGroupName String

    The name of the resource group that contains the service instance.

    workspaceName String

    The name of workspace resource.

    analyticsConnectorName String

    The name of Analytics Connector resource.

    identity Property Map

    Setting indicating whether the service has a managed identity associated with it.

    location String

    The resource location.

    tags Map<String>

    Resource tags.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The resource name.

    ProvisioningState string

    The provisioning state.

    SystemData Pulumi.AzureNative.HealthcareApis.Outputs.SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    Type string

    The resource type.

    Etag string

    An etag associated with the resource, used for optimistic concurrency when editing it.

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The resource name.

    ProvisioningState string

    The provisioning state.

    SystemData SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    Type string

    The resource type.

    Etag string

    An etag associated with the resource, used for optimistic concurrency when editing it.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The resource name.

    provisioningState String

    The provisioning state.

    systemData SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    type String

    The resource type.

    etag String

    An etag associated with the resource, used for optimistic concurrency when editing it.

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    The resource name.

    provisioningState string

    The provisioning state.

    systemData SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    type string

    The resource type.

    etag string

    An etag associated with the resource, used for optimistic concurrency when editing it.

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    The resource name.

    provisioning_state str

    The provisioning state.

    system_data SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    type str

    The resource type.

    etag str

    An etag associated with the resource, used for optimistic concurrency when editing it.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The resource name.

    provisioningState String

    The provisioning state.

    systemData Property Map

    Metadata pertaining to creation and last modification of the resource.

    type String

    The resource type.

    etag String

    An etag associated with the resource, used for optimistic concurrency when editing it.

    Supporting Types

    AnalyticsConnectorDataLakeDataDestination, AnalyticsConnectorDataLakeDataDestinationArgs

    DataLakeName string

    The name for the Data Lake.

    Name string

    Name of data destination.

    DataLakeName string

    The name for the Data Lake.

    Name string

    Name of data destination.

    dataLakeName String

    The name for the Data Lake.

    name String

    Name of data destination.

    dataLakeName string

    The name for the Data Lake.

    name string

    Name of data destination.

    data_lake_name str

    The name for the Data Lake.

    name str

    Name of data destination.

    dataLakeName String

    The name for the Data Lake.

    name String

    Name of data destination.

    AnalyticsConnectorDataLakeDataDestinationResponse, AnalyticsConnectorDataLakeDataDestinationResponseArgs

    DataLakeName string

    The name for the Data Lake.

    Name string

    Name of data destination.

    DataLakeName string

    The name for the Data Lake.

    Name string

    Name of data destination.

    dataLakeName String

    The name for the Data Lake.

    name String

    Name of data destination.

    dataLakeName string

    The name for the Data Lake.

    name string

    Name of data destination.

    data_lake_name str

    The name for the Data Lake.

    name str

    Name of data destination.

    dataLakeName String

    The name for the Data Lake.

    name String

    Name of data destination.

    AnalyticsConnectorFhirServiceDataSource, AnalyticsConnectorFhirServiceDataSourceArgs

    Kind string | Pulumi.AzureNative.HealthcareApis.FhirServiceVersion

    The kind of FHIR Service.

    Url string

    The URL of FHIR service.

    Kind string | FhirServiceVersion

    The kind of FHIR Service.

    Url string

    The URL of FHIR service.

    kind String | FhirServiceVersion

    The kind of FHIR Service.

    url String

    The URL of FHIR service.

    kind string | FhirServiceVersion

    The kind of FHIR Service.

    url string

    The URL of FHIR service.

    kind str | FhirServiceVersion

    The kind of FHIR Service.

    url str

    The URL of FHIR service.

    kind String | "STU3" | "R4"

    The kind of FHIR Service.

    url String

    The URL of FHIR service.

    AnalyticsConnectorFhirServiceDataSourceResponse, AnalyticsConnectorFhirServiceDataSourceResponseArgs

    Kind string

    The kind of FHIR Service.

    Url string

    The URL of FHIR service.

    Kind string

    The kind of FHIR Service.

    Url string

    The URL of FHIR service.

    kind String

    The kind of FHIR Service.

    url String

    The URL of FHIR service.

    kind string

    The kind of FHIR Service.

    url string

    The URL of FHIR service.

    kind str

    The kind of FHIR Service.

    url str

    The URL of FHIR service.

    kind String

    The kind of FHIR Service.

    url String

    The URL of FHIR service.

    AnalyticsConnectorFhirToParquetMapping, AnalyticsConnectorFhirToParquetMappingArgs

    ExtensionSchemaReference string

    Artifact reference for extension schema.

    FilterConfigurationReference string

    Artifact reference for filter configurations.

    ExtensionSchemaReference string

    Artifact reference for extension schema.

    FilterConfigurationReference string

    Artifact reference for filter configurations.

    extensionSchemaReference String

    Artifact reference for extension schema.

    filterConfigurationReference String

    Artifact reference for filter configurations.

    extensionSchemaReference string

    Artifact reference for extension schema.

    filterConfigurationReference string

    Artifact reference for filter configurations.

    extension_schema_reference str

    Artifact reference for extension schema.

    filter_configuration_reference str

    Artifact reference for filter configurations.

    extensionSchemaReference String

    Artifact reference for extension schema.

    filterConfigurationReference String

    Artifact reference for filter configurations.

    AnalyticsConnectorFhirToParquetMappingResponse, AnalyticsConnectorFhirToParquetMappingResponseArgs

    ExtensionSchemaReference string

    Artifact reference for extension schema.

    FilterConfigurationReference string

    Artifact reference for filter configurations.

    ExtensionSchemaReference string

    Artifact reference for extension schema.

    FilterConfigurationReference string

    Artifact reference for filter configurations.

    extensionSchemaReference String

    Artifact reference for extension schema.

    filterConfigurationReference String

    Artifact reference for filter configurations.

    extensionSchemaReference string

    Artifact reference for extension schema.

    filterConfigurationReference string

    Artifact reference for filter configurations.

    extension_schema_reference str

    Artifact reference for extension schema.

    filter_configuration_reference str

    Artifact reference for filter configurations.

    extensionSchemaReference String

    Artifact reference for extension schema.

    filterConfigurationReference String

    Artifact reference for filter configurations.

    FhirServiceVersion, FhirServiceVersionArgs

    STU3
    STU3
    R4
    R4
    FhirServiceVersionSTU3
    STU3
    FhirServiceVersionR4
    R4
    STU3
    STU3
    R4
    R4
    STU3
    STU3
    R4
    R4
    STU3
    STU3
    R4
    R4
    "STU3"
    STU3
    "R4"
    R4

    ServiceManagedIdentityIdentity, ServiceManagedIdentityIdentityArgs

    Type string | Pulumi.AzureNative.HealthcareApis.ServiceManagedIdentityType

    Type of identity being specified, currently SystemAssigned and None 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 | ServiceManagedIdentityType

    Type of identity being specified, currently SystemAssigned and None 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 | ServiceManagedIdentityType

    Type of identity being specified, currently SystemAssigned and None 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 | ServiceManagedIdentityType

    Type of identity being specified, currently SystemAssigned and None 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 | ServiceManagedIdentityType

    Type of identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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.

    ServiceManagedIdentityResponseIdentity, ServiceManagedIdentityResponseIdentityArgs

    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 identity being specified, currently SystemAssigned and None are allowed.

    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.HealthcareApis.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 identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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.

    ServiceManagedIdentityType, ServiceManagedIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ServiceManagedIdentityTypeNone
    None
    ServiceManagedIdentityTypeSystemAssigned
    SystemAssigned
    ServiceManagedIdentityTypeUserAssigned
    UserAssigned
    ServiceManagedIdentityType_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

    SystemDataResponse, SystemDataResponseArgs

    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.

    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:healthcareapis:AnalyticsConnector exampleconnector /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/workspaces/{workspaceName}/analyticsconnectors/{analyticsConnectorName} 
    

    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.8.0 published on Monday, Sep 18, 2023 by Pulumi