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

72 lines (71 loc) 1.88 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets an integration runtime. * * Uses Azure REST API version 2018-06-01. */ export declare function getIntegrationRuntime(args: GetIntegrationRuntimeArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationRuntimeResult>; export interface GetIntegrationRuntimeArgs { /** * The factory name. */ factoryName: string; /** * The integration runtime name. */ integrationRuntimeName: string; /** * The resource group name. */ resourceGroupName: string; } /** * Integration runtime resource type. */ export interface GetIntegrationRuntimeResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Etag identifies change in the resource. */ readonly etag: string; /** * The resource identifier. */ readonly id: string; /** * The resource name. */ readonly name: string; /** * Integration runtime properties. */ readonly properties: outputs.datafactory.ManagedIntegrationRuntimeResponse | outputs.datafactory.SelfHostedIntegrationRuntimeResponse; /** * The resource type. */ readonly type: string; } /** * Gets an integration runtime. * * Uses Azure REST API version 2018-06-01. */ export declare function getIntegrationRuntimeOutput(args: GetIntegrationRuntimeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationRuntimeResult>; export interface GetIntegrationRuntimeOutputArgs { /** * The factory name. */ factoryName: pulumi.Input<string>; /** * The integration runtime name. */ integrationRuntimeName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; }