DicomServiceArgs

data class DicomServiceArgs(val corsConfiguration: Output<CorsConfigurationArgs>? = null, val dicomServiceName: Output<String>? = null, val identity: Output<ServiceManagedIdentityIdentityArgs>? = null, val location: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val workspaceName: Output<String>? = null) : ConvertibleToJava<DicomServiceArgs>

The description of Dicom Service Uses Azure REST API version 2023-02-28. In version 1.x of the Azure Native provider, it used API version 2022-05-15. Other available API versions: 2023-09-06, 2023-11-01, 2023-12-01, 2024-03-01, 2024-03-31, 2025-03-01-preview.

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",
Location = "westus",
ResourceGroupName = "testRG",
WorkspaceName = "workspace1",
});
});
package main
import (
healthcareapis "github.com/pulumi/pulumi-azure-native-sdk/healthcareapis/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := healthcareapis.NewDicomService(ctx, "dicomService", &healthcareapis.DicomServiceArgs{
DicomServiceName: pulumi.String("blue"),
Location: pulumi.String("westus"),
ResourceGroupName: pulumi.String("testRG"),
WorkspaceName: pulumi.String("workspace1"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.healthcareapis.DicomService;
import com.pulumi.azurenative.healthcareapis.DicomServiceArgs;
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")
.location("westus")
.resourceGroupName("testRG")
.workspaceName("workspace1")
.build());
}
}

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}

Constructors

Link copied to clipboard
constructor(corsConfiguration: Output<CorsConfigurationArgs>? = null, dicomServiceName: Output<String>? = null, identity: Output<ServiceManagedIdentityIdentityArgs>? = null, location: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null, workspaceName: Output<String>? = null)

Properties

Link copied to clipboard

Dicom Service Cors configuration.

Link copied to clipboard
val dicomServiceName: Output<String>? = null

The name of DICOM Service resource.

Link copied to clipboard

Setting indicating whether the service has a managed identity associated with it.

Link copied to clipboard
val location: Output<String>? = null

The resource location.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group that contains the service instance.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Resource tags.

Link copied to clipboard
val workspaceName: Output<String>? = null

The name of workspace resource.

Functions

Link copied to clipboard
open override fun toJava(): DicomServiceArgs