azure-native.healthcareapis.FhirService
Explore with Pulumi AI
The description of Fhir Service API Version: 2022-05-15.
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 = "SystemAssigned",
},
Kind = "fhir-R4",
Location = "westus",
ResourceGroupName = "testRG",
Tags =
{
{ "additionalProp1", "string" },
{ "additionalProp2", "string" },
{ "additionalProp3", "string" },
},
WorkspaceName = "workspace1",
});
});
package main
import (
healthcareapis "github.com/pulumi/pulumi-azure-native-sdk/healthcareapis"
"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.FhirServiceAccessPolicyEntryArgs{
{
ObjectId: pulumi.String("c487e7d1-3210-41a3-8ccc-e9372b78da47"),
},
{
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("SystemAssigned"),
},
Kind: pulumi.String("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
})
}
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 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(
Map.of("objectId", "c487e7d1-3210-41a3-8ccc-e9372b78da47"),
Map.of("objectId", "5b307da8-43d4-492b-8b66-b0294ade872f"))
.acrConfiguration(Map.of("loginServers", "test1.azurecr.io"))
.authenticationConfiguration(Map.ofEntries(
Map.entry("audience", "https://azurehealthcareapis.com"),
Map.entry("authority", "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc"),
Map.entry("smartProxyEnabled", true)
))
.corsConfiguration(Map.ofEntries(
Map.entry("allowCredentials", false),
Map.entry("headers", "*"),
Map.entry("maxAge", 1440),
Map.entry("methods",
"DELETE",
"GET",
"OPTIONS",
"PATCH",
"POST",
"PUT"),
Map.entry("origins", "*")
))
.exportConfiguration(Map.of("storageAccountName", "existingStorageAccount"))
.fhirServiceName("fhirservice1")
.identity(Map.of("type", "SystemAssigned"))
.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());
}
}
import pulumi
import pulumi_azure_native as azure_native
fhir_service = azure_native.healthcareapis.FhirService("fhirService",
access_policies=[
azure_native.healthcareapis.FhirServiceAccessPolicyEntryArgs(
object_id="c487e7d1-3210-41a3-8ccc-e9372b78da47",
),
azure_native.healthcareapis.FhirServiceAccessPolicyEntryArgs(
object_id="5b307da8-43d4-492b-8b66-b0294ade872f",
),
],
acr_configuration=azure_native.healthcareapis.FhirServiceAcrConfigurationArgs(
login_servers=["test1.azurecr.io"],
),
authentication_configuration=azure_native.healthcareapis.FhirServiceAuthenticationConfigurationArgs(
audience="https://azurehealthcareapis.com",
authority="https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc",
smart_proxy_enabled=True,
),
cors_configuration=azure_native.healthcareapis.FhirServiceCorsConfigurationArgs(
allow_credentials=False,
headers=["*"],
max_age=1440,
methods=[
"DELETE",
"GET",
"OPTIONS",
"PATCH",
"POST",
"PUT",
],
origins=["*"],
),
export_configuration=azure_native.healthcareapis.FhirServiceExportConfigurationArgs(
storage_account_name="existingStorageAccount",
),
fhir_service_name="fhirservice1",
identity=azure_native.healthcareapis.ServiceManagedIdentityIdentityArgs(
type="SystemAssigned",
),
kind="fhir-R4",
location="westus",
resource_group_name="testRG",
tags={
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string",
},
workspace_name="workspace1")
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: "SystemAssigned",
},
kind: "fhir-R4",
location: "westus",
resourceGroupName: "testRG",
tags: {
additionalProp1: "string",
additionalProp2: "string",
additionalProp3: "string",
},
workspaceName: "workspace1",
});
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
kind: fhir-R4
location: westus
resourceGroupName: testRG
tags:
additionalProp1: string
additionalProp2: string
additionalProp3: string
workspaceName: workspace1
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,
cors_configuration: Optional[FhirServiceCorsConfigurationArgs] = None,
access_policies: Optional[Sequence[FhirServiceAccessPolicyEntryArgs]] = None,
export_configuration: Optional[FhirServiceExportConfigurationArgs] = None,
fhir_service_name: Optional[str] = None,
identity: Optional[ServiceManagedIdentityIdentityArgs] = 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 string
- The unique name of the resource.
- args FhirServiceArgs
- 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 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 string
- The unique name of the resource.
- args FhirServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FhirServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
CorsConfiguration =
{
{ "allowCredentials", false },
{ "headers", new[]
{
"string",
} },
{ "maxAge", 0 },
{ "methods", new[]
{
"string",
} },
{ "origins", new[]
{
"string",
} },
},
AccessPolicies = new[]
{
{
{ "objectId", "string" },
},
},
ExportConfiguration =
{
{ "storageAccountName", "string" },
},
FhirServiceName = "string",
Identity =
{
{ "type", "string" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
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" },
},
} },
},
});
example, err := healthcareapis.NewFhirService(ctx, "fhirServiceResource", &healthcareapis.FhirServiceArgs{
ResourceGroupName: "string",
WorkspaceName: "string",
CorsConfiguration: map[string]interface{}{
"allowCredentials": false,
"headers": []string{
"string",
},
"maxAge": 0,
"methods": []string{
"string",
},
"origins": []string{
"string",
},
},
AccessPolicies: []map[string]interface{}{
map[string]interface{}{
"objectId": "string",
},
},
ExportConfiguration: map[string]interface{}{
"storageAccountName": "string",
},
FhirServiceName: "string",
Identity: map[string]interface{}{
"type": "string",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
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",
},
},
},
})
var fhirServiceResource = new FhirService("fhirServiceResource", FhirServiceArgs.builder()
.resourceGroupName("string")
.workspaceName("string")
.corsConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.accessPolicies(%!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")
.identity(%!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());
fhir_service_resource = azure_native.healthcareapis.FhirService("fhirServiceResource",
resource_group_name=string,
workspace_name=string,
cors_configuration={
allowCredentials: False,
headers: [string],
maxAge: 0,
methods: [string],
origins: [string],
},
access_policies=[{
objectId: string,
}],
export_configuration={
storageAccountName: string,
},
fhir_service_name=string,
identity={
type: string,
userAssignedIdentities: {
string: any,
},
},
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,
}],
})
const fhirServiceResource = new azure_native.healthcareapis.FhirService("fhirServiceResource", {
resourceGroupName: "string",
workspaceName: "string",
corsConfiguration: {
allowCredentials: false,
headers: ["string"],
maxAge: 0,
methods: ["string"],
origins: ["string"],
},
accessPolicies: [{
objectId: "string",
}],
exportConfiguration: {
storageAccountName: "string",
},
fhirServiceName: "string",
identity: {
type: "string",
userAssignedIdentities: {
string: "any",
},
},
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",
}],
},
});
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: any
kind: string
location: string
resourceGroupName: string
resourceVersionPolicyConfiguration:
default: string
resourceTypeOverrides:
string: string
tags:
string: string
workspaceName: string
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
The FhirService resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group that contains the service instance.
- Workspace
Name string - The name of workspace resource.
- Access
Policies List<Pulumi.Azure Native. Healthcare Apis. Inputs. Fhir Service Access Policy Entry> - Fhir Service access policies.
- Acr
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Fhir Service Acr Configuration - Fhir Service Azure container registry configuration.
- Authentication
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Fhir Service Authentication Configuration - Fhir Service authentication configuration.
- Cors
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Fhir Service Cors Configuration - Fhir Service Cors configuration.
- Export
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Fhir Service Export Configuration - Fhir Service export configuration.
- Fhir
Service stringName - The name of FHIR Service resource.
- Identity
Pulumi.
Azure Native. Healthcare Apis. Inputs. Service Managed Identity Identity - Setting indicating whether the service has a managed identity associated with it.
- Kind
string | Pulumi.
Azure Native. Healthcare Apis. Fhir Service Kind - The kind of the service.
- Location string
- The resource location.
- Resource
Version Pulumi.Policy Configuration Azure Native. Healthcare Apis. Inputs. Resource Version Policy Configuration - Determines tracking of history for resources.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group that contains the service instance.
- Workspace
Name string - The name of workspace resource.
- Access
Policies []FhirService Access Policy Entry Args - Fhir Service access policies.
- Acr
Configuration FhirService Acr Configuration Args - Fhir Service Azure container registry configuration.
- Authentication
Configuration FhirService Authentication Configuration Args - Fhir Service authentication configuration.
- Cors
Configuration FhirService Cors Configuration Args - Fhir Service Cors configuration.
- Export
Configuration FhirService Export Configuration Args - Fhir Service export configuration.
- Fhir
Service stringName - The name of FHIR Service resource.
- Identity
Service
Managed Identity Identity Args - Setting indicating whether the service has a managed identity associated with it.
- Kind
string | Fhir
Service Kind - The kind of the service.
- Location string
- The resource location.
- Resource
Version ResourcePolicy Configuration Version Policy Configuration Args - Determines tracking of history for resources.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group that contains the service instance.
- workspace
Name String - The name of workspace resource.
- access
Policies List<FhirService Access Policy Entry> - Fhir Service access policies.
- acr
Configuration FhirService Acr Configuration - Fhir Service Azure container registry configuration.
- authentication
Configuration FhirService Authentication Configuration - Fhir Service authentication configuration.
- cors
Configuration FhirService Cors Configuration - Fhir Service Cors configuration.
- export
Configuration FhirService Export Configuration - Fhir Service export configuration.
- fhir
Service StringName - The name of FHIR Service resource.
- identity
Service
Managed Identity Identity - Setting indicating whether the service has a managed identity associated with it.
- kind
String | Fhir
Service Kind - The kind of the service.
- location String
- The resource location.
- resource
Version ResourcePolicy Configuration Version Policy Configuration - Determines tracking of history for resources.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group that contains the service instance.
- workspace
Name string - The name of workspace resource.
- access
Policies FhirService Access Policy Entry[] - Fhir Service access policies.
- acr
Configuration FhirService Acr Configuration - Fhir Service Azure container registry configuration.
- authentication
Configuration FhirService Authentication Configuration - Fhir Service authentication configuration.
- cors
Configuration FhirService Cors Configuration - Fhir Service Cors configuration.
- export
Configuration FhirService Export Configuration - Fhir Service export configuration.
- fhir
Service stringName - The name of FHIR Service resource.
- identity
Service
Managed Identity Identity - Setting indicating whether the service has a managed identity associated with it.
- kind
string | Fhir
Service Kind - The kind of the service.
- location string
- The resource location.
- resource
Version ResourcePolicy Configuration Version Policy Configuration - Determines tracking of history for resources.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group that contains the service instance.
- workspace_
name str - The name of workspace resource.
- access_
policies Sequence[FhirService Access Policy Entry Args] - Fhir Service access policies.
- acr_
configuration FhirService Acr Configuration Args - Fhir Service Azure container registry configuration.
- authentication_
configuration FhirService Authentication Configuration Args - Fhir Service authentication configuration.
- cors_
configuration FhirService Cors Configuration Args - Fhir Service Cors configuration.
- export_
configuration FhirService Export Configuration Args - Fhir Service export configuration.
- fhir_
service_ strname - The name of FHIR Service resource.
- identity
Service
Managed Identity Identity Args - Setting indicating whether the service has a managed identity associated with it.
- kind
str | Fhir
Service Kind - The kind of the service.
- location str
- The resource location.
- resource_
version_ Resourcepolicy_ configuration Version Policy Configuration Args - Determines tracking of history for resources.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group that contains the service instance.
- workspace
Name String - The name of workspace resource.
- access
Policies List<Property Map> - Fhir Service access policies.
- acr
Configuration Property Map - Fhir Service Azure container registry configuration.
- authentication
Configuration Property Map - Fhir Service authentication configuration.
- cors
Configuration Property Map - Fhir Service Cors configuration.
- export
Configuration Property Map - Fhir Service export configuration.
- fhir
Service StringName - The name of FHIR Service resource.
- identity Property Map
- Setting indicating whether the service has a managed identity associated with it.
- kind String | "fhir-Stu3" | "fhir-R4"
- The kind of the service.
- location String
- The resource location.
- resource
Version Property MapPolicy Configuration - Determines tracking of history for resources.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the FhirService resource produces the following output properties:
- Event
State string - Fhir Service event support status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name.
- Private
Endpoint List<Pulumi.Connections Azure Native. Healthcare Apis. Outputs. Private Endpoint Connection Response> - The list of private endpoint connections that are set up for this resource.
- Provisioning
State string - The provisioning state.
- Public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- 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.
- Event
State string - Fhir Service event support status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - The list of private endpoint connections that are set up for this resource.
- Provisioning
State string - The provisioning state.
- Public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- 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.
- event
State String - Fhir Service event support status.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - The list of private endpoint connections that are set up for this resource.
- provisioning
State String - The provisioning state.
- public
Network StringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- 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.
- event
State string - Fhir Service event support status.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The resource name.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - The list of private endpoint connections that are set up for this resource.
- provisioning
State string - The provisioning state.
- public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- 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.
- 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_ Sequence[Privateconnections Endpoint Connection Response] - The list of private endpoint connections that are set up for this resource.
- provisioning_
state str - The provisioning state.
- public_
network_ straccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- 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.
- event
State String - Fhir Service event support status.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name.
- private
Endpoint List<Property Map>Connections - The list of private endpoint connections that are set up for this resource.
- provisioning
State String - The provisioning state.
- public
Network StringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- 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
FhirResourceVersionPolicy, FhirResourceVersionPolicyArgs
- No_
version - no-version
- Versioned
- versioned
- Versioned_
update - versioned-update
- Fhir
Resource Version Policy_No_Version - no-version
- Fhir
Resource Version Policy Versioned - versioned
- Fhir
Resource Version Policy_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
- Object
Id string - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- Object
Id string - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- object
Id String - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- object
Id string - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- object_
id str - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- object
Id String - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
FhirServiceAccessPolicyEntryResponse, FhirServiceAccessPolicyEntryResponseArgs
- Object
Id string - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- Object
Id string - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- object
Id String - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- object
Id string - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- object_
id str - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
- object
Id String - An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
FhirServiceAcrConfiguration, FhirServiceAcrConfigurationArgs
- Login
Servers List<string> - The list of the Azure container registry login servers.
- Oci
Artifacts List<Pulumi.Azure Native. Healthcare Apis. Inputs. Service Oci Artifact Entry> - The list of Open Container Initiative (OCI) artifacts.
- Login
Servers []string - The list of the Azure container registry login servers.
- Oci
Artifacts []ServiceOci Artifact Entry - The list of Open Container Initiative (OCI) artifacts.
- login
Servers List<String> - The list of the Azure container registry login servers.
- oci
Artifacts List<ServiceOci Artifact Entry> - The list of Open Container Initiative (OCI) artifacts.
- login
Servers string[] - The list of the Azure container registry login servers.
- oci
Artifacts ServiceOci Artifact Entry[] - The list of Open Container Initiative (OCI) artifacts.
- login_
servers Sequence[str] - The list of the Azure container registry login servers.
- oci_
artifacts Sequence[ServiceOci Artifact Entry] - The list of Open Container Initiative (OCI) artifacts.
- login
Servers List<String> - The list of the Azure container registry login servers.
- oci
Artifacts List<Property Map> - The list of Open Container Initiative (OCI) artifacts.
FhirServiceAcrConfigurationResponse, FhirServiceAcrConfigurationResponseArgs
- Login
Servers List<string> - The list of the Azure container registry login servers.
- Oci
Artifacts List<Pulumi.Azure Native. Healthcare Apis. Inputs. Service Oci Artifact Entry Response> - The list of Open Container Initiative (OCI) artifacts.
- Login
Servers []string - The list of the Azure container registry login servers.
- Oci
Artifacts []ServiceOci Artifact Entry Response - The list of Open Container Initiative (OCI) artifacts.
- login
Servers List<String> - The list of the Azure container registry login servers.
- oci
Artifacts List<ServiceOci Artifact Entry Response> - The list of Open Container Initiative (OCI) artifacts.
- login
Servers string[] - The list of the Azure container registry login servers.
- oci
Artifacts ServiceOci Artifact Entry Response[] - The list of Open Container Initiative (OCI) artifacts.
- login_
servers Sequence[str] - The list of the Azure container registry login servers.
- oci_
artifacts Sequence[ServiceOci Artifact Entry Response] - The list of Open Container Initiative (OCI) artifacts.
- login
Servers List<String> - The list of the Azure container registry login servers.
- oci
Artifacts List<Property Map> - The list of Open Container Initiative (OCI) artifacts.
FhirServiceAuthenticationConfiguration, FhirServiceAuthenticationConfigurationArgs
- Audience string
- The audience url for the service
- string
- The authority url for the service
- Smart
Proxy boolEnabled - If the SMART on FHIR proxy is enabled
- Audience string
- The audience url for the service
- string
- The authority url for the service
- Smart
Proxy boolEnabled - If the SMART on FHIR proxy is enabled
- audience String
- The audience url for the service
- String
- The authority url for the service
- smart
Proxy BooleanEnabled - If the SMART on FHIR proxy is enabled
- audience string
- The audience url for the service
- string
- The authority url for the service
- smart
Proxy booleanEnabled - If the SMART on FHIR proxy is enabled
- audience str
- The audience url for the service
- str
- The authority url for the service
- smart_
proxy_ boolenabled - If the SMART on FHIR proxy is enabled
- audience String
- The audience url for the service
- String
- The authority url for the service
- smart
Proxy BooleanEnabled - If the SMART on FHIR proxy is enabled
FhirServiceAuthenticationConfigurationResponse, FhirServiceAuthenticationConfigurationResponseArgs
- Audience string
- The audience url for the service
- string
- The authority url for the service
- Smart
Proxy boolEnabled - If the SMART on FHIR proxy is enabled
- Audience string
- The audience url for the service
- string
- The authority url for the service
- Smart
Proxy boolEnabled - If the SMART on FHIR proxy is enabled
- audience String
- The audience url for the service
- String
- The authority url for the service
- smart
Proxy BooleanEnabled - If the SMART on FHIR proxy is enabled
- audience string
- The audience url for the service
- string
- The authority url for the service
- smart
Proxy booleanEnabled - If the SMART on FHIR proxy is enabled
- audience str
- The audience url for the service
- str
- The authority url for the service
- smart_
proxy_ boolenabled - If the SMART on FHIR proxy is enabled
- audience String
- The audience url for the service
- String
- The authority url for the service
- smart
Proxy BooleanEnabled - If the SMART on FHIR proxy is enabled
FhirServiceCorsConfiguration, FhirServiceCorsConfigurationArgs
- Allow
Credentials bool - If credentials are allowed via CORS.
- Headers List<string>
- The headers to be allowed via CORS.
- Max
Age 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.
- Allow
Credentials bool - If credentials are allowed via CORS.
- Headers []string
- The headers to be allowed via CORS.
- Max
Age 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.
- allow
Credentials Boolean - If credentials are allowed via CORS.
- headers List<String>
- The headers to be allowed via CORS.
- max
Age 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.
- allow
Credentials boolean - If credentials are allowed via CORS.
- headers string[]
- The headers to be allowed via CORS.
- max
Age 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.
- allow
Credentials Boolean - If credentials are allowed via CORS.
- headers List<String>
- The headers to be allowed via CORS.
- max
Age 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
- Allow
Credentials bool - If credentials are allowed via CORS.
- Headers List<string>
- The headers to be allowed via CORS.
- Max
Age 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.
- Allow
Credentials bool - If credentials are allowed via CORS.
- Headers []string
- The headers to be allowed via CORS.
- Max
Age 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.
- allow
Credentials Boolean - If credentials are allowed via CORS.
- headers List<String>
- The headers to be allowed via CORS.
- max
Age 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.
- allow
Credentials boolean - If credentials are allowed via CORS.
- headers string[]
- The headers to be allowed via CORS.
- max
Age 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.
- allow
Credentials Boolean - If credentials are allowed via CORS.
- headers List<String>
- The headers to be allowed via CORS.
- max
Age 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
- Storage
Account stringName - The name of the default export storage account.
- Storage
Account stringName - The name of the default export storage account.
- storage
Account StringName - The name of the default export storage account.
- storage
Account stringName - The name of the default export storage account.
- storage_
account_ strname - The name of the default export storage account.
- storage
Account StringName - The name of the default export storage account.
FhirServiceExportConfigurationResponse, FhirServiceExportConfigurationResponseArgs
- Storage
Account stringName - The name of the default export storage account.
- Storage
Account stringName - The name of the default export storage account.
- storage
Account StringName - The name of the default export storage account.
- storage
Account stringName - The name of the default export storage account.
- storage_
account_ strname - The name of the default export storage account.
- storage
Account StringName - The name of the default export storage account.
FhirServiceKind, FhirServiceKindArgs
- Fhir_Stu3
- fhir-Stu3
- Fhir_R4
- fhir-R4
- Fhir
Service Kind_Fhir_Stu3 - fhir-Stu3
- Fhir
Service Kind_Fhir_R4 - 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
- "fhir-Stu3"
- fhir-Stu3
- "fhir-R4"
- fhir-R4
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link Pulumi.Service Connection State Azure Native. Healthcare Apis. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint Pulumi.Azure Native. Healthcare Apis. Inputs. Private Endpoint Response - The resource of private end point.
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name string
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State string - The provisioning state of the private endpoint connection resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id str
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name str
- The name of the resource
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state str - The provisioning state of the private endpoint connection resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private_
endpoint PrivateEndpoint Response - The resource of private end point.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint Property Map - The resource of private end point.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for Private Endpoint
- Id string
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
- id string
- The ARM identifier for Private Endpoint
- id str
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required 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 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 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 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.
- actions
Required 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.
Azure Native. Healthcare Apis. Fhir Resource Version Policy - The default value for tracking history across all resources.
- Resource
Type Dictionary<string, Union<string, Pulumi.Overrides Azure Native. Healthcare Apis. Fhir Resource Version Policy>> - A list of FHIR Resources and their version policy overrides.
- Default
string | Fhir
Resource Version Policy - The default value for tracking history across all resources.
- Resource
Type map[string]stringOverrides - A list of FHIR Resources and their version policy overrides.
- default_
String | Fhir
Resource Version Policy - The default value for tracking history across all resources.
- resource
Type Map<String,Either<String,FhirOverrides Resource Version Policy>> - A list of FHIR Resources and their version policy overrides.
- default
string | Fhir
Resource Version Policy - The default value for tracking history across all resources.
- resource
Type {[key: string]: string | FhirOverrides Resource Version Policy} - A list of FHIR Resources and their version policy overrides.
- default
str | Fhir
Resource Version Policy - The default value for tracking history across all resources.
- resource_
type_ Mapping[str, Union[str, Fhiroverrides Resource Version Policy]] - 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.
- resource
Type Map<String | "no-version" | "versioned" | "versioned-update">Overrides - A list of FHIR Resources and their version policy overrides.
ResourceVersionPolicyConfigurationResponse, ResourceVersionPolicyConfigurationResponseArgs
- Default string
- The default value for tracking history across all resources.
- Resource
Type Dictionary<string, string>Overrides - A list of FHIR Resources and their version policy overrides.
- Default string
- The default value for tracking history across all resources.
- Resource
Type map[string]stringOverrides - A list of FHIR Resources and their version policy overrides.
- default_ String
- The default value for tracking history across all resources.
- resource
Type Map<String,String>Overrides - A list of FHIR Resources and their version policy overrides.
- default string
- The default value for tracking history across all resources.
- resource
Type {[key: string]: string}Overrides - A list of FHIR Resources and their version policy overrides.
- default str
- The default value for tracking history across all resources.
- resource_
type_ Mapping[str, str]overrides - A list of FHIR Resources and their version policy overrides.
- default String
- The default value for tracking history across all resources.
- resource
Type Map<String>Overrides - A list of FHIR Resources and their version policy overrides.
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 Dictionary<string, object>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 map[string]interface{}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 Map<String,Object>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 {[key: string]: any}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_ Mapping[str, Any]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 Map<Any>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
ServiceOciArtifactEntry, ServiceOciArtifactEntryArgs
- Digest string
- The artifact digest.
- Image
Name string - The artifact name.
- Login
Server string - The Azure Container Registry login server.
- Digest string
- The artifact digest.
- Image
Name string - The artifact name.
- Login
Server string - The Azure Container Registry login server.
- digest String
- The artifact digest.
- image
Name String - The artifact name.
- login
Server String - The Azure Container Registry login server.
- digest string
- The artifact digest.
- image
Name string - The artifact name.
- login
Server 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.
- image
Name String - The artifact name.
- login
Server String - The Azure Container Registry login server.
ServiceOciArtifactEntryResponse, ServiceOciArtifactEntryResponseArgs
- Digest string
- The artifact digest.
- Image
Name string - The artifact name.
- Login
Server string - The Azure Container Registry login server.
- Digest string
- The artifact digest.
- Image
Name string - The artifact name.
- Login
Server string - The Azure Container Registry login server.
- digest String
- The artifact digest.
- image
Name String - The artifact name.
- login
Server String - The Azure Container Registry login server.
- digest string
- The artifact digest.
- image
Name string - The artifact name.
- login
Server 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.
- image
Name String - The artifact name.
- login
Server String - The Azure Container Registry login server.
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:FhirService fhirservice1 /subscriptions/subid/resourceGroups/testRG/providers/Microsoft.HealthcareApis/workspaces/workspace1/fhirservices/fhirservice1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0