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.56 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the properties of the specified IoT Connector. * * 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 getIotConnector(args: GetIotConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetIotConnectorResult>; export interface GetIotConnectorArgs { /** * The name of IoT Connector resource. */ iotConnectorName: string; /** * The name of the resource group that contains the service instance. */ resourceGroupName: string; /** * The name of workspace resource. */ workspaceName: string; } /** * IoT Connector definition. */ export interface GetIotConnectorResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Device Mappings. */ readonly deviceMapping?: outputs.healthcareapis.IotMappingPropertiesResponse; /** * 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; /** * Source configuration. */ readonly ingestionEndpointConfiguration?: outputs.healthcareapis.IotEventHubIngestionEndpointConfigurationResponse; /** * 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 IoT Connector. * * 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 getIotConnectorOutput(args: GetIotConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIotConnectorResult>; export interface GetIotConnectorOutputArgs { /** * The name of IoT Connector resource. */ iotConnectorName: 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>; }