@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 5.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the properties of the specified FHIR Service.
*
* Uses Azure REST API version 2024-03-31.
*
* Other available API versions: 2022-10-01-preview, 2022-12-01, 2023-02-28, 2023-09-06, 2023-11-01, 2023-12-01, 2024-03-01, 2025-03-01-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native healthcareapis [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getFhirService(args: GetFhirServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetFhirServiceResult>;
export interface GetFhirServiceArgs {
/**
* The name of FHIR Service resource.
*/
fhirServiceName: string;
/**
* The name of the resource group that contains the service instance.
*/
resourceGroupName: string;
/**
* The name of workspace resource.
*/
workspaceName: string;
}
/**
* The description of Fhir Service
*/
export interface GetFhirServiceResult {
/**
* Fhir Service Azure container registry configuration.
*/
readonly acrConfiguration?: outputs.healthcareapis.FhirServiceAcrConfigurationResponse;
/**
* Fhir Service authentication configuration.
*/
readonly authenticationConfiguration?: outputs.healthcareapis.FhirServiceAuthenticationConfigurationResponse;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Fhir Service Cors configuration.
*/
readonly corsConfiguration?: outputs.healthcareapis.FhirServiceCorsConfigurationResponse;
/**
* The encryption settings of the FHIR service
*/
readonly encryption?: outputs.healthcareapis.EncryptionResponse;
/**
* An etag associated with the resource, used for optimistic concurrency when editing it.
*/
readonly etag?: string;
/**
* Fhir Service event support status.
*/
readonly eventState: string;
/**
* Fhir Service export configuration.
*/
readonly exportConfiguration?: outputs.healthcareapis.FhirServiceExportConfigurationResponse;
/**
* The resource identifier.
*/
readonly id: string;
/**
* Setting indicating whether the service has a managed identity associated with it.
*/
readonly identity?: outputs.healthcareapis.ServiceManagedIdentityResponseIdentity;
/**
* Implementation Guides configuration.
*/
readonly implementationGuidesConfiguration?: outputs.healthcareapis.ImplementationGuidesConfigurationResponse;
/**
* Fhir Service import configuration.
*/
readonly importConfiguration?: outputs.healthcareapis.FhirServiceImportConfigurationResponse;
/**
* The kind of the service.
*/
readonly kind?: string;
/**
* The resource location.
*/
readonly location?: string;
/**
* The resource name.
*/
readonly name: string;
/**
* The list of private endpoint connections that are set up for this resource.
*/
readonly privateEndpointConnections: outputs.healthcareapis.PrivateEndpointConnectionResponse[];
/**
* The provisioning state.
*/
readonly provisioningState: string;
/**
* Control permission for data plane traffic coming from public networks while private endpoint is enabled.
*/
readonly publicNetworkAccess: string;
/**
* Determines tracking of history for resources.
*/
readonly resourceVersionPolicyConfiguration?: outputs.healthcareapis.ResourceVersionPolicyConfigurationResponse;
/**
* Metadata pertaining to creation and last modification of the resource.
*/
readonly systemData: outputs.healthcareapis.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The resource type.
*/
readonly type: string;
}
/**
* Gets the properties of the specified FHIR Service.
*
* Uses Azure REST API version 2024-03-31.
*
* Other available API versions: 2022-10-01-preview, 2022-12-01, 2023-02-28, 2023-09-06, 2023-11-01, 2023-12-01, 2024-03-01, 2025-03-01-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native healthcareapis [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getFhirServiceOutput(args: GetFhirServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFhirServiceResult>;
export interface GetFhirServiceOutputArgs {
/**
* The name of FHIR Service resource.
*/
fhirServiceName: pulumi.Input<string>;
/**
* The name of the resource group that contains the service instance.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of workspace resource.
*/
workspaceName: pulumi.Input<string>;
}