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

71 lines (70 loc) 2.38 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets the on-premises integration runtime connection information for encrypting the on-premises data source credentials. * * Uses Azure REST API version 2018-06-01. */ export declare function getIntegrationRuntimeConnectionInfo(args: GetIntegrationRuntimeConnectionInfoArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationRuntimeConnectionInfoResult>; export interface GetIntegrationRuntimeConnectionInfoArgs { /** * The factory name. */ factoryName: string; /** * The integration runtime name. */ integrationRuntimeName: string; /** * The resource group name. */ resourceGroupName: string; } /** * Connection information for encrypting the on-premises data source credentials. */ export interface GetIntegrationRuntimeConnectionInfoResult { /** * The on-premises integration runtime host URL. */ readonly hostServiceUri: string; /** * The integration runtime SSL certificate thumbprint. Click-Once application uses it to do server validation. */ readonly identityCertThumbprint: string; /** * Whether the identity certificate is expired. */ readonly isIdentityCertExprired: boolean; /** * The public key for encrypting a credential when transferring the credential to the integration runtime. */ readonly publicKey: string; /** * The token generated in service. Callers use this token to authenticate to integration runtime. */ readonly serviceToken: string; /** * The integration runtime version. */ readonly version: string; } /** * Gets the on-premises integration runtime connection information for encrypting the on-premises data source credentials. * * Uses Azure REST API version 2018-06-01. */ export declare function getIntegrationRuntimeConnectionInfoOutput(args: GetIntegrationRuntimeConnectionInfoOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationRuntimeConnectionInfoResult>; export interface GetIntegrationRuntimeConnectionInfoOutputArgs { /** * The factory name. */ factoryName: pulumi.Input<string>; /** * The integration runtime name. */ integrationRuntimeName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; }