azure-native.healthcareapis.AnalyticsConnector
Explore with Pulumi AI
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 = AzureNative.HealthcareApis.FhirServiceVersion.R4,
Type = "fhirservice",
Url = "https://workspace-examplefhir.fhir.azurehealthcareapis.com",
},
Location = "westus",
ResourceGroupName = "testRG",
WorkspaceName = "workspace1",
});
});
package main
import (
healthcareapis "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: &healthcareapis.AnalyticsConnectorDataLakeDataDestinationArgs{
DataLakeName: pulumi.String("exampledatalake"),
Type: pulumi.String("datalake"),
},
DataMappingConfiguration: &healthcareapis.AnalyticsConnectorFhirToParquetMappingArgs{
ExtensionSchemaReference: pulumi.String("acrexample.azurecr.io/blah@sha256aaa/Extension"),
FilterConfigurationReference: pulumi.String("acrexample.azurecr.io/blah@sha256xxx"),
Type: pulumi.String("fhirToParquet"),
},
DataSourceConfiguration: &healthcareapis.AnalyticsConnectorFhirServiceDataSourceArgs{
Kind: pulumi.String(healthcareapis.FhirServiceVersionR4),
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 com.pulumi.azurenative.healthcareapis.inputs.AnalyticsConnectorDataLakeDataDestinationArgs;
import com.pulumi.azurenative.healthcareapis.inputs.AnalyticsConnectorFhirToParquetMappingArgs;
import com.pulumi.azurenative.healthcareapis.inputs.AnalyticsConnectorFhirServiceDataSourceArgs;
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(AnalyticsConnectorDataLakeDataDestinationArgs.builder()
.dataLakeName("exampledatalake")
.type("datalake")
.build())
.dataMappingConfiguration(AnalyticsConnectorFhirToParquetMappingArgs.builder()
.extensionSchemaReference("acrexample.azurecr.io/blah@sha256aaa/Extension")
.filterConfigurationReference("acrexample.azurecr.io/blah@sha256xxx")
.type("fhirToParquet")
.build())
.dataSourceConfiguration(AnalyticsConnectorFhirServiceDataSourceArgs.builder()
.kind("R4")
.type("fhirservice")
.url("https://workspace-examplefhir.fhir.azurehealthcareapis.com")
.build())
.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={
"data_lake_name": "exampledatalake",
"type": "datalake",
},
data_mapping_configuration={
"extension_schema_reference": "acrexample.azurecr.io/blah@sha256aaa/Extension",
"filter_configuration_reference": "acrexample.azurecr.io/blah@sha256xxx",
"type": "fhirToParquet",
},
data_source_configuration={
"kind": azure_native.healthcareapis.FhirServiceVersion.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: azure_native.healthcareapis.FhirServiceVersion.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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AnalyticsConnector(name: string, args: AnalyticsConnectorArgs, opts?: CustomResourceOptions);
@overload
def AnalyticsConnector(resource_name: str,
args: AnalyticsConnectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AnalyticsConnector(resource_name: str,
opts: Optional[ResourceOptions] = None,
data_destination_configuration: Optional[AnalyticsConnectorDataLakeDataDestinationArgs] = None,
data_mapping_configuration: Optional[AnalyticsConnectorFhirToParquetMappingArgs] = None,
data_source_configuration: Optional[AnalyticsConnectorFhirServiceDataSourceArgs] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
analytics_connector_name: Optional[str] = None,
identity: Optional[ServiceManagedIdentityIdentityArgs] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var analyticsConnectorResource = new AzureNative.HealthcareApis.AnalyticsConnector("analyticsConnectorResource", new()
{
DataDestinationConfiguration = new AzureNative.HealthcareApis.Inputs.AnalyticsConnectorDataLakeDataDestinationArgs
{
DataLakeName = "string",
Type = "datalake",
Name = "string",
},
DataMappingConfiguration = new AzureNative.HealthcareApis.Inputs.AnalyticsConnectorFhirToParquetMappingArgs
{
Type = "fhirToParquet",
ExtensionSchemaReference = "string",
FilterConfigurationReference = "string",
},
DataSourceConfiguration = new AzureNative.HealthcareApis.Inputs.AnalyticsConnectorFhirServiceDataSourceArgs
{
Kind = "string",
Type = "fhirservice",
Url = "string",
},
ResourceGroupName = "string",
WorkspaceName = "string",
AnalyticsConnectorName = "string",
Identity = new AzureNative.HealthcareApis.Inputs.ServiceManagedIdentityIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := healthcareapis.NewAnalyticsConnector(ctx, "analyticsConnectorResource", &healthcareapis.AnalyticsConnectorArgs{
DataDestinationConfiguration: &healthcareapis.AnalyticsConnectorDataLakeDataDestinationArgs{
DataLakeName: pulumi.String("string"),
Type: pulumi.String("datalake"),
Name: pulumi.String("string"),
},
DataMappingConfiguration: &healthcareapis.AnalyticsConnectorFhirToParquetMappingArgs{
Type: pulumi.String("fhirToParquet"),
ExtensionSchemaReference: pulumi.String("string"),
FilterConfigurationReference: pulumi.String("string"),
},
DataSourceConfiguration: &healthcareapis.AnalyticsConnectorFhirServiceDataSourceArgs{
Kind: pulumi.String("string"),
Type: pulumi.String("fhirservice"),
Url: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
WorkspaceName: pulumi.String("string"),
AnalyticsConnectorName: pulumi.String("string"),
Identity: &healthcareapis.ServiceManagedIdentityIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var analyticsConnectorResource = new AnalyticsConnector("analyticsConnectorResource", AnalyticsConnectorArgs.builder()
.dataDestinationConfiguration(AnalyticsConnectorDataLakeDataDestinationArgs.builder()
.dataLakeName("string")
.type("datalake")
.name("string")
.build())
.dataMappingConfiguration(AnalyticsConnectorFhirToParquetMappingArgs.builder()
.type("fhirToParquet")
.extensionSchemaReference("string")
.filterConfigurationReference("string")
.build())
.dataSourceConfiguration(AnalyticsConnectorFhirServiceDataSourceArgs.builder()
.kind("string")
.type("fhirservice")
.url("string")
.build())
.resourceGroupName("string")
.workspaceName("string")
.analyticsConnectorName("string")
.identity(ServiceManagedIdentityIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.location("string")
.tags(Map.of("string", "string"))
.build());
analytics_connector_resource = azure_native.healthcareapis.AnalyticsConnector("analyticsConnectorResource",
data_destination_configuration={
"dataLakeName": "string",
"type": "datalake",
"name": "string",
},
data_mapping_configuration={
"type": "fhirToParquet",
"extensionSchemaReference": "string",
"filterConfigurationReference": "string",
},
data_source_configuration={
"kind": "string",
"type": "fhirservice",
"url": "string",
},
resource_group_name="string",
workspace_name="string",
analytics_connector_name="string",
identity={
"type": "string",
"userAssignedIdentities": ["string"],
},
location="string",
tags={
"string": "string",
})
const analyticsConnectorResource = new azure_native.healthcareapis.AnalyticsConnector("analyticsConnectorResource", {
dataDestinationConfiguration: {
dataLakeName: "string",
type: "datalake",
name: "string",
},
dataMappingConfiguration: {
type: "fhirToParquet",
extensionSchemaReference: "string",
filterConfigurationReference: "string",
},
dataSourceConfiguration: {
kind: "string",
type: "fhirservice",
url: "string",
},
resourceGroupName: "string",
workspaceName: "string",
analyticsConnectorName: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
location: "string",
tags: {
string: "string",
},
});
type: azure-native:healthcareapis:AnalyticsConnector
properties:
analyticsConnectorName: string
dataDestinationConfiguration:
dataLakeName: string
name: string
type: datalake
dataMappingConfiguration:
extensionSchemaReference: string
filterConfigurationReference: string
type: fhirToParquet
dataSourceConfiguration:
kind: string
type: fhirservice
url: string
identity:
type: string
userAssignedIdentities:
- string
location: string
resourceGroupName: string
tags:
string: string
workspaceName: string
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:
- Data
Destination Pulumi.Configuration Azure Native. Healthcare Apis. Inputs. Analytics Connector Data Lake Data Destination - Data destination configuration for Analytics Connector.
- Data
Mapping Pulumi.Configuration Azure Native. Healthcare Apis. Inputs. Analytics Connector Fhir To Parquet Mapping - Data mapping configuration for Analytics Connector.
- Data
Source Pulumi.Configuration Azure Native. Healthcare Apis. Inputs. Analytics Connector Fhir Service Data Source - Data source for Analytics Connector.
- Resource
Group stringName - The name of the resource group that contains the service instance.
- Workspace
Name string - The name of workspace resource.
- Analytics
Connector stringName - The name of Analytics Connector resource.
- Identity
Pulumi.
Azure Native. Healthcare Apis. Inputs. Service Managed Identity Identity - Setting indicating whether the service has a managed identity associated with it.
- Location string
- The resource location.
- Dictionary<string, string>
- Resource tags.
- Data
Destination AnalyticsConfiguration Connector Data Lake Data Destination Args - Data destination configuration for Analytics Connector.
- Data
Mapping AnalyticsConfiguration Connector Fhir To Parquet Mapping Args - Data mapping configuration for Analytics Connector.
- Data
Source AnalyticsConfiguration Connector Fhir Service Data Source Args - Data source for Analytics Connector.
- Resource
Group stringName - The name of the resource group that contains the service instance.
- Workspace
Name string - The name of workspace resource.
- Analytics
Connector stringName - The name of Analytics Connector resource.
- Identity
Service
Managed Identity Identity Args - Setting indicating whether the service has a managed identity associated with it.
- Location string
- The resource location.
- map[string]string
- Resource tags.
- data
Destination AnalyticsConfiguration Connector Data Lake Data Destination - Data destination configuration for Analytics Connector.
- data
Mapping AnalyticsConfiguration Connector Fhir To Parquet Mapping - Data mapping configuration for Analytics Connector.
- data
Source AnalyticsConfiguration Connector Fhir Service Data Source - Data source for Analytics Connector.
- resource
Group StringName - The name of the resource group that contains the service instance.
- workspace
Name String - The name of workspace resource.
- analytics
Connector StringName - The name of Analytics Connector resource.
- identity
Service
Managed Identity Identity - Setting indicating whether the service has a managed identity associated with it.
- location String
- The resource location.
- Map<String,String>
- Resource tags.
- data
Destination AnalyticsConfiguration Connector Data Lake Data Destination - Data destination configuration for Analytics Connector.
- data
Mapping AnalyticsConfiguration Connector Fhir To Parquet Mapping - Data mapping configuration for Analytics Connector.
- data
Source AnalyticsConfiguration Connector Fhir Service Data Source - Data source for Analytics Connector.
- resource
Group stringName - The name of the resource group that contains the service instance.
- workspace
Name string - The name of workspace resource.
- analytics
Connector stringName - The name of Analytics Connector resource.
- identity
Service
Managed Identity Identity - Setting indicating whether the service has a managed identity associated with it.
- location string
- The resource location.
- {[key: string]: string}
- Resource tags.
- data_
destination_ Analyticsconfiguration Connector Data Lake Data Destination Args - Data destination configuration for Analytics Connector.
- data_
mapping_ Analyticsconfiguration Connector Fhir To Parquet Mapping Args - Data mapping configuration for Analytics Connector.
- data_
source_ Analyticsconfiguration Connector Fhir Service Data Source Args - Data source for Analytics Connector.
- resource_
group_ strname - The name of the resource group that contains the service instance.
- workspace_
name str - The name of workspace resource.
- analytics_
connector_ strname - The name of Analytics Connector resource.
- identity
Service
Managed Identity Identity Args - Setting indicating whether the service has a managed identity associated with it.
- location str
- The resource location.
- Mapping[str, str]
- Resource tags.
- data
Destination Property MapConfiguration - Data destination configuration for Analytics Connector.
- data
Mapping Property MapConfiguration - Data mapping configuration for Analytics Connector.
- data
Source Property MapConfiguration - Data source for Analytics Connector.
- resource
Group StringName - The name of the resource group that contains the service instance.
- workspace
Name String - The name of workspace resource.
- analytics
Connector StringName - 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.
- 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.
- Provisioning
State string - The provisioning state.
- System
Data Pulumi.Azure Native. Healthcare Apis. Outputs. System Data Response - 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.
- Provisioning
State string - The provisioning state.
- System
Data SystemData Response - 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.
- provisioning
State String - The provisioning state.
- system
Data SystemData Response - 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.
- provisioning
State string - The provisioning state.
- system
Data SystemData Response - 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 SystemData Response - 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.
- provisioning
State String - The provisioning state.
- system
Data 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
- Data
Lake stringName - The name for the Data Lake.
- Name string
- Name of data destination.
- Data
Lake stringName - The name for the Data Lake.
- Name string
- Name of data destination.
- data
Lake StringName - The name for the Data Lake.
- name String
- Name of data destination.
- data
Lake stringName - The name for the Data Lake.
- name string
- Name of data destination.
- data_
lake_ strname - The name for the Data Lake.
- name str
- Name of data destination.
- data
Lake StringName - The name for the Data Lake.
- name String
- Name of data destination.
AnalyticsConnectorDataLakeDataDestinationResponse, AnalyticsConnectorDataLakeDataDestinationResponseArgs
- Data
Lake stringName - The name for the Data Lake.
- Name string
- Name of data destination.
- Data
Lake stringName - The name for the Data Lake.
- Name string
- Name of data destination.
- data
Lake StringName - The name for the Data Lake.
- name String
- Name of data destination.
- data
Lake stringName - The name for the Data Lake.
- name string
- Name of data destination.
- data_
lake_ strname - The name for the Data Lake.
- name str
- Name of data destination.
- data
Lake StringName - The name for the Data Lake.
- name String
- Name of data destination.
AnalyticsConnectorFhirServiceDataSource, AnalyticsConnectorFhirServiceDataSourceArgs
- Kind
string | Pulumi.
Azure Native. Healthcare Apis. Fhir Service Version - The kind of FHIR Service.
- Url string
- The URL of FHIR service.
- Kind
string | Fhir
Service Version - The kind of FHIR Service.
- Url string
- The URL of FHIR service.
- kind
String | Fhir
Service Version - The kind of FHIR Service.
- url String
- The URL of FHIR service.
- kind
string | Fhir
Service Version - The kind of FHIR Service.
- url string
- The URL of FHIR service.
- kind
str | Fhir
Service Version - 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
AnalyticsConnectorFhirToParquetMapping, AnalyticsConnectorFhirToParquetMappingArgs
- Extension
Schema stringReference - Artifact reference for extension schema.
- Filter
Configuration stringReference - Artifact reference for filter configurations.
- Extension
Schema stringReference - Artifact reference for extension schema.
- Filter
Configuration stringReference - Artifact reference for filter configurations.
- extension
Schema StringReference - Artifact reference for extension schema.
- filter
Configuration StringReference - Artifact reference for filter configurations.
- extension
Schema stringReference - Artifact reference for extension schema.
- filter
Configuration stringReference - Artifact reference for filter configurations.
- extension_
schema_ strreference - Artifact reference for extension schema.
- filter_
configuration_ strreference - Artifact reference for filter configurations.
- extension
Schema StringReference - Artifact reference for extension schema.
- filter
Configuration StringReference - Artifact reference for filter configurations.
AnalyticsConnectorFhirToParquetMappingResponse, AnalyticsConnectorFhirToParquetMappingResponseArgs
- Extension
Schema stringReference - Artifact reference for extension schema.
- Filter
Configuration stringReference - Artifact reference for filter configurations.
- Extension
Schema stringReference - Artifact reference for extension schema.
- Filter
Configuration stringReference - Artifact reference for filter configurations.
- extension
Schema StringReference - Artifact reference for extension schema.
- filter
Configuration StringReference - Artifact reference for filter configurations.
- extension
Schema stringReference - Artifact reference for extension schema.
- filter
Configuration stringReference - Artifact reference for filter configurations.
- extension_
schema_ strreference - Artifact reference for extension schema.
- filter_
configuration_ strreference - Artifact reference for filter configurations.
- extension
Schema StringReference - Artifact reference for extension schema.
- filter
Configuration StringReference - Artifact reference for filter configurations.
FhirServiceVersion, FhirServiceVersionArgs
- STU3
- STU3
- R4
- R4
- Fhir
Service Version STU3 - STU3
- Fhir
Service Version R4 - R4
- STU3
- STU3
- R4
- R4
- STU3
- STU3
- R4
- R4
- STU3
- STU3
- R4
- R4
- "STU3"
- STU3
- "R4"
- R4
ServiceManagedIdentityIdentity, ServiceManagedIdentityIdentityArgs
- Type
string | Pulumi.
Azure Native. Healthcare Apis. Service Managed Identity Type - Type of identity being specified, currently SystemAssigned and None 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 | Service
Managed Identity Type - Type of identity being specified, currently SystemAssigned and None 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 | Service
Managed Identity Type - Type of identity being specified, currently SystemAssigned and None 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 | Service
Managed Identity Type - Type of identity being specified, currently SystemAssigned and None 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 | Service
Managed Identity Type - Type of identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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.
ServiceManagedIdentityResponseIdentity, ServiceManagedIdentityResponseIdentityArgs
- 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 identity being specified, currently SystemAssigned and None are allowed.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Healthcare Apis. 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 identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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 identity being specified, currently SystemAssigned and None 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.
ServiceManagedIdentityType, ServiceManagedIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Service
Managed Identity Type None - None
- Service
Managed Identity Type System Assigned - SystemAssigned
- Service
Managed Identity Type User Assigned - UserAssigned
- Service
Managed 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
SystemDataResponse, SystemDataResponseArgs
- 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.
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:healthcareapis:AnalyticsConnector exampleconnector /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/workspaces/{workspaceName}/analyticsconnectors/{analyticsConnectorName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0