healthcare

package
v5.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 20, 2022 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DicomService added in v5.6.0

type DicomService struct {
	pulumi.CustomResourceState

	// The `authentication` block as defined below.
	Authentications DicomServiceAuthenticationArrayOutput `pulumi:"authentications"`
	// An `identity` block as defined below.
	Identity DicomServiceIdentityPtrOutput `pulumi:"identity"`
	// Specifies the Azure Region where the Healthcare DICOM Service should be created. Changing this forces a new Healthcare DICOM Service to be created.
	Location pulumi.StringOutput `pulumi:"location"`
	// Specifies the name of the Healthcare DICOM Service. Changing this forces a new Healthcare DICOM Service to be created.
	Name             pulumi.StringOutput                    `pulumi:"name"`
	PrivateEndpoints DicomServicePrivateEndpointArrayOutput `pulumi:"privateEndpoints"`
	// Whether to enabled public networks when data plane traffic coming from public networks while private endpoint is enabled.
	PublicNetworkAccessEnabled pulumi.BoolPtrOutput `pulumi:"publicNetworkAccessEnabled"`
	// The url of the Healthcare DICOM Services.
	ServiceUrl pulumi.StringOutput    `pulumi:"serviceUrl"`
	Tags       pulumi.StringMapOutput `pulumi:"tags"`
	// Specifies the name of the Healthcare Workspace where the Healthcare DICOM Service should exist. Changing this forces a new Healthcare DICOM Service to be created.
	WorkspaceId pulumi.StringOutput `pulumi:"workspaceId"`
}

Manages a Healthcare DICOM Service

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/healthcare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		testWorkspace, err := healthcare.NewWorkspace(ctx, "testWorkspace", &healthcare.WorkspaceArgs{
			ResourceGroupName: pulumi.String("tfex-resource_group"),
			Location:          pulumi.String("east us"),
		})
		if err != nil {
			return err
		}
		_, err = healthcare.NewDicomService(ctx, "testDicomService", &healthcare.DicomServiceArgs{
			WorkspaceId: testWorkspace.ID(),
			Location:    pulumi.String("east us"),
			Identity: &healthcare.DicomServiceIdentityArgs{
				Type: pulumi.String("SystemAssigned"),
			},
			Tags: pulumi.StringMap{
				"environment": pulumi.String("None"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

Healthcare DICOM Service can be imported using the resource`id`, e.g.

```sh

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

```

func GetDicomService added in v5.6.0

func GetDicomService(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *DicomServiceState, opts ...pulumi.ResourceOption) (*DicomService, error)

GetDicomService gets an existing DicomService resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewDicomService added in v5.6.0

func NewDicomService(ctx *pulumi.Context,
	name string, args *DicomServiceArgs, opts ...pulumi.ResourceOption) (*DicomService, error)

NewDicomService registers a new resource with the given unique name, arguments, and options.

func (*DicomService) ElementType added in v5.6.0

func (*DicomService) ElementType() reflect.Type

func (*DicomService) ToDicomServiceOutput added in v5.6.0

func (i *DicomService) ToDicomServiceOutput() DicomServiceOutput

func (*DicomService) ToDicomServiceOutputWithContext added in v5.6.0

func (i *DicomService) ToDicomServiceOutputWithContext(ctx context.Context) DicomServiceOutput

type DicomServiceArgs added in v5.6.0

type DicomServiceArgs struct {
	// An `identity` block as defined below.
	Identity DicomServiceIdentityPtrInput
	// Specifies the Azure Region where the Healthcare DICOM Service should be created. Changing this forces a new Healthcare DICOM Service to be created.
	Location pulumi.StringPtrInput
	// Specifies the name of the Healthcare DICOM Service. Changing this forces a new Healthcare DICOM Service to be created.
	Name pulumi.StringPtrInput
	// Whether to enabled public networks when data plane traffic coming from public networks while private endpoint is enabled.
	PublicNetworkAccessEnabled pulumi.BoolPtrInput
	Tags                       pulumi.StringMapInput
	// Specifies the name of the Healthcare Workspace where the Healthcare DICOM Service should exist. Changing this forces a new Healthcare DICOM Service to be created.
	WorkspaceId pulumi.StringInput
}

The set of arguments for constructing a DicomService resource.

func (DicomServiceArgs) ElementType added in v5.6.0

func (DicomServiceArgs) ElementType() reflect.Type

type DicomServiceArray added in v5.6.0

type DicomServiceArray []DicomServiceInput

func (DicomServiceArray) ElementType added in v5.6.0

func (DicomServiceArray) ElementType() reflect.Type

func (DicomServiceArray) ToDicomServiceArrayOutput added in v5.6.0

func (i DicomServiceArray) ToDicomServiceArrayOutput() DicomServiceArrayOutput

func (DicomServiceArray) ToDicomServiceArrayOutputWithContext added in v5.6.0

func (i DicomServiceArray) ToDicomServiceArrayOutputWithContext(ctx context.Context) DicomServiceArrayOutput

type DicomServiceArrayInput added in v5.6.0

type DicomServiceArrayInput interface {
	pulumi.Input

	ToDicomServiceArrayOutput() DicomServiceArrayOutput
	ToDicomServiceArrayOutputWithContext(context.Context) DicomServiceArrayOutput
}

DicomServiceArrayInput is an input type that accepts DicomServiceArray and DicomServiceArrayOutput values. You can construct a concrete instance of `DicomServiceArrayInput` via:

DicomServiceArray{ DicomServiceArgs{...} }

type DicomServiceArrayOutput added in v5.6.0

type DicomServiceArrayOutput struct{ *pulumi.OutputState }

func (DicomServiceArrayOutput) ElementType added in v5.6.0

func (DicomServiceArrayOutput) ElementType() reflect.Type

func (DicomServiceArrayOutput) Index added in v5.6.0

func (DicomServiceArrayOutput) ToDicomServiceArrayOutput added in v5.6.0

func (o DicomServiceArrayOutput) ToDicomServiceArrayOutput() DicomServiceArrayOutput

func (DicomServiceArrayOutput) ToDicomServiceArrayOutputWithContext added in v5.6.0

func (o DicomServiceArrayOutput) ToDicomServiceArrayOutputWithContext(ctx context.Context) DicomServiceArrayOutput

type DicomServiceAuthentication added in v5.6.0

type DicomServiceAuthentication struct {
	// The intended audience to receive authentication tokens for the service. The default value is https://dicom.azurehealthcareapis.azure.com
	Audiences []string `pulumi:"audiences"`
	Authority *string  `pulumi:"authority"`
}

type DicomServiceAuthenticationArgs added in v5.6.0

type DicomServiceAuthenticationArgs struct {
	// The intended audience to receive authentication tokens for the service. The default value is https://dicom.azurehealthcareapis.azure.com
	Audiences pulumi.StringArrayInput `pulumi:"audiences"`
	Authority pulumi.StringPtrInput   `pulumi:"authority"`
}

func (DicomServiceAuthenticationArgs) ElementType added in v5.6.0

func (DicomServiceAuthenticationArgs) ToDicomServiceAuthenticationOutput added in v5.6.0

func (i DicomServiceAuthenticationArgs) ToDicomServiceAuthenticationOutput() DicomServiceAuthenticationOutput

func (DicomServiceAuthenticationArgs) ToDicomServiceAuthenticationOutputWithContext added in v5.6.0

func (i DicomServiceAuthenticationArgs) ToDicomServiceAuthenticationOutputWithContext(ctx context.Context) DicomServiceAuthenticationOutput

type DicomServiceAuthenticationArray added in v5.6.0

type DicomServiceAuthenticationArray []DicomServiceAuthenticationInput

func (DicomServiceAuthenticationArray) ElementType added in v5.6.0

func (DicomServiceAuthenticationArray) ToDicomServiceAuthenticationArrayOutput added in v5.6.0

func (i DicomServiceAuthenticationArray) ToDicomServiceAuthenticationArrayOutput() DicomServiceAuthenticationArrayOutput

func (DicomServiceAuthenticationArray) ToDicomServiceAuthenticationArrayOutputWithContext added in v5.6.0

func (i DicomServiceAuthenticationArray) ToDicomServiceAuthenticationArrayOutputWithContext(ctx context.Context) DicomServiceAuthenticationArrayOutput

type DicomServiceAuthenticationArrayInput added in v5.6.0

type DicomServiceAuthenticationArrayInput interface {
	pulumi.Input

	ToDicomServiceAuthenticationArrayOutput() DicomServiceAuthenticationArrayOutput
	ToDicomServiceAuthenticationArrayOutputWithContext(context.Context) DicomServiceAuthenticationArrayOutput
}

DicomServiceAuthenticationArrayInput is an input type that accepts DicomServiceAuthenticationArray and DicomServiceAuthenticationArrayOutput values. You can construct a concrete instance of `DicomServiceAuthenticationArrayInput` via:

DicomServiceAuthenticationArray{ DicomServiceAuthenticationArgs{...} }

type DicomServiceAuthenticationArrayOutput added in v5.6.0

type DicomServiceAuthenticationArrayOutput struct{ *pulumi.OutputState }

func (DicomServiceAuthenticationArrayOutput) ElementType added in v5.6.0

func (DicomServiceAuthenticationArrayOutput) Index added in v5.6.0

func (DicomServiceAuthenticationArrayOutput) ToDicomServiceAuthenticationArrayOutput added in v5.6.0

func (o DicomServiceAuthenticationArrayOutput) ToDicomServiceAuthenticationArrayOutput() DicomServiceAuthenticationArrayOutput

func (DicomServiceAuthenticationArrayOutput) ToDicomServiceAuthenticationArrayOutputWithContext added in v5.6.0

func (o DicomServiceAuthenticationArrayOutput) ToDicomServiceAuthenticationArrayOutputWithContext(ctx context.Context) DicomServiceAuthenticationArrayOutput

type DicomServiceAuthenticationInput added in v5.6.0

type DicomServiceAuthenticationInput interface {
	pulumi.Input

	ToDicomServiceAuthenticationOutput() DicomServiceAuthenticationOutput
	ToDicomServiceAuthenticationOutputWithContext(context.Context) DicomServiceAuthenticationOutput
}

DicomServiceAuthenticationInput is an input type that accepts DicomServiceAuthenticationArgs and DicomServiceAuthenticationOutput values. You can construct a concrete instance of `DicomServiceAuthenticationInput` via:

DicomServiceAuthenticationArgs{...}

type DicomServiceAuthenticationOutput added in v5.6.0

type DicomServiceAuthenticationOutput struct{ *pulumi.OutputState }

func (DicomServiceAuthenticationOutput) Audiences added in v5.6.0

The intended audience to receive authentication tokens for the service. The default value is https://dicom.azurehealthcareapis.azure.com

func (DicomServiceAuthenticationOutput) Authority added in v5.6.0

func (DicomServiceAuthenticationOutput) ElementType added in v5.6.0

func (DicomServiceAuthenticationOutput) ToDicomServiceAuthenticationOutput added in v5.6.0

func (o DicomServiceAuthenticationOutput) ToDicomServiceAuthenticationOutput() DicomServiceAuthenticationOutput

func (DicomServiceAuthenticationOutput) ToDicomServiceAuthenticationOutputWithContext added in v5.6.0

func (o DicomServiceAuthenticationOutput) ToDicomServiceAuthenticationOutputWithContext(ctx context.Context) DicomServiceAuthenticationOutput

type DicomServiceIdentity added in v5.6.0

type DicomServiceIdentity struct {
	// A list of User Assigned Identity IDs which should be assigned to this Healthcare DICOM service.
	IdentityIds []string `pulumi:"identityIds"`
	PrincipalId *string  `pulumi:"principalId"`
	TenantId    *string  `pulumi:"tenantId"`
	// The type of identity used for the Healthcare DICOM service. Possible values are `SystemAssigned` and `UserAssigned`. If `UserAssigned` is set, an `identityIds` must be set as well.
	Type string `pulumi:"type"`
}

type DicomServiceIdentityArgs added in v5.6.0

type DicomServiceIdentityArgs struct {
	// A list of User Assigned Identity IDs which should be assigned to this Healthcare DICOM service.
	IdentityIds pulumi.StringArrayInput `pulumi:"identityIds"`
	PrincipalId pulumi.StringPtrInput   `pulumi:"principalId"`
	TenantId    pulumi.StringPtrInput   `pulumi:"tenantId"`
	// The type of identity used for the Healthcare DICOM service. Possible values are `SystemAssigned` and `UserAssigned`. If `UserAssigned` is set, an `identityIds` must be set as well.
	Type pulumi.StringInput `pulumi:"type"`
}

func (DicomServiceIdentityArgs) ElementType added in v5.6.0

func (DicomServiceIdentityArgs) ElementType() reflect.Type

func (DicomServiceIdentityArgs) ToDicomServiceIdentityOutput added in v5.6.0

func (i DicomServiceIdentityArgs) ToDicomServiceIdentityOutput() DicomServiceIdentityOutput

func (DicomServiceIdentityArgs) ToDicomServiceIdentityOutputWithContext added in v5.6.0

func (i DicomServiceIdentityArgs) ToDicomServiceIdentityOutputWithContext(ctx context.Context) DicomServiceIdentityOutput

func (DicomServiceIdentityArgs) ToDicomServiceIdentityPtrOutput added in v5.6.0

func (i DicomServiceIdentityArgs) ToDicomServiceIdentityPtrOutput() DicomServiceIdentityPtrOutput

func (DicomServiceIdentityArgs) ToDicomServiceIdentityPtrOutputWithContext added in v5.6.0

func (i DicomServiceIdentityArgs) ToDicomServiceIdentityPtrOutputWithContext(ctx context.Context) DicomServiceIdentityPtrOutput

type DicomServiceIdentityInput added in v5.6.0

type DicomServiceIdentityInput interface {
	pulumi.Input

	ToDicomServiceIdentityOutput() DicomServiceIdentityOutput
	ToDicomServiceIdentityOutputWithContext(context.Context) DicomServiceIdentityOutput
}

DicomServiceIdentityInput is an input type that accepts DicomServiceIdentityArgs and DicomServiceIdentityOutput values. You can construct a concrete instance of `DicomServiceIdentityInput` via:

DicomServiceIdentityArgs{...}

type DicomServiceIdentityOutput added in v5.6.0

type DicomServiceIdentityOutput struct{ *pulumi.OutputState }

func (DicomServiceIdentityOutput) ElementType added in v5.6.0

func (DicomServiceIdentityOutput) ElementType() reflect.Type

func (DicomServiceIdentityOutput) IdentityIds added in v5.6.0

A list of User Assigned Identity IDs which should be assigned to this Healthcare DICOM service.

func (DicomServiceIdentityOutput) PrincipalId added in v5.6.0

func (DicomServiceIdentityOutput) TenantId added in v5.6.0

func (DicomServiceIdentityOutput) ToDicomServiceIdentityOutput added in v5.6.0

func (o DicomServiceIdentityOutput) ToDicomServiceIdentityOutput() DicomServiceIdentityOutput

func (DicomServiceIdentityOutput) ToDicomServiceIdentityOutputWithContext added in v5.6.0

func (o DicomServiceIdentityOutput) ToDicomServiceIdentityOutputWithContext(ctx context.Context) DicomServiceIdentityOutput

func (DicomServiceIdentityOutput) ToDicomServiceIdentityPtrOutput added in v5.6.0

func (o DicomServiceIdentityOutput) ToDicomServiceIdentityPtrOutput() DicomServiceIdentityPtrOutput

func (DicomServiceIdentityOutput) ToDicomServiceIdentityPtrOutputWithContext added in v5.6.0

func (o DicomServiceIdentityOutput) ToDicomServiceIdentityPtrOutputWithContext(ctx context.Context) DicomServiceIdentityPtrOutput

func (DicomServiceIdentityOutput) Type added in v5.6.0

The type of identity used for the Healthcare DICOM service. Possible values are `SystemAssigned` and `UserAssigned`. If `UserAssigned` is set, an `identityIds` must be set as well.

type DicomServiceIdentityPtrInput added in v5.6.0

type DicomServiceIdentityPtrInput interface {
	pulumi.Input

	ToDicomServiceIdentityPtrOutput() DicomServiceIdentityPtrOutput
	ToDicomServiceIdentityPtrOutputWithContext(context.Context) DicomServiceIdentityPtrOutput
}

DicomServiceIdentityPtrInput is an input type that accepts DicomServiceIdentityArgs, DicomServiceIdentityPtr and DicomServiceIdentityPtrOutput values. You can construct a concrete instance of `DicomServiceIdentityPtrInput` via:

        DicomServiceIdentityArgs{...}

or:

        nil

func DicomServiceIdentityPtr added in v5.6.0

func DicomServiceIdentityPtr(v *DicomServiceIdentityArgs) DicomServiceIdentityPtrInput

type DicomServiceIdentityPtrOutput added in v5.6.0

type DicomServiceIdentityPtrOutput struct{ *pulumi.OutputState }

func (DicomServiceIdentityPtrOutput) Elem added in v5.6.0

func (DicomServiceIdentityPtrOutput) ElementType added in v5.6.0

func (DicomServiceIdentityPtrOutput) IdentityIds added in v5.6.0

A list of User Assigned Identity IDs which should be assigned to this Healthcare DICOM service.

func (DicomServiceIdentityPtrOutput) PrincipalId added in v5.6.0

func (DicomServiceIdentityPtrOutput) TenantId added in v5.6.0

func (DicomServiceIdentityPtrOutput) ToDicomServiceIdentityPtrOutput added in v5.6.0

func (o DicomServiceIdentityPtrOutput) ToDicomServiceIdentityPtrOutput() DicomServiceIdentityPtrOutput

func (DicomServiceIdentityPtrOutput) ToDicomServiceIdentityPtrOutputWithContext added in v5.6.0

func (o DicomServiceIdentityPtrOutput) ToDicomServiceIdentityPtrOutputWithContext(ctx context.Context) DicomServiceIdentityPtrOutput

func (DicomServiceIdentityPtrOutput) Type added in v5.6.0

The type of identity used for the Healthcare DICOM service. Possible values are `SystemAssigned` and `UserAssigned`. If `UserAssigned` is set, an `identityIds` must be set as well.

type DicomServiceInput added in v5.6.0

type DicomServiceInput interface {
	pulumi.Input

	ToDicomServiceOutput() DicomServiceOutput
	ToDicomServiceOutputWithContext(ctx context.Context) DicomServiceOutput
}

type DicomServiceMap added in v5.6.0

type DicomServiceMap map[string]DicomServiceInput

func (DicomServiceMap) ElementType added in v5.6.0

func (DicomServiceMap) ElementType() reflect.Type

func (DicomServiceMap) ToDicomServiceMapOutput added in v5.6.0

func (i DicomServiceMap) ToDicomServiceMapOutput() DicomServiceMapOutput

func (DicomServiceMap) ToDicomServiceMapOutputWithContext added in v5.6.0

func (i DicomServiceMap) ToDicomServiceMapOutputWithContext(ctx context.Context) DicomServiceMapOutput

type DicomServiceMapInput added in v5.6.0

type DicomServiceMapInput interface {
	pulumi.Input

	ToDicomServiceMapOutput() DicomServiceMapOutput
	ToDicomServiceMapOutputWithContext(context.Context) DicomServiceMapOutput
}

DicomServiceMapInput is an input type that accepts DicomServiceMap and DicomServiceMapOutput values. You can construct a concrete instance of `DicomServiceMapInput` via:

DicomServiceMap{ "key": DicomServiceArgs{...} }

type DicomServiceMapOutput added in v5.6.0

type DicomServiceMapOutput struct{ *pulumi.OutputState }

func (DicomServiceMapOutput) ElementType added in v5.6.0

func (DicomServiceMapOutput) ElementType() reflect.Type

func (DicomServiceMapOutput) MapIndex added in v5.6.0

func (DicomServiceMapOutput) ToDicomServiceMapOutput added in v5.6.0

func (o DicomServiceMapOutput) ToDicomServiceMapOutput() DicomServiceMapOutput

func (DicomServiceMapOutput) ToDicomServiceMapOutputWithContext added in v5.6.0

func (o DicomServiceMapOutput) ToDicomServiceMapOutputWithContext(ctx context.Context) DicomServiceMapOutput

type DicomServiceOutput added in v5.6.0

type DicomServiceOutput struct{ *pulumi.OutputState }

func (DicomServiceOutput) Authentications added in v5.6.0

The `authentication` block as defined below.

func (DicomServiceOutput) ElementType added in v5.6.0

func (DicomServiceOutput) ElementType() reflect.Type

func (DicomServiceOutput) Identity added in v5.6.0

An `identity` block as defined below.

func (DicomServiceOutput) Location added in v5.6.0

func (o DicomServiceOutput) Location() pulumi.StringOutput

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

func (DicomServiceOutput) Name added in v5.6.0

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

func (DicomServiceOutput) PrivateEndpoints added in v5.6.0

func (DicomServiceOutput) PublicNetworkAccessEnabled added in v5.6.0

func (o DicomServiceOutput) PublicNetworkAccessEnabled() pulumi.BoolPtrOutput

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

func (DicomServiceOutput) ServiceUrl added in v5.6.0

func (o DicomServiceOutput) ServiceUrl() pulumi.StringOutput

The url of the Healthcare DICOM Services.

func (DicomServiceOutput) Tags added in v5.6.0

func (DicomServiceOutput) ToDicomServiceOutput added in v5.6.0

func (o DicomServiceOutput) ToDicomServiceOutput() DicomServiceOutput

func (DicomServiceOutput) ToDicomServiceOutputWithContext added in v5.6.0

func (o DicomServiceOutput) ToDicomServiceOutputWithContext(ctx context.Context) DicomServiceOutput

func (DicomServiceOutput) WorkspaceId added in v5.6.0

func (o DicomServiceOutput) WorkspaceId() pulumi.StringOutput

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

type DicomServicePrivateEndpoint added in v5.6.0

type DicomServicePrivateEndpoint struct {
	// The ID of the Healthcare DICOM Service.
	Id *string `pulumi:"id"`
	// Specifies the name of the Healthcare DICOM Service. Changing this forces a new Healthcare DICOM Service to be created.
	Name *string `pulumi:"name"`
}

type DicomServicePrivateEndpointArgs added in v5.6.0

type DicomServicePrivateEndpointArgs struct {
	// The ID of the Healthcare DICOM Service.
	Id pulumi.StringPtrInput `pulumi:"id"`
	// Specifies the name of the Healthcare DICOM Service. Changing this forces a new Healthcare DICOM Service to be created.
	Name pulumi.StringPtrInput `pulumi:"name"`
}

func (DicomServicePrivateEndpointArgs) ElementType added in v5.6.0

func (DicomServicePrivateEndpointArgs) ToDicomServicePrivateEndpointOutput added in v5.6.0

func (i DicomServicePrivateEndpointArgs) ToDicomServicePrivateEndpointOutput() DicomServicePrivateEndpointOutput

func (DicomServicePrivateEndpointArgs) ToDicomServicePrivateEndpointOutputWithContext added in v5.6.0

func (i DicomServicePrivateEndpointArgs) ToDicomServicePrivateEndpointOutputWithContext(ctx context.Context) DicomServicePrivateEndpointOutput

type DicomServicePrivateEndpointArray added in v5.6.0

type DicomServicePrivateEndpointArray []DicomServicePrivateEndpointInput

func (DicomServicePrivateEndpointArray) ElementType added in v5.6.0

func (DicomServicePrivateEndpointArray) ToDicomServicePrivateEndpointArrayOutput added in v5.6.0

func (i DicomServicePrivateEndpointArray) ToDicomServicePrivateEndpointArrayOutput() DicomServicePrivateEndpointArrayOutput

func (DicomServicePrivateEndpointArray) ToDicomServicePrivateEndpointArrayOutputWithContext added in v5.6.0

func (i DicomServicePrivateEndpointArray) ToDicomServicePrivateEndpointArrayOutputWithContext(ctx context.Context) DicomServicePrivateEndpointArrayOutput

type DicomServicePrivateEndpointArrayInput added in v5.6.0

type DicomServicePrivateEndpointArrayInput interface {
	pulumi.Input

	ToDicomServicePrivateEndpointArrayOutput() DicomServicePrivateEndpointArrayOutput
	ToDicomServicePrivateEndpointArrayOutputWithContext(context.Context) DicomServicePrivateEndpointArrayOutput
}

DicomServicePrivateEndpointArrayInput is an input type that accepts DicomServicePrivateEndpointArray and DicomServicePrivateEndpointArrayOutput values. You can construct a concrete instance of `DicomServicePrivateEndpointArrayInput` via:

DicomServicePrivateEndpointArray{ DicomServicePrivateEndpointArgs{...} }

type DicomServicePrivateEndpointArrayOutput added in v5.6.0

type DicomServicePrivateEndpointArrayOutput struct{ *pulumi.OutputState }

func (DicomServicePrivateEndpointArrayOutput) ElementType added in v5.6.0

func (DicomServicePrivateEndpointArrayOutput) Index added in v5.6.0

func (DicomServicePrivateEndpointArrayOutput) ToDicomServicePrivateEndpointArrayOutput added in v5.6.0

func (o DicomServicePrivateEndpointArrayOutput) ToDicomServicePrivateEndpointArrayOutput() DicomServicePrivateEndpointArrayOutput

func (DicomServicePrivateEndpointArrayOutput) ToDicomServicePrivateEndpointArrayOutputWithContext added in v5.6.0

func (o DicomServicePrivateEndpointArrayOutput) ToDicomServicePrivateEndpointArrayOutputWithContext(ctx context.Context) DicomServicePrivateEndpointArrayOutput

type DicomServicePrivateEndpointInput added in v5.6.0

type DicomServicePrivateEndpointInput interface {
	pulumi.Input

	ToDicomServicePrivateEndpointOutput() DicomServicePrivateEndpointOutput
	ToDicomServicePrivateEndpointOutputWithContext(context.Context) DicomServicePrivateEndpointOutput
}

DicomServicePrivateEndpointInput is an input type that accepts DicomServicePrivateEndpointArgs and DicomServicePrivateEndpointOutput values. You can construct a concrete instance of `DicomServicePrivateEndpointInput` via:

DicomServicePrivateEndpointArgs{...}

type DicomServicePrivateEndpointOutput added in v5.6.0

type DicomServicePrivateEndpointOutput struct{ *pulumi.OutputState }

func (DicomServicePrivateEndpointOutput) ElementType added in v5.6.0

func (DicomServicePrivateEndpointOutput) Id added in v5.6.0

The ID of the Healthcare DICOM Service.

func (DicomServicePrivateEndpointOutput) Name added in v5.6.0

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

func (DicomServicePrivateEndpointOutput) ToDicomServicePrivateEndpointOutput added in v5.6.0

func (o DicomServicePrivateEndpointOutput) ToDicomServicePrivateEndpointOutput() DicomServicePrivateEndpointOutput

func (DicomServicePrivateEndpointOutput) ToDicomServicePrivateEndpointOutputWithContext added in v5.6.0

func (o DicomServicePrivateEndpointOutput) ToDicomServicePrivateEndpointOutputWithContext(ctx context.Context) DicomServicePrivateEndpointOutput

type DicomServiceState added in v5.6.0

type DicomServiceState struct {
	// The `authentication` block as defined below.
	Authentications DicomServiceAuthenticationArrayInput
	// An `identity` block as defined below.
	Identity DicomServiceIdentityPtrInput
	// Specifies the Azure Region where the Healthcare DICOM Service should be created. Changing this forces a new Healthcare DICOM Service to be created.
	Location pulumi.StringPtrInput
	// Specifies the name of the Healthcare DICOM Service. Changing this forces a new Healthcare DICOM Service to be created.
	Name             pulumi.StringPtrInput
	PrivateEndpoints DicomServicePrivateEndpointArrayInput
	// Whether to enabled public networks when data plane traffic coming from public networks while private endpoint is enabled.
	PublicNetworkAccessEnabled pulumi.BoolPtrInput
	// The url of the Healthcare DICOM Services.
	ServiceUrl pulumi.StringPtrInput
	Tags       pulumi.StringMapInput
	// Specifies the name of the Healthcare Workspace where the Healthcare DICOM Service should exist. Changing this forces a new Healthcare DICOM Service to be created.
	WorkspaceId pulumi.StringPtrInput
}

func (DicomServiceState) ElementType added in v5.6.0

func (DicomServiceState) ElementType() reflect.Type

type GetDicomServiceAuthentication added in v5.6.0

type GetDicomServiceAuthentication struct {
	// The intended audience to receive authentication tokens for the service. The default value is https://dicom.azurehealthcareapis.azure.com
	Audiences []string `pulumi:"audiences"`
	Authority string   `pulumi:"authority"`
}

type GetDicomServiceAuthenticationArgs added in v5.6.0

type GetDicomServiceAuthenticationArgs struct {
	// The intended audience to receive authentication tokens for the service. The default value is https://dicom.azurehealthcareapis.azure.com
	Audiences pulumi.StringArrayInput `pulumi:"audiences"`
	Authority pulumi.StringInput      `pulumi:"authority"`
}

func (GetDicomServiceAuthenticationArgs) ElementType added in v5.6.0

func (GetDicomServiceAuthenticationArgs) ToGetDicomServiceAuthenticationOutput added in v5.6.0

func (i GetDicomServiceAuthenticationArgs) ToGetDicomServiceAuthenticationOutput() GetDicomServiceAuthenticationOutput

func (GetDicomServiceAuthenticationArgs) ToGetDicomServiceAuthenticationOutputWithContext added in v5.6.0

func (i GetDicomServiceAuthenticationArgs) ToGetDicomServiceAuthenticationOutputWithContext(ctx context.Context) GetDicomServiceAuthenticationOutput

type GetDicomServiceAuthenticationArray added in v5.6.0

type GetDicomServiceAuthenticationArray []GetDicomServiceAuthenticationInput

func (GetDicomServiceAuthenticationArray) ElementType added in v5.6.0

func (GetDicomServiceAuthenticationArray) ToGetDicomServiceAuthenticationArrayOutput added in v5.6.0

func (i GetDicomServiceAuthenticationArray) ToGetDicomServiceAuthenticationArrayOutput() GetDicomServiceAuthenticationArrayOutput

func (GetDicomServiceAuthenticationArray) ToGetDicomServiceAuthenticationArrayOutputWithContext added in v5.6.0

func (i GetDicomServiceAuthenticationArray) ToGetDicomServiceAuthenticationArrayOutputWithContext(ctx context.Context) GetDicomServiceAuthenticationArrayOutput

type GetDicomServiceAuthenticationArrayInput added in v5.6.0

type GetDicomServiceAuthenticationArrayInput interface {
	pulumi.Input

	ToGetDicomServiceAuthenticationArrayOutput() GetDicomServiceAuthenticationArrayOutput
	ToGetDicomServiceAuthenticationArrayOutputWithContext(context.Context) GetDicomServiceAuthenticationArrayOutput
}

GetDicomServiceAuthenticationArrayInput is an input type that accepts GetDicomServiceAuthenticationArray and GetDicomServiceAuthenticationArrayOutput values. You can construct a concrete instance of `GetDicomServiceAuthenticationArrayInput` via:

GetDicomServiceAuthenticationArray{ GetDicomServiceAuthenticationArgs{...} }

type GetDicomServiceAuthenticationArrayOutput added in v5.6.0

type GetDicomServiceAuthenticationArrayOutput struct{ *pulumi.OutputState }

func (GetDicomServiceAuthenticationArrayOutput) ElementType added in v5.6.0

func (GetDicomServiceAuthenticationArrayOutput) Index added in v5.6.0

func (GetDicomServiceAuthenticationArrayOutput) ToGetDicomServiceAuthenticationArrayOutput added in v5.6.0

func (o GetDicomServiceAuthenticationArrayOutput) ToGetDicomServiceAuthenticationArrayOutput() GetDicomServiceAuthenticationArrayOutput

func (GetDicomServiceAuthenticationArrayOutput) ToGetDicomServiceAuthenticationArrayOutputWithContext added in v5.6.0

func (o GetDicomServiceAuthenticationArrayOutput) ToGetDicomServiceAuthenticationArrayOutputWithContext(ctx context.Context) GetDicomServiceAuthenticationArrayOutput

type GetDicomServiceAuthenticationInput added in v5.6.0

type GetDicomServiceAuthenticationInput interface {
	pulumi.Input

	ToGetDicomServiceAuthenticationOutput() GetDicomServiceAuthenticationOutput
	ToGetDicomServiceAuthenticationOutputWithContext(context.Context) GetDicomServiceAuthenticationOutput
}

GetDicomServiceAuthenticationInput is an input type that accepts GetDicomServiceAuthenticationArgs and GetDicomServiceAuthenticationOutput values. You can construct a concrete instance of `GetDicomServiceAuthenticationInput` via:

GetDicomServiceAuthenticationArgs{...}

type GetDicomServiceAuthenticationOutput added in v5.6.0

type GetDicomServiceAuthenticationOutput struct{ *pulumi.OutputState }

func (GetDicomServiceAuthenticationOutput) Audiences added in v5.6.0

The intended audience to receive authentication tokens for the service. The default value is https://dicom.azurehealthcareapis.azure.com

func (GetDicomServiceAuthenticationOutput) Authority added in v5.6.0

func (GetDicomServiceAuthenticationOutput) ElementType added in v5.6.0

func (GetDicomServiceAuthenticationOutput) ToGetDicomServiceAuthenticationOutput added in v5.6.0

func (o GetDicomServiceAuthenticationOutput) ToGetDicomServiceAuthenticationOutput() GetDicomServiceAuthenticationOutput

func (GetDicomServiceAuthenticationOutput) ToGetDicomServiceAuthenticationOutputWithContext added in v5.6.0

func (o GetDicomServiceAuthenticationOutput) ToGetDicomServiceAuthenticationOutputWithContext(ctx context.Context) GetDicomServiceAuthenticationOutput

type GetDicomServiceIdentity added in v5.6.0

type GetDicomServiceIdentity struct {
	IdentityIds []string `pulumi:"identityIds"`
	PrincipalId string   `pulumi:"principalId"`
	TenantId    string   `pulumi:"tenantId"`
	Type        string   `pulumi:"type"`
}

type GetDicomServiceIdentityArgs added in v5.6.0

type GetDicomServiceIdentityArgs struct {
	IdentityIds pulumi.StringArrayInput `pulumi:"identityIds"`
	PrincipalId pulumi.StringInput      `pulumi:"principalId"`
	TenantId    pulumi.StringInput      `pulumi:"tenantId"`
	Type        pulumi.StringInput      `pulumi:"type"`
}

func (GetDicomServiceIdentityArgs) ElementType added in v5.6.0

func (GetDicomServiceIdentityArgs) ToGetDicomServiceIdentityOutput added in v5.6.0

func (i GetDicomServiceIdentityArgs) ToGetDicomServiceIdentityOutput() GetDicomServiceIdentityOutput

func (GetDicomServiceIdentityArgs) ToGetDicomServiceIdentityOutputWithContext added in v5.6.0

func (i GetDicomServiceIdentityArgs) ToGetDicomServiceIdentityOutputWithContext(ctx context.Context) GetDicomServiceIdentityOutput

type GetDicomServiceIdentityArray added in v5.6.0

type GetDicomServiceIdentityArray []GetDicomServiceIdentityInput

func (GetDicomServiceIdentityArray) ElementType added in v5.6.0

func (GetDicomServiceIdentityArray) ToGetDicomServiceIdentityArrayOutput added in v5.6.0

func (i GetDicomServiceIdentityArray) ToGetDicomServiceIdentityArrayOutput() GetDicomServiceIdentityArrayOutput

func (GetDicomServiceIdentityArray) ToGetDicomServiceIdentityArrayOutputWithContext added in v5.6.0

func (i GetDicomServiceIdentityArray) ToGetDicomServiceIdentityArrayOutputWithContext(ctx context.Context) GetDicomServiceIdentityArrayOutput

type GetDicomServiceIdentityArrayInput added in v5.6.0

type GetDicomServiceIdentityArrayInput interface {
	pulumi.Input

	ToGetDicomServiceIdentityArrayOutput() GetDicomServiceIdentityArrayOutput
	ToGetDicomServiceIdentityArrayOutputWithContext(context.Context) GetDicomServiceIdentityArrayOutput
}

GetDicomServiceIdentityArrayInput is an input type that accepts GetDicomServiceIdentityArray and GetDicomServiceIdentityArrayOutput values. You can construct a concrete instance of `GetDicomServiceIdentityArrayInput` via:

GetDicomServiceIdentityArray{ GetDicomServiceIdentityArgs{...} }

type GetDicomServiceIdentityArrayOutput added in v5.6.0

type GetDicomServiceIdentityArrayOutput struct{ *pulumi.OutputState }

func (GetDicomServiceIdentityArrayOutput) ElementType added in v5.6.0

func (GetDicomServiceIdentityArrayOutput) Index added in v5.6.0

func (GetDicomServiceIdentityArrayOutput) ToGetDicomServiceIdentityArrayOutput added in v5.6.0

func (o GetDicomServiceIdentityArrayOutput) ToGetDicomServiceIdentityArrayOutput() GetDicomServiceIdentityArrayOutput

func (GetDicomServiceIdentityArrayOutput) ToGetDicomServiceIdentityArrayOutputWithContext added in v5.6.0

func (o GetDicomServiceIdentityArrayOutput) ToGetDicomServiceIdentityArrayOutputWithContext(ctx context.Context) GetDicomServiceIdentityArrayOutput

type GetDicomServiceIdentityInput added in v5.6.0

type GetDicomServiceIdentityInput interface {
	pulumi.Input

	ToGetDicomServiceIdentityOutput() GetDicomServiceIdentityOutput
	ToGetDicomServiceIdentityOutputWithContext(context.Context) GetDicomServiceIdentityOutput
}

GetDicomServiceIdentityInput is an input type that accepts GetDicomServiceIdentityArgs and GetDicomServiceIdentityOutput values. You can construct a concrete instance of `GetDicomServiceIdentityInput` via:

GetDicomServiceIdentityArgs{...}

type GetDicomServiceIdentityOutput added in v5.6.0

type GetDicomServiceIdentityOutput struct{ *pulumi.OutputState }

func (GetDicomServiceIdentityOutput) ElementType added in v5.6.0

func (GetDicomServiceIdentityOutput) IdentityIds added in v5.6.0

func (GetDicomServiceIdentityOutput) PrincipalId added in v5.6.0

func (GetDicomServiceIdentityOutput) TenantId added in v5.6.0

func (GetDicomServiceIdentityOutput) ToGetDicomServiceIdentityOutput added in v5.6.0

func (o GetDicomServiceIdentityOutput) ToGetDicomServiceIdentityOutput() GetDicomServiceIdentityOutput

func (GetDicomServiceIdentityOutput) ToGetDicomServiceIdentityOutputWithContext added in v5.6.0

func (o GetDicomServiceIdentityOutput) ToGetDicomServiceIdentityOutputWithContext(ctx context.Context) GetDicomServiceIdentityOutput

func (GetDicomServiceIdentityOutput) Type added in v5.6.0

type GetDicomServicePrivateEndpoint added in v5.6.0

type GetDicomServicePrivateEndpoint struct {
	// The ID of the Healthcare DICOM Service.
	Id string `pulumi:"id"`
	// The name of the Healthcare DICOM Service
	Name string `pulumi:"name"`
}

type GetDicomServicePrivateEndpointArgs added in v5.6.0

type GetDicomServicePrivateEndpointArgs struct {
	// The ID of the Healthcare DICOM Service.
	Id pulumi.StringInput `pulumi:"id"`
	// The name of the Healthcare DICOM Service
	Name pulumi.StringInput `pulumi:"name"`
}

func (GetDicomServicePrivateEndpointArgs) ElementType added in v5.6.0

func (GetDicomServicePrivateEndpointArgs) ToGetDicomServicePrivateEndpointOutput added in v5.6.0

func (i GetDicomServicePrivateEndpointArgs) ToGetDicomServicePrivateEndpointOutput() GetDicomServicePrivateEndpointOutput

func (GetDicomServicePrivateEndpointArgs) ToGetDicomServicePrivateEndpointOutputWithContext added in v5.6.0

func (i GetDicomServicePrivateEndpointArgs) ToGetDicomServicePrivateEndpointOutputWithContext(ctx context.Context) GetDicomServicePrivateEndpointOutput

type GetDicomServicePrivateEndpointArray added in v5.6.0

type GetDicomServicePrivateEndpointArray []GetDicomServicePrivateEndpointInput

func (GetDicomServicePrivateEndpointArray) ElementType added in v5.6.0

func (GetDicomServicePrivateEndpointArray) ToGetDicomServicePrivateEndpointArrayOutput added in v5.6.0

func (i GetDicomServicePrivateEndpointArray) ToGetDicomServicePrivateEndpointArrayOutput() GetDicomServicePrivateEndpointArrayOutput

func (GetDicomServicePrivateEndpointArray) ToGetDicomServicePrivateEndpointArrayOutputWithContext added in v5.6.0

func (i GetDicomServicePrivateEndpointArray) ToGetDicomServicePrivateEndpointArrayOutputWithContext(ctx context.Context) GetDicomServicePrivateEndpointArrayOutput

type GetDicomServicePrivateEndpointArrayInput added in v5.6.0

type GetDicomServicePrivateEndpointArrayInput interface {
	pulumi.Input

	ToGetDicomServicePrivateEndpointArrayOutput() GetDicomServicePrivateEndpointArrayOutput
	ToGetDicomServicePrivateEndpointArrayOutputWithContext(context.Context) GetDicomServicePrivateEndpointArrayOutput
}

GetDicomServicePrivateEndpointArrayInput is an input type that accepts GetDicomServicePrivateEndpointArray and GetDicomServicePrivateEndpointArrayOutput values. You can construct a concrete instance of `GetDicomServicePrivateEndpointArrayInput` via:

GetDicomServicePrivateEndpointArray{ GetDicomServicePrivateEndpointArgs{...} }

type GetDicomServicePrivateEndpointArrayOutput added in v5.6.0

type GetDicomServicePrivateEndpointArrayOutput struct{ *pulumi.OutputState }

func (GetDicomServicePrivateEndpointArrayOutput) ElementType added in v5.6.0

func (GetDicomServicePrivateEndpointArrayOutput) Index added in v5.6.0

func (GetDicomServicePrivateEndpointArrayOutput) ToGetDicomServicePrivateEndpointArrayOutput added in v5.6.0

func (o GetDicomServicePrivateEndpointArrayOutput) ToGetDicomServicePrivateEndpointArrayOutput() GetDicomServicePrivateEndpointArrayOutput

func (GetDicomServicePrivateEndpointArrayOutput) ToGetDicomServicePrivateEndpointArrayOutputWithContext added in v5.6.0

func (o GetDicomServicePrivateEndpointArrayOutput) ToGetDicomServicePrivateEndpointArrayOutputWithContext(ctx context.Context) GetDicomServicePrivateEndpointArrayOutput

type GetDicomServicePrivateEndpointInput added in v5.6.0

type GetDicomServicePrivateEndpointInput interface {
	pulumi.Input

	ToGetDicomServicePrivateEndpointOutput() GetDicomServicePrivateEndpointOutput
	ToGetDicomServicePrivateEndpointOutputWithContext(context.Context) GetDicomServicePrivateEndpointOutput
}

GetDicomServicePrivateEndpointInput is an input type that accepts GetDicomServicePrivateEndpointArgs and GetDicomServicePrivateEndpointOutput values. You can construct a concrete instance of `GetDicomServicePrivateEndpointInput` via:

GetDicomServicePrivateEndpointArgs{...}

type GetDicomServicePrivateEndpointOutput added in v5.6.0

type GetDicomServicePrivateEndpointOutput struct{ *pulumi.OutputState }

func (GetDicomServicePrivateEndpointOutput) ElementType added in v5.6.0

func (GetDicomServicePrivateEndpointOutput) Id added in v5.6.0

The ID of the Healthcare DICOM Service.

func (GetDicomServicePrivateEndpointOutput) Name added in v5.6.0

The name of the Healthcare DICOM Service

func (GetDicomServicePrivateEndpointOutput) ToGetDicomServicePrivateEndpointOutput added in v5.6.0

func (o GetDicomServicePrivateEndpointOutput) ToGetDicomServicePrivateEndpointOutput() GetDicomServicePrivateEndpointOutput

func (GetDicomServicePrivateEndpointOutput) ToGetDicomServicePrivateEndpointOutputWithContext added in v5.6.0

func (o GetDicomServicePrivateEndpointOutput) ToGetDicomServicePrivateEndpointOutputWithContext(ctx context.Context) GetDicomServicePrivateEndpointOutput

type GetServiceAuthenticationConfiguration

type GetServiceAuthenticationConfiguration struct {
	// The intended audience to receive authentication tokens for the service.
	Audience string `pulumi:"audience"`
	// The Azure Active Directory (tenant) that serves as the authentication authority to access the service.
	Authority string `pulumi:"authority"`
	// Is the 'SMART on FHIR' option for mobile and web implementations enabled?
	SmartProxyEnabled bool `pulumi:"smartProxyEnabled"`
}

type GetServiceAuthenticationConfigurationArgs

type GetServiceAuthenticationConfigurationArgs struct {
	// The intended audience to receive authentication tokens for the service.
	Audience pulumi.StringInput `pulumi:"audience"`
	// The Azure Active Directory (tenant) that serves as the authentication authority to access the service.
	Authority pulumi.StringInput `pulumi:"authority"`
	// Is the 'SMART on FHIR' option for mobile and web implementations enabled?
	SmartProxyEnabled pulumi.BoolInput `pulumi:"smartProxyEnabled"`
}

func (GetServiceAuthenticationConfigurationArgs) ElementType

func (GetServiceAuthenticationConfigurationArgs) ToGetServiceAuthenticationConfigurationOutput

func (i GetServiceAuthenticationConfigurationArgs) ToGetServiceAuthenticationConfigurationOutput() GetServiceAuthenticationConfigurationOutput

func (GetServiceAuthenticationConfigurationArgs) ToGetServiceAuthenticationConfigurationOutputWithContext

func (i GetServiceAuthenticationConfigurationArgs) ToGetServiceAuthenticationConfigurationOutputWithContext(ctx context.Context) GetServiceAuthenticationConfigurationOutput

type GetServiceAuthenticationConfigurationArray

type GetServiceAuthenticationConfigurationArray []GetServiceAuthenticationConfigurationInput

func (GetServiceAuthenticationConfigurationArray) ElementType

func (GetServiceAuthenticationConfigurationArray) ToGetServiceAuthenticationConfigurationArrayOutput

func (i GetServiceAuthenticationConfigurationArray) ToGetServiceAuthenticationConfigurationArrayOutput() GetServiceAuthenticationConfigurationArrayOutput

func (GetServiceAuthenticationConfigurationArray) ToGetServiceAuthenticationConfigurationArrayOutputWithContext

func (i GetServiceAuthenticationConfigurationArray) ToGetServiceAuthenticationConfigurationArrayOutputWithContext(ctx context.Context) GetServiceAuthenticationConfigurationArrayOutput

type GetServiceAuthenticationConfigurationArrayInput

type GetServiceAuthenticationConfigurationArrayInput interface {
	pulumi.Input

	ToGetServiceAuthenticationConfigurationArrayOutput() GetServiceAuthenticationConfigurationArrayOutput
	ToGetServiceAuthenticationConfigurationArrayOutputWithContext(context.Context) GetServiceAuthenticationConfigurationArrayOutput
}

GetServiceAuthenticationConfigurationArrayInput is an input type that accepts GetServiceAuthenticationConfigurationArray and GetServiceAuthenticationConfigurationArrayOutput values. You can construct a concrete instance of `GetServiceAuthenticationConfigurationArrayInput` via:

GetServiceAuthenticationConfigurationArray{ GetServiceAuthenticationConfigurationArgs{...} }

type GetServiceAuthenticationConfigurationArrayOutput

type GetServiceAuthenticationConfigurationArrayOutput struct{ *pulumi.OutputState }

func (GetServiceAuthenticationConfigurationArrayOutput) ElementType

func (GetServiceAuthenticationConfigurationArrayOutput) Index

func (GetServiceAuthenticationConfigurationArrayOutput) ToGetServiceAuthenticationConfigurationArrayOutput

func (o GetServiceAuthenticationConfigurationArrayOutput) ToGetServiceAuthenticationConfigurationArrayOutput() GetServiceAuthenticationConfigurationArrayOutput

func (GetServiceAuthenticationConfigurationArrayOutput) ToGetServiceAuthenticationConfigurationArrayOutputWithContext

func (o GetServiceAuthenticationConfigurationArrayOutput) ToGetServiceAuthenticationConfigurationArrayOutputWithContext(ctx context.Context) GetServiceAuthenticationConfigurationArrayOutput

type GetServiceAuthenticationConfigurationInput

type GetServiceAuthenticationConfigurationInput interface {
	pulumi.Input

	ToGetServiceAuthenticationConfigurationOutput() GetServiceAuthenticationConfigurationOutput
	ToGetServiceAuthenticationConfigurationOutputWithContext(context.Context) GetServiceAuthenticationConfigurationOutput
}

GetServiceAuthenticationConfigurationInput is an input type that accepts GetServiceAuthenticationConfigurationArgs and GetServiceAuthenticationConfigurationOutput values. You can construct a concrete instance of `GetServiceAuthenticationConfigurationInput` via:

GetServiceAuthenticationConfigurationArgs{...}

type GetServiceAuthenticationConfigurationOutput

type GetServiceAuthenticationConfigurationOutput struct{ *pulumi.OutputState }

func (GetServiceAuthenticationConfigurationOutput) Audience

The intended audience to receive authentication tokens for the service.

func (GetServiceAuthenticationConfigurationOutput) Authority

The Azure Active Directory (tenant) that serves as the authentication authority to access the service.

func (GetServiceAuthenticationConfigurationOutput) ElementType

func (GetServiceAuthenticationConfigurationOutput) SmartProxyEnabled

Is the 'SMART on FHIR' option for mobile and web implementations enabled?

func (GetServiceAuthenticationConfigurationOutput) ToGetServiceAuthenticationConfigurationOutput

func (o GetServiceAuthenticationConfigurationOutput) ToGetServiceAuthenticationConfigurationOutput() GetServiceAuthenticationConfigurationOutput

func (GetServiceAuthenticationConfigurationOutput) ToGetServiceAuthenticationConfigurationOutputWithContext

func (o GetServiceAuthenticationConfigurationOutput) ToGetServiceAuthenticationConfigurationOutputWithContext(ctx context.Context) GetServiceAuthenticationConfigurationOutput

type GetServiceCorsConfiguration

type GetServiceCorsConfiguration struct {
	// Are credentials are allowed via CORS?
	AllowCredentials bool `pulumi:"allowCredentials"`
	// The set of headers to be allowed via CORS.
	AllowedHeaders []string `pulumi:"allowedHeaders"`
	// The methods to be allowed via CORS.
	AllowedMethods []string `pulumi:"allowedMethods"`
	// The set of origins to be allowed via CORS.
	AllowedOrigins []string `pulumi:"allowedOrigins"`
	// The max age to be allowed via CORS.
	MaxAgeInSeconds int `pulumi:"maxAgeInSeconds"`
}

type GetServiceCorsConfigurationArgs

type GetServiceCorsConfigurationArgs struct {
	// Are credentials are allowed via CORS?
	AllowCredentials pulumi.BoolInput `pulumi:"allowCredentials"`
	// The set of headers to be allowed via CORS.
	AllowedHeaders pulumi.StringArrayInput `pulumi:"allowedHeaders"`
	// The methods to be allowed via CORS.
	AllowedMethods pulumi.StringArrayInput `pulumi:"allowedMethods"`
	// The set of origins to be allowed via CORS.
	AllowedOrigins pulumi.StringArrayInput `pulumi:"allowedOrigins"`
	// The max age to be allowed via CORS.
	MaxAgeInSeconds pulumi.IntInput `pulumi:"maxAgeInSeconds"`
}

func (GetServiceCorsConfigurationArgs) ElementType

func (GetServiceCorsConfigurationArgs) ToGetServiceCorsConfigurationOutput

func (i GetServiceCorsConfigurationArgs) ToGetServiceCorsConfigurationOutput() GetServiceCorsConfigurationOutput

func (GetServiceCorsConfigurationArgs) ToGetServiceCorsConfigurationOutputWithContext

func (i GetServiceCorsConfigurationArgs) ToGetServiceCorsConfigurationOutputWithContext(ctx context.Context) GetServiceCorsConfigurationOutput

type GetServiceCorsConfigurationArray

type GetServiceCorsConfigurationArray []GetServiceCorsConfigurationInput

func (GetServiceCorsConfigurationArray) ElementType

func (GetServiceCorsConfigurationArray) ToGetServiceCorsConfigurationArrayOutput

func (i GetServiceCorsConfigurationArray) ToGetServiceCorsConfigurationArrayOutput() GetServiceCorsConfigurationArrayOutput

func (GetServiceCorsConfigurationArray) ToGetServiceCorsConfigurationArrayOutputWithContext

func (i GetServiceCorsConfigurationArray) ToGetServiceCorsConfigurationArrayOutputWithContext(ctx context.Context) GetServiceCorsConfigurationArrayOutput

type GetServiceCorsConfigurationArrayInput

type GetServiceCorsConfigurationArrayInput interface {
	pulumi.Input

	ToGetServiceCorsConfigurationArrayOutput() GetServiceCorsConfigurationArrayOutput
	ToGetServiceCorsConfigurationArrayOutputWithContext(context.Context) GetServiceCorsConfigurationArrayOutput
}

GetServiceCorsConfigurationArrayInput is an input type that accepts GetServiceCorsConfigurationArray and GetServiceCorsConfigurationArrayOutput values. You can construct a concrete instance of `GetServiceCorsConfigurationArrayInput` via:

GetServiceCorsConfigurationArray{ GetServiceCorsConfigurationArgs{...} }

type GetServiceCorsConfigurationArrayOutput

type GetServiceCorsConfigurationArrayOutput struct{ *pulumi.OutputState }

func (GetServiceCorsConfigurationArrayOutput) ElementType

func (GetServiceCorsConfigurationArrayOutput) Index

func (GetServiceCorsConfigurationArrayOutput) ToGetServiceCorsConfigurationArrayOutput

func (o GetServiceCorsConfigurationArrayOutput) ToGetServiceCorsConfigurationArrayOutput() GetServiceCorsConfigurationArrayOutput

func (GetServiceCorsConfigurationArrayOutput) ToGetServiceCorsConfigurationArrayOutputWithContext

func (o GetServiceCorsConfigurationArrayOutput) ToGetServiceCorsConfigurationArrayOutputWithContext(ctx context.Context) GetServiceCorsConfigurationArrayOutput

type GetServiceCorsConfigurationInput

type GetServiceCorsConfigurationInput interface {
	pulumi.Input

	ToGetServiceCorsConfigurationOutput() GetServiceCorsConfigurationOutput
	ToGetServiceCorsConfigurationOutputWithContext(context.Context) GetServiceCorsConfigurationOutput
}

GetServiceCorsConfigurationInput is an input type that accepts GetServiceCorsConfigurationArgs and GetServiceCorsConfigurationOutput values. You can construct a concrete instance of `GetServiceCorsConfigurationInput` via:

GetServiceCorsConfigurationArgs{...}

type GetServiceCorsConfigurationOutput

type GetServiceCorsConfigurationOutput struct{ *pulumi.OutputState }

func (GetServiceCorsConfigurationOutput) AllowCredentials

Are credentials are allowed via CORS?

func (GetServiceCorsConfigurationOutput) AllowedHeaders

The set of headers to be allowed via CORS.

func (GetServiceCorsConfigurationOutput) AllowedMethods

The methods to be allowed via CORS.

func (GetServiceCorsConfigurationOutput) AllowedOrigins

The set of origins to be allowed via CORS.

func (GetServiceCorsConfigurationOutput) ElementType

func (GetServiceCorsConfigurationOutput) MaxAgeInSeconds

The max age to be allowed via CORS.

func (GetServiceCorsConfigurationOutput) ToGetServiceCorsConfigurationOutput

func (o GetServiceCorsConfigurationOutput) ToGetServiceCorsConfigurationOutput() GetServiceCorsConfigurationOutput

func (GetServiceCorsConfigurationOutput) ToGetServiceCorsConfigurationOutputWithContext

func (o GetServiceCorsConfigurationOutput) ToGetServiceCorsConfigurationOutputWithContext(ctx context.Context) GetServiceCorsConfigurationOutput

type LookupDicomServiceArgs added in v5.6.0

type LookupDicomServiceArgs struct {
	// The name of the Healthcare DICOM Service
	Name string `pulumi:"name"`
	// The name of the Healthcare Workspace in which the Healthcare DICOM Service exists.
	WorkspaceId string `pulumi:"workspaceId"`
}

A collection of arguments for invoking getDicomService.

type LookupDicomServiceOutputArgs added in v5.6.0

type LookupDicomServiceOutputArgs struct {
	// The name of the Healthcare DICOM Service
	Name pulumi.StringInput `pulumi:"name"`
	// The name of the Healthcare Workspace in which the Healthcare DICOM Service exists.
	WorkspaceId pulumi.StringInput `pulumi:"workspaceId"`
}

A collection of arguments for invoking getDicomService.

func (LookupDicomServiceOutputArgs) ElementType added in v5.6.0

type LookupDicomServiceResult added in v5.6.0

type LookupDicomServiceResult struct {
	// The `authentication` block as defined below.
	Authentications []GetDicomServiceAuthentication `pulumi:"authentications"`
	// The provider-assigned unique ID for this managed resource.
	Id         string                    `pulumi:"id"`
	Identities []GetDicomServiceIdentity `pulumi:"identities"`
	// The Azure Region where the Healthcare DICOM Service is located.
	Location         string                           `pulumi:"location"`
	Name             string                           `pulumi:"name"`
	PrivateEndpoints []GetDicomServicePrivateEndpoint `pulumi:"privateEndpoints"`
	// The url of the Healthcare DICOM Services.
	ServiceUrl string `pulumi:"serviceUrl"`
	// A map of tags assigned to the Healthcare DICOM Service.
	Tags        map[string]string `pulumi:"tags"`
	WorkspaceId string            `pulumi:"workspaceId"`
}

A collection of values returned by getDicomService.

func LookupDicomService added in v5.6.0

func LookupDicomService(ctx *pulumi.Context, args *LookupDicomServiceArgs, opts ...pulumi.InvokeOption) (*LookupDicomServiceResult, error)

Use this data source to access information about an existing Healthcare DICOM Service

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/healthcare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := healthcare.LookupDicomService(ctx, &healthcare.LookupDicomServiceArgs{
			Name:        "example-healthcare_dicom_service",
			WorkspaceId: "example_healthcare_workspace",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("azurermHealthcareDicomService", example.Id)
		return nil
	})
}

```

type LookupDicomServiceResultOutput added in v5.6.0

type LookupDicomServiceResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getDicomService.

func LookupDicomServiceOutput added in v5.6.0

func (LookupDicomServiceResultOutput) Authentications added in v5.6.0

The `authentication` block as defined below.

func (LookupDicomServiceResultOutput) ElementType added in v5.6.0

func (LookupDicomServiceResultOutput) Id added in v5.6.0

The provider-assigned unique ID for this managed resource.

func (LookupDicomServiceResultOutput) Identities added in v5.6.0

func (LookupDicomServiceResultOutput) Location added in v5.6.0

The Azure Region where the Healthcare DICOM Service is located.

func (LookupDicomServiceResultOutput) Name added in v5.6.0

func (LookupDicomServiceResultOutput) PrivateEndpoints added in v5.6.0

func (LookupDicomServiceResultOutput) ServiceUrl added in v5.6.0

The url of the Healthcare DICOM Services.

func (LookupDicomServiceResultOutput) Tags added in v5.6.0

A map of tags assigned to the Healthcare DICOM Service.

func (LookupDicomServiceResultOutput) ToLookupDicomServiceResultOutput added in v5.6.0

func (o LookupDicomServiceResultOutput) ToLookupDicomServiceResultOutput() LookupDicomServiceResultOutput

func (LookupDicomServiceResultOutput) ToLookupDicomServiceResultOutputWithContext added in v5.6.0

func (o LookupDicomServiceResultOutput) ToLookupDicomServiceResultOutputWithContext(ctx context.Context) LookupDicomServiceResultOutput

func (LookupDicomServiceResultOutput) WorkspaceId added in v5.6.0

type LookupServiceArgs

type LookupServiceArgs struct {
	// The Azure Region where the Service is located.
	Location string `pulumi:"location"`
	// Specifies the name of the Healthcare Service.
	Name string `pulumi:"name"`
	// The name of the Resource Group in which the Healthcare Service exists.
	ResourceGroupName string `pulumi:"resourceGroupName"`
}

A collection of arguments for invoking getService.

type LookupServiceOutputArgs

type LookupServiceOutputArgs struct {
	// The Azure Region where the Service is located.
	Location pulumi.StringInput `pulumi:"location"`
	// Specifies the name of the Healthcare Service.
	Name pulumi.StringInput `pulumi:"name"`
	// The name of the Resource Group in which the Healthcare Service exists.
	ResourceGroupName pulumi.StringInput `pulumi:"resourceGroupName"`
}

A collection of arguments for invoking getService.

func (LookupServiceOutputArgs) ElementType

func (LookupServiceOutputArgs) ElementType() reflect.Type

type LookupServiceResult

type LookupServiceResult struct {
	AccessPolicyObjectIds []string `pulumi:"accessPolicyObjectIds"`
	// An `authenticationConfiguration` block as defined below.
	AuthenticationConfigurations []GetServiceAuthenticationConfiguration `pulumi:"authenticationConfigurations"`
	// A `corsConfiguration` block as defined below.
	CorsConfigurations []GetServiceCorsConfiguration `pulumi:"corsConfigurations"`
	// The versionless Key Vault Key ID for CMK encryption of the backing database.
	CosmosdbKeyVaultKeyVersionlessId string `pulumi:"cosmosdbKeyVaultKeyVersionlessId"`
	// The provisioned throughput for the backing database.
	CosmosdbThroughput int `pulumi:"cosmosdbThroughput"`
	// The provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The type of the service.
	Kind string `pulumi:"kind"`
	// The Azure Region where the Service is located.
	Location          string `pulumi:"location"`
	Name              string `pulumi:"name"`
	ResourceGroupName string `pulumi:"resourceGroupName"`
	// A mapping of tags to assign to the resource.
	Tags map[string]string `pulumi:"tags"`
}

A collection of values returned by getService.

func LookupService

func LookupService(ctx *pulumi.Context, args *LookupServiceArgs, opts ...pulumi.InvokeOption) (*LookupServiceResult, error)

Use this data source to access information about an existing Healthcare Service

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/healthcare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := healthcare.LookupService(ctx, &healthcare.LookupServiceArgs{
			Name:              "example-healthcare_service",
			ResourceGroupName: "example-resources",
			Location:          "westus2",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("healthcareServiceId", example.Id)
		return nil
	})
}

```

type LookupServiceResultOutput

type LookupServiceResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getService.

func (LookupServiceResultOutput) AccessPolicyObjectIds

func (o LookupServiceResultOutput) AccessPolicyObjectIds() pulumi.StringArrayOutput

func (LookupServiceResultOutput) AuthenticationConfigurations

An `authenticationConfiguration` block as defined below.

func (LookupServiceResultOutput) CorsConfigurations

A `corsConfiguration` block as defined below.

func (LookupServiceResultOutput) CosmosdbKeyVaultKeyVersionlessId

func (o LookupServiceResultOutput) CosmosdbKeyVaultKeyVersionlessId() pulumi.StringOutput

The versionless Key Vault Key ID for CMK encryption of the backing database.

func (LookupServiceResultOutput) CosmosdbThroughput

func (o LookupServiceResultOutput) CosmosdbThroughput() pulumi.IntOutput

The provisioned throughput for the backing database.

func (LookupServiceResultOutput) ElementType

func (LookupServiceResultOutput) ElementType() reflect.Type

func (LookupServiceResultOutput) Id

The provider-assigned unique ID for this managed resource.

func (LookupServiceResultOutput) Kind

The type of the service.

func (LookupServiceResultOutput) Location

The Azure Region where the Service is located.

func (LookupServiceResultOutput) Name

func (LookupServiceResultOutput) ResourceGroupName

func (o LookupServiceResultOutput) ResourceGroupName() pulumi.StringOutput

func (LookupServiceResultOutput) Tags

A mapping of tags to assign to the resource.

func (LookupServiceResultOutput) ToLookupServiceResultOutput

func (o LookupServiceResultOutput) ToLookupServiceResultOutput() LookupServiceResultOutput

func (LookupServiceResultOutput) ToLookupServiceResultOutputWithContext

func (o LookupServiceResultOutput) ToLookupServiceResultOutputWithContext(ctx context.Context) LookupServiceResultOutput

type LookupWorkspaceArgs

type LookupWorkspaceArgs struct {
	// The name of the Healthcare Workspace.
	Name string `pulumi:"name"`
	// The name of the Resource Group in which the Healthcare Workspace exists.
	ResourceGroupName string `pulumi:"resourceGroupName"`
}

A collection of arguments for invoking getWorkspace.

type LookupWorkspaceOutputArgs

type LookupWorkspaceOutputArgs struct {
	// The name of the Healthcare Workspace.
	Name pulumi.StringInput `pulumi:"name"`
	// The name of the Resource Group in which the Healthcare Workspace exists.
	ResourceGroupName pulumi.StringInput `pulumi:"resourceGroupName"`
}

A collection of arguments for invoking getWorkspace.

func (LookupWorkspaceOutputArgs) ElementType

func (LookupWorkspaceOutputArgs) ElementType() reflect.Type

type LookupWorkspaceResult

type LookupWorkspaceResult struct {
	// The provider-assigned unique ID for this managed resource.
	Id string `pulumi:"id"`
	// The Azure Region where the Healthcare Workspace is located.
	Location          string `pulumi:"location"`
	Name              string `pulumi:"name"`
	ResourceGroupName string `pulumi:"resourceGroupName"`
	// A map of tags assigned to the Healthcare Workspace.
	Tags map[string]string `pulumi:"tags"`
}

A collection of values returned by getWorkspace.

func LookupWorkspace

func LookupWorkspace(ctx *pulumi.Context, args *LookupWorkspaceArgs, opts ...pulumi.InvokeOption) (*LookupWorkspaceResult, error)

Use this data source to access information about an existing Healthcare Workspace

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/healthcare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := healthcare.LookupWorkspace(ctx, &healthcare.LookupWorkspaceArgs{
			Name:              "example-healthcare_service",
			ResourceGroupName: "example-resources",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("healthcareWorkspaceId", example.Id)
		return nil
	})
}

```

type LookupWorkspaceResultOutput

type LookupWorkspaceResultOutput struct{ *pulumi.OutputState }

A collection of values returned by getWorkspace.

func (LookupWorkspaceResultOutput) ElementType

func (LookupWorkspaceResultOutput) Id

The provider-assigned unique ID for this managed resource.

func (LookupWorkspaceResultOutput) Location

The Azure Region where the Healthcare Workspace is located.

func (LookupWorkspaceResultOutput) Name

func (LookupWorkspaceResultOutput) ResourceGroupName

func (o LookupWorkspaceResultOutput) ResourceGroupName() pulumi.StringOutput

func (LookupWorkspaceResultOutput) Tags

A map of tags assigned to the Healthcare Workspace.

func (LookupWorkspaceResultOutput) ToLookupWorkspaceResultOutput

func (o LookupWorkspaceResultOutput) ToLookupWorkspaceResultOutput() LookupWorkspaceResultOutput

func (LookupWorkspaceResultOutput) ToLookupWorkspaceResultOutputWithContext

func (o LookupWorkspaceResultOutput) ToLookupWorkspaceResultOutputWithContext(ctx context.Context) LookupWorkspaceResultOutput

type Service

type Service struct {
	pulumi.CustomResourceState

	AccessPolicyObjectIds pulumi.StringArrayOutput `pulumi:"accessPolicyObjectIds"`
	// An `authenticationConfiguration` block as defined below.
	AuthenticationConfiguration ServiceAuthenticationConfigurationOutput `pulumi:"authenticationConfiguration"`
	// A `corsConfiguration` block as defined below.
	CorsConfiguration ServiceCorsConfigurationOutput `pulumi:"corsConfiguration"`
	// A versionless Key Vault Key ID for CMK encryption of the backing database. Changing this forces a new resource to be created.
	CosmosdbKeyVaultKeyVersionlessId pulumi.StringPtrOutput `pulumi:"cosmosdbKeyVaultKeyVersionlessId"`
	// The provisioned throughput for the backing database. Range of `400`-`10000`. Defaults to `400`.
	CosmosdbThroughput pulumi.IntPtrOutput `pulumi:"cosmosdbThroughput"`
	// The type of the service. Values at time of publication are: `fhir`, `fhir-Stu3` and `fhir-R4`. Default value is `fhir`.
	Kind pulumi.StringPtrOutput `pulumi:"kind"`
	// Specifies the supported Azure Region where the Service should be created.
	Location pulumi.StringOutput `pulumi:"location"`
	// The name of the service instance. Used for service endpoint, must be unique within the audience.
	Name pulumi.StringOutput `pulumi:"name"`
	// Whether public network access is enabled or disabled for this service instance.
	PublicNetworkAccessEnabled pulumi.BoolPtrOutput `pulumi:"publicNetworkAccessEnabled"`
	// The name of the Resource Group in which to create the Service.
	ResourceGroupName pulumi.StringOutput `pulumi:"resourceGroupName"`
	// A mapping of tags to assign to the resource.
	Tags pulumi.StringMapOutput `pulumi:"tags"`
}

Manages a Healthcare Service.

## Example Usage

```go package main

import (

"fmt"

"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/healthcare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := healthcare.NewService(ctx, "example", &healthcare.ServiceArgs{
			AccessPolicyObjectIds: pulumi.StringArray{
				pulumi.String("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"),
			},
			AuthenticationConfiguration: &healthcare.ServiceAuthenticationConfigurationArgs{
				Audience:          pulumi.String("https://azurehealthcareapis.com/"),
				Authority:         pulumi.String(fmt.Sprintf("%v%v%v%v%v%v", "https://login.microsoftonline.com/", "$", "%", "7Bdata.azurerm_client_config.current.tenant_id", "%", "7D")),
				SmartProxyEnabled: pulumi.Bool(true),
			},
			CorsConfiguration: &healthcare.ServiceCorsConfigurationArgs{
				AllowCredentials: pulumi.Bool(true),
				AllowedHeaders: pulumi.StringArray{
					pulumi.String("x-tempo-*"),
					pulumi.String("x-tempo2-*"),
				},
				AllowedMethods: pulumi.StringArray{
					pulumi.String("GET"),
					pulumi.String("PUT"),
				},
				AllowedOrigins: pulumi.StringArray{
					pulumi.String("http://www.example.com"),
					pulumi.String("http://www.example2.com"),
				},
				MaxAgeInSeconds: pulumi.Int(500),
			},
			CosmosdbThroughput: pulumi.Int(2000),
			Kind:               pulumi.String("fhir-R4"),
			Location:           pulumi.String("westus2"),
			ResourceGroupName:  pulumi.String("sample-resource-group"),
			Tags: pulumi.StringMap{
				"environment": pulumi.String("testenv"),
				"purpose":     pulumi.String("AcceptanceTests"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

Healthcare Service can be imported using the resource`id`, e.g.

```sh

$ pulumi import azure:healthcare/service:Service example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource_group/providers/Microsoft.HealthcareApis/services/service_name

```

func GetService

func GetService(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ServiceState, opts ...pulumi.ResourceOption) (*Service, error)

GetService gets an existing Service resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewService

func NewService(ctx *pulumi.Context,
	name string, args *ServiceArgs, opts ...pulumi.ResourceOption) (*Service, error)

NewService registers a new resource with the given unique name, arguments, and options.

func (*Service) ElementType

func (*Service) ElementType() reflect.Type

func (*Service) ToServiceOutput

func (i *Service) ToServiceOutput() ServiceOutput

func (*Service) ToServiceOutputWithContext

func (i *Service) ToServiceOutputWithContext(ctx context.Context) ServiceOutput

type ServiceArgs

type ServiceArgs struct {
	AccessPolicyObjectIds pulumi.StringArrayInput
	// An `authenticationConfiguration` block as defined below.
	AuthenticationConfiguration ServiceAuthenticationConfigurationPtrInput
	// A `corsConfiguration` block as defined below.
	CorsConfiguration ServiceCorsConfigurationPtrInput
	// A versionless Key Vault Key ID for CMK encryption of the backing database. Changing this forces a new resource to be created.
	CosmosdbKeyVaultKeyVersionlessId pulumi.StringPtrInput
	// The provisioned throughput for the backing database. Range of `400`-`10000`. Defaults to `400`.
	CosmosdbThroughput pulumi.IntPtrInput
	// The type of the service. Values at time of publication are: `fhir`, `fhir-Stu3` and `fhir-R4`. Default value is `fhir`.
	Kind pulumi.StringPtrInput
	// Specifies the supported Azure Region where the Service should be created.
	Location pulumi.StringPtrInput
	// The name of the service instance. Used for service endpoint, must be unique within the audience.
	Name pulumi.StringPtrInput
	// Whether public network access is enabled or disabled for this service instance.
	PublicNetworkAccessEnabled pulumi.BoolPtrInput
	// The name of the Resource Group in which to create the Service.
	ResourceGroupName pulumi.StringInput
	// A mapping of tags to assign to the resource.
	Tags pulumi.StringMapInput
}

The set of arguments for constructing a Service resource.

func (ServiceArgs) ElementType

func (ServiceArgs) ElementType() reflect.Type

type ServiceArray

type ServiceArray []ServiceInput

func (ServiceArray) ElementType

func (ServiceArray) ElementType() reflect.Type

func (ServiceArray) ToServiceArrayOutput

func (i ServiceArray) ToServiceArrayOutput() ServiceArrayOutput

func (ServiceArray) ToServiceArrayOutputWithContext

func (i ServiceArray) ToServiceArrayOutputWithContext(ctx context.Context) ServiceArrayOutput

type ServiceArrayInput

type ServiceArrayInput interface {
	pulumi.Input

	ToServiceArrayOutput() ServiceArrayOutput
	ToServiceArrayOutputWithContext(context.Context) ServiceArrayOutput
}

ServiceArrayInput is an input type that accepts ServiceArray and ServiceArrayOutput values. You can construct a concrete instance of `ServiceArrayInput` via:

ServiceArray{ ServiceArgs{...} }

type ServiceArrayOutput

type ServiceArrayOutput struct{ *pulumi.OutputState }

func (ServiceArrayOutput) ElementType

func (ServiceArrayOutput) ElementType() reflect.Type

func (ServiceArrayOutput) Index

func (ServiceArrayOutput) ToServiceArrayOutput

func (o ServiceArrayOutput) ToServiceArrayOutput() ServiceArrayOutput

func (ServiceArrayOutput) ToServiceArrayOutputWithContext

func (o ServiceArrayOutput) ToServiceArrayOutputWithContext(ctx context.Context) ServiceArrayOutput

type ServiceAuthenticationConfiguration

type ServiceAuthenticationConfiguration struct {
	// The intended audience to receive authentication tokens for the service. The default value is https://azurehealthcareapis.com
	Audience *string `pulumi:"audience"`
	// The Azure Active Directory (tenant) that serves as the authentication authority to access the service. The default authority is the Directory defined in the authentication scheme in use when running this provider.
	// Authority must be registered to Azure AD and in the following format: https://{Azure-AD-endpoint}/{tenant-id}.
	Authority *string `pulumi:"authority"`
	// Enables the 'SMART on FHIR' option for mobile and web implementations.
	SmartProxyEnabled *bool `pulumi:"smartProxyEnabled"`
}

type ServiceAuthenticationConfigurationArgs

type ServiceAuthenticationConfigurationArgs struct {
	// The intended audience to receive authentication tokens for the service. The default value is https://azurehealthcareapis.com
	Audience pulumi.StringPtrInput `pulumi:"audience"`
	// The Azure Active Directory (tenant) that serves as the authentication authority to access the service. The default authority is the Directory defined in the authentication scheme in use when running this provider.
	// Authority must be registered to Azure AD and in the following format: https://{Azure-AD-endpoint}/{tenant-id}.
	Authority pulumi.StringPtrInput `pulumi:"authority"`
	// Enables the 'SMART on FHIR' option for mobile and web implementations.
	SmartProxyEnabled pulumi.BoolPtrInput `pulumi:"smartProxyEnabled"`
}

func (ServiceAuthenticationConfigurationArgs) ElementType

func (ServiceAuthenticationConfigurationArgs) ToServiceAuthenticationConfigurationOutput

func (i ServiceAuthenticationConfigurationArgs) ToServiceAuthenticationConfigurationOutput() ServiceAuthenticationConfigurationOutput

func (ServiceAuthenticationConfigurationArgs) ToServiceAuthenticationConfigurationOutputWithContext

func (i ServiceAuthenticationConfigurationArgs) ToServiceAuthenticationConfigurationOutputWithContext(ctx context.Context) ServiceAuthenticationConfigurationOutput

func (ServiceAuthenticationConfigurationArgs) ToServiceAuthenticationConfigurationPtrOutput

func (i ServiceAuthenticationConfigurationArgs) ToServiceAuthenticationConfigurationPtrOutput() ServiceAuthenticationConfigurationPtrOutput

func (ServiceAuthenticationConfigurationArgs) ToServiceAuthenticationConfigurationPtrOutputWithContext

func (i ServiceAuthenticationConfigurationArgs) ToServiceAuthenticationConfigurationPtrOutputWithContext(ctx context.Context) ServiceAuthenticationConfigurationPtrOutput

type ServiceAuthenticationConfigurationInput

type ServiceAuthenticationConfigurationInput interface {
	pulumi.Input

	ToServiceAuthenticationConfigurationOutput() ServiceAuthenticationConfigurationOutput
	ToServiceAuthenticationConfigurationOutputWithContext(context.Context) ServiceAuthenticationConfigurationOutput
}

ServiceAuthenticationConfigurationInput is an input type that accepts ServiceAuthenticationConfigurationArgs and ServiceAuthenticationConfigurationOutput values. You can construct a concrete instance of `ServiceAuthenticationConfigurationInput` via:

ServiceAuthenticationConfigurationArgs{...}

type ServiceAuthenticationConfigurationOutput

type ServiceAuthenticationConfigurationOutput struct{ *pulumi.OutputState }

func (ServiceAuthenticationConfigurationOutput) Audience

The intended audience to receive authentication tokens for the service. The default value is https://azurehealthcareapis.com

func (ServiceAuthenticationConfigurationOutput) Authority

The Azure Active Directory (tenant) that serves as the authentication authority to access the service. The default authority is the Directory defined in the authentication scheme in use when running this provider. Authority must be registered to Azure AD and in the following format: https://{Azure-AD-endpoint}/{tenant-id}.

func (ServiceAuthenticationConfigurationOutput) ElementType

func (ServiceAuthenticationConfigurationOutput) SmartProxyEnabled

Enables the 'SMART on FHIR' option for mobile and web implementations.

func (ServiceAuthenticationConfigurationOutput) ToServiceAuthenticationConfigurationOutput

func (o ServiceAuthenticationConfigurationOutput) ToServiceAuthenticationConfigurationOutput() ServiceAuthenticationConfigurationOutput

func (ServiceAuthenticationConfigurationOutput) ToServiceAuthenticationConfigurationOutputWithContext

func (o ServiceAuthenticationConfigurationOutput) ToServiceAuthenticationConfigurationOutputWithContext(ctx context.Context) ServiceAuthenticationConfigurationOutput

func (ServiceAuthenticationConfigurationOutput) ToServiceAuthenticationConfigurationPtrOutput

func (o ServiceAuthenticationConfigurationOutput) ToServiceAuthenticationConfigurationPtrOutput() ServiceAuthenticationConfigurationPtrOutput

func (ServiceAuthenticationConfigurationOutput) ToServiceAuthenticationConfigurationPtrOutputWithContext

func (o ServiceAuthenticationConfigurationOutput) ToServiceAuthenticationConfigurationPtrOutputWithContext(ctx context.Context) ServiceAuthenticationConfigurationPtrOutput

type ServiceAuthenticationConfigurationPtrInput

type ServiceAuthenticationConfigurationPtrInput interface {
	pulumi.Input

	ToServiceAuthenticationConfigurationPtrOutput() ServiceAuthenticationConfigurationPtrOutput
	ToServiceAuthenticationConfigurationPtrOutputWithContext(context.Context) ServiceAuthenticationConfigurationPtrOutput
}

ServiceAuthenticationConfigurationPtrInput is an input type that accepts ServiceAuthenticationConfigurationArgs, ServiceAuthenticationConfigurationPtr and ServiceAuthenticationConfigurationPtrOutput values. You can construct a concrete instance of `ServiceAuthenticationConfigurationPtrInput` via:

        ServiceAuthenticationConfigurationArgs{...}

or:

        nil

type ServiceAuthenticationConfigurationPtrOutput

type ServiceAuthenticationConfigurationPtrOutput struct{ *pulumi.OutputState }

func (ServiceAuthenticationConfigurationPtrOutput) Audience

The intended audience to receive authentication tokens for the service. The default value is https://azurehealthcareapis.com

func (ServiceAuthenticationConfigurationPtrOutput) Authority

The Azure Active Directory (tenant) that serves as the authentication authority to access the service. The default authority is the Directory defined in the authentication scheme in use when running this provider. Authority must be registered to Azure AD and in the following format: https://{Azure-AD-endpoint}/{tenant-id}.

func (ServiceAuthenticationConfigurationPtrOutput) Elem

func (ServiceAuthenticationConfigurationPtrOutput) ElementType

func (ServiceAuthenticationConfigurationPtrOutput) SmartProxyEnabled

Enables the 'SMART on FHIR' option for mobile and web implementations.

func (ServiceAuthenticationConfigurationPtrOutput) ToServiceAuthenticationConfigurationPtrOutput

func (o ServiceAuthenticationConfigurationPtrOutput) ToServiceAuthenticationConfigurationPtrOutput() ServiceAuthenticationConfigurationPtrOutput

func (ServiceAuthenticationConfigurationPtrOutput) ToServiceAuthenticationConfigurationPtrOutputWithContext

func (o ServiceAuthenticationConfigurationPtrOutput) ToServiceAuthenticationConfigurationPtrOutputWithContext(ctx context.Context) ServiceAuthenticationConfigurationPtrOutput

type ServiceCorsConfiguration

type ServiceCorsConfiguration struct {
	// If credentials are allowed via CORS.
	AllowCredentials *bool `pulumi:"allowCredentials"`
	// A set of headers to be allowed via CORS.
	AllowedHeaders []string `pulumi:"allowedHeaders"`
	// The methods to be allowed via CORS.
	AllowedMethods []string `pulumi:"allowedMethods"`
	// A set of origins to be allowed via CORS.
	AllowedOrigins []string `pulumi:"allowedOrigins"`
	// The max age to be allowed via CORS.
	MaxAgeInSeconds *int `pulumi:"maxAgeInSeconds"`
}

type ServiceCorsConfigurationArgs

type ServiceCorsConfigurationArgs struct {
	// If credentials are allowed via CORS.
	AllowCredentials pulumi.BoolPtrInput `pulumi:"allowCredentials"`
	// A set of headers to be allowed via CORS.
	AllowedHeaders pulumi.StringArrayInput `pulumi:"allowedHeaders"`
	// The methods to be allowed via CORS.
	AllowedMethods pulumi.StringArrayInput `pulumi:"allowedMethods"`
	// A set of origins to be allowed via CORS.
	AllowedOrigins pulumi.StringArrayInput `pulumi:"allowedOrigins"`
	// The max age to be allowed via CORS.
	MaxAgeInSeconds pulumi.IntPtrInput `pulumi:"maxAgeInSeconds"`
}

func (ServiceCorsConfigurationArgs) ElementType

func (ServiceCorsConfigurationArgs) ToServiceCorsConfigurationOutput

func (i ServiceCorsConfigurationArgs) ToServiceCorsConfigurationOutput() ServiceCorsConfigurationOutput

func (ServiceCorsConfigurationArgs) ToServiceCorsConfigurationOutputWithContext

func (i ServiceCorsConfigurationArgs) ToServiceCorsConfigurationOutputWithContext(ctx context.Context) ServiceCorsConfigurationOutput

func (ServiceCorsConfigurationArgs) ToServiceCorsConfigurationPtrOutput

func (i ServiceCorsConfigurationArgs) ToServiceCorsConfigurationPtrOutput() ServiceCorsConfigurationPtrOutput

func (ServiceCorsConfigurationArgs) ToServiceCorsConfigurationPtrOutputWithContext

func (i ServiceCorsConfigurationArgs) ToServiceCorsConfigurationPtrOutputWithContext(ctx context.Context) ServiceCorsConfigurationPtrOutput

type ServiceCorsConfigurationInput

type ServiceCorsConfigurationInput interface {
	pulumi.Input

	ToServiceCorsConfigurationOutput() ServiceCorsConfigurationOutput
	ToServiceCorsConfigurationOutputWithContext(context.Context) ServiceCorsConfigurationOutput
}

ServiceCorsConfigurationInput is an input type that accepts ServiceCorsConfigurationArgs and ServiceCorsConfigurationOutput values. You can construct a concrete instance of `ServiceCorsConfigurationInput` via:

ServiceCorsConfigurationArgs{...}

type ServiceCorsConfigurationOutput

type ServiceCorsConfigurationOutput struct{ *pulumi.OutputState }

func (ServiceCorsConfigurationOutput) AllowCredentials

If credentials are allowed via CORS.

func (ServiceCorsConfigurationOutput) AllowedHeaders

A set of headers to be allowed via CORS.

func (ServiceCorsConfigurationOutput) AllowedMethods

The methods to be allowed via CORS.

func (ServiceCorsConfigurationOutput) AllowedOrigins

A set of origins to be allowed via CORS.

func (ServiceCorsConfigurationOutput) ElementType

func (ServiceCorsConfigurationOutput) MaxAgeInSeconds

The max age to be allowed via CORS.

func (ServiceCorsConfigurationOutput) ToServiceCorsConfigurationOutput

func (o ServiceCorsConfigurationOutput) ToServiceCorsConfigurationOutput() ServiceCorsConfigurationOutput

func (ServiceCorsConfigurationOutput) ToServiceCorsConfigurationOutputWithContext

func (o ServiceCorsConfigurationOutput) ToServiceCorsConfigurationOutputWithContext(ctx context.Context) ServiceCorsConfigurationOutput

func (ServiceCorsConfigurationOutput) ToServiceCorsConfigurationPtrOutput

func (o ServiceCorsConfigurationOutput) ToServiceCorsConfigurationPtrOutput() ServiceCorsConfigurationPtrOutput

func (ServiceCorsConfigurationOutput) ToServiceCorsConfigurationPtrOutputWithContext

func (o ServiceCorsConfigurationOutput) ToServiceCorsConfigurationPtrOutputWithContext(ctx context.Context) ServiceCorsConfigurationPtrOutput

type ServiceCorsConfigurationPtrInput

type ServiceCorsConfigurationPtrInput interface {
	pulumi.Input

	ToServiceCorsConfigurationPtrOutput() ServiceCorsConfigurationPtrOutput
	ToServiceCorsConfigurationPtrOutputWithContext(context.Context) ServiceCorsConfigurationPtrOutput
}

ServiceCorsConfigurationPtrInput is an input type that accepts ServiceCorsConfigurationArgs, ServiceCorsConfigurationPtr and ServiceCorsConfigurationPtrOutput values. You can construct a concrete instance of `ServiceCorsConfigurationPtrInput` via:

        ServiceCorsConfigurationArgs{...}

or:

        nil

type ServiceCorsConfigurationPtrOutput

type ServiceCorsConfigurationPtrOutput struct{ *pulumi.OutputState }

func (ServiceCorsConfigurationPtrOutput) AllowCredentials

If credentials are allowed via CORS.

func (ServiceCorsConfigurationPtrOutput) AllowedHeaders

A set of headers to be allowed via CORS.

func (ServiceCorsConfigurationPtrOutput) AllowedMethods

The methods to be allowed via CORS.

func (ServiceCorsConfigurationPtrOutput) AllowedOrigins

A set of origins to be allowed via CORS.

func (ServiceCorsConfigurationPtrOutput) Elem

func (ServiceCorsConfigurationPtrOutput) ElementType

func (ServiceCorsConfigurationPtrOutput) MaxAgeInSeconds

The max age to be allowed via CORS.

func (ServiceCorsConfigurationPtrOutput) ToServiceCorsConfigurationPtrOutput

func (o ServiceCorsConfigurationPtrOutput) ToServiceCorsConfigurationPtrOutput() ServiceCorsConfigurationPtrOutput

func (ServiceCorsConfigurationPtrOutput) ToServiceCorsConfigurationPtrOutputWithContext

func (o ServiceCorsConfigurationPtrOutput) ToServiceCorsConfigurationPtrOutputWithContext(ctx context.Context) ServiceCorsConfigurationPtrOutput

type ServiceInput

type ServiceInput interface {
	pulumi.Input

	ToServiceOutput() ServiceOutput
	ToServiceOutputWithContext(ctx context.Context) ServiceOutput
}

type ServiceMap

type ServiceMap map[string]ServiceInput

func (ServiceMap) ElementType

func (ServiceMap) ElementType() reflect.Type

func (ServiceMap) ToServiceMapOutput

func (i ServiceMap) ToServiceMapOutput() ServiceMapOutput

func (ServiceMap) ToServiceMapOutputWithContext

func (i ServiceMap) ToServiceMapOutputWithContext(ctx context.Context) ServiceMapOutput

type ServiceMapInput

type ServiceMapInput interface {
	pulumi.Input

	ToServiceMapOutput() ServiceMapOutput
	ToServiceMapOutputWithContext(context.Context) ServiceMapOutput
}

ServiceMapInput is an input type that accepts ServiceMap and ServiceMapOutput values. You can construct a concrete instance of `ServiceMapInput` via:

ServiceMap{ "key": ServiceArgs{...} }

type ServiceMapOutput

type ServiceMapOutput struct{ *pulumi.OutputState }

func (ServiceMapOutput) ElementType

func (ServiceMapOutput) ElementType() reflect.Type

func (ServiceMapOutput) MapIndex

func (ServiceMapOutput) ToServiceMapOutput

func (o ServiceMapOutput) ToServiceMapOutput() ServiceMapOutput

func (ServiceMapOutput) ToServiceMapOutputWithContext

func (o ServiceMapOutput) ToServiceMapOutputWithContext(ctx context.Context) ServiceMapOutput

type ServiceOutput

type ServiceOutput struct{ *pulumi.OutputState }

func (ServiceOutput) AccessPolicyObjectIds added in v5.5.0

func (o ServiceOutput) AccessPolicyObjectIds() pulumi.StringArrayOutput

func (ServiceOutput) AuthenticationConfiguration added in v5.5.0

func (o ServiceOutput) AuthenticationConfiguration() ServiceAuthenticationConfigurationOutput

An `authenticationConfiguration` block as defined below.

func (ServiceOutput) CorsConfiguration added in v5.5.0

func (o ServiceOutput) CorsConfiguration() ServiceCorsConfigurationOutput

A `corsConfiguration` block as defined below.

func (ServiceOutput) CosmosdbKeyVaultKeyVersionlessId added in v5.5.0

func (o ServiceOutput) CosmosdbKeyVaultKeyVersionlessId() pulumi.StringPtrOutput

A versionless Key Vault Key ID for CMK encryption of the backing database. Changing this forces a new resource to be created.

func (ServiceOutput) CosmosdbThroughput added in v5.5.0

func (o ServiceOutput) CosmosdbThroughput() pulumi.IntPtrOutput

The provisioned throughput for the backing database. Range of `400`-`10000`. Defaults to `400`.

func (ServiceOutput) ElementType

func (ServiceOutput) ElementType() reflect.Type

func (ServiceOutput) Kind added in v5.5.0

The type of the service. Values at time of publication are: `fhir`, `fhir-Stu3` and `fhir-R4`. Default value is `fhir`.

func (ServiceOutput) Location added in v5.5.0

func (o ServiceOutput) Location() pulumi.StringOutput

Specifies the supported Azure Region where the Service should be created.

func (ServiceOutput) Name added in v5.5.0

The name of the service instance. Used for service endpoint, must be unique within the audience.

func (ServiceOutput) PublicNetworkAccessEnabled added in v5.5.0

func (o ServiceOutput) PublicNetworkAccessEnabled() pulumi.BoolPtrOutput

Whether public network access is enabled or disabled for this service instance.

func (ServiceOutput) ResourceGroupName added in v5.5.0

func (o ServiceOutput) ResourceGroupName() pulumi.StringOutput

The name of the Resource Group in which to create the Service.

func (ServiceOutput) Tags added in v5.5.0

A mapping of tags to assign to the resource.

func (ServiceOutput) ToServiceOutput

func (o ServiceOutput) ToServiceOutput() ServiceOutput

func (ServiceOutput) ToServiceOutputWithContext

func (o ServiceOutput) ToServiceOutputWithContext(ctx context.Context) ServiceOutput

type ServiceState

type ServiceState struct {
	AccessPolicyObjectIds pulumi.StringArrayInput
	// An `authenticationConfiguration` block as defined below.
	AuthenticationConfiguration ServiceAuthenticationConfigurationPtrInput
	// A `corsConfiguration` block as defined below.
	CorsConfiguration ServiceCorsConfigurationPtrInput
	// A versionless Key Vault Key ID for CMK encryption of the backing database. Changing this forces a new resource to be created.
	CosmosdbKeyVaultKeyVersionlessId pulumi.StringPtrInput
	// The provisioned throughput for the backing database. Range of `400`-`10000`. Defaults to `400`.
	CosmosdbThroughput pulumi.IntPtrInput
	// The type of the service. Values at time of publication are: `fhir`, `fhir-Stu3` and `fhir-R4`. Default value is `fhir`.
	Kind pulumi.StringPtrInput
	// Specifies the supported Azure Region where the Service should be created.
	Location pulumi.StringPtrInput
	// The name of the service instance. Used for service endpoint, must be unique within the audience.
	Name pulumi.StringPtrInput
	// Whether public network access is enabled or disabled for this service instance.
	PublicNetworkAccessEnabled pulumi.BoolPtrInput
	// The name of the Resource Group in which to create the Service.
	ResourceGroupName pulumi.StringPtrInput
	// A mapping of tags to assign to the resource.
	Tags pulumi.StringMapInput
}

func (ServiceState) ElementType

func (ServiceState) ElementType() reflect.Type

type Workspace

type Workspace struct {
	pulumi.CustomResourceState

	// Specifies the Azure Region where the Healthcare Workspace should be created. Changing this forces a new Healthcare Workspace to be created.
	Location pulumi.StringOutput `pulumi:"location"`
	// Specifies the name of the Healthcare Workspace. Changing this forces a new Healthcare Workspace to be created.
	Name                       pulumi.StringOutput                           `pulumi:"name"`
	PrivateEndpointConnections WorkspacePrivateEndpointConnectionArrayOutput `pulumi:"privateEndpointConnections"`
	// Specifies the name of the Resource Group where the Healthcare Workspace should exist. Changing this forces a new Healthcare Workspace to be created.
	ResourceGroupName pulumi.StringOutput    `pulumi:"resourceGroupName"`
	Tags              pulumi.StringMapOutput `pulumi:"tags"`
}

Manages a Healthcare workspace

## Example Usage

```go package main

import (

"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/healthcare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"

)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := healthcare.NewWorkspace(ctx, "test", &healthcare.WorkspaceArgs{
			Location:          pulumi.String("east us"),
			ResourceGroupName: pulumi.String("tfex-resource_group"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}

```

## Import

Healthcare Workspaces can be imported using the resource`id`, e.g.

```sh

$ pulumi import azure:healthcare/workspace:Workspace example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Microsoft.HealthcareApis/workspaces/workspace1

```

func GetWorkspace

func GetWorkspace(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *WorkspaceState, opts ...pulumi.ResourceOption) (*Workspace, error)

GetWorkspace gets an existing Workspace resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewWorkspace

func NewWorkspace(ctx *pulumi.Context,
	name string, args *WorkspaceArgs, opts ...pulumi.ResourceOption) (*Workspace, error)

NewWorkspace registers a new resource with the given unique name, arguments, and options.

func (*Workspace) ElementType

func (*Workspace) ElementType() reflect.Type

func (*Workspace) ToWorkspaceOutput

func (i *Workspace) ToWorkspaceOutput() WorkspaceOutput

func (*Workspace) ToWorkspaceOutputWithContext

func (i *Workspace) ToWorkspaceOutputWithContext(ctx context.Context) WorkspaceOutput

type WorkspaceArgs

type WorkspaceArgs struct {
	// Specifies the Azure Region where the Healthcare Workspace should be created. Changing this forces a new Healthcare Workspace to be created.
	Location pulumi.StringPtrInput
	// Specifies the name of the Healthcare Workspace. Changing this forces a new Healthcare Workspace to be created.
	Name pulumi.StringPtrInput
	// Specifies the name of the Resource Group where the Healthcare Workspace should exist. Changing this forces a new Healthcare Workspace to be created.
	ResourceGroupName pulumi.StringInput
	Tags              pulumi.StringMapInput
}

The set of arguments for constructing a Workspace resource.

func (WorkspaceArgs) ElementType

func (WorkspaceArgs) ElementType() reflect.Type

type WorkspaceArray

type WorkspaceArray []WorkspaceInput

func (WorkspaceArray) ElementType

func (WorkspaceArray) ElementType() reflect.Type

func (WorkspaceArray) ToWorkspaceArrayOutput

func (i WorkspaceArray) ToWorkspaceArrayOutput() WorkspaceArrayOutput

func (WorkspaceArray) ToWorkspaceArrayOutputWithContext

func (i WorkspaceArray) ToWorkspaceArrayOutputWithContext(ctx context.Context) WorkspaceArrayOutput

type WorkspaceArrayInput

type WorkspaceArrayInput interface {
	pulumi.Input

	ToWorkspaceArrayOutput() WorkspaceArrayOutput
	ToWorkspaceArrayOutputWithContext(context.Context) WorkspaceArrayOutput
}

WorkspaceArrayInput is an input type that accepts WorkspaceArray and WorkspaceArrayOutput values. You can construct a concrete instance of `WorkspaceArrayInput` via:

WorkspaceArray{ WorkspaceArgs{...} }

type WorkspaceArrayOutput

type WorkspaceArrayOutput struct{ *pulumi.OutputState }

func (WorkspaceArrayOutput) ElementType

func (WorkspaceArrayOutput) ElementType() reflect.Type

func (WorkspaceArrayOutput) Index

func (WorkspaceArrayOutput) ToWorkspaceArrayOutput

func (o WorkspaceArrayOutput) ToWorkspaceArrayOutput() WorkspaceArrayOutput

func (WorkspaceArrayOutput) ToWorkspaceArrayOutputWithContext

func (o WorkspaceArrayOutput) ToWorkspaceArrayOutputWithContext(ctx context.Context) WorkspaceArrayOutput

type WorkspaceInput

type WorkspaceInput interface {
	pulumi.Input

	ToWorkspaceOutput() WorkspaceOutput
	ToWorkspaceOutputWithContext(ctx context.Context) WorkspaceOutput
}

type WorkspaceMap

type WorkspaceMap map[string]WorkspaceInput

func (WorkspaceMap) ElementType

func (WorkspaceMap) ElementType() reflect.Type

func (WorkspaceMap) ToWorkspaceMapOutput

func (i WorkspaceMap) ToWorkspaceMapOutput() WorkspaceMapOutput

func (WorkspaceMap) ToWorkspaceMapOutputWithContext

func (i WorkspaceMap) ToWorkspaceMapOutputWithContext(ctx context.Context) WorkspaceMapOutput

type WorkspaceMapInput

type WorkspaceMapInput interface {
	pulumi.Input

	ToWorkspaceMapOutput() WorkspaceMapOutput
	ToWorkspaceMapOutputWithContext(context.Context) WorkspaceMapOutput
}

WorkspaceMapInput is an input type that accepts WorkspaceMap and WorkspaceMapOutput values. You can construct a concrete instance of `WorkspaceMapInput` via:

WorkspaceMap{ "key": WorkspaceArgs{...} }

type WorkspaceMapOutput

type WorkspaceMapOutput struct{ *pulumi.OutputState }

func (WorkspaceMapOutput) ElementType

func (WorkspaceMapOutput) ElementType() reflect.Type

func (WorkspaceMapOutput) MapIndex

func (WorkspaceMapOutput) ToWorkspaceMapOutput

func (o WorkspaceMapOutput) ToWorkspaceMapOutput() WorkspaceMapOutput

func (WorkspaceMapOutput) ToWorkspaceMapOutputWithContext

func (o WorkspaceMapOutput) ToWorkspaceMapOutputWithContext(ctx context.Context) WorkspaceMapOutput

type WorkspaceOutput

type WorkspaceOutput struct{ *pulumi.OutputState }

func (WorkspaceOutput) ElementType

func (WorkspaceOutput) ElementType() reflect.Type

func (WorkspaceOutput) Location added in v5.5.0

func (o WorkspaceOutput) Location() pulumi.StringOutput

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

func (WorkspaceOutput) Name added in v5.5.0

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

func (WorkspaceOutput) PrivateEndpointConnections added in v5.5.0

func (o WorkspaceOutput) PrivateEndpointConnections() WorkspacePrivateEndpointConnectionArrayOutput

func (WorkspaceOutput) ResourceGroupName added in v5.5.0

func (o WorkspaceOutput) ResourceGroupName() pulumi.StringOutput

Specifies the name of the Resource Group where the Healthcare Workspace should exist. Changing this forces a new Healthcare Workspace to be created.

func (WorkspaceOutput) Tags added in v5.5.0

func (WorkspaceOutput) ToWorkspaceOutput

func (o WorkspaceOutput) ToWorkspaceOutput() WorkspaceOutput

func (WorkspaceOutput) ToWorkspaceOutputWithContext

func (o WorkspaceOutput) ToWorkspaceOutputWithContext(ctx context.Context) WorkspaceOutput

type WorkspacePrivateEndpointConnection

type WorkspacePrivateEndpointConnection struct {
	// The ID of the Healthcare Workspace.
	Id *string `pulumi:"id"`
	// Specifies the name of the Healthcare Workspace. Changing this forces a new Healthcare Workspace to be created.
	Name *string `pulumi:"name"`
}

type WorkspacePrivateEndpointConnectionArgs

type WorkspacePrivateEndpointConnectionArgs struct {
	// The ID of the Healthcare Workspace.
	Id pulumi.StringPtrInput `pulumi:"id"`
	// Specifies the name of the Healthcare Workspace. Changing this forces a new Healthcare Workspace to be created.
	Name pulumi.StringPtrInput `pulumi:"name"`
}

func (WorkspacePrivateEndpointConnectionArgs) ElementType

func (WorkspacePrivateEndpointConnectionArgs) ToWorkspacePrivateEndpointConnectionOutput

func (i WorkspacePrivateEndpointConnectionArgs) ToWorkspacePrivateEndpointConnectionOutput() WorkspacePrivateEndpointConnectionOutput

func (WorkspacePrivateEndpointConnectionArgs) ToWorkspacePrivateEndpointConnectionOutputWithContext

func (i WorkspacePrivateEndpointConnectionArgs) ToWorkspacePrivateEndpointConnectionOutputWithContext(ctx context.Context) WorkspacePrivateEndpointConnectionOutput

type WorkspacePrivateEndpointConnectionArray

type WorkspacePrivateEndpointConnectionArray []WorkspacePrivateEndpointConnectionInput

func (WorkspacePrivateEndpointConnectionArray) ElementType

func (WorkspacePrivateEndpointConnectionArray) ToWorkspacePrivateEndpointConnectionArrayOutput

func (i WorkspacePrivateEndpointConnectionArray) ToWorkspacePrivateEndpointConnectionArrayOutput() WorkspacePrivateEndpointConnectionArrayOutput

func (WorkspacePrivateEndpointConnectionArray) ToWorkspacePrivateEndpointConnectionArrayOutputWithContext

func (i WorkspacePrivateEndpointConnectionArray) ToWorkspacePrivateEndpointConnectionArrayOutputWithContext(ctx context.Context) WorkspacePrivateEndpointConnectionArrayOutput

type WorkspacePrivateEndpointConnectionArrayInput

type WorkspacePrivateEndpointConnectionArrayInput interface {
	pulumi.Input

	ToWorkspacePrivateEndpointConnectionArrayOutput() WorkspacePrivateEndpointConnectionArrayOutput
	ToWorkspacePrivateEndpointConnectionArrayOutputWithContext(context.Context) WorkspacePrivateEndpointConnectionArrayOutput
}

WorkspacePrivateEndpointConnectionArrayInput is an input type that accepts WorkspacePrivateEndpointConnectionArray and WorkspacePrivateEndpointConnectionArrayOutput values. You can construct a concrete instance of `WorkspacePrivateEndpointConnectionArrayInput` via:

WorkspacePrivateEndpointConnectionArray{ WorkspacePrivateEndpointConnectionArgs{...} }

type WorkspacePrivateEndpointConnectionArrayOutput

type WorkspacePrivateEndpointConnectionArrayOutput struct{ *pulumi.OutputState }

func (WorkspacePrivateEndpointConnectionArrayOutput) ElementType

func (WorkspacePrivateEndpointConnectionArrayOutput) Index

func (WorkspacePrivateEndpointConnectionArrayOutput) ToWorkspacePrivateEndpointConnectionArrayOutput

func (o WorkspacePrivateEndpointConnectionArrayOutput) ToWorkspacePrivateEndpointConnectionArrayOutput() WorkspacePrivateEndpointConnectionArrayOutput

func (WorkspacePrivateEndpointConnectionArrayOutput) ToWorkspacePrivateEndpointConnectionArrayOutputWithContext

func (o WorkspacePrivateEndpointConnectionArrayOutput) ToWorkspacePrivateEndpointConnectionArrayOutputWithContext(ctx context.Context) WorkspacePrivateEndpointConnectionArrayOutput

type WorkspacePrivateEndpointConnectionInput

type WorkspacePrivateEndpointConnectionInput interface {
	pulumi.Input

	ToWorkspacePrivateEndpointConnectionOutput() WorkspacePrivateEndpointConnectionOutput
	ToWorkspacePrivateEndpointConnectionOutputWithContext(context.Context) WorkspacePrivateEndpointConnectionOutput
}

WorkspacePrivateEndpointConnectionInput is an input type that accepts WorkspacePrivateEndpointConnectionArgs and WorkspacePrivateEndpointConnectionOutput values. You can construct a concrete instance of `WorkspacePrivateEndpointConnectionInput` via:

WorkspacePrivateEndpointConnectionArgs{...}

type WorkspacePrivateEndpointConnectionOutput

type WorkspacePrivateEndpointConnectionOutput struct{ *pulumi.OutputState }

func (WorkspacePrivateEndpointConnectionOutput) ElementType

func (WorkspacePrivateEndpointConnectionOutput) Id

The ID of the Healthcare Workspace.

func (WorkspacePrivateEndpointConnectionOutput) Name

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

func (WorkspacePrivateEndpointConnectionOutput) ToWorkspacePrivateEndpointConnectionOutput

func (o WorkspacePrivateEndpointConnectionOutput) ToWorkspacePrivateEndpointConnectionOutput() WorkspacePrivateEndpointConnectionOutput

func (WorkspacePrivateEndpointConnectionOutput) ToWorkspacePrivateEndpointConnectionOutputWithContext

func (o WorkspacePrivateEndpointConnectionOutput) ToWorkspacePrivateEndpointConnectionOutputWithContext(ctx context.Context) WorkspacePrivateEndpointConnectionOutput

type WorkspaceState

type WorkspaceState struct {
	// Specifies the Azure Region where the Healthcare Workspace should be created. Changing this forces a new Healthcare Workspace to be created.
	Location pulumi.StringPtrInput
	// Specifies the name of the Healthcare Workspace. Changing this forces a new Healthcare Workspace to be created.
	Name                       pulumi.StringPtrInput
	PrivateEndpointConnections WorkspacePrivateEndpointConnectionArrayInput
	// Specifies the name of the Resource Group where the Healthcare Workspace should exist. Changing this forces a new Healthcare Workspace to be created.
	ResourceGroupName pulumi.StringPtrInput
	Tags              pulumi.StringMapInput
}

func (WorkspaceState) ElementType

func (WorkspaceState) ElementType() reflect.Type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL