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

78 lines (77 loc) 2.18 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets an integration service environment. * * Uses Azure REST API version 2019-05-01. */ export declare function getIntegrationServiceEnvironment(args: GetIntegrationServiceEnvironmentArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationServiceEnvironmentResult>; export interface GetIntegrationServiceEnvironmentArgs { /** * The integration service environment name. */ integrationServiceEnvironmentName: string; /** * The resource group. */ resourceGroup: string; } /** * The integration service environment. */ export interface GetIntegrationServiceEnvironmentResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The resource id. */ readonly id: string; /** * Managed service identity properties. */ readonly identity?: outputs.logic.ManagedServiceIdentityResponse; /** * The resource location. */ readonly location?: string; /** * Gets the resource name. */ readonly name: string; /** * The integration service environment properties. */ readonly properties: outputs.logic.IntegrationServiceEnvironmentPropertiesResponse; /** * The sku. */ readonly sku?: outputs.logic.IntegrationServiceEnvironmentSkuResponse; /** * The resource tags. */ readonly tags?: { [key: string]: string; }; /** * Gets the resource type. */ readonly type: string; } /** * Gets an integration service environment. * * Uses Azure REST API version 2019-05-01. */ export declare function getIntegrationServiceEnvironmentOutput(args: GetIntegrationServiceEnvironmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationServiceEnvironmentResult>; export interface GetIntegrationServiceEnvironmentOutputArgs { /** * The integration service environment name. */ integrationServiceEnvironmentName: pulumi.Input<string>; /** * The resource group. */ resourceGroup: pulumi.Input<string>; }