azure-native.healthcareapis.Service
Explore with Pulumi AI
The description of the service. Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
Other available API versions: 2020-03-15, 2023-09-06, 2023-11-01, 2023-12-01, 2024-03-01, 2024-03-31.
Example Usage
Create or Update a service with all parameters
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var service = new AzureNative.HealthcareApis.Service("service", new()
{
Identity = new AzureNative.HealthcareApis.Inputs.ServicesResourceIdentityArgs
{
Type = AzureNative.HealthcareApis.ManagedServiceIdentityType.SystemAssigned,
},
Kind = AzureNative.HealthcareApis.Kind.Fhir_R4,
Location = "westus2",
Properties = new AzureNative.HealthcareApis.Inputs.ServicesPropertiesArgs
{
AccessPolicies = new[]
{
new AzureNative.HealthcareApis.Inputs.ServiceAccessPolicyEntryArgs
{
ObjectId = "c487e7d1-3210-41a3-8ccc-e9372b78da47",
},
new AzureNative.HealthcareApis.Inputs.ServiceAccessPolicyEntryArgs
{
ObjectId = "5b307da8-43d4-492b-8b66-b0294ade872f",
},
},
AuthenticationConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceAuthenticationConfigurationInfoArgs
{
Audience = "https://azurehealthcareapis.com",
Authority = "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc",
SmartProxyEnabled = true,
},
CorsConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceCorsConfigurationInfoArgs
{
AllowCredentials = false,
Headers = new[]
{
"*",
},
MaxAge = 1440,
Methods = new[]
{
"DELETE",
"GET",
"OPTIONS",
"PATCH",
"POST",
"PUT",
},
Origins = new[]
{
"*",
},
},
CosmosDbConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceCosmosDbConfigurationInfoArgs
{
KeyVaultKeyUri = "https://my-vault.vault.azure.net/keys/my-key",
OfferThroughput = 1000,
},
ExportConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceExportConfigurationInfoArgs
{
StorageAccountName = "existingStorageAccount",
},
PrivateEndpointConnections = new() { },
PublicNetworkAccess = AzureNative.HealthcareApis.PublicNetworkAccess.Disabled,
},
ResourceGroupName = "rg1",
ResourceName = "service1",
Tags = null,
});
});
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.NewService(ctx, "service", &healthcareapis.ServiceArgs{
Identity: &healthcareapis.ServicesResourceIdentityArgs{
Type: pulumi.String(healthcareapis.ManagedServiceIdentityTypeSystemAssigned),
},
Kind: healthcareapis.Kind_Fhir_R4,
Location: pulumi.String("westus2"),
Properties: &healthcareapis.ServicesPropertiesArgs{
AccessPolicies: healthcareapis.ServiceAccessPolicyEntryArray{
&healthcareapis.ServiceAccessPolicyEntryArgs{
ObjectId: pulumi.String("c487e7d1-3210-41a3-8ccc-e9372b78da47"),
},
&healthcareapis.ServiceAccessPolicyEntryArgs{
ObjectId: pulumi.String("5b307da8-43d4-492b-8b66-b0294ade872f"),
},
},
AuthenticationConfiguration: &healthcareapis.ServiceAuthenticationConfigurationInfoArgs{
Audience: pulumi.String("https://azurehealthcareapis.com"),
Authority: pulumi.String("https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc"),
SmartProxyEnabled: pulumi.Bool(true),
},
CorsConfiguration: &healthcareapis.ServiceCorsConfigurationInfoArgs{
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("*"),
},
},
CosmosDbConfiguration: &healthcareapis.ServiceCosmosDbConfigurationInfoArgs{
KeyVaultKeyUri: pulumi.String("https://my-vault.vault.azure.net/keys/my-key"),
OfferThroughput: pulumi.Int(1000),
},
ExportConfiguration: &healthcareapis.ServiceExportConfigurationInfoArgs{
StorageAccountName: pulumi.String("existingStorageAccount"),
},
PrivateEndpointConnections: healthcareapis.PrivateEndpointConnectionTypeArray{},
PublicNetworkAccess: pulumi.String(healthcareapis.PublicNetworkAccessDisabled),
},
ResourceGroupName: pulumi.String("rg1"),
ResourceName: pulumi.String("service1"),
Tags: nil,
})
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.Service;
import com.pulumi.azurenative.healthcareapis.ServiceArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServicesResourceIdentityArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServicesPropertiesArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceAuthenticationConfigurationInfoArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceCorsConfigurationInfoArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceCosmosDbConfigurationInfoArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceExportConfigurationInfoArgs;
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 service = new Service("service", ServiceArgs.builder()
.identity(ServicesResourceIdentityArgs.builder()
.type("SystemAssigned")
.build())
.kind("fhir-R4")
.location("westus2")
.properties(ServicesPropertiesArgs.builder()
.accessPolicies(
ServiceAccessPolicyEntryArgs.builder()
.objectId("c487e7d1-3210-41a3-8ccc-e9372b78da47")
.build(),
ServiceAccessPolicyEntryArgs.builder()
.objectId("5b307da8-43d4-492b-8b66-b0294ade872f")
.build())
.authenticationConfiguration(ServiceAuthenticationConfigurationInfoArgs.builder()
.audience("https://azurehealthcareapis.com")
.authority("https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc")
.smartProxyEnabled(true)
.build())
.corsConfiguration(ServiceCorsConfigurationInfoArgs.builder()
.allowCredentials(false)
.headers("*")
.maxAge(1440)
.methods(
"DELETE",
"GET",
"OPTIONS",
"PATCH",
"POST",
"PUT")
.origins("*")
.build())
.cosmosDbConfiguration(ServiceCosmosDbConfigurationInfoArgs.builder()
.keyVaultKeyUri("https://my-vault.vault.azure.net/keys/my-key")
.offerThroughput(1000)
.build())
.exportConfiguration(ServiceExportConfigurationInfoArgs.builder()
.storageAccountName("existingStorageAccount")
.build())
.privateEndpointConnections()
.publicNetworkAccess("Disabled")
.build())
.resourceGroupName("rg1")
.resourceName("service1")
.tags()
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
service = azure_native.healthcareapis.Service("service",
identity={
"type": azure_native.healthcareapis.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
},
kind=azure_native.healthcareapis.Kind.FHIR_R4,
location="westus2",
properties={
"access_policies": [
{
"object_id": "c487e7d1-3210-41a3-8ccc-e9372b78da47",
},
{
"object_id": "5b307da8-43d4-492b-8b66-b0294ade872f",
},
],
"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": ["*"],
},
"cosmos_db_configuration": {
"key_vault_key_uri": "https://my-vault.vault.azure.net/keys/my-key",
"offer_throughput": 1000,
},
"export_configuration": {
"storage_account_name": "existingStorageAccount",
},
"private_endpoint_connections": [],
"public_network_access": azure_native.healthcareapis.PublicNetworkAccess.DISABLED,
},
resource_group_name="rg1",
resource_name_="service1",
tags={})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const service = new azure_native.healthcareapis.Service("service", {
identity: {
type: azure_native.healthcareapis.ManagedServiceIdentityType.SystemAssigned,
},
kind: azure_native.healthcareapis.Kind.Fhir_R4,
location: "westus2",
properties: {
accessPolicies: [
{
objectId: "c487e7d1-3210-41a3-8ccc-e9372b78da47",
},
{
objectId: "5b307da8-43d4-492b-8b66-b0294ade872f",
},
],
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: ["*"],
},
cosmosDbConfiguration: {
keyVaultKeyUri: "https://my-vault.vault.azure.net/keys/my-key",
offerThroughput: 1000,
},
exportConfiguration: {
storageAccountName: "existingStorageAccount",
},
privateEndpointConnections: [],
publicNetworkAccess: azure_native.healthcareapis.PublicNetworkAccess.Disabled,
},
resourceGroupName: "rg1",
resourceName: "service1",
tags: {},
});
resources:
service:
type: azure-native:healthcareapis:Service
properties:
identity:
type: SystemAssigned
kind: fhir-R4
location: westus2
properties:
accessPolicies:
- objectId: c487e7d1-3210-41a3-8ccc-e9372b78da47
- objectId: 5b307da8-43d4-492b-8b66-b0294ade872f
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:
- '*'
cosmosDbConfiguration:
keyVaultKeyUri: https://my-vault.vault.azure.net/keys/my-key
offerThroughput: 1000
exportConfiguration:
storageAccountName: existingStorageAccount
privateEndpointConnections: []
publicNetworkAccess: Disabled
resourceGroupName: rg1
resourceName: service1
tags: {}
Create or Update a service with all parameters and CMK enabled in a data sovereign region
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var service = new AzureNative.HealthcareApis.Service("service", new()
{
Identity = new AzureNative.HealthcareApis.Inputs.ServicesResourceIdentityArgs
{
Type = AzureNative.HealthcareApis.ManagedServiceIdentityType.SystemAssigned,
},
Kind = AzureNative.HealthcareApis.Kind.Fhir_R4,
Location = "Southeast Asia",
Properties = new AzureNative.HealthcareApis.Inputs.ServicesPropertiesArgs
{
AccessPolicies = new[]
{
new AzureNative.HealthcareApis.Inputs.ServiceAccessPolicyEntryArgs
{
ObjectId = "c487e7d1-3210-41a3-8ccc-e9372b78da47",
},
new AzureNative.HealthcareApis.Inputs.ServiceAccessPolicyEntryArgs
{
ObjectId = "5b307da8-43d4-492b-8b66-b0294ade872f",
},
},
AuthenticationConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceAuthenticationConfigurationInfoArgs
{
Audience = "https://azurehealthcareapis.com",
Authority = "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc",
SmartProxyEnabled = true,
},
CorsConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceCorsConfigurationInfoArgs
{
AllowCredentials = false,
Headers = new[]
{
"*",
},
MaxAge = 1440,
Methods = new[]
{
"DELETE",
"GET",
"OPTIONS",
"PATCH",
"POST",
"PUT",
},
Origins = new[]
{
"*",
},
},
CosmosDbConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceCosmosDbConfigurationInfoArgs
{
CrossTenantCmkApplicationId = "de3fbeef-8c3a-428e-8b9f-4d229c8a85f4",
KeyVaultKeyUri = "https://my-vault.vault.azure.net/keys/my-key",
OfferThroughput = 1000,
},
ExportConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceExportConfigurationInfoArgs
{
StorageAccountName = "existingStorageAccount",
},
PrivateEndpointConnections = new() { },
PublicNetworkAccess = AzureNative.HealthcareApis.PublicNetworkAccess.Disabled,
},
ResourceGroupName = "rg1",
ResourceName = "service1",
Tags = null,
});
});
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.NewService(ctx, "service", &healthcareapis.ServiceArgs{
Identity: &healthcareapis.ServicesResourceIdentityArgs{
Type: pulumi.String(healthcareapis.ManagedServiceIdentityTypeSystemAssigned),
},
Kind: healthcareapis.Kind_Fhir_R4,
Location: pulumi.String("Southeast Asia"),
Properties: &healthcareapis.ServicesPropertiesArgs{
AccessPolicies: healthcareapis.ServiceAccessPolicyEntryArray{
&healthcareapis.ServiceAccessPolicyEntryArgs{
ObjectId: pulumi.String("c487e7d1-3210-41a3-8ccc-e9372b78da47"),
},
&healthcareapis.ServiceAccessPolicyEntryArgs{
ObjectId: pulumi.String("5b307da8-43d4-492b-8b66-b0294ade872f"),
},
},
AuthenticationConfiguration: &healthcareapis.ServiceAuthenticationConfigurationInfoArgs{
Audience: pulumi.String("https://azurehealthcareapis.com"),
Authority: pulumi.String("https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc"),
SmartProxyEnabled: pulumi.Bool(true),
},
CorsConfiguration: &healthcareapis.ServiceCorsConfigurationInfoArgs{
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("*"),
},
},
CosmosDbConfiguration: &healthcareapis.ServiceCosmosDbConfigurationInfoArgs{
CrossTenantCmkApplicationId: pulumi.String("de3fbeef-8c3a-428e-8b9f-4d229c8a85f4"),
KeyVaultKeyUri: pulumi.String("https://my-vault.vault.azure.net/keys/my-key"),
OfferThroughput: pulumi.Int(1000),
},
ExportConfiguration: &healthcareapis.ServiceExportConfigurationInfoArgs{
StorageAccountName: pulumi.String("existingStorageAccount"),
},
PrivateEndpointConnections: healthcareapis.PrivateEndpointConnectionTypeArray{},
PublicNetworkAccess: pulumi.String(healthcareapis.PublicNetworkAccessDisabled),
},
ResourceGroupName: pulumi.String("rg1"),
ResourceName: pulumi.String("service1"),
Tags: nil,
})
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.Service;
import com.pulumi.azurenative.healthcareapis.ServiceArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServicesResourceIdentityArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServicesPropertiesArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceAuthenticationConfigurationInfoArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceCorsConfigurationInfoArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceCosmosDbConfigurationInfoArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServiceExportConfigurationInfoArgs;
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 service = new Service("service", ServiceArgs.builder()
.identity(ServicesResourceIdentityArgs.builder()
.type("SystemAssigned")
.build())
.kind("fhir-R4")
.location("Southeast Asia")
.properties(ServicesPropertiesArgs.builder()
.accessPolicies(
ServiceAccessPolicyEntryArgs.builder()
.objectId("c487e7d1-3210-41a3-8ccc-e9372b78da47")
.build(),
ServiceAccessPolicyEntryArgs.builder()
.objectId("5b307da8-43d4-492b-8b66-b0294ade872f")
.build())
.authenticationConfiguration(ServiceAuthenticationConfigurationInfoArgs.builder()
.audience("https://azurehealthcareapis.com")
.authority("https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc")
.smartProxyEnabled(true)
.build())
.corsConfiguration(ServiceCorsConfigurationInfoArgs.builder()
.allowCredentials(false)
.headers("*")
.maxAge(1440)
.methods(
"DELETE",
"GET",
"OPTIONS",
"PATCH",
"POST",
"PUT")
.origins("*")
.build())
.cosmosDbConfiguration(ServiceCosmosDbConfigurationInfoArgs.builder()
.crossTenantCmkApplicationId("de3fbeef-8c3a-428e-8b9f-4d229c8a85f4")
.keyVaultKeyUri("https://my-vault.vault.azure.net/keys/my-key")
.offerThroughput(1000)
.build())
.exportConfiguration(ServiceExportConfigurationInfoArgs.builder()
.storageAccountName("existingStorageAccount")
.build())
.privateEndpointConnections()
.publicNetworkAccess("Disabled")
.build())
.resourceGroupName("rg1")
.resourceName("service1")
.tags()
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
service = azure_native.healthcareapis.Service("service",
identity={
"type": azure_native.healthcareapis.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
},
kind=azure_native.healthcareapis.Kind.FHIR_R4,
location="Southeast Asia",
properties={
"access_policies": [
{
"object_id": "c487e7d1-3210-41a3-8ccc-e9372b78da47",
},
{
"object_id": "5b307da8-43d4-492b-8b66-b0294ade872f",
},
],
"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": ["*"],
},
"cosmos_db_configuration": {
"cross_tenant_cmk_application_id": "de3fbeef-8c3a-428e-8b9f-4d229c8a85f4",
"key_vault_key_uri": "https://my-vault.vault.azure.net/keys/my-key",
"offer_throughput": 1000,
},
"export_configuration": {
"storage_account_name": "existingStorageAccount",
},
"private_endpoint_connections": [],
"public_network_access": azure_native.healthcareapis.PublicNetworkAccess.DISABLED,
},
resource_group_name="rg1",
resource_name_="service1",
tags={})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const service = new azure_native.healthcareapis.Service("service", {
identity: {
type: azure_native.healthcareapis.ManagedServiceIdentityType.SystemAssigned,
},
kind: azure_native.healthcareapis.Kind.Fhir_R4,
location: "Southeast Asia",
properties: {
accessPolicies: [
{
objectId: "c487e7d1-3210-41a3-8ccc-e9372b78da47",
},
{
objectId: "5b307da8-43d4-492b-8b66-b0294ade872f",
},
],
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: ["*"],
},
cosmosDbConfiguration: {
crossTenantCmkApplicationId: "de3fbeef-8c3a-428e-8b9f-4d229c8a85f4",
keyVaultKeyUri: "https://my-vault.vault.azure.net/keys/my-key",
offerThroughput: 1000,
},
exportConfiguration: {
storageAccountName: "existingStorageAccount",
},
privateEndpointConnections: [],
publicNetworkAccess: azure_native.healthcareapis.PublicNetworkAccess.Disabled,
},
resourceGroupName: "rg1",
resourceName: "service1",
tags: {},
});
resources:
service:
type: azure-native:healthcareapis:Service
properties:
identity:
type: SystemAssigned
kind: fhir-R4
location: Southeast Asia
properties:
accessPolicies:
- objectId: c487e7d1-3210-41a3-8ccc-e9372b78da47
- objectId: 5b307da8-43d4-492b-8b66-b0294ade872f
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:
- '*'
cosmosDbConfiguration:
crossTenantCmkApplicationId: de3fbeef-8c3a-428e-8b9f-4d229c8a85f4
keyVaultKeyUri: https://my-vault.vault.azure.net/keys/my-key
offerThroughput: 1000
exportConfiguration:
storageAccountName: existingStorageAccount
privateEndpointConnections: []
publicNetworkAccess: Disabled
resourceGroupName: rg1
resourceName: service1
tags: {}
Create or Update a service with minimum parameters
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var service = new AzureNative.HealthcareApis.Service("service", new()
{
Kind = AzureNative.HealthcareApis.Kind.Fhir_R4,
Location = "westus2",
Properties = new AzureNative.HealthcareApis.Inputs.ServicesPropertiesArgs
{
AccessPolicies = new[]
{
new AzureNative.HealthcareApis.Inputs.ServiceAccessPolicyEntryArgs
{
ObjectId = "c487e7d1-3210-41a3-8ccc-e9372b78da47",
},
},
},
ResourceGroupName = "rg1",
ResourceName = "service2",
Tags = null,
});
});
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.NewService(ctx, "service", &healthcareapis.ServiceArgs{
Kind: healthcareapis.Kind_Fhir_R4,
Location: pulumi.String("westus2"),
Properties: &healthcareapis.ServicesPropertiesArgs{
AccessPolicies: healthcareapis.ServiceAccessPolicyEntryArray{
&healthcareapis.ServiceAccessPolicyEntryArgs{
ObjectId: pulumi.String("c487e7d1-3210-41a3-8ccc-e9372b78da47"),
},
},
},
ResourceGroupName: pulumi.String("rg1"),
ResourceName: pulumi.String("service2"),
Tags: nil,
})
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.Service;
import com.pulumi.azurenative.healthcareapis.ServiceArgs;
import com.pulumi.azurenative.healthcareapis.inputs.ServicesPropertiesArgs;
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 service = new Service("service", ServiceArgs.builder()
.kind("fhir-R4")
.location("westus2")
.properties(ServicesPropertiesArgs.builder()
.accessPolicies(ServiceAccessPolicyEntryArgs.builder()
.objectId("c487e7d1-3210-41a3-8ccc-e9372b78da47")
.build())
.build())
.resourceGroupName("rg1")
.resourceName("service2")
.tags()
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
service = azure_native.healthcareapis.Service("service",
kind=azure_native.healthcareapis.Kind.FHIR_R4,
location="westus2",
properties={
"access_policies": [{
"object_id": "c487e7d1-3210-41a3-8ccc-e9372b78da47",
}],
},
resource_group_name="rg1",
resource_name_="service2",
tags={})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const service = new azure_native.healthcareapis.Service("service", {
kind: azure_native.healthcareapis.Kind.Fhir_R4,
location: "westus2",
properties: {
accessPolicies: [{
objectId: "c487e7d1-3210-41a3-8ccc-e9372b78da47",
}],
},
resourceGroupName: "rg1",
resourceName: "service2",
tags: {},
});
resources:
service:
type: azure-native:healthcareapis:Service
properties:
kind: fhir-R4
location: westus2
properties:
accessPolicies:
- objectId: c487e7d1-3210-41a3-8ccc-e9372b78da47
resourceGroupName: rg1
resourceName: service2
tags: {}
Create Service Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Service(name: string, args: ServiceArgs, opts?: CustomResourceOptions);
@overload
def Service(resource_name: str,
args: ServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Service(resource_name: str,
opts: Optional[ResourceOptions] = None,
kind: Optional[Kind] = None,
resource_group_name: Optional[str] = None,
identity: Optional[ServicesResourceIdentityArgs] = None,
location: Optional[str] = None,
properties: Optional[ServicesPropertiesArgs] = None,
resource_name_: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewService(ctx *Context, name string, args ServiceArgs, opts ...ResourceOption) (*Service, error)
public Service(string name, ServiceArgs args, CustomResourceOptions? opts = null)
public Service(String name, ServiceArgs args)
public Service(String name, ServiceArgs args, CustomResourceOptions options)
type: azure-native:healthcareapis:Service
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 ServiceArgs
- 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 ServiceArgs
- 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 ServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceArgs
- 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 exampleserviceResourceResourceFromHealthcareapis = new AzureNative.HealthcareApis.Service("exampleserviceResourceResourceFromHealthcareapis", new()
{
Kind = AzureNative.HealthcareApis.Kind.Fhir,
ResourceGroupName = "string",
Identity = new AzureNative.HealthcareApis.Inputs.ServicesResourceIdentityArgs
{
Type = "string",
},
Location = "string",
Properties = new AzureNative.HealthcareApis.Inputs.ServicesPropertiesArgs
{
AccessPolicies = new[]
{
new AzureNative.HealthcareApis.Inputs.ServiceAccessPolicyEntryArgs
{
ObjectId = "string",
},
},
AcrConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceAcrConfigurationInfoArgs
{
LoginServers = new[]
{
"string",
},
OciArtifacts = new[]
{
new AzureNative.HealthcareApis.Inputs.ServiceOciArtifactEntryArgs
{
Digest = "string",
ImageName = "string",
LoginServer = "string",
},
},
},
AuthenticationConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceAuthenticationConfigurationInfoArgs
{
Audience = "string",
Authority = "string",
SmartProxyEnabled = false,
},
CorsConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceCorsConfigurationInfoArgs
{
AllowCredentials = false,
Headers = new[]
{
"string",
},
MaxAge = 0,
Methods = new[]
{
"string",
},
Origins = new[]
{
"string",
},
},
CosmosDbConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceCosmosDbConfigurationInfoArgs
{
CrossTenantCmkApplicationId = "string",
KeyVaultKeyUri = "string",
OfferThroughput = 0,
},
ExportConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceExportConfigurationInfoArgs
{
StorageAccountName = "string",
},
ImportConfiguration = new AzureNative.HealthcareApis.Inputs.ServiceImportConfigurationInfoArgs
{
Enabled = false,
InitialImportMode = false,
IntegrationDataStore = "string",
},
PrivateEndpointConnections = new[]
{
new AzureNative.HealthcareApis.Inputs.PrivateEndpointConnectionArgs
{
PrivateLinkServiceConnectionState = new AzureNative.HealthcareApis.Inputs.PrivateLinkServiceConnectionStateArgs
{
ActionsRequired = "string",
Description = "string",
Status = "string",
},
},
},
PublicNetworkAccess = "string",
},
ResourceName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := healthcareapis.NewService(ctx, "exampleserviceResourceResourceFromHealthcareapis", &healthcareapis.ServiceArgs{
Kind: healthcareapis.KindFhir,
ResourceGroupName: pulumi.String("string"),
Identity: &healthcareapis.ServicesResourceIdentityArgs{
Type: pulumi.String("string"),
},
Location: pulumi.String("string"),
Properties: &healthcareapis.ServicesPropertiesArgs{
AccessPolicies: healthcareapis.ServiceAccessPolicyEntryArray{
&healthcareapis.ServiceAccessPolicyEntryArgs{
ObjectId: pulumi.String("string"),
},
},
AcrConfiguration: &healthcareapis.ServiceAcrConfigurationInfoArgs{
LoginServers: pulumi.StringArray{
pulumi.String("string"),
},
OciArtifacts: healthcareapis.ServiceOciArtifactEntryArray{
&healthcareapis.ServiceOciArtifactEntryArgs{
Digest: pulumi.String("string"),
ImageName: pulumi.String("string"),
LoginServer: pulumi.String("string"),
},
},
},
AuthenticationConfiguration: &healthcareapis.ServiceAuthenticationConfigurationInfoArgs{
Audience: pulumi.String("string"),
Authority: pulumi.String("string"),
SmartProxyEnabled: pulumi.Bool(false),
},
CorsConfiguration: &healthcareapis.ServiceCorsConfigurationInfoArgs{
AllowCredentials: pulumi.Bool(false),
Headers: pulumi.StringArray{
pulumi.String("string"),
},
MaxAge: pulumi.Int(0),
Methods: pulumi.StringArray{
pulumi.String("string"),
},
Origins: pulumi.StringArray{
pulumi.String("string"),
},
},
CosmosDbConfiguration: &healthcareapis.ServiceCosmosDbConfigurationInfoArgs{
CrossTenantCmkApplicationId: pulumi.String("string"),
KeyVaultKeyUri: pulumi.String("string"),
OfferThroughput: pulumi.Int(0),
},
ExportConfiguration: &healthcareapis.ServiceExportConfigurationInfoArgs{
StorageAccountName: pulumi.String("string"),
},
ImportConfiguration: &healthcareapis.ServiceImportConfigurationInfoArgs{
Enabled: pulumi.Bool(false),
InitialImportMode: pulumi.Bool(false),
IntegrationDataStore: pulumi.String("string"),
},
PrivateEndpointConnections: healthcareapis.PrivateEndpointConnectionTypeArray{
&healthcareapis.PrivateEndpointConnectionTypeArgs{
PrivateLinkServiceConnectionState: &healthcareapis.PrivateLinkServiceConnectionStateArgs{
ActionsRequired: pulumi.String("string"),
Description: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
},
PublicNetworkAccess: pulumi.String("string"),
},
ResourceName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var exampleserviceResourceResourceFromHealthcareapis = new Service("exampleserviceResourceResourceFromHealthcareapis", ServiceArgs.builder()
.kind("fhir")
.resourceGroupName("string")
.identity(ServicesResourceIdentityArgs.builder()
.type("string")
.build())
.location("string")
.properties(ServicesPropertiesArgs.builder()
.accessPolicies(ServiceAccessPolicyEntryArgs.builder()
.objectId("string")
.build())
.acrConfiguration(ServiceAcrConfigurationInfoArgs.builder()
.loginServers("string")
.ociArtifacts(ServiceOciArtifactEntryArgs.builder()
.digest("string")
.imageName("string")
.loginServer("string")
.build())
.build())
.authenticationConfiguration(ServiceAuthenticationConfigurationInfoArgs.builder()
.audience("string")
.authority("string")
.smartProxyEnabled(false)
.build())
.corsConfiguration(ServiceCorsConfigurationInfoArgs.builder()
.allowCredentials(false)
.headers("string")
.maxAge(0)
.methods("string")
.origins("string")
.build())
.cosmosDbConfiguration(ServiceCosmosDbConfigurationInfoArgs.builder()
.crossTenantCmkApplicationId("string")
.keyVaultKeyUri("string")
.offerThroughput(0)
.build())
.exportConfiguration(ServiceExportConfigurationInfoArgs.builder()
.storageAccountName("string")
.build())
.importConfiguration(ServiceImportConfigurationInfoArgs.builder()
.enabled(false)
.initialImportMode(false)
.integrationDataStore("string")
.build())
.privateEndpointConnections(PrivateEndpointConnectionArgs.builder()
.privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
.actionsRequired("string")
.description("string")
.status("string")
.build())
.build())
.publicNetworkAccess("string")
.build())
.resourceName("string")
.tags(Map.of("string", "string"))
.build());
exampleservice_resource_resource_from_healthcareapis = azure_native.healthcareapis.Service("exampleserviceResourceResourceFromHealthcareapis",
kind=azure_native.healthcareapis.Kind.FHIR,
resource_group_name="string",
identity={
"type": "string",
},
location="string",
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"],
},
"cosmosDbConfiguration": {
"crossTenantCmkApplicationId": "string",
"keyVaultKeyUri": "string",
"offerThroughput": 0,
},
"exportConfiguration": {
"storageAccountName": "string",
},
"importConfiguration": {
"enabled": False,
"initialImportMode": False,
"integrationDataStore": "string",
},
"privateEndpointConnections": [{
"privateLinkServiceConnectionState": {
"actionsRequired": "string",
"description": "string",
"status": "string",
},
}],
"publicNetworkAccess": "string",
},
resource_name_="string",
tags={
"string": "string",
})
const exampleserviceResourceResourceFromHealthcareapis = new azure_native.healthcareapis.Service("exampleserviceResourceResourceFromHealthcareapis", {
kind: azure_native.healthcareapis.Kind.Fhir,
resourceGroupName: "string",
identity: {
type: "string",
},
location: "string",
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"],
},
cosmosDbConfiguration: {
crossTenantCmkApplicationId: "string",
keyVaultKeyUri: "string",
offerThroughput: 0,
},
exportConfiguration: {
storageAccountName: "string",
},
importConfiguration: {
enabled: false,
initialImportMode: false,
integrationDataStore: "string",
},
privateEndpointConnections: [{
privateLinkServiceConnectionState: {
actionsRequired: "string",
description: "string",
status: "string",
},
}],
publicNetworkAccess: "string",
},
resourceName: "string",
tags: {
string: "string",
},
});
type: azure-native:healthcareapis:Service
properties:
identity:
type: string
kind: fhir
location: string
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
cosmosDbConfiguration:
crossTenantCmkApplicationId: string
keyVaultKeyUri: string
offerThroughput: 0
exportConfiguration:
storageAccountName: string
importConfiguration:
enabled: false
initialImportMode: false
integrationDataStore: string
privateEndpointConnections:
- privateLinkServiceConnectionState:
actionsRequired: string
description: string
status: string
publicNetworkAccess: string
resourceGroupName: string
resourceName: string
tags:
string: string
Service 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 Service resource accepts the following input properties:
- Kind
Pulumi.
Azure Native. Healthcare Apis. Kind - The kind of the service.
- Resource
Group stringName - The name of the resource group that contains the service instance.
- Identity
Pulumi.
Azure Native. Healthcare Apis. Inputs. Services Resource Identity - Setting indicating whether the service has a managed identity associated with it.
- Location string
- The resource location.
- Properties
Pulumi.
Azure Native. Healthcare Apis. Inputs. Services Properties - The common properties of a service.
- Resource
Name string - The name of the service instance.
- Dictionary<string, string>
- The resource tags.
- Kind Kind
- The kind of the service.
- Resource
Group stringName - The name of the resource group that contains the service instance.
- Identity
Services
Resource Identity Args - Setting indicating whether the service has a managed identity associated with it.
- Location string
- The resource location.
- Properties
Services
Properties Args - The common properties of a service.
- Resource
Name string - The name of the service instance.
- map[string]string
- The resource tags.
- kind Kind
- The kind of the service.
- resource
Group StringName - The name of the resource group that contains the service instance.
- identity
Services
Resource Identity - Setting indicating whether the service has a managed identity associated with it.
- location String
- The resource location.
- properties
Services
Properties - The common properties of a service.
- resource
Name String - The name of the service instance.
- Map<String,String>
- The resource tags.
- kind Kind
- The kind of the service.
- resource
Group stringName - The name of the resource group that contains the service instance.
- identity
Services
Resource Identity - Setting indicating whether the service has a managed identity associated with it.
- location string
- The resource location.
- properties
Services
Properties - The common properties of a service.
- resource
Name string - The name of the service instance.
- {[key: string]: string}
- The resource tags.
- kind Kind
- The kind of the service.
- resource_
group_ strname - The name of the resource group that contains the service instance.
- identity
Services
Resource Identity Args - Setting indicating whether the service has a managed identity associated with it.
- location str
- The resource location.
- properties
Services
Properties Args - The common properties of a service.
- resource_
name str - The name of the service instance.
- Mapping[str, str]
- The resource tags.
- kind "fhir" | "fhir-Stu3" | "fhir-R4"
- The kind of the service.
- resource
Group StringName - The name of the resource group that contains the service instance.
- identity Property Map
- Setting indicating whether the service has a managed identity associated with it.
- location String
- The resource location.
- properties Property Map
- The common properties of a service.
- resource
Name String - The name of the service instance.
- Map<String>
- The resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Service resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name.
- System
Data Pulumi.Azure Native. Healthcare Apis. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource type.
- Etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource type.
- Etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- The resource type.
- etag String
- An etag associated with the resource, used for optimistic concurrency when editing it.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The resource name.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- The resource type.
- etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The resource name.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- The resource type.
- etag str
- An etag associated with the resource, used for optimistic concurrency when editing it.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name.
- 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
Kind, KindArgs
- Fhir
- fhir
- Fhir_Stu3
- fhir-Stu3
- Fhir_R4
- fhir-R4
- Kind
Fhir - fhir
- Kind_Fhir_Stu3
- fhir-Stu3
- Kind_Fhir_R4
- fhir-R4
- Fhir
- fhir
- Fhir
Stu3 - fhir-Stu3
- Fhir
R4 - fhir-R4
- Fhir
- fhir
- Fhir_Stu3
- fhir-Stu3
- Fhir_R4
- fhir-R4
- FHIR
- fhir
- FHIR_STU3
- fhir-Stu3
- FHIR_R4
- fhir-R4
- "fhir"
- fhir
- "fhir-Stu3"
- fhir-Stu3
- "fhir-R4"
- fhir-R4
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- System
Assigned - SystemAssigned
- None
- None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type None - None
- System
Assigned - SystemAssigned
- None
- None
- System
Assigned - SystemAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "None"
- None
PrivateEndpointConnection, PrivateEndpointConnectionArgs
- Private
Link Pulumi.Service Connection State Azure Native. Healthcare Apis. Inputs. Private Link Service Connection State - A collection of information about the state of the connection between service consumer and provider.
- Private
Link PrivateService Connection State Link Service Connection State - A collection of information about the state of the connection between service consumer and provider.
- private
Link PrivateService Connection State Link Service Connection State - A collection of information about the state of the connection between service consumer and provider.
- private
Link PrivateService Connection State Link Service Connection State - A collection of information about the state of the connection between service consumer and provider.
- private_
link_ Privateservice_ connection_ state Link Service Connection State - A collection of information about the state of the connection between service consumer and provider.
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
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
PrivateEndpointServiceConnectionStatus, PrivateEndpointServiceConnectionStatusArgs
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Private
Endpoint Service Connection Status Pending - Pending
- Private
Endpoint Service Connection Status Approved - Approved
- Private
Endpoint Service Connection Status Rejected - Rejected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- PENDING
- Pending
- APPROVED
- Approved
- REJECTED
- Rejected
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
PrivateLinkServiceConnectionState, PrivateLinkServiceConnectionStateArgs
- 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 | Pulumi.
Azure Native. Healthcare Apis. Private Endpoint Service Connection Status - 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 | Private
Endpoint Service Connection Status - 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 | Private
Endpoint Service Connection Status - 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 | Private
Endpoint Service Connection Status - 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 | Private
Endpoint Service Connection Status - 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 | "Pending" | "Approved" | "Rejected"
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
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.
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
ServiceAccessPolicyEntry, ServiceAccessPolicyEntryArgs
- 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.
ServiceAccessPolicyEntryResponse, ServiceAccessPolicyEntryResponseArgs
- 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.
ServiceAcrConfigurationInfo, ServiceAcrConfigurationInfoArgs
- Login
Servers List<string> - The list of the ACR 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 ACR login servers.
- Oci
Artifacts []ServiceOci Artifact Entry - The list of Open Container Initiative (OCI) artifacts.
- login
Servers List<String> - The list of the ACR login servers.
- oci
Artifacts List<ServiceOci Artifact Entry> - The list of Open Container Initiative (OCI) artifacts.
- login
Servers string[] - The list of the ACR login servers.
- oci
Artifacts ServiceOci Artifact Entry[] - The list of Open Container Initiative (OCI) artifacts.
- login_
servers Sequence[str] - The list of the ACR login servers.
- oci_
artifacts Sequence[ServiceOci Artifact Entry] - The list of Open Container Initiative (OCI) artifacts.
- login
Servers List<String> - The list of the ACR login servers.
- oci
Artifacts List<Property Map> - The list of Open Container Initiative (OCI) artifacts.
ServiceAcrConfigurationInfoResponse, ServiceAcrConfigurationInfoResponseArgs
- Login
Servers List<string> - The list of the ACR 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 ACR login servers.
- Oci
Artifacts []ServiceOci Artifact Entry Response - The list of Open Container Initiative (OCI) artifacts.
- login
Servers List<String> - The list of the ACR login servers.
- oci
Artifacts List<ServiceOci Artifact Entry Response> - The list of Open Container Initiative (OCI) artifacts.
- login
Servers string[] - The list of the ACR login servers.
- oci
Artifacts ServiceOci Artifact Entry Response[] - The list of Open Container Initiative (OCI) artifacts.
- login_
servers Sequence[str] - The list of the ACR 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 ACR login servers.
- oci
Artifacts List<Property Map> - The list of Open Container Initiative (OCI) artifacts.
ServiceAuthenticationConfigurationInfo, ServiceAuthenticationConfigurationInfoArgs
- 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
ServiceAuthenticationConfigurationInfoResponse, ServiceAuthenticationConfigurationInfoResponseArgs
- 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
ServiceCorsConfigurationInfo, ServiceCorsConfigurationInfoArgs
- 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.
ServiceCorsConfigurationInfoResponse, ServiceCorsConfigurationInfoResponseArgs
- 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.
ServiceCosmosDbConfigurationInfo, ServiceCosmosDbConfigurationInfoArgs
- Cross
Tenant stringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- Key
Vault stringKey Uri - The URI of the customer-managed key for the backing database.
- Offer
Throughput int - The provisioned throughput for the backing database.
- Cross
Tenant stringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- Key
Vault stringKey Uri - The URI of the customer-managed key for the backing database.
- Offer
Throughput int - The provisioned throughput for the backing database.
- cross
Tenant StringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- key
Vault StringKey Uri - The URI of the customer-managed key for the backing database.
- offer
Throughput Integer - The provisioned throughput for the backing database.
- cross
Tenant stringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- key
Vault stringKey Uri - The URI of the customer-managed key for the backing database.
- offer
Throughput number - The provisioned throughput for the backing database.
- cross_
tenant_ strcmk_ application_ id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- key_
vault_ strkey_ uri - The URI of the customer-managed key for the backing database.
- offer_
throughput int - The provisioned throughput for the backing database.
- cross
Tenant StringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- key
Vault StringKey Uri - The URI of the customer-managed key for the backing database.
- offer
Throughput Number - The provisioned throughput for the backing database.
ServiceCosmosDbConfigurationInfoResponse, ServiceCosmosDbConfigurationInfoResponseArgs
- Cross
Tenant stringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- Key
Vault stringKey Uri - The URI of the customer-managed key for the backing database.
- Offer
Throughput int - The provisioned throughput for the backing database.
- Cross
Tenant stringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- Key
Vault stringKey Uri - The URI of the customer-managed key for the backing database.
- Offer
Throughput int - The provisioned throughput for the backing database.
- cross
Tenant StringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- key
Vault StringKey Uri - The URI of the customer-managed key for the backing database.
- offer
Throughput Integer - The provisioned throughput for the backing database.
- cross
Tenant stringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- key
Vault stringKey Uri - The URI of the customer-managed key for the backing database.
- offer
Throughput number - The provisioned throughput for the backing database.
- cross_
tenant_ strcmk_ application_ id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- key_
vault_ strkey_ uri - The URI of the customer-managed key for the backing database.
- offer_
throughput int - The provisioned throughput for the backing database.
- cross
Tenant StringCmk Application Id - The multi-tenant application id used to enable CMK access for services in a data sovereign region.
- key
Vault StringKey Uri - The URI of the customer-managed key for the backing database.
- offer
Throughput Number - The provisioned throughput for the backing database.
ServiceExportConfigurationInfo, ServiceExportConfigurationInfoArgs
- 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.
ServiceExportConfigurationInfoResponse, ServiceExportConfigurationInfoResponseArgs
- 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.
ServiceImportConfigurationInfo, ServiceImportConfigurationInfoArgs
- Enabled bool
- If the import operation is enabled.
- Initial
Import boolMode - If the FHIR service is in InitialImportMode.
- Integration
Data stringStore - The name of the default integration storage account.
- Enabled bool
- If the import operation is enabled.
- Initial
Import boolMode - If the FHIR service is in InitialImportMode.
- Integration
Data stringStore - The name of the default integration storage account.
- enabled Boolean
- If the import operation is enabled.
- initial
Import BooleanMode - If the FHIR service is in InitialImportMode.
- integration
Data StringStore - The name of the default integration storage account.
- enabled boolean
- If the import operation is enabled.
- initial
Import booleanMode - If the FHIR service is in InitialImportMode.
- integration
Data stringStore - The name of the default integration storage account.
- enabled bool
- If the import operation is enabled.
- initial_
import_ boolmode - If the FHIR service is in InitialImportMode.
- integration_
data_ strstore - The name of the default integration storage account.
- enabled Boolean
- If the import operation is enabled.
- initial
Import BooleanMode - If the FHIR service is in InitialImportMode.
- integration
Data StringStore - The name of the default integration storage account.
ServiceImportConfigurationInfoResponse, ServiceImportConfigurationInfoResponseArgs
- Enabled bool
- If the import operation is enabled.
- Initial
Import boolMode - If the FHIR service is in InitialImportMode.
- Integration
Data stringStore - The name of the default integration storage account.
- Enabled bool
- If the import operation is enabled.
- Initial
Import boolMode - If the FHIR service is in InitialImportMode.
- Integration
Data stringStore - The name of the default integration storage account.
- enabled Boolean
- If the import operation is enabled.
- initial
Import BooleanMode - If the FHIR service is in InitialImportMode.
- integration
Data StringStore - The name of the default integration storage account.
- enabled boolean
- If the import operation is enabled.
- initial
Import booleanMode - If the FHIR service is in InitialImportMode.
- integration
Data stringStore - The name of the default integration storage account.
- enabled bool
- If the import operation is enabled.
- initial_
import_ boolmode - If the FHIR service is in InitialImportMode.
- integration_
data_ strstore - The name of the default integration storage account.
- enabled Boolean
- If the import operation is enabled.
- initial
Import BooleanMode - If the FHIR service is in InitialImportMode.
- integration
Data StringStore - The name of the default integration storage account.
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.
ServicesProperties, ServicesPropertiesArgs
- Access
Policies List<Pulumi.Azure Native. Healthcare Apis. Inputs. Service Access Policy Entry> - The access policies of the service instance.
- Acr
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Acr Configuration Info - The azure container registry settings used for convert data operation of the service instance.
- Authentication
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Authentication Configuration Info - The authentication configuration for the service instance.
- Cors
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Cors Configuration Info - The settings for the CORS configuration of the service instance.
- Cosmos
Db Pulumi.Configuration Azure Native. Healthcare Apis. Inputs. Service Cosmos Db Configuration Info - The settings for the Cosmos DB database backing the service.
- Export
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Export Configuration Info - The settings for the export operation of the service instance.
- Import
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Import Configuration Info - The settings for the import operation of the service instance.
- Private
Endpoint List<Pulumi.Connections Azure Native. Healthcare Apis. Inputs. Private Endpoint Connection> - The list of private endpoint connections that are set up for this resource.
- Public
Network string | Pulumi.Access Azure Native. Healthcare Apis. Public Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- Access
Policies []ServiceAccess Policy Entry - The access policies of the service instance.
- Acr
Configuration ServiceAcr Configuration Info - The azure container registry settings used for convert data operation of the service instance.
- Authentication
Configuration ServiceAuthentication Configuration Info - The authentication configuration for the service instance.
- Cors
Configuration ServiceCors Configuration Info - The settings for the CORS configuration of the service instance.
- Cosmos
Db ServiceConfiguration Cosmos Db Configuration Info - The settings for the Cosmos DB database backing the service.
- Export
Configuration ServiceExport Configuration Info - The settings for the export operation of the service instance.
- Import
Configuration ServiceImport Configuration Info - The settings for the import operation of the service instance.
- Private
Endpoint []PrivateConnections Endpoint Connection Type - The list of private endpoint connections that are set up for this resource.
- Public
Network string | PublicAccess Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- access
Policies List<ServiceAccess Policy Entry> - The access policies of the service instance.
- acr
Configuration ServiceAcr Configuration Info - The azure container registry settings used for convert data operation of the service instance.
- authentication
Configuration ServiceAuthentication Configuration Info - The authentication configuration for the service instance.
- cors
Configuration ServiceCors Configuration Info - The settings for the CORS configuration of the service instance.
- cosmos
Db ServiceConfiguration Cosmos Db Configuration Info - The settings for the Cosmos DB database backing the service.
- export
Configuration ServiceExport Configuration Info - The settings for the export operation of the service instance.
- import
Configuration ServiceImport Configuration Info - The settings for the import operation of the service instance.
- private
Endpoint List<PrivateConnections Endpoint Connection> - The list of private endpoint connections that are set up for this resource.
- public
Network String | PublicAccess Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- access
Policies ServiceAccess Policy Entry[] - The access policies of the service instance.
- acr
Configuration ServiceAcr Configuration Info - The azure container registry settings used for convert data operation of the service instance.
- authentication
Configuration ServiceAuthentication Configuration Info - The authentication configuration for the service instance.
- cors
Configuration ServiceCors Configuration Info - The settings for the CORS configuration of the service instance.
- cosmos
Db ServiceConfiguration Cosmos Db Configuration Info - The settings for the Cosmos DB database backing the service.
- export
Configuration ServiceExport Configuration Info - The settings for the export operation of the service instance.
- import
Configuration ServiceImport Configuration Info - The settings for the import operation of the service instance.
- private
Endpoint PrivateConnections Endpoint Connection[] - The list of private endpoint connections that are set up for this resource.
- public
Network string | PublicAccess Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- access_
policies Sequence[ServiceAccess Policy Entry] - The access policies of the service instance.
- acr_
configuration ServiceAcr Configuration Info - The azure container registry settings used for convert data operation of the service instance.
- authentication_
configuration ServiceAuthentication Configuration Info - The authentication configuration for the service instance.
- cors_
configuration ServiceCors Configuration Info - The settings for the CORS configuration of the service instance.
- cosmos_
db_ Serviceconfiguration Cosmos Db Configuration Info - The settings for the Cosmos DB database backing the service.
- export_
configuration ServiceExport Configuration Info - The settings for the export operation of the service instance.
- import_
configuration ServiceImport Configuration Info - The settings for the import operation of the service instance.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection] - The list of private endpoint connections that are set up for this resource.
- public_
network_ str | Publicaccess Network Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- access
Policies List<Property Map> - The access policies of the service instance.
- acr
Configuration Property Map - The azure container registry settings used for convert data operation of the service instance.
- authentication
Configuration Property Map - The authentication configuration for the service instance.
- cors
Configuration Property Map - The settings for the CORS configuration of the service instance.
- cosmos
Db Property MapConfiguration - The settings for the Cosmos DB database backing the service.
- export
Configuration Property Map - The settings for the export operation of the service instance.
- import
Configuration Property Map - The settings for the import operation of the service instance.
- private
Endpoint List<Property Map>Connections - The list of private endpoint connections that are set up for this resource.
- public
Network String | "Enabled" | "Disabled"Access - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
ServicesPropertiesResponse, ServicesPropertiesResponseArgs
- Provisioning
State string - The provisioning state.
- Access
Policies List<Pulumi.Azure Native. Healthcare Apis. Inputs. Service Access Policy Entry Response> - The access policies of the service instance.
- Acr
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Acr Configuration Info Response - The azure container registry settings used for convert data operation of the service instance.
- Authentication
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Authentication Configuration Info Response - The authentication configuration for the service instance.
- Cors
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Cors Configuration Info Response - The settings for the CORS configuration of the service instance.
- Cosmos
Db Pulumi.Configuration Azure Native. Healthcare Apis. Inputs. Service Cosmos Db Configuration Info Response - The settings for the Cosmos DB database backing the service.
- Export
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Export Configuration Info Response - The settings for the export operation of the service instance.
- Import
Configuration Pulumi.Azure Native. Healthcare Apis. Inputs. Service Import Configuration Info Response - The settings for the import operation of the service instance.
- Private
Endpoint List<Pulumi.Connections Azure Native. Healthcare Apis. Inputs. Private Endpoint Connection Response> - The list of private endpoint connections that are set up for this resource.
- Public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- Provisioning
State string - The provisioning state.
- Access
Policies []ServiceAccess Policy Entry Response - The access policies of the service instance.
- Acr
Configuration ServiceAcr Configuration Info Response - The azure container registry settings used for convert data operation of the service instance.
- Authentication
Configuration ServiceAuthentication Configuration Info Response - The authentication configuration for the service instance.
- Cors
Configuration ServiceCors Configuration Info Response - The settings for the CORS configuration of the service instance.
- Cosmos
Db ServiceConfiguration Cosmos Db Configuration Info Response - The settings for the Cosmos DB database backing the service.
- Export
Configuration ServiceExport Configuration Info Response - The settings for the export operation of the service instance.
- Import
Configuration ServiceImport Configuration Info Response - The settings for the import operation of the service instance.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - The list of private endpoint connections that are set up for this resource.
- Public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- provisioning
State String - The provisioning state.
- access
Policies List<ServiceAccess Policy Entry Response> - The access policies of the service instance.
- acr
Configuration ServiceAcr Configuration Info Response - The azure container registry settings used for convert data operation of the service instance.
- authentication
Configuration ServiceAuthentication Configuration Info Response - The authentication configuration for the service instance.
- cors
Configuration ServiceCors Configuration Info Response - The settings for the CORS configuration of the service instance.
- cosmos
Db ServiceConfiguration Cosmos Db Configuration Info Response - The settings for the Cosmos DB database backing the service.
- export
Configuration ServiceExport Configuration Info Response - The settings for the export operation of the service instance.
- import
Configuration ServiceImport Configuration Info Response - The settings for the import operation of the service instance.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - The list of private endpoint connections that are set up for this resource.
- public
Network StringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- provisioning
State string - The provisioning state.
- access
Policies ServiceAccess Policy Entry Response[] - The access policies of the service instance.
- acr
Configuration ServiceAcr Configuration Info Response - The azure container registry settings used for convert data operation of the service instance.
- authentication
Configuration ServiceAuthentication Configuration Info Response - The authentication configuration for the service instance.
- cors
Configuration ServiceCors Configuration Info Response - The settings for the CORS configuration of the service instance.
- cosmos
Db ServiceConfiguration Cosmos Db Configuration Info Response - The settings for the Cosmos DB database backing the service.
- export
Configuration ServiceExport Configuration Info Response - The settings for the export operation of the service instance.
- import
Configuration ServiceImport Configuration Info Response - The settings for the import operation of the service instance.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - The list of private endpoint connections that are set up for this resource.
- public
Network stringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- provisioning_
state str - The provisioning state.
- access_
policies Sequence[ServiceAccess Policy Entry Response] - The access policies of the service instance.
- acr_
configuration ServiceAcr Configuration Info Response - The azure container registry settings used for convert data operation of the service instance.
- authentication_
configuration ServiceAuthentication Configuration Info Response - The authentication configuration for the service instance.
- cors_
configuration ServiceCors Configuration Info Response - The settings for the CORS configuration of the service instance.
- cosmos_
db_ Serviceconfiguration Cosmos Db Configuration Info Response - The settings for the Cosmos DB database backing the service.
- export_
configuration ServiceExport Configuration Info Response - The settings for the export operation of the service instance.
- import_
configuration ServiceImport Configuration Info Response - The settings for the import operation of the service instance.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - The list of private endpoint connections that are set up for this resource.
- public_
network_ straccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- provisioning
State String - The provisioning state.
- access
Policies List<Property Map> - The access policies of the service instance.
- acr
Configuration Property Map - The azure container registry settings used for convert data operation of the service instance.
- authentication
Configuration Property Map - The authentication configuration for the service instance.
- cors
Configuration Property Map - The settings for the CORS configuration of the service instance.
- cosmos
Db Property MapConfiguration - The settings for the Cosmos DB database backing the service.
- export
Configuration Property Map - The settings for the export operation of the service instance.
- import
Configuration Property Map - The settings for the import operation of the service instance.
- private
Endpoint List<Property Map>Connections - The list of private endpoint connections that are set up for this resource.
- public
Network StringAccess - Control permission for data plane traffic coming from public networks while private endpoint is enabled.
ServicesResourceIdentity, ServicesResourceIdentityArgs
- Type
string | Pulumi.
Azure Native. Healthcare Apis. Managed Service Identity Type - Type of identity being specified, currently SystemAssigned and None are allowed.
- Type
string | Managed
Service Identity Type - Type of identity being specified, currently SystemAssigned and None are allowed.
- type
String | Managed
Service Identity Type - Type of identity being specified, currently SystemAssigned and None are allowed.
- type
string | Managed
Service Identity Type - Type of identity being specified, currently SystemAssigned and None are allowed.
- type
str | Managed
Service Identity Type - Type of identity being specified, currently SystemAssigned and None are allowed.
- type
String | "System
Assigned" | "None" - Type of identity being specified, currently SystemAssigned and None are allowed.
ServicesResourceResponseIdentity, ServicesResourceResponseIdentityArgs
- Principal
Id string - The principal ID of the resource identity.
- Tenant
Id string - The tenant ID of the resource.
- Type string
- Type of identity being specified, currently SystemAssigned and None are allowed.
- Principal
Id string - The principal ID of the resource identity.
- Tenant
Id string - The tenant ID of the resource.
- Type string
- Type of identity being specified, currently SystemAssigned and None are allowed.
- principal
Id String - The principal ID of the resource identity.
- tenant
Id String - The tenant ID of the resource.
- type String
- Type of identity being specified, currently SystemAssigned and None are allowed.
- principal
Id string - The principal ID of the resource identity.
- tenant
Id string - The tenant ID of the resource.
- type string
- Type of identity being specified, currently SystemAssigned and None are allowed.
- principal_
id str - The principal ID of the resource identity.
- tenant_
id str - The tenant ID of the resource.
- type str
- Type of identity being specified, currently SystemAssigned and None are allowed.
- principal
Id String - The principal ID of the resource identity.
- tenant
Id String - The tenant ID of the resource.
- type String
- Type of identity being specified, currently SystemAssigned and None are allowed.
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:healthcareapis:Service service2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/services/{resourceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0