UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

35 lines (34 loc) 1.32 kB
export declare const Kind: { readonly Fhir: "fhir"; readonly Fhir_Stu3: "fhir-Stu3"; readonly Fhir_R4: "fhir-R4"; }; /** * The kind of the service. */ export type Kind = (typeof Kind)[keyof typeof Kind]; export declare const ManagedServiceIdentityType: { readonly SystemAssigned: "SystemAssigned"; readonly None: "None"; }; /** * Type of identity being specified, currently SystemAssigned and None are allowed. */ export type ManagedServiceIdentityType = (typeof ManagedServiceIdentityType)[keyof typeof ManagedServiceIdentityType]; export declare const PrivateEndpointServiceConnectionStatus: { readonly Pending: "Pending"; readonly Approved: "Approved"; readonly Rejected: "Rejected"; }; /** * Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service. */ export type PrivateEndpointServiceConnectionStatus = (typeof PrivateEndpointServiceConnectionStatus)[keyof typeof PrivateEndpointServiceConnectionStatus]; export declare const PublicNetworkAccess: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * Control permission for data plane traffic coming from public networks while private endpoint is enabled. */ export type PublicNetworkAccess = (typeof PublicNetworkAccess)[keyof typeof PublicNetworkAccess];