azure-native.healthcareapis.DicomService
Explore with Pulumi AI
The description of Dicom Service Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
Other available API versions: 2023-09-06, 2023-11-01, 2023-12-01, 2024-03-01, 2024-03-31.
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 * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dicomService = new azure_native.healthcareapis.DicomService("dicomService", {
    dicomServiceName: "blue",
    location: "westus",
    resourceGroupName: "testRG",
    workspaceName: "workspace1",
});
import pulumi
import pulumi_azure_native as azure_native
dicom_service = azure_native.healthcareapis.DicomService("dicomService",
    dicom_service_name="blue",
    location="westus",
    resource_group_name="testRG",
    workspace_name="workspace1")
resources:
  dicomService:
    type: azure-native:healthcareapis:DicomService
    properties:
      dicomServiceName: blue
      location: westus
      resourceGroupName: testRG
      workspaceName: workspace1
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,
                 identity: Optional[ServiceManagedIdentityIdentityArgs] = None,
                 location: Optional[str] = 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 string
- The unique name of the resource.
- args DicomServiceArgs
- 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 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 string
- The unique name of the resource.
- args DicomServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DicomServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
    Identity = new AzureNative.HealthcareApis.Inputs.ServiceManagedIdentityIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
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"),
	Identity: &healthcareapis.ServiceManagedIdentityIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
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")
    .identity(ServiceManagedIdentityIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
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",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    tags={
        "string": "string",
    })
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",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    location: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:healthcareapis:DicomService
properties:
    corsConfiguration:
        allowCredentials: false
        headers:
            - string
        maxAge: 0
        methods:
            - string
        origins:
            - string
    dicomServiceName: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    resourceGroupName: string
    tags:
        string: string
    workspaceName: string
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:
- ResourceGroup stringName 
- The name of the resource group that contains the service instance.
- WorkspaceName string
- The name of workspace resource.
- CorsConfiguration Pulumi.Azure Native. Healthcare Apis. Inputs. Cors Configuration 
- Dicom Service Cors configuration.
- DicomService stringName 
- The name of DICOM Service resource.
- Identity
Pulumi.Azure Native. Healthcare Apis. Inputs. Service Managed Identity Identity 
- Setting indicating whether the service has a managed identity associated with it.
- Location string
- The resource location.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group that contains the service instance.
- WorkspaceName string
- The name of workspace resource.
- CorsConfiguration CorsConfiguration Args 
- Dicom Service Cors configuration.
- DicomService stringName 
- The name of DICOM Service resource.
- Identity
ServiceManaged Identity Identity Args 
- Setting indicating whether the service has a managed identity associated with it.
- Location string
- The resource location.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group that contains the service instance.
- workspaceName String
- The name of workspace resource.
- corsConfiguration CorsConfiguration 
- Dicom Service Cors configuration.
- dicomService StringName 
- The name of DICOM Service resource.
- identity
ServiceManaged Identity Identity 
- Setting indicating whether the service has a managed identity associated with it.
- location String
- The resource location.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group that contains the service instance.
- workspaceName string
- The name of workspace resource.
- corsConfiguration CorsConfiguration 
- Dicom Service Cors configuration.
- dicomService stringName 
- The name of DICOM Service resource.
- identity
ServiceManaged Identity Identity 
- Setting indicating whether the service has a managed identity associated with it.
- location string
- The resource location.
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group that contains the service instance.
- workspace_name str
- The name of workspace resource.
- cors_configuration CorsConfiguration Args 
- Dicom Service Cors configuration.
- dicom_service_ strname 
- The name of DICOM Service resource.
- identity
ServiceManaged Identity Identity Args 
- Setting indicating whether the service has a managed identity associated with it.
- location str
- The resource location.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group that contains the service instance.
- workspaceName String
- The name of workspace resource.
- corsConfiguration Property Map
- Dicom Service Cors configuration.
- dicomService StringName 
- The name of DICOM Service resource.
- identity Property Map
- Setting indicating whether the service has a managed identity associated with it.
- location String
- The resource location.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DicomService resource produces the following output properties:
- EventState string
- DICOM Service event support status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name.
- PrivateEndpoint List<Pulumi.Connections Azure Native. Healthcare Apis. Outputs. Private Endpoint Connection Response> 
- The list of private endpoint connections that are set up for this resource.
- ProvisioningState string
- The provisioning state.
- PublicNetwork stringAccess 
- 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.Azure Native. Healthcare Apis. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource type.
- AuthenticationConfiguration Pulumi.Azure Native. Healthcare Apis. Outputs. Dicom Service Authentication Configuration Response 
- Dicom Service authentication configuration.
- Etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- EventState string
- DICOM Service event support status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name.
- PrivateEndpoint []PrivateConnections Endpoint Connection Response 
- The list of private endpoint connections that are set up for this resource.
- ProvisioningState string
- The provisioning state.
- PublicNetwork stringAccess 
- Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- ServiceUrl string
- The url of the Dicom Services.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- The resource type.
- AuthenticationConfiguration DicomService Authentication Configuration Response 
- Dicom Service authentication configuration.
- Etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- eventState String
- DICOM Service event support status.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name.
- privateEndpoint List<PrivateConnections Endpoint Connection Response> 
- The list of private endpoint connections that are set up for this resource.
- provisioningState String
- The provisioning state.
- publicNetwork StringAccess 
- Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- serviceUrl String
- The url of the Dicom Services.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- The resource type.
- authenticationConfiguration DicomService Authentication Configuration Response 
- Dicom Service authentication configuration.
- etag String
- An etag associated with the resource, used for optimistic concurrency when editing it.
- eventState string
- DICOM Service event support status.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The resource name.
- privateEndpoint PrivateConnections Endpoint Connection Response[] 
- The list of private endpoint connections that are set up for this resource.
- provisioningState string
- The provisioning state.
- publicNetwork stringAccess 
- Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- serviceUrl string
- The url of the Dicom Services.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- The resource type.
- authenticationConfiguration DicomService Authentication Configuration Response 
- Dicom Service authentication configuration.
- etag string
- An etag associated with the resource, used for optimistic concurrency when editing it.
- 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_ Sequence[Privateconnections Endpoint Connection Response] 
- The list of private endpoint connections that are set up for this resource.
- provisioning_state str
- The provisioning state.
- public_network_ straccess 
- Control permission for data plane traffic coming from public networks while private endpoint is enabled.
- service_url str
- The url of the Dicom Services.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- The resource type.
- authentication_configuration DicomService Authentication Configuration Response 
- Dicom Service authentication configuration.
- etag str
- An etag associated with the resource, used for optimistic concurrency when editing it.
- eventState String
- DICOM Service event support status.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name.
- privateEndpoint List<Property Map>Connections 
- The list of private endpoint connections that are set up for this resource.
- provisioningState String
- The provisioning state.
- publicNetwork StringAccess 
- 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 List<string>
- The audiences for the service
- string
- The authority url for the service
- Audiences []string
- The audiences for the service
- string
- The authority url for the service
- audiences List<String>
- The audiences for the service
- String
- The authority url for the service
- audiences string[]
- The audiences for the service
- string
- The authority url for the service
- audiences Sequence[str]
- The audiences for the service
- str
- The authority url for the service
- audiences List<String>
- The audiences for the service
- String
- The authority url for the service
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
- PrivateLink 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.
- ProvisioningState 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"
- PrivateEndpoint 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
- PrivateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- ProvisioningState 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"
- PrivateEndpoint 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
- privateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState 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"
- privateEndpoint 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
- privateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState 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"
- privateEndpoint 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
- privateLink Property MapService Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState 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"
- privateEndpoint Property Map
- The resource of private end point.
PrivateEndpointResponse, PrivateEndpointResponseArgs      
- Id string
- The ARM identifier for Private Endpoint
- Id string
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
- id string
- The ARM identifier for Private Endpoint
- id str
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs            
- 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
string | Pulumi.Azure Native. Healthcare Apis. Service Managed Identity Type 
- Type of identity being specified, currently SystemAssigned and None are allowed.
- UserAssigned List<string>Identities 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | ServiceManaged Identity Type 
- Type of identity being specified, currently SystemAssigned and None are allowed.
- UserAssigned []stringIdentities 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | ServiceManaged Identity Type 
- Type of identity being specified, currently SystemAssigned and None are allowed.
- userAssigned List<String>Identities 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | ServiceManaged Identity Type 
- Type of identity being specified, currently SystemAssigned and None are allowed.
- userAssigned string[]Identities 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | ServiceManaged Identity Type 
- Type of identity being specified, currently SystemAssigned and None are allowed.
- user_assigned_ Sequence[str]identities 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "SystemAssigned" | "User Assigned" | "System Assigned,User Assigned" 
- Type of identity being specified, currently SystemAssigned and None are allowed.
- userAssigned List<String>Identities 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ServiceManagedIdentityResponseIdentity, ServiceManagedIdentityResponseIdentityArgs          
- PrincipalId string
- The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- TenantId string
- The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of identity being specified, currently SystemAssigned and None are allowed.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Healthcare Apis. Inputs. User Assigned Identity Response> 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- PrincipalId string
- The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- TenantId string
- The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of identity being specified, currently SystemAssigned and None are allowed.
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principalId String
- The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenantId String
- The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of identity being specified, currently SystemAssigned and None are allowed.
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principalId string
- The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenantId string
- The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of identity being specified, currently SystemAssigned and None are allowed.
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_id str
- The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_id str
- The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of identity being specified, currently SystemAssigned and None are allowed.
- user_assigned_ Mapping[str, Useridentities Assigned Identity Response] 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principalId String
- The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenantId String
- The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of identity being specified, currently SystemAssigned and None are allowed.
- userAssigned Map<Property Map>Identities 
- The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ServiceManagedIdentityType, ServiceManagedIdentityTypeArgs        
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned,UserAssigned
- ServiceManaged Identity Type None 
- None
- ServiceManaged Identity Type System Assigned 
- SystemAssigned
- ServiceManaged Identity Type User Assigned 
- UserAssigned
- ServiceManaged Identity Type_System Assigned_User Assigned 
- SystemAssigned,UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned,UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned,User Assigned" 
- SystemAssigned,UserAssigned
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs        
- ClientId string
- The client ID of the assigned identity.
- PrincipalId string
- The principal ID of the assigned identity.
- ClientId string
- The client ID of the assigned identity.
- PrincipalId string
- The principal ID of the assigned identity.
- clientId String
- The client ID of the assigned identity.
- principalId String
- The principal ID of the assigned identity.
- clientId string
- The client ID of the assigned identity.
- principalId string
- The principal ID of the assigned identity.
- client_id str
- The client ID of the assigned identity.
- principal_id str
- The principal ID of the assigned identity.
- clientId String
- The client ID of the assigned identity.
- principalId 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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0