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

102 lines (101 loc) 3.11 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the properties of the specified Analytics Connector. * * Uses Azure REST API version 2022-10-01-preview. */ export declare function getAnalyticsConnector(args: GetAnalyticsConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetAnalyticsConnectorResult>; export interface GetAnalyticsConnectorArgs { /** * The name of Analytics Connector resource. */ analyticsConnectorName: string; /** * The name of the resource group that contains the service instance. */ resourceGroupName: string; /** * The name of workspace resource. */ workspaceName: string; } /** * Analytics Connector definition. */ export interface GetAnalyticsConnectorResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Data destination configuration for Analytics Connector. */ readonly dataDestinationConfiguration: outputs.healthcareapis.AnalyticsConnectorDataLakeDataDestinationResponse; /** * Data mapping configuration for Analytics Connector. */ readonly dataMappingConfiguration: outputs.healthcareapis.AnalyticsConnectorFhirToParquetMappingResponse; /** * Data source for Analytics Connector. */ readonly dataSourceConfiguration: outputs.healthcareapis.AnalyticsConnectorFhirServiceDataSourceResponse; /** * An etag associated with the resource, used for optimistic concurrency when editing it. */ readonly etag?: string; /** * The resource identifier. */ readonly id: string; /** * Setting indicating whether the service has a managed identity associated with it. */ readonly identity?: outputs.healthcareapis.ServiceManagedIdentityResponseIdentity; /** * The resource location. */ readonly location?: string; /** * The resource name. */ readonly name: string; /** * The provisioning state. */ readonly provisioningState: string; /** * 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 Analytics Connector. * * Uses Azure REST API version 2022-10-01-preview. */ export declare function getAnalyticsConnectorOutput(args: GetAnalyticsConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAnalyticsConnectorResult>; export interface GetAnalyticsConnectorOutputArgs { /** * The name of Analytics Connector resource. */ analyticsConnectorName: 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>; }