1. Packages
  2. Azure Native v2
  3. API Docs
  4. healthcareapis
  5. FhirService
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.healthcareapis.FhirService

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

The description of Fhir Service Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.

Other available API versions: 2023-09-06, 2023-11-01, 2023-12-01, 2024-03-01, 2024-03-31.

Example Usage

Create or update a Fhir Service

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var fhirService = new AzureNative.HealthcareApis.FhirService("fhirService", new()
    {
        AccessPolicies = new[]
        {
            new AzureNative.HealthcareApis.Inputs.FhirServiceAccessPolicyEntryArgs
            {
                ObjectId = "c487e7d1-3210-41a3-8ccc-e9372b78da47",
            },
            new AzureNative.HealthcareApis.Inputs.FhirServiceAccessPolicyEntryArgs
            {
                ObjectId = "5b307da8-43d4-492b-8b66-b0294ade872f",
            },
        },
        AcrConfiguration = new AzureNative.HealthcareApis.Inputs.FhirServiceAcrConfigurationArgs
        {
            LoginServers = new[]
            {
                "test1.azurecr.io",
            },
        },
        AuthenticationConfiguration = new AzureNative.HealthcareApis.Inputs.FhirServiceAuthenticationConfigurationArgs
        {
            Audience = "https://azurehealthcareapis.com",
            Authority = "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc",
            SmartProxyEnabled = true,
        },
        CorsConfiguration = new AzureNative.HealthcareApis.Inputs.FhirServiceCorsConfigurationArgs
        {
            AllowCredentials = false,
            Headers = new[]
            {
                "*",
            },
            MaxAge = 1440,
            Methods = new[]
            {
                "DELETE",
                "GET",
                "OPTIONS",
                "PATCH",
                "POST",
                "PUT",
            },
            Origins = new[]
            {
                "*",
            },
        },
        ExportConfiguration = new AzureNative.HealthcareApis.Inputs.FhirServiceExportConfigurationArgs
        {
            StorageAccountName = "existingStorageAccount",
        },
        FhirServiceName = "fhirservice1",
        Identity = new AzureNative.HealthcareApis.Inputs.ServiceManagedIdentityIdentityArgs
        {
            Type = AzureNative.HealthcareApis.ServiceManagedIdentityType.SystemAssigned,
        },
        ImplementationGuidesConfiguration = new AzureNative.HealthcareApis.Inputs.ImplementationGuidesConfigurationArgs
        {
            UsCoreMissingData = false,
        },
        ImportConfiguration = new AzureNative.HealthcareApis.Inputs.FhirServiceImportConfigurationArgs
        {
            Enabled = false,
            InitialImportMode = false,
            IntegrationDataStore = "existingStorageAccount",
        },
        Kind = AzureNative.HealthcareApis.FhirServiceKind.Fhir_R4,
        Location = "westus",
        ResourceGroupName = "testRG",
        Tags = 
        {
            { "additionalProp1", "string" },
            { "additionalProp2", "string" },
            { "additionalProp3", "string" },
        },
        WorkspaceName = "workspace1",
    });

});
Copy
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.NewFhirService(ctx, "fhirService", &healthcareapis.FhirServiceArgs{
			AccessPolicies: healthcareapis.FhirServiceAccessPolicyEntryArray{
				&healthcareapis.FhirServiceAccessPolicyEntryArgs{
					ObjectId: pulumi.String("c487e7d1-3210-41a3-8ccc-e9372b78da47"),
				},
				&healthcareapis.FhirServiceAccessPolicyEntryArgs{
					ObjectId: pulumi.String("5b307da8-43d4-492b-8b66-b0294ade872f"),
				},
			},
			AcrConfiguration: &healthcareapis.FhirServiceAcrConfigurationArgs{
				LoginServers: pulumi.StringArray{
					pulumi.String("test1.azurecr.io"),
				},
			},
			AuthenticationConfiguration: &healthcareapis.FhirServiceAuthenticationConfigurationArgs{
				Audience:          pulumi.String("https://azurehealthcareapis.com"),
				Authority:         pulumi.String("https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc"),
				SmartProxyEnabled: pulumi.Bool(true),
			},
			CorsConfiguration: &healthcareapis.FhirServiceCorsConfigurationArgs{
				AllowCredentials: pulumi.Bool(false),
				Headers: pulumi.StringArray{
					pulumi.String("*"),
				},
				MaxAge: pulumi.Int(1440),
				Methods: pulumi.StringArray{
					pulumi.String("DELETE"),
					pulumi.String("GET"),
					pulumi.String("OPTIONS"),
					pulumi.String("PATCH"),
					pulumi.String("POST"),
					pulumi.String("PUT"),
				},
				Origins: pulumi.StringArray{
					pulumi.String("*"),
				},
			},
			ExportConfiguration: &healthcareapis.FhirServiceExportConfigurationArgs{
				StorageAccountName: pulumi.String("existingStorageAccount"),
			},
			FhirServiceName: pulumi.String("fhirservice1"),
			Identity: &healthcareapis.ServiceManagedIdentityIdentityArgs{
				Type: pulumi.String(healthcareapis.ServiceManagedIdentityTypeSystemAssigned),
			},
			ImplementationGuidesConfiguration: &healthcareapis.ImplementationGuidesConfigurationArgs{
				UsCoreMissingData: pulumi.Bool(false),
			},
			ImportConfiguration: &healthcareapis.FhirServiceImportConfigurationArgs{
				Enabled:              pulumi.Bool(false),
				InitialImportMode:    pulumi.Bool(false),
				IntegrationDataStore: pulumi.String("existingStorageAccount"),
			},
			Kind:              pulumi.String(healthcareapis.FhirServiceKind_Fhir_R4),
			Location:          pulumi.String("westus"),
			ResourceGroupName: pulumi.String("testRG"),
			Tags: pulumi.StringMap{
				"additionalProp1": pulumi.String("string"),
				"additionalProp2": pulumi.String("string"),
				"additionalProp3": pulumi.String("string"),
			},
			WorkspaceName: pulumi.String("workspace1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.healthcareapis.FhirService;
import com.pulumi.azurenative.healthcareapis.FhirServiceArgs;
import com.pulumi.azurenative.healthcareapis.inputs.FhirServiceAccessPolicyEntryArgs;
import com.pulumi.azurenative.healthcareapis.inputs.FhirServiceAcrConfigurationArgs;
import com.pulumi.azurenative.healthcareapis.inputs.FhirServiceAuthenticationConfigurationArgs;
import com.pulumi.azurenative.healthcareapis.inputs.FhirServiceCorsConfigurationArgs;
import com.pulumi.azurenative.healthcareapis.inputs.FhirServiceExportConfigurationArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceManagedIdentityIdentityArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ImplementationGuidesConfigurationArgs;
import com.pulumi.azurenative.healthcareapis.inputs.FhirServiceImportConfigurationArgs;
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 fhirService = new FhirService("fhirService", FhirServiceArgs.builder()
            .accessPolicies(            
                FhirServiceAccessPolicyEntryArgs.builder()
                    .objectId("c487e7d1-3210-41a3-8ccc-e9372b78da47")
                    .build(),
                FhirServiceAccessPolicyEntryArgs.builder()
                    .objectId("5b307da8-43d4-492b-8b66-b0294ade872f")
                    .build())
            .acrConfiguration(FhirServiceAcrConfigurationArgs.builder()
                .loginServers("test1.azurecr.io")
                .build())
            .authenticationConfiguration(FhirServiceAuthenticationConfigurationArgs.builder()
                .audience("https://azurehealthcareapis.com")
                .authority("https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc")
                .smartProxyEnabled(true)
                .build())
            .corsConfiguration(FhirServiceCorsConfigurationArgs.builder()
                .allowCredentials(false)
                .headers("*")
                .maxAge(1440)
                .methods(                
                    "DELETE",
                    "GET",
                    "OPTIONS",
                    "PATCH",
                    "POST",
                    "PUT")
                .origins("*")
                .build())
            .exportConfiguration(FhirServiceExportConfigurationArgs.builder()
                .storageAccountName("existingStorageAccount")
                .build())
            .fhirServiceName("fhirservice1")
            .identity(ServiceManagedIdentityIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .implementationGuidesConfiguration(ImplementationGuidesConfigurationArgs.builder()
                .usCoreMissingData(false)
                .build())
            .importConfiguration(FhirServiceImportConfigurationArgs.builder()
                .enabled(false)
                .initialImportMode(false)
                .integrationDataStore("existingStorageAccount")
                .build())
            .kind("fhir-R4")
            .location("westus")
            .resourceGroupName("testRG")
            .tags(Map.ofEntries(
                Map.entry("additionalProp1", "string"),
                Map.entry("additionalProp2", "string"),
                Map.entry("additionalProp3", "string")
            ))
            .workspaceName("workspace1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const fhirService = new azure_native.healthcareapis.FhirService("fhirService", {
    accessPolicies: [
        {
            objectId: "c487e7d1-3210-41a3-8ccc-e9372b78da47",
        },
        {
            objectId: "5b307da8-43d4-492b-8b66-b0294ade872f",
        },
    ],
    acrConfiguration: {
        loginServers: ["test1.azurecr.io"],
    },
    authenticationConfiguration: {
        audience: "https://azurehealthcareapis.com",
        authority: "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc",
        smartProxyEnabled: true,
    },
    corsConfiguration: {
        allowCredentials: false,
        headers: ["*"],
        maxAge: 1440,
        methods: [
            "DELETE",
            "GET",
            "OPTIONS",
            "PATCH",
            "POST",
            "PUT",
        ],
        origins: ["*"],
    },
    exportConfiguration: {
        storageAccountName: "existingStorageAccount",
    },
    fhirServiceName: "fhirservice1",
    identity: {
        type: azure_native.healthcareapis.ServiceManagedIdentityType.SystemAssigned,
    },
    implementationGuidesConfiguration: {
        usCoreMissingData: false,
    },
    importConfiguration: {
        enabled: false,
        initialImportMode: false,
        integrationDataStore: "existingStorageAccount",
    },
    kind: azure_native.healthcareapis.FhirServiceKind.Fhir_R4,
    location: "westus",
    resourceGroupName: "testRG",
    tags: {
        additionalProp1: "string",
        additionalProp2: "string",
        additionalProp3: "string",
    },
    workspaceName: "workspace1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

fhir_service = azure_native.healthcareapis.FhirService("fhirService",
    access_policies=[
        {
            "object_id": "c487e7d1-3210-41a3-8ccc-e9372b78da47",
        },
        {
            "object_id": "5b307da8-43d4-492b-8b66-b0294ade872f",
        },
    ],
    acr_configuration={
        "login_servers": ["test1.azurecr.io"],
    },
    authentication_configuration={
        "audience": "https://azurehealthcareapis.com",
        "authority": "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc",
        "smart_proxy_enabled": True,
    },
    cors_configuration={
        "allow_credentials": False,
        "headers": ["*"],
        "max_age": 1440,
        "methods": [
            "DELETE",
            "GET",
            "OPTIONS",
            "PATCH",
            "POST",
            "PUT",
        ],
        "origins": ["*"],
    },
    export_configuration={
        "storage_account_name": "existingStorageAccount",
    },
    fhir_service_name="fhirservice1",
    identity={
        "type": azure_native.healthcareapis.ServiceManagedIdentityType.SYSTEM_ASSIGNED,
    },
    implementation_guides_configuration={
        "us_core_missing_data": False,
    },
    import_configuration={
        "enabled": False,
        "initial_import_mode": False,
        "integration_data_store": "existingStorageAccount",
    },
    kind=azure_native.healthcareapis.FhirServiceKind.FHIR_R4,
    location="westus",
    resource_group_name="testRG",
    tags={
        "additionalProp1": "string",
        "additionalProp2": "string",
        "additionalProp3": "string",
    },
    workspace_name="workspace1")
Copy
resources:
  fhirService:
    type: azure-native:healthcareapis:FhirService
    properties:
      accessPolicies:
        - objectId: c487e7d1-3210-41a3-8ccc-e9372b78da47
        - objectId: 5b307da8-43d4-492b-8b66-b0294ade872f
      acrConfiguration:
        loginServers:
          - test1.azurecr.io
      authenticationConfiguration:
        audience: https://azurehealthcareapis.com
        authority: https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc
        smartProxyEnabled: true
      corsConfiguration:
        allowCredentials: false
        headers:
          - '*'
        maxAge: 1440
        methods:
          - DELETE
          - GET
          - OPTIONS
          - PATCH
          - POST
          - PUT
        origins:
          - '*'
      exportConfiguration:
        storageAccountName: existingStorageAccount
      fhirServiceName: fhirservice1
      identity:
        type: SystemAssigned
      implementationGuidesConfiguration:
        usCoreMissingData: false
      importConfiguration:
        enabled: false
        initialImportMode: false
        integrationDataStore: existingStorageAccount
      kind: fhir-R4
      location: westus
      resourceGroupName: testRG
      tags:
        additionalProp1: string
        additionalProp2: string
        additionalProp3: string
      workspaceName: workspace1
Copy

Create FhirService Resource

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

Constructor syntax

new FhirService(name: string, args: FhirServiceArgs, opts?: CustomResourceOptions);
@overload
def FhirService(resource_name: str,
                args: FhirServiceArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def FhirService(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                workspace_name: Optional[str] = None,
                identity: Optional[ServiceManagedIdentityIdentityArgs] = None,
                cors_configuration: Optional[FhirServiceCorsConfigurationArgs] = None,
                export_configuration: Optional[FhirServiceExportConfigurationArgs] = None,
                fhir_service_name: Optional[str] = None,
                access_policies: Optional[Sequence[FhirServiceAccessPolicyEntryArgs]] = None,
                implementation_guides_configuration: Optional[ImplementationGuidesConfigurationArgs] = None,
                import_configuration: Optional[FhirServiceImportConfigurationArgs] = None,
                kind: Optional[Union[str, FhirServiceKind]] = None,
                location: Optional[str] = None,
                authentication_configuration: Optional[FhirServiceAuthenticationConfigurationArgs] = None,
                resource_version_policy_configuration: Optional[ResourceVersionPolicyConfigurationArgs] = None,
                tags: Optional[Mapping[str, str]] = None,
                acr_configuration: Optional[FhirServiceAcrConfigurationArgs] = None)
func NewFhirService(ctx *Context, name string, args FhirServiceArgs, opts ...ResourceOption) (*FhirService, error)
public FhirService(string name, FhirServiceArgs args, CustomResourceOptions? opts = null)
public FhirService(String name, FhirServiceArgs args)
public FhirService(String name, FhirServiceArgs args, CustomResourceOptions options)
type: azure-native:healthcareapis:FhirService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. FhirServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. FhirServiceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. FhirServiceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. FhirServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. FhirServiceArgs
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 fhirServiceResource = new AzureNative.Healthcareapis.FhirService("fhirServiceResource", new()
{
    ResourceGroupName = "string",
    WorkspaceName = "string",
    Identity = 
    {
        { "type", "string" },
        { "userAssignedIdentities", new[]
        {
            "string",
        } },
    },
    CorsConfiguration = 
    {
        { "allowCredentials", false },
        { "headers", new[]
        {
            "string",
        } },
        { "maxAge", 0 },
        { "methods", new[]
        {
            "string",
        } },
        { "origins", new[]
        {
            "string",
        } },
    },
    ExportConfiguration = 
    {
        { "storageAccountName", "string" },
    },
    FhirServiceName = "string",
    AccessPolicies = new[]
    {
        
        {
            { "objectId", "string" },
        },
    },
    ImplementationGuidesConfiguration = 
    {
        { "usCoreMissingData", false },
    },
    ImportConfiguration = 
    {
        { "enabled", false },
        { "initialImportMode", false },
        { "integrationDataStore", "string" },
    },
    Kind = "string",
    Location = "string",
    AuthenticationConfiguration = 
    {
        { "audience", "string" },
        { "authority", "string" },
        { "smartProxyEnabled", false },
    },
    ResourceVersionPolicyConfiguration = 
    {
        { "default", "string" },
        { "resourceTypeOverrides", 
        {
            { "string", "string" },
        } },
    },
    Tags = 
    {
        { "string", "string" },
    },
    AcrConfiguration = 
    {
        { "loginServers", new[]
        {
            "string",
        } },
        { "ociArtifacts", new[]
        {
            
            {
                { "digest", "string" },
                { "imageName", "string" },
                { "loginServer", "string" },
            },
        } },
    },
});
Copy
example, err := healthcareapis.NewFhirService(ctx, "fhirServiceResource", &healthcareapis.FhirServiceArgs{
	ResourceGroupName: "string",
	WorkspaceName:     "string",
	Identity: map[string]interface{}{
		"type": "string",
		"userAssignedIdentities": []string{
			"string",
		},
	},
	CorsConfiguration: map[string]interface{}{
		"allowCredentials": false,
		"headers": []string{
			"string",
		},
		"maxAge": 0,
		"methods": []string{
			"string",
		},
		"origins": []string{
			"string",
		},
	},
	ExportConfiguration: map[string]interface{}{
		"storageAccountName": "string",
	},
	FhirServiceName: "string",
	AccessPolicies: []map[string]interface{}{
		map[string]interface{}{
			"objectId": "string",
		},
	},
	ImplementationGuidesConfiguration: map[string]interface{}{
		"usCoreMissingData": false,
	},
	ImportConfiguration: map[string]interface{}{
		"enabled":              false,
		"initialImportMode":    false,
		"integrationDataStore": "string",
	},
	Kind:     "string",
	Location: "string",
	AuthenticationConfiguration: map[string]interface{}{
		"audience":          "string",
		"authority":         "string",
		"smartProxyEnabled": false,
	},
	ResourceVersionPolicyConfiguration: map[string]interface{}{
		"default": "string",
		"resourceTypeOverrides": map[string]interface{}{
			"string": "string",
		},
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
	AcrConfiguration: map[string]interface{}{
		"loginServers": []string{
			"string",
		},
		"ociArtifacts": []map[string]interface{}{
			map[string]interface{}{
				"digest":      "string",
				"imageName":   "string",
				"loginServer": "string",
			},
		},
	},
})
Copy
var fhirServiceResource = new FhirService("fhirServiceResource", FhirServiceArgs.builder()
    .resourceGroupName("string")
    .workspaceName("string")
    .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .corsConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .exportConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .fhirServiceName("string")
    .accessPolicies(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .implementationGuidesConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .importConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .kind("string")
    .location("string")
    .authenticationConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceVersionPolicyConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .acrConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
fhir_service_resource = azure_native.healthcareapis.FhirService("fhirServiceResource",
    resource_group_name=string,
    workspace_name=string,
    identity={
        type: string,
        userAssignedIdentities: [string],
    },
    cors_configuration={
        allowCredentials: False,
        headers: [string],
        maxAge: 0,
        methods: [string],
        origins: [string],
    },
    export_configuration={
        storageAccountName: string,
    },
    fhir_service_name=string,
    access_policies=[{
        objectId: string,
    }],
    implementation_guides_configuration={
        usCoreMissingData: False,
    },
    import_configuration={
        enabled: False,
        initialImportMode: False,
        integrationDataStore: string,
    },
    kind=string,
    location=string,
    authentication_configuration={
        audience: string,
        authority: string,
        smartProxyEnabled: False,
    },
    resource_version_policy_configuration={
        default: string,
        resourceTypeOverrides: {
            string: string,
        },
    },
    tags={
        string: string,
    },
    acr_configuration={
        loginServers: [string],
        ociArtifacts: [{
            digest: string,
            imageName: string,
            loginServer: string,
        }],
    })
Copy
const fhirServiceResource = new azure_native.healthcareapis.FhirService("fhirServiceResource", {
    resourceGroupName: "string",
    workspaceName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    corsConfiguration: {
        allowCredentials: false,
        headers: ["string"],
        maxAge: 0,
        methods: ["string"],
        origins: ["string"],
    },
    exportConfiguration: {
        storageAccountName: "string",
    },
    fhirServiceName: "string",
    accessPolicies: [{
        objectId: "string",
    }],
    implementationGuidesConfiguration: {
        usCoreMissingData: false,
    },
    importConfiguration: {
        enabled: false,
        initialImportMode: false,
        integrationDataStore: "string",
    },
    kind: "string",
    location: "string",
    authenticationConfiguration: {
        audience: "string",
        authority: "string",
        smartProxyEnabled: false,
    },
    resourceVersionPolicyConfiguration: {
        "default": "string",
        resourceTypeOverrides: {
            string: "string",
        },
    },
    tags: {
        string: "string",
    },
    acrConfiguration: {
        loginServers: ["string"],
        ociArtifacts: [{
            digest: "string",
            imageName: "string",
            loginServer: "string",
        }],
    },
});
Copy
type: azure-native:healthcareapis:FhirService
properties:
    accessPolicies:
        - objectId: string
    acrConfiguration:
        loginServers:
            - string
        ociArtifacts:
            - digest: string
              imageName: string
              loginServer: string
    authenticationConfiguration:
        audience: string
        authority: string
        smartProxyEnabled: false
    corsConfiguration:
        allowCredentials: false
        headers:
            - string
        maxAge: 0
        methods:
            - string
        origins:
            - string
    exportConfiguration:
        storageAccountName: string
    fhirServiceName: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    implementationGuidesConfiguration:
        usCoreMissingData: false
    importConfiguration:
        enabled: false
        initialImportMode: false
        integrationDataStore: string
    kind: string
    location: string
    resourceGroupName: string
    resourceVersionPolicyConfiguration:
        default: string
        resourceTypeOverrides:
            string: string
    tags:
        string: string
    workspaceName: string
Copy

FhirService Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The FhirService resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the service instance.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of workspace resource.
AccessPolicies List<Pulumi.AzureNative.HealthcareApis.Inputs.FhirServiceAccessPolicyEntry>
Fhir Service access policies.
AcrConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.FhirServiceAcrConfiguration
Fhir Service Azure container registry configuration.
AuthenticationConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.FhirServiceAuthenticationConfiguration
Fhir Service authentication configuration.
CorsConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.FhirServiceCorsConfiguration
Fhir Service Cors configuration.
ExportConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.FhirServiceExportConfiguration
Fhir Service export configuration.
FhirServiceName Changes to this property will trigger replacement. string
The name of FHIR Service resource.
Identity Pulumi.AzureNative.HealthcareApis.Inputs.ServiceManagedIdentityIdentity
Setting indicating whether the service has a managed identity associated with it.
ImplementationGuidesConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.ImplementationGuidesConfiguration
Implementation Guides configuration.
ImportConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.FhirServiceImportConfiguration
Fhir Service import configuration.
Kind string | Pulumi.AzureNative.HealthcareApis.FhirServiceKind
The kind of the service.
Location Changes to this property will trigger replacement. string
The resource location.
ResourceVersionPolicyConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.ResourceVersionPolicyConfiguration
Determines tracking of history for resources.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the service instance.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of workspace resource.
AccessPolicies []FhirServiceAccessPolicyEntryArgs
Fhir Service access policies.
AcrConfiguration FhirServiceAcrConfigurationArgs
Fhir Service Azure container registry configuration.
AuthenticationConfiguration FhirServiceAuthenticationConfigurationArgs
Fhir Service authentication configuration.
CorsConfiguration FhirServiceCorsConfigurationArgs
Fhir Service Cors configuration.
ExportConfiguration FhirServiceExportConfigurationArgs
Fhir Service export configuration.
FhirServiceName Changes to this property will trigger replacement. string
The name of FHIR Service resource.
Identity ServiceManagedIdentityIdentityArgs
Setting indicating whether the service has a managed identity associated with it.
ImplementationGuidesConfiguration ImplementationGuidesConfigurationArgs
Implementation Guides configuration.
ImportConfiguration FhirServiceImportConfigurationArgs
Fhir Service import configuration.
Kind string | FhirServiceKind
The kind of the service.
Location Changes to this property will trigger replacement. string
The resource location.
ResourceVersionPolicyConfiguration ResourceVersionPolicyConfigurationArgs
Determines tracking of history for resources.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the service instance.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of workspace resource.
accessPolicies List<FhirServiceAccessPolicyEntry>
Fhir Service access policies.
acrConfiguration FhirServiceAcrConfiguration
Fhir Service Azure container registry configuration.
authenticationConfiguration FhirServiceAuthenticationConfiguration
Fhir Service authentication configuration.
corsConfiguration FhirServiceCorsConfiguration
Fhir Service Cors configuration.
exportConfiguration FhirServiceExportConfiguration
Fhir Service export configuration.
fhirServiceName Changes to this property will trigger replacement. String
The name of FHIR Service resource.
identity ServiceManagedIdentityIdentity
Setting indicating whether the service has a managed identity associated with it.
implementationGuidesConfiguration ImplementationGuidesConfiguration
Implementation Guides configuration.
importConfiguration FhirServiceImportConfiguration
Fhir Service import configuration.
kind String | FhirServiceKind
The kind of the service.
location Changes to this property will trigger replacement. String
The resource location.
resourceVersionPolicyConfiguration ResourceVersionPolicyConfiguration
Determines tracking of history for resources.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the service instance.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of workspace resource.
accessPolicies FhirServiceAccessPolicyEntry[]
Fhir Service access policies.
acrConfiguration FhirServiceAcrConfiguration
Fhir Service Azure container registry configuration.
authenticationConfiguration FhirServiceAuthenticationConfiguration
Fhir Service authentication configuration.
corsConfiguration FhirServiceCorsConfiguration
Fhir Service Cors configuration.
exportConfiguration FhirServiceExportConfiguration
Fhir Service export configuration.
fhirServiceName Changes to this property will trigger replacement. string
The name of FHIR Service resource.
identity ServiceManagedIdentityIdentity
Setting indicating whether the service has a managed identity associated with it.
implementationGuidesConfiguration ImplementationGuidesConfiguration
Implementation Guides configuration.
importConfiguration FhirServiceImportConfiguration
Fhir Service import configuration.
kind string | FhirServiceKind
The kind of the service.
location Changes to this property will trigger replacement. string
The resource location.
resourceVersionPolicyConfiguration ResourceVersionPolicyConfiguration
Determines tracking of history for resources.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group that contains the service instance.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
The name of workspace resource.
access_policies Sequence[FhirServiceAccessPolicyEntryArgs]
Fhir Service access policies.
acr_configuration FhirServiceAcrConfigurationArgs
Fhir Service Azure container registry configuration.
authentication_configuration FhirServiceAuthenticationConfigurationArgs
Fhir Service authentication configuration.
cors_configuration FhirServiceCorsConfigurationArgs
Fhir Service Cors configuration.
export_configuration FhirServiceExportConfigurationArgs
Fhir Service export configuration.
fhir_service_name Changes to this property will trigger replacement. str
The name of FHIR Service resource.
identity ServiceManagedIdentityIdentityArgs
Setting indicating whether the service has a managed identity associated with it.
implementation_guides_configuration ImplementationGuidesConfigurationArgs
Implementation Guides configuration.
import_configuration FhirServiceImportConfigurationArgs
Fhir Service import configuration.
kind str | FhirServiceKind
The kind of the service.
location Changes to this property will trigger replacement. str
The resource location.
resource_version_policy_configuration ResourceVersionPolicyConfigurationArgs
Determines tracking of history for resources.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the service instance.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of workspace resource.
accessPolicies List<Property Map>
Fhir Service access policies.
acrConfiguration Property Map
Fhir Service Azure container registry configuration.
authenticationConfiguration Property Map
Fhir Service authentication configuration.
corsConfiguration Property Map
Fhir Service Cors configuration.
exportConfiguration Property Map
Fhir Service export configuration.
fhirServiceName Changes to this property will trigger replacement. String
The name of FHIR Service resource.
identity Property Map
Setting indicating whether the service has a managed identity associated with it.
implementationGuidesConfiguration Property Map
Implementation Guides configuration.
importConfiguration Property Map
Fhir Service import configuration.
kind String | "fhir-Stu3" | "fhir-R4"
The kind of the service.
location Changes to this property will trigger replacement. String
The resource location.
resourceVersionPolicyConfiguration Property Map
Determines tracking of history for resources.
tags Map<String>
Resource tags.

Outputs

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

EventState string
Fhir Service event support status.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
PrivateEndpointConnections List<Pulumi.AzureNative.HealthcareApis.Outputs.PrivateEndpointConnectionResponse>
The list of private endpoint connections that are set up for this resource.
ProvisioningState string
The provisioning state.
PublicNetworkAccess string
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
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.
EventState string
Fhir Service event support status.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
PrivateEndpointConnections []PrivateEndpointConnectionResponse
The list of private endpoint connections that are set up for this resource.
ProvisioningState string
The provisioning state.
PublicNetworkAccess string
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
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.
eventState String
Fhir Service event support status.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
privateEndpointConnections List<PrivateEndpointConnectionResponse>
The list of private endpoint connections that are set up for this resource.
provisioningState String
The provisioning state.
publicNetworkAccess String
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
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.
eventState string
Fhir Service event support status.
id string
The provider-assigned unique ID for this managed resource.
name string
The resource name.
privateEndpointConnections PrivateEndpointConnectionResponse[]
The list of private endpoint connections that are set up for this resource.
provisioningState string
The provisioning state.
publicNetworkAccess string
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
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.
event_state str
Fhir Service event support status.
id str
The provider-assigned unique ID for this managed resource.
name str
The resource name.
private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
The list of private endpoint connections that are set up for this resource.
provisioning_state str
The provisioning state.
public_network_access str
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
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.
eventState String
Fhir Service event support status.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
privateEndpointConnections List<Property Map>
The list of private endpoint connections that are set up for this resource.
provisioningState String
The provisioning state.
publicNetworkAccess String
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
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

FhirResourceVersionPolicy
, FhirResourceVersionPolicyArgs

No_version
no-version
Versioned
versioned
Versioned_update
versioned-update
FhirResourceVersionPolicy_No_Version
no-version
FhirResourceVersionPolicyVersioned
versioned
FhirResourceVersionPolicy_Versioned_Update
versioned-update
Noversion
no-version
Versioned
versioned
Versionedupdate
versioned-update
No_version
no-version
Versioned
versioned
Versioned_update
versioned-update
NO_VERSION
no-version
VERSIONED
versioned
VERSIONED_UPDATE
versioned-update
"no-version"
no-version
"versioned"
versioned
"versioned-update"
versioned-update

FhirServiceAccessPolicyEntry
, FhirServiceAccessPolicyEntryArgs

ObjectId This property is required. string
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
ObjectId This property is required. string
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
objectId This property is required. String
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
objectId This property is required. string
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
object_id This property is required. str
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
objectId This property is required. String
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.

FhirServiceAccessPolicyEntryResponse
, FhirServiceAccessPolicyEntryResponseArgs

ObjectId This property is required. string
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
ObjectId This property is required. string
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
objectId This property is required. String
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
objectId This property is required. string
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
object_id This property is required. str
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
objectId This property is required. String
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.

FhirServiceAcrConfiguration
, FhirServiceAcrConfigurationArgs

LoginServers List<string>
The list of the Azure container registry login servers.
OciArtifacts List<Pulumi.AzureNative.HealthcareApis.Inputs.ServiceOciArtifactEntry>
The list of Open Container Initiative (OCI) artifacts.
LoginServers []string
The list of the Azure container registry login servers.
OciArtifacts []ServiceOciArtifactEntry
The list of Open Container Initiative (OCI) artifacts.
loginServers List<String>
The list of the Azure container registry login servers.
ociArtifacts List<ServiceOciArtifactEntry>
The list of Open Container Initiative (OCI) artifacts.
loginServers string[]
The list of the Azure container registry login servers.
ociArtifacts ServiceOciArtifactEntry[]
The list of Open Container Initiative (OCI) artifacts.
login_servers Sequence[str]
The list of the Azure container registry login servers.
oci_artifacts Sequence[ServiceOciArtifactEntry]
The list of Open Container Initiative (OCI) artifacts.
loginServers List<String>
The list of the Azure container registry login servers.
ociArtifacts List<Property Map>
The list of Open Container Initiative (OCI) artifacts.

FhirServiceAcrConfigurationResponse
, FhirServiceAcrConfigurationResponseArgs

LoginServers List<string>
The list of the Azure container registry login servers.
OciArtifacts List<Pulumi.AzureNative.HealthcareApis.Inputs.ServiceOciArtifactEntryResponse>
The list of Open Container Initiative (OCI) artifacts.
LoginServers []string
The list of the Azure container registry login servers.
OciArtifacts []ServiceOciArtifactEntryResponse
The list of Open Container Initiative (OCI) artifacts.
loginServers List<String>
The list of the Azure container registry login servers.
ociArtifacts List<ServiceOciArtifactEntryResponse>
The list of Open Container Initiative (OCI) artifacts.
loginServers string[]
The list of the Azure container registry login servers.
ociArtifacts ServiceOciArtifactEntryResponse[]
The list of Open Container Initiative (OCI) artifacts.
login_servers Sequence[str]
The list of the Azure container registry login servers.
oci_artifacts Sequence[ServiceOciArtifactEntryResponse]
The list of Open Container Initiative (OCI) artifacts.
loginServers List<String>
The list of the Azure container registry login servers.
ociArtifacts List<Property Map>
The list of Open Container Initiative (OCI) artifacts.

FhirServiceAuthenticationConfiguration
, FhirServiceAuthenticationConfigurationArgs

Audience string
The audience url for the service
Authority string
The authority url for the service
SmartProxyEnabled bool
If the SMART on FHIR proxy is enabled
Audience string
The audience url for the service
Authority string
The authority url for the service
SmartProxyEnabled bool
If the SMART on FHIR proxy is enabled
audience String
The audience url for the service
authority String
The authority url for the service
smartProxyEnabled Boolean
If the SMART on FHIR proxy is enabled
audience string
The audience url for the service
authority string
The authority url for the service
smartProxyEnabled boolean
If the SMART on FHIR proxy is enabled
audience str
The audience url for the service
authority str
The authority url for the service
smart_proxy_enabled bool
If the SMART on FHIR proxy is enabled
audience String
The audience url for the service
authority String
The authority url for the service
smartProxyEnabled Boolean
If the SMART on FHIR proxy is enabled

FhirServiceAuthenticationConfigurationResponse
, FhirServiceAuthenticationConfigurationResponseArgs

Audience string
The audience url for the service
Authority string
The authority url for the service
SmartProxyEnabled bool
If the SMART on FHIR proxy is enabled
Audience string
The audience url for the service
Authority string
The authority url for the service
SmartProxyEnabled bool
If the SMART on FHIR proxy is enabled
audience String
The audience url for the service
authority String
The authority url for the service
smartProxyEnabled Boolean
If the SMART on FHIR proxy is enabled
audience string
The audience url for the service
authority string
The authority url for the service
smartProxyEnabled boolean
If the SMART on FHIR proxy is enabled
audience str
The audience url for the service
authority str
The authority url for the service
smart_proxy_enabled bool
If the SMART on FHIR proxy is enabled
audience String
The audience url for the service
authority String
The authority url for the service
smartProxyEnabled Boolean
If the SMART on FHIR proxy is enabled

FhirServiceCorsConfiguration
, FhirServiceCorsConfigurationArgs

AllowCredentials bool
If credentials are allowed via CORS.
Headers List<string>
The headers to be allowed via CORS.
MaxAge int
The max age to be allowed via CORS.
Methods List<string>
The methods to be allowed via CORS.
Origins List<string>
The origins to be allowed via CORS.
AllowCredentials bool
If credentials are allowed via CORS.
Headers []string
The headers to be allowed via CORS.
MaxAge int
The max age to be allowed via CORS.
Methods []string
The methods to be allowed via CORS.
Origins []string
The origins to be allowed via CORS.
allowCredentials Boolean
If credentials are allowed via CORS.
headers List<String>
The headers to be allowed via CORS.
maxAge Integer
The max age to be allowed via CORS.
methods List<String>
The methods to be allowed via CORS.
origins List<String>
The origins to be allowed via CORS.
allowCredentials boolean
If credentials are allowed via CORS.
headers string[]
The headers to be allowed via CORS.
maxAge number
The max age to be allowed via CORS.
methods string[]
The methods to be allowed via CORS.
origins string[]
The origins to be allowed via CORS.
allow_credentials bool
If credentials are allowed via CORS.
headers Sequence[str]
The headers to be allowed via CORS.
max_age int
The max age to be allowed via CORS.
methods Sequence[str]
The methods to be allowed via CORS.
origins Sequence[str]
The origins to be allowed via CORS.
allowCredentials Boolean
If credentials are allowed via CORS.
headers List<String>
The headers to be allowed via CORS.
maxAge Number
The max age to be allowed via CORS.
methods List<String>
The methods to be allowed via CORS.
origins List<String>
The origins to be allowed via CORS.

FhirServiceCorsConfigurationResponse
, FhirServiceCorsConfigurationResponseArgs

AllowCredentials bool
If credentials are allowed via CORS.
Headers List<string>
The headers to be allowed via CORS.
MaxAge int
The max age to be allowed via CORS.
Methods List<string>
The methods to be allowed via CORS.
Origins List<string>
The origins to be allowed via CORS.
AllowCredentials bool
If credentials are allowed via CORS.
Headers []string
The headers to be allowed via CORS.
MaxAge int
The max age to be allowed via CORS.
Methods []string
The methods to be allowed via CORS.
Origins []string
The origins to be allowed via CORS.
allowCredentials Boolean
If credentials are allowed via CORS.
headers List<String>
The headers to be allowed via CORS.
maxAge Integer
The max age to be allowed via CORS.
methods List<String>
The methods to be allowed via CORS.
origins List<String>
The origins to be allowed via CORS.
allowCredentials boolean
If credentials are allowed via CORS.
headers string[]
The headers to be allowed via CORS.
maxAge number
The max age to be allowed via CORS.
methods string[]
The methods to be allowed via CORS.
origins string[]
The origins to be allowed via CORS.
allow_credentials bool
If credentials are allowed via CORS.
headers Sequence[str]
The headers to be allowed via CORS.
max_age int
The max age to be allowed via CORS.
methods Sequence[str]
The methods to be allowed via CORS.
origins Sequence[str]
The origins to be allowed via CORS.
allowCredentials Boolean
If credentials are allowed via CORS.
headers List<String>
The headers to be allowed via CORS.
maxAge Number
The max age to be allowed via CORS.
methods List<String>
The methods to be allowed via CORS.
origins List<String>
The origins to be allowed via CORS.

FhirServiceExportConfiguration
, FhirServiceExportConfigurationArgs

StorageAccountName string
The name of the default export storage account.
StorageAccountName string
The name of the default export storage account.
storageAccountName String
The name of the default export storage account.
storageAccountName string
The name of the default export storage account.
storage_account_name str
The name of the default export storage account.
storageAccountName String
The name of the default export storage account.

FhirServiceExportConfigurationResponse
, FhirServiceExportConfigurationResponseArgs

StorageAccountName string
The name of the default export storage account.
StorageAccountName string
The name of the default export storage account.
storageAccountName String
The name of the default export storage account.
storageAccountName string
The name of the default export storage account.
storage_account_name str
The name of the default export storage account.
storageAccountName String
The name of the default export storage account.

FhirServiceImportConfiguration
, FhirServiceImportConfigurationArgs

Enabled bool
If the import operation is enabled.
InitialImportMode bool
If the FHIR service is in InitialImportMode.
IntegrationDataStore string
The name of the default integration storage account.
Enabled bool
If the import operation is enabled.
InitialImportMode bool
If the FHIR service is in InitialImportMode.
IntegrationDataStore string
The name of the default integration storage account.
enabled Boolean
If the import operation is enabled.
initialImportMode Boolean
If the FHIR service is in InitialImportMode.
integrationDataStore String
The name of the default integration storage account.
enabled boolean
If the import operation is enabled.
initialImportMode boolean
If the FHIR service is in InitialImportMode.
integrationDataStore string
The name of the default integration storage account.
enabled bool
If the import operation is enabled.
initial_import_mode bool
If the FHIR service is in InitialImportMode.
integration_data_store str
The name of the default integration storage account.
enabled Boolean
If the import operation is enabled.
initialImportMode Boolean
If the FHIR service is in InitialImportMode.
integrationDataStore String
The name of the default integration storage account.

FhirServiceImportConfigurationResponse
, FhirServiceImportConfigurationResponseArgs

Enabled bool
If the import operation is enabled.
InitialImportMode bool
If the FHIR service is in InitialImportMode.
IntegrationDataStore string
The name of the default integration storage account.
Enabled bool
If the import operation is enabled.
InitialImportMode bool
If the FHIR service is in InitialImportMode.
IntegrationDataStore string
The name of the default integration storage account.
enabled Boolean
If the import operation is enabled.
initialImportMode Boolean
If the FHIR service is in InitialImportMode.
integrationDataStore String
The name of the default integration storage account.
enabled boolean
If the import operation is enabled.
initialImportMode boolean
If the FHIR service is in InitialImportMode.
integrationDataStore string
The name of the default integration storage account.
enabled bool
If the import operation is enabled.
initial_import_mode bool
If the FHIR service is in InitialImportMode.
integration_data_store str
The name of the default integration storage account.
enabled Boolean
If the import operation is enabled.
initialImportMode Boolean
If the FHIR service is in InitialImportMode.
integrationDataStore String
The name of the default integration storage account.

FhirServiceKind
, FhirServiceKindArgs

Fhir_Stu3
fhir-Stu3
Fhir_R4
fhir-R4
FhirServiceKind_Fhir_Stu3
fhir-Stu3
FhirServiceKind_Fhir_R4
fhir-R4
FhirStu3
fhir-Stu3
FhirR4
fhir-R4
Fhir_Stu3
fhir-Stu3
Fhir_R4
fhir-R4
FHIR_STU3
fhir-Stu3
FHIR_R4
fhir-R4
"fhir-Stu3"
fhir-Stu3
"fhir-R4"
fhir-R4

ImplementationGuidesConfiguration
, ImplementationGuidesConfigurationArgs

UsCoreMissingData bool
If US Core Missing Data requirement is enabled.
UsCoreMissingData bool
If US Core Missing Data requirement is enabled.
usCoreMissingData Boolean
If US Core Missing Data requirement is enabled.
usCoreMissingData boolean
If US Core Missing Data requirement is enabled.
us_core_missing_data bool
If US Core Missing Data requirement is enabled.
usCoreMissingData Boolean
If US Core Missing Data requirement is enabled.

ImplementationGuidesConfigurationResponse
, ImplementationGuidesConfigurationResponseArgs

UsCoreMissingData bool
If US Core Missing Data requirement is enabled.
UsCoreMissingData bool
If US Core Missing Data requirement is enabled.
usCoreMissingData Boolean
If US Core Missing Data requirement is enabled.
usCoreMissingData boolean
If US Core Missing Data requirement is enabled.
us_core_missing_data bool
If US Core Missing Data requirement is enabled.
usCoreMissingData Boolean
If US Core Missing Data requirement is enabled.

PrivateEndpointConnectionResponse
, PrivateEndpointConnectionResponseArgs

Id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
Name This property is required. string
The name of the resource
PrivateLinkServiceConnectionState This property is required. Pulumi.AzureNative.HealthcareApis.Inputs.PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
ProvisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
Type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
PrivateEndpoint Pulumi.AzureNative.HealthcareApis.Inputs.PrivateEndpointResponse
The resource of private end point.
Id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
Name This property is required. string
The name of the resource
PrivateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
ProvisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
Type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
PrivateEndpoint PrivateEndpointResponse
The resource of private end point.
id This property is required. String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
name This property is required. String
The name of the resource
privateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. String
The provisioning state of the private endpoint connection resource.
type This property is required. String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint PrivateEndpointResponse
The resource of private end point.
id This property is required. string
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
name This property is required. string
The name of the resource
privateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint PrivateEndpointResponse
The resource of private end point.
id This property is required. str
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
name This property is required. str
The name of the resource
private_link_service_connection_state This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioning_state This property is required. str
The provisioning state of the private endpoint connection resource.
type This property is required. str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
private_endpoint PrivateEndpointResponse
The resource of private end point.
id This property is required. String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
name This property is required. String
The name of the resource
privateLinkServiceConnectionState This property is required. Property Map
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. String
The provisioning state of the private endpoint connection resource.
type This property is required. String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint Property Map
The resource of private end point.

PrivateEndpointResponse
, PrivateEndpointResponseArgs

Id This property is required. string
The ARM identifier for Private Endpoint
Id This property is required. string
The ARM identifier for Private Endpoint
id This property is required. String
The ARM identifier for Private Endpoint
id This property is required. string
The ARM identifier for Private Endpoint
id This property is required. str
The ARM identifier for Private Endpoint
id This property is required. String
The ARM identifier for Private Endpoint

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
description string
The reason for approval/rejection of the connection.
status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actions_required str
A message indicating if changes on the service provider require any updates on the consumer.
description str
The reason for approval/rejection of the connection.
status str
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

ResourceVersionPolicyConfiguration
, ResourceVersionPolicyConfigurationArgs

Default string | Pulumi.AzureNative.HealthcareApis.FhirResourceVersionPolicy
The default value for tracking history across all resources.
ResourceTypeOverrides Dictionary<string, Union<string, Pulumi.AzureNative.HealthcareApis.FhirResourceVersionPolicy>>
A list of FHIR Resources and their version policy overrides.
Default string | FhirResourceVersionPolicy
The default value for tracking history across all resources.
ResourceTypeOverrides map[string]string
A list of FHIR Resources and their version policy overrides.
default_ String | FhirResourceVersionPolicy
The default value for tracking history across all resources.
resourceTypeOverrides Map<String,Either<String,FhirResourceVersionPolicy>>
A list of FHIR Resources and their version policy overrides.
default string | FhirResourceVersionPolicy
The default value for tracking history across all resources.
resourceTypeOverrides {[key: string]: string | FhirResourceVersionPolicy}
A list of FHIR Resources and their version policy overrides.
default str | FhirResourceVersionPolicy
The default value for tracking history across all resources.
resource_type_overrides Mapping[str, Union[str, FhirResourceVersionPolicy]]
A list of FHIR Resources and their version policy overrides.
default String | "no-version" | "versioned" | "versioned-update"
The default value for tracking history across all resources.
resourceTypeOverrides Map<String | "no-version" | "versioned" | "versioned-update">
A list of FHIR Resources and their version policy overrides.

ResourceVersionPolicyConfigurationResponse
, ResourceVersionPolicyConfigurationResponseArgs

Default string
The default value for tracking history across all resources.
ResourceTypeOverrides Dictionary<string, string>
A list of FHIR Resources and their version policy overrides.
Default string
The default value for tracking history across all resources.
ResourceTypeOverrides map[string]string
A list of FHIR Resources and their version policy overrides.
default_ String
The default value for tracking history across all resources.
resourceTypeOverrides Map<String,String>
A list of FHIR Resources and their version policy overrides.
default string
The default value for tracking history across all resources.
resourceTypeOverrides {[key: string]: string}
A list of FHIR Resources and their version policy overrides.
default str
The default value for tracking history across all resources.
resource_type_overrides Mapping[str, str]
A list of FHIR Resources and their version policy overrides.
default String
The default value for tracking history across all resources.
resourceTypeOverrides Map<String>
A list of FHIR Resources and their version policy overrides.

ServiceManagedIdentityIdentity
, ServiceManagedIdentityIdentityArgs

Type This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. 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 This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. 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 This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. 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 This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. 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 This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. 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 This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. 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

ServiceOciArtifactEntry
, ServiceOciArtifactEntryArgs

Digest string
The artifact digest.
ImageName string
The artifact name.
LoginServer string
The Azure Container Registry login server.
Digest string
The artifact digest.
ImageName string
The artifact name.
LoginServer string
The Azure Container Registry login server.
digest String
The artifact digest.
imageName String
The artifact name.
loginServer String
The Azure Container Registry login server.
digest string
The artifact digest.
imageName string
The artifact name.
loginServer string
The Azure Container Registry login server.
digest str
The artifact digest.
image_name str
The artifact name.
login_server str
The Azure Container Registry login server.
digest String
The artifact digest.
imageName String
The artifact name.
loginServer String
The Azure Container Registry login server.

ServiceOciArtifactEntryResponse
, ServiceOciArtifactEntryResponseArgs

Digest string
The artifact digest.
ImageName string
The artifact name.
LoginServer string
The Azure Container Registry login server.
Digest string
The artifact digest.
ImageName string
The artifact name.
LoginServer string
The Azure Container Registry login server.
digest String
The artifact digest.
imageName String
The artifact name.
loginServer String
The Azure Container Registry login server.
digest string
The artifact digest.
imageName string
The artifact name.
loginServer string
The Azure Container Registry login server.
digest str
The artifact digest.
image_name str
The artifact name.
login_server str
The Azure Container Registry login server.
digest String
The artifact digest.
imageName String
The artifact name.
loginServer String
The Azure Container Registry login server.

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 This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. 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:FhirService fhirservice1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/workspaces/{workspaceName}/fhirservices/{fhirServiceName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi