@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.63 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get an assembly for an integration account.
*
* Uses Azure REST API version 2019-05-01.
*
* Other available API versions: 2016-06-01, 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 getIntegrationAccountAssembly(args: GetIntegrationAccountAssemblyArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationAccountAssemblyResult>;
export interface GetIntegrationAccountAssemblyArgs {
/**
* The assembly artifact name.
*/
assemblyArtifactName: string;
/**
* The integration account name.
*/
integrationAccountName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
}
/**
* The assembly definition.
*/
export interface GetIntegrationAccountAssemblyResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The resource id.
*/
readonly id: string;
/**
* The resource location.
*/
readonly location?: string;
/**
* Gets the resource name.
*/
readonly name: string;
/**
* The assembly properties.
*/
readonly properties: outputs.logic.AssemblyPropertiesResponse;
/**
* The resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* Gets the resource type.
*/
readonly type: string;
}
/**
* Get an assembly for an integration account.
*
* Uses Azure REST API version 2019-05-01.
*
* Other available API versions: 2016-06-01, 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 getIntegrationAccountAssemblyOutput(args: GetIntegrationAccountAssemblyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationAccountAssemblyResult>;
export interface GetIntegrationAccountAssemblyOutputArgs {
/**
* The assembly artifact name.
*/
assemblyArtifactName: pulumi.Input<string>;
/**
* The integration account name.
*/
integrationAccountName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
}