1. Packages
  2. Azure Native
  3. API Docs
  4. healthcareapis
  5. DicomService
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.healthcareapis.DicomService

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

The description of Dicom Service

Uses Azure REST API version 2024-03-31. In version 2.x of the Azure Native provider, it used API version 2023-02-28.

Other available API versions: 2022-10-01-preview, 2022-12-01, 2023-02-28, 2023-09-06, 2023-11-01, 2023-12-01, 2024-03-01, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native healthcareapis [ApiVersion]. See the version guide for details.

Example Usage

Create or update a Dicom Service

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

return await Deployment.RunAsync(() => 
{
    var dicomService = new AzureNative.HealthcareApis.DicomService("dicomService", new()
    {
        DicomServiceName = "blue",
        EnableDataPartitions = false,
        Location = "westus",
        ResourceGroupName = "testRG",
        StorageConfiguration = new AzureNative.HealthcareApis.Inputs.StorageConfigurationArgs
        {
            FileSystemName = "fileSystemName",
            StorageResourceId = "/subscriptions/ab309d4e-4c2e-4241-be2e-08e1c8dd4246/resourceGroups/rgname/providers/Microsoft.Storage/storageAccounts/accountname",
        },
        WorkspaceName = "workspace1",
    });

});
Copy
package main

import (
	healthcareapis "github.com/pulumi/pulumi-azure-native-sdk/healthcareapis/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := healthcareapis.NewDicomService(ctx, "dicomService", &healthcareapis.DicomServiceArgs{
			DicomServiceName:     pulumi.String("blue"),
			EnableDataPartitions: pulumi.Bool(false),
			Location:             pulumi.String("westus"),
			ResourceGroupName:    pulumi.String("testRG"),
			StorageConfiguration: &healthcareapis.StorageConfigurationArgs{
				FileSystemName:    pulumi.String("fileSystemName"),
				StorageResourceId: pulumi.String("/subscriptions/ab309d4e-4c2e-4241-be2e-08e1c8dd4246/resourceGroups/rgname/providers/Microsoft.Storage/storageAccounts/accountname"),
			},
			WorkspaceName: pulumi.String("workspace1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.healthcareapis.DicomService;
import com.pulumi.azurenative.healthcareapis.DicomServiceArgs;
import com.pulumi.azurenative.healthcareapis.inputs.StorageConfigurationArgs;
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 dicomService = new DicomService("dicomService", DicomServiceArgs.builder()
            .dicomServiceName("blue")
            .enableDataPartitions(false)
            .location("westus")
            .resourceGroupName("testRG")
            .storageConfiguration(StorageConfigurationArgs.builder()
                .fileSystemName("fileSystemName")
                .storageResourceId("/subscriptions/ab309d4e-4c2e-4241-be2e-08e1c8dd4246/resourceGroups/rgname/providers/Microsoft.Storage/storageAccounts/accountname")
                .build())
            .workspaceName("workspace1")
            .build());

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

const dicomService = new azure_native.healthcareapis.DicomService("dicomService", {
    dicomServiceName: "blue",
    enableDataPartitions: false,
    location: "westus",
    resourceGroupName: "testRG",
    storageConfiguration: {
        fileSystemName: "fileSystemName",
        storageResourceId: "/subscriptions/ab309d4e-4c2e-4241-be2e-08e1c8dd4246/resourceGroups/rgname/providers/Microsoft.Storage/storageAccounts/accountname",
    },
    workspaceName: "workspace1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

dicom_service = azure_native.healthcareapis.DicomService("dicomService",
    dicom_service_name="blue",
    enable_data_partitions=False,
    location="westus",
    resource_group_name="testRG",
    storage_configuration={
        "file_system_name": "fileSystemName",
        "storage_resource_id": "/subscriptions/ab309d4e-4c2e-4241-be2e-08e1c8dd4246/resourceGroups/rgname/providers/Microsoft.Storage/storageAccounts/accountname",
    },
    workspace_name="workspace1")
Copy
resources:
  dicomService:
    type: azure-native:healthcareapis:DicomService
    properties:
      dicomServiceName: blue
      enableDataPartitions: false
      location: westus
      resourceGroupName: testRG
      storageConfiguration:
        fileSystemName: fileSystemName
        storageResourceId: /subscriptions/ab309d4e-4c2e-4241-be2e-08e1c8dd4246/resourceGroups/rgname/providers/Microsoft.Storage/storageAccounts/accountname
      workspaceName: workspace1
Copy

Create DicomService Resource

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

Constructor syntax

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

@overload
def DicomService(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 resource_group_name: Optional[str] = None,
                 workspace_name: Optional[str] = None,
                 cors_configuration: Optional[CorsConfigurationArgs] = None,
                 dicom_service_name: Optional[str] = None,
                 enable_data_partitions: Optional[bool] = None,
                 encryption: Optional[EncryptionArgs] = None,
                 identity: Optional[ServiceManagedIdentityIdentityArgs] = None,
                 location: Optional[str] = None,
                 storage_configuration: Optional[StorageConfigurationArgs] = None,
                 tags: Optional[Mapping[str, str]] = None)
func NewDicomService(ctx *Context, name string, args DicomServiceArgs, opts ...ResourceOption) (*DicomService, error)
public DicomService(string name, DicomServiceArgs args, CustomResourceOptions? opts = null)
public DicomService(String name, DicomServiceArgs args)
public DicomService(String name, DicomServiceArgs args, CustomResourceOptions options)
type: azure-native:healthcareapis:DicomService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DicomServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DicomServiceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DicomServiceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DicomServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DicomServiceArgs
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 dicomServiceResource = new AzureNative.HealthcareApis.DicomService("dicomServiceResource", new()
{
    ResourceGroupName = "string",
    WorkspaceName = "string",
    CorsConfiguration = new AzureNative.HealthcareApis.Inputs.CorsConfigurationArgs
    {
        AllowCredentials = false,
        Headers = new[]
        {
            "string",
        },
        MaxAge = 0,
        Methods = new[]
        {
            "string",
        },
        Origins = new[]
        {
            "string",
        },
    },
    DicomServiceName = "string",
    EnableDataPartitions = false,
    Encryption = new AzureNative.HealthcareApis.Inputs.EncryptionArgs
    {
        CustomerManagedKeyEncryption = new AzureNative.HealthcareApis.Inputs.EncryptionCustomerManagedKeyEncryptionArgs
        {
            KeyEncryptionKeyUrl = "string",
        },
    },
    Identity = new AzureNative.HealthcareApis.Inputs.ServiceManagedIdentityIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    StorageConfiguration = new AzureNative.HealthcareApis.Inputs.StorageConfigurationArgs
    {
        FileSystemName = "string",
        StorageResourceId = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := healthcareapis.NewDicomService(ctx, "dicomServiceResource", &healthcareapis.DicomServiceArgs{
	ResourceGroupName: pulumi.String("string"),
	WorkspaceName:     pulumi.String("string"),
	CorsConfiguration: &healthcareapis.CorsConfigurationArgs{
		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"),
		},
	},
	DicomServiceName:     pulumi.String("string"),
	EnableDataPartitions: pulumi.Bool(false),
	Encryption: &healthcareapis.EncryptionArgs{
		CustomerManagedKeyEncryption: &healthcareapis.EncryptionCustomerManagedKeyEncryptionArgs{
			KeyEncryptionKeyUrl: pulumi.String("string"),
		},
	},
	Identity: &healthcareapis.ServiceManagedIdentityIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	StorageConfiguration: &healthcareapis.StorageConfigurationArgs{
		FileSystemName:    pulumi.String("string"),
		StorageResourceId: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var dicomServiceResource = new DicomService("dicomServiceResource", DicomServiceArgs.builder()
    .resourceGroupName("string")
    .workspaceName("string")
    .corsConfiguration(CorsConfigurationArgs.builder()
        .allowCredentials(false)
        .headers("string")
        .maxAge(0)
        .methods("string")
        .origins("string")
        .build())
    .dicomServiceName("string")
    .enableDataPartitions(false)
    .encryption(EncryptionArgs.builder()
        .customerManagedKeyEncryption(EncryptionCustomerManagedKeyEncryptionArgs.builder()
            .keyEncryptionKeyUrl("string")
            .build())
        .build())
    .identity(ServiceManagedIdentityIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .storageConfiguration(StorageConfigurationArgs.builder()
        .fileSystemName("string")
        .storageResourceId("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
dicom_service_resource = azure_native.healthcareapis.DicomService("dicomServiceResource",
    resource_group_name="string",
    workspace_name="string",
    cors_configuration={
        "allow_credentials": False,
        "headers": ["string"],
        "max_age": 0,
        "methods": ["string"],
        "origins": ["string"],
    },
    dicom_service_name="string",
    enable_data_partitions=False,
    encryption={
        "customer_managed_key_encryption": {
            "key_encryption_key_url": "string",
        },
    },
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    storage_configuration={
        "file_system_name": "string",
        "storage_resource_id": "string",
    },
    tags={
        "string": "string",
    })
Copy
const dicomServiceResource = new azure_native.healthcareapis.DicomService("dicomServiceResource", {
    resourceGroupName: "string",
    workspaceName: "string",
    corsConfiguration: {
        allowCredentials: false,
        headers: ["string"],
        maxAge: 0,
        methods: ["string"],
        origins: ["string"],
    },
    dicomServiceName: "string",
    enableDataPartitions: false,
    encryption: {
        customerManagedKeyEncryption: {
            keyEncryptionKeyUrl: "string",
        },
    },
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    location: "string",
    storageConfiguration: {
        fileSystemName: "string",
        storageResourceId: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:healthcareapis:DicomService
properties:
    corsConfiguration:
        allowCredentials: false
        headers:
            - string
        maxAge: 0
        methods:
            - string
        origins:
            - string
    dicomServiceName: string
    enableDataPartitions: false
    encryption:
        customerManagedKeyEncryption:
            keyEncryptionKeyUrl: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    resourceGroupName: string
    storageConfiguration:
        fileSystemName: string
        storageResourceId: string
    tags:
        string: string
    workspaceName: string
Copy

DicomService Resource Properties

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

Inputs

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

The DicomService resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the service instance.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of workspace resource.
CorsConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.CorsConfiguration
Dicom Service Cors configuration.
DicomServiceName Changes to this property will trigger replacement. string
The name of DICOM Service resource.
EnableDataPartitions bool
If data partitions is enabled or not.
Encryption Pulumi.AzureNative.HealthcareApis.Inputs.Encryption
The encryption settings of the DICOM service
Identity Pulumi.AzureNative.HealthcareApis.Inputs.ServiceManagedIdentityIdentity
Setting indicating whether the service has a managed identity associated with it.
Location Changes to this property will trigger replacement. string
The resource location.
StorageConfiguration Pulumi.AzureNative.HealthcareApis.Inputs.StorageConfiguration
The configuration of external storage account
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the service instance.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of workspace resource.
CorsConfiguration CorsConfigurationArgs
Dicom Service Cors configuration.
DicomServiceName Changes to this property will trigger replacement. string
The name of DICOM Service resource.
EnableDataPartitions bool
If data partitions is enabled or not.
Encryption EncryptionArgs
The encryption settings of the DICOM service
Identity ServiceManagedIdentityIdentityArgs
Setting indicating whether the service has a managed identity associated with it.
Location Changes to this property will trigger replacement. string
The resource location.
StorageConfiguration StorageConfigurationArgs
The configuration of external storage account
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the service instance.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of workspace resource.
corsConfiguration CorsConfiguration
Dicom Service Cors configuration.
dicomServiceName Changes to this property will trigger replacement. String
The name of DICOM Service resource.
enableDataPartitions Boolean
If data partitions is enabled or not.
encryption Encryption
The encryption settings of the DICOM service
identity ServiceManagedIdentityIdentity
Setting indicating whether the service has a managed identity associated with it.
location Changes to this property will trigger replacement. String
The resource location.
storageConfiguration StorageConfiguration
The configuration of external storage account
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the service instance.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of workspace resource.
corsConfiguration CorsConfiguration
Dicom Service Cors configuration.
dicomServiceName Changes to this property will trigger replacement. string
The name of DICOM Service resource.
enableDataPartitions boolean
If data partitions is enabled or not.
encryption Encryption
The encryption settings of the DICOM service
identity ServiceManagedIdentityIdentity
Setting indicating whether the service has a managed identity associated with it.
location Changes to this property will trigger replacement. string
The resource location.
storageConfiguration StorageConfiguration
The configuration of external storage account
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group that contains the service instance.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
The name of workspace resource.
cors_configuration CorsConfigurationArgs
Dicom Service Cors configuration.
dicom_service_name Changes to this property will trigger replacement. str
The name of DICOM Service resource.
enable_data_partitions bool
If data partitions is enabled or not.
encryption EncryptionArgs
The encryption settings of the DICOM service
identity ServiceManagedIdentityIdentityArgs
Setting indicating whether the service has a managed identity associated with it.
location Changes to this property will trigger replacement. str
The resource location.
storage_configuration StorageConfigurationArgs
The configuration of external storage account
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the service instance.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of workspace resource.
corsConfiguration Property Map
Dicom Service Cors configuration.
dicomServiceName Changes to this property will trigger replacement. String
The name of DICOM Service resource.
enableDataPartitions Boolean
If data partitions is enabled or not.
encryption Property Map
The encryption settings of the DICOM service
identity Property Map
Setting indicating whether the service has a managed identity associated with it.
location Changes to this property will trigger replacement. String
The resource location.
storageConfiguration Property Map
The configuration of external storage account
tags Map<String>
Resource tags.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
EventState string
DICOM Service event support status.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
PrivateEndpointConnections List<Pulumi.AzureNative.HealthcareApis.Outputs.PrivateEndpointConnectionResponse>
The list of private endpoint connections that are set up for this resource.
ProvisioningState string
The provisioning state.
PublicNetworkAccess string
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
ServiceUrl string
The url of the Dicom Services.
SystemData Pulumi.AzureNative.HealthcareApis.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The resource type.
AuthenticationConfiguration Pulumi.AzureNative.HealthcareApis.Outputs.DicomServiceAuthenticationConfigurationResponse
Dicom Service authentication configuration.
Etag string
An etag associated with the resource, used for optimistic concurrency when editing it.
AzureApiVersion string
The Azure API version of the resource.
EventState string
DICOM Service event support status.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
PrivateEndpointConnections []PrivateEndpointConnectionResponse
The list of private endpoint connections that are set up for this resource.
ProvisioningState string
The provisioning state.
PublicNetworkAccess string
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
ServiceUrl string
The url of the Dicom Services.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The resource type.
AuthenticationConfiguration DicomServiceAuthenticationConfigurationResponse
Dicom Service authentication configuration.
Etag string
An etag associated with the resource, used for optimistic concurrency when editing it.
azureApiVersion String
The Azure API version of the resource.
eventState String
DICOM Service event support status.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
privateEndpointConnections List<PrivateEndpointConnectionResponse>
The list of private endpoint connections that are set up for this resource.
provisioningState String
The provisioning state.
publicNetworkAccess String
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
serviceUrl String
The url of the Dicom Services.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
The resource type.
authenticationConfiguration DicomServiceAuthenticationConfigurationResponse
Dicom Service authentication configuration.
etag String
An etag associated with the resource, used for optimistic concurrency when editing it.
azureApiVersion string
The Azure API version of the resource.
eventState string
DICOM Service event support status.
id string
The provider-assigned unique ID for this managed resource.
name string
The resource name.
privateEndpointConnections PrivateEndpointConnectionResponse[]
The list of private endpoint connections that are set up for this resource.
provisioningState string
The provisioning state.
publicNetworkAccess string
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
serviceUrl string
The url of the Dicom Services.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
The resource type.
authenticationConfiguration DicomServiceAuthenticationConfigurationResponse
Dicom Service authentication configuration.
etag string
An etag associated with the resource, used for optimistic concurrency when editing it.
azure_api_version str
The Azure API version of the resource.
event_state str
DICOM Service event support status.
id str
The provider-assigned unique ID for this managed resource.
name str
The resource name.
private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
The list of private endpoint connections that are set up for this resource.
provisioning_state str
The provisioning state.
public_network_access str
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
service_url str
The url of the Dicom Services.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
The resource type.
authentication_configuration DicomServiceAuthenticationConfigurationResponse
Dicom Service authentication configuration.
etag str
An etag associated with the resource, used for optimistic concurrency when editing it.
azureApiVersion String
The Azure API version of the resource.
eventState String
DICOM Service event support status.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
privateEndpointConnections List<Property Map>
The list of private endpoint connections that are set up for this resource.
provisioningState String
The provisioning state.
publicNetworkAccess String
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
serviceUrl String
The url of the Dicom Services.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
The resource type.
authenticationConfiguration Property Map
Dicom Service authentication configuration.
etag String
An etag associated with the resource, used for optimistic concurrency when editing it.

Supporting Types

CorsConfiguration
, CorsConfigurationArgs

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

CorsConfigurationResponse
, CorsConfigurationResponseArgs

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

DicomServiceAuthenticationConfigurationResponse
, DicomServiceAuthenticationConfigurationResponseArgs

Audiences This property is required. List<string>
The audiences for the service
Authority This property is required. string
The authority url for the service
Audiences This property is required. []string
The audiences for the service
Authority This property is required. string
The authority url for the service
audiences This property is required. List<String>
The audiences for the service
authority This property is required. String
The authority url for the service
audiences This property is required. string[]
The audiences for the service
authority This property is required. string
The authority url for the service
audiences This property is required. Sequence[str]
The audiences for the service
authority This property is required. str
The authority url for the service
audiences This property is required. List<String>
The audiences for the service
authority This property is required. String
The authority url for the service

Encryption
, EncryptionArgs

CustomerManagedKeyEncryption EncryptionCustomerManagedKeyEncryption
The encryption settings for the customer-managed key
customerManagedKeyEncryption EncryptionCustomerManagedKeyEncryption
The encryption settings for the customer-managed key
customerManagedKeyEncryption EncryptionCustomerManagedKeyEncryption
The encryption settings for the customer-managed key
customer_managed_key_encryption EncryptionCustomerManagedKeyEncryption
The encryption settings for the customer-managed key
customerManagedKeyEncryption Property Map
The encryption settings for the customer-managed key

EncryptionCustomerManagedKeyEncryption
, EncryptionCustomerManagedKeyEncryptionArgs

KeyEncryptionKeyUrl string
The URL of the key to use for encryption
KeyEncryptionKeyUrl string
The URL of the key to use for encryption
keyEncryptionKeyUrl String
The URL of the key to use for encryption
keyEncryptionKeyUrl string
The URL of the key to use for encryption
key_encryption_key_url str
The URL of the key to use for encryption
keyEncryptionKeyUrl String
The URL of the key to use for encryption

EncryptionResponse
, EncryptionResponseArgs

CustomerManagedKeyEncryption EncryptionResponseCustomerManagedKeyEncryption
The encryption settings for the customer-managed key
customerManagedKeyEncryption EncryptionResponseCustomerManagedKeyEncryption
The encryption settings for the customer-managed key
customerManagedKeyEncryption EncryptionResponseCustomerManagedKeyEncryption
The encryption settings for the customer-managed key
customer_managed_key_encryption EncryptionResponseCustomerManagedKeyEncryption
The encryption settings for the customer-managed key
customerManagedKeyEncryption Property Map
The encryption settings for the customer-managed key

EncryptionResponseCustomerManagedKeyEncryption
, EncryptionResponseCustomerManagedKeyEncryptionArgs

KeyEncryptionKeyUrl string
The URL of the key to use for encryption
KeyEncryptionKeyUrl string
The URL of the key to use for encryption
keyEncryptionKeyUrl String
The URL of the key to use for encryption
keyEncryptionKeyUrl string
The URL of the key to use for encryption
key_encryption_key_url str
The URL of the key to use for encryption
keyEncryptionKeyUrl String
The URL of the key to use for encryption

PrivateEndpointConnectionResponse
, PrivateEndpointConnectionResponseArgs

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

PrivateEndpointResponse
, PrivateEndpointResponseArgs

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

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

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

ServiceManagedIdentityIdentity
, ServiceManagedIdentityIdentityArgs

Type This property is required. string | Pulumi.AzureNative.HealthcareApis.ServiceManagedIdentityType
Type of identity being specified, currently SystemAssigned and None are allowed.
UserAssignedIdentities List<string>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
Type This property is required. string | ServiceManagedIdentityType
Type of identity being specified, currently SystemAssigned and None are allowed.
UserAssignedIdentities []string
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | ServiceManagedIdentityType
Type of identity being specified, currently SystemAssigned and None are allowed.
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. string | ServiceManagedIdentityType
Type of identity being specified, currently SystemAssigned and None are allowed.
userAssignedIdentities string[]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. str | ServiceManagedIdentityType
Type of identity being specified, currently SystemAssigned and None are allowed.
user_assigned_identities Sequence[str]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
Type of identity being specified, currently SystemAssigned and None are allowed.
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ServiceManagedIdentityResponseIdentity
, ServiceManagedIdentityResponseIdentityArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of identity being specified, currently SystemAssigned and None are allowed.
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.HealthcareApis.Inputs.UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of identity being specified, currently SystemAssigned and None are allowed.
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of identity being specified, currently SystemAssigned and None are allowed.
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of identity being specified, currently SystemAssigned and None are allowed.
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of identity being specified, currently SystemAssigned and None are allowed.
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of identity being specified, currently SystemAssigned and None are allowed.
userAssignedIdentities Map<Property Map>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ServiceManagedIdentityType
, ServiceManagedIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ServiceManagedIdentityTypeNone
None
ServiceManagedIdentityTypeSystemAssigned
SystemAssigned
ServiceManagedIdentityTypeUserAssigned
UserAssigned
ServiceManagedIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

StorageConfiguration
, StorageConfigurationArgs

FileSystemName string
The filesystem name of connected storage account.
StorageResourceId string
The resource id of connected storage account.
FileSystemName string
The filesystem name of connected storage account.
StorageResourceId string
The resource id of connected storage account.
fileSystemName String
The filesystem name of connected storage account.
storageResourceId String
The resource id of connected storage account.
fileSystemName string
The filesystem name of connected storage account.
storageResourceId string
The resource id of connected storage account.
file_system_name str
The filesystem name of connected storage account.
storage_resource_id str
The resource id of connected storage account.
fileSystemName String
The filesystem name of connected storage account.
storageResourceId String
The resource id of connected storage account.

StorageConfigurationResponse
, StorageConfigurationResponseArgs

FileSystemName string
The filesystem name of connected storage account.
StorageResourceId string
The resource id of connected storage account.
FileSystemName string
The filesystem name of connected storage account.
StorageResourceId string
The resource id of connected storage account.
fileSystemName String
The filesystem name of connected storage account.
storageResourceId String
The resource id of connected storage account.
fileSystemName string
The filesystem name of connected storage account.
storageResourceId string
The resource id of connected storage account.
file_system_name str
The filesystem name of connected storage account.
storage_resource_id str
The resource id of connected storage account.
fileSystemName String
The filesystem name of connected storage account.
storageResourceId String
The resource id of connected storage account.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:healthcareapis:DicomService blue /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthcareApis/workspaces/{workspaceName}/dicomservices/{dicomServiceName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi