DicomServiceArgs

data class DicomServiceArgs(val identity: Output<DicomServiceIdentityArgs>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val publicNetworkAccessEnabled: Output<Boolean>? = null, val tags: Output<Map<String, String>>? = null, val workspaceId: Output<String>? = null) : ConvertibleToJava<DicomServiceArgs>

Manages a Healthcare DICOM Service

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.healthcare.Workspace;
import com.pulumi.azure.healthcare.WorkspaceArgs;
import com.pulumi.azure.healthcare.DicomService;
import com.pulumi.azure.healthcare.DicomServiceArgs;
import com.pulumi.azure.healthcare.inputs.DicomServiceIdentityArgs;
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 testWorkspace = new Workspace("testWorkspace", WorkspaceArgs.builder()
.resourceGroupName("tfex-resource_group")
.location("east us")
.build());
var testDicomService = new DicomService("testDicomService", DicomServiceArgs.builder()
.workspaceId(testWorkspace.id())
.location("east us")
.identity(DicomServiceIdentityArgs.builder()
.type("SystemAssigned")
.build())
.tags(Map.of("environment", "None"))
.build());
}
}

Import

Healthcare DICOM Service can be imported using the resourceid, e.g.

$ pulumi import azure:healthcare/dicomService:DicomService example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Microsoft.HealthcareApis/workspaces/workspace1/dicomServices/service1

Constructors

Link copied to clipboard
fun DicomServiceArgs(identity: Output<DicomServiceIdentityArgs>? = null, location: Output<String>? = null, name: Output<String>? = null, publicNetworkAccessEnabled: Output<Boolean>? = null, tags: Output<Map<String, String>>? = null, workspaceId: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val identity: Output<DicomServiceIdentityArgs>? = null

An identity block as defined below.

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

Specifies the Azure Region where the Healthcare DICOM Service should be created. Changing this forces a new Healthcare DICOM Service to be created.

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

Specifies the name of the Healthcare DICOM Service. Changing this forces a new Healthcare DICOM Service to be created.

Link copied to clipboard
val publicNetworkAccessEnabled: Output<Boolean>? = null

Whether to enabled public networks when data plane traffic coming from public networks while private endpoint is enabled. Defaults to true.

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

A mapping of tags to assign to the Healthcare DICOM Service.

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

Specifies the id of the Healthcare Workspace where the Healthcare DICOM Service should exist. Changing this forces a new Healthcare DICOM Service to be created.