@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.88 kB
TypeScript
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>;
}