@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.16 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets an integration account map.
*
* 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 getIntegrationAccountMap(args: GetIntegrationAccountMapArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationAccountMapResult>;
export interface GetIntegrationAccountMapArgs {
/**
* The integration account name.
*/
integrationAccountName: string;
/**
* The integration account map name.
*/
mapName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
}
/**
* The integration account map.
*/
export interface GetIntegrationAccountMapResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The changed time.
*/
readonly changedTime: string;
/**
* The content.
*/
readonly content?: string;
/**
* The content link.
*/
readonly contentLink: outputs.logic.ContentLinkResponse;
/**
* The content type.
*/
readonly contentType?: string;
/**
* The created time.
*/
readonly createdTime: string;
/**
* The resource id.
*/
readonly id: string;
/**
* The resource location.
*/
readonly location?: string;
/**
* The map type.
*/
readonly mapType: string;
/**
* The metadata.
*/
readonly metadata?: any;
/**
* Gets the resource name.
*/
readonly name: string;
/**
* The parameters schema of integration account map.
*/
readonly parametersSchema?: outputs.logic.IntegrationAccountMapPropertiesResponseParametersSchema;
/**
* The resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* Gets the resource type.
*/
readonly type: string;
}
/**
* Gets an integration account map.
*
* 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 getIntegrationAccountMapOutput(args: GetIntegrationAccountMapOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationAccountMapResult>;
export interface GetIntegrationAccountMapOutputArgs {
/**
* The integration account name.
*/
integrationAccountName: pulumi.Input<string>;
/**
* The integration account map name.
*/
mapName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
}