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

98 lines (97 loc) 2.92 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets an integration account partner. * * Uses Azure REST API version 2019-05-01. * * Other available API versions: 2015-08-01-preview, 2018-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native logic [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getIntegrationAccountPartner(args: GetIntegrationAccountPartnerArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationAccountPartnerResult>; export interface GetIntegrationAccountPartnerArgs { /** * The integration account name. */ integrationAccountName: string; /** * The integration account partner name. */ partnerName: string; /** * The resource group name. */ resourceGroupName: string; } /** * The integration account partner. */ export interface GetIntegrationAccountPartnerResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The changed time. */ readonly changedTime: string; /** * The partner content. */ readonly content: outputs.logic.PartnerContentResponse; /** * The created time. */ readonly createdTime: string; /** * The resource id. */ readonly id: string; /** * The resource location. */ readonly location?: string; /** * The metadata. */ readonly metadata?: any; /** * Gets the resource name. */ readonly name: string; /** * The partner type. */ readonly partnerType: string; /** * The resource tags. */ readonly tags?: { [key: string]: string; }; /** * Gets the resource type. */ readonly type: string; } /** * Gets an integration account partner. * * Uses Azure REST API version 2019-05-01. * * Other available API versions: 2015-08-01-preview, 2018-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native logic [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getIntegrationAccountPartnerOutput(args: GetIntegrationAccountPartnerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationAccountPartnerResult>; export interface GetIntegrationAccountPartnerOutputArgs { /** * The integration account name. */ integrationAccountName: pulumi.Input<string>; /** * The integration account partner name. */ partnerName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; }