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