@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.33 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* The get business process development artifact action.
*
* Uses Azure REST API version 2023-11-14-preview.
*/
export declare function getApplicationBusinessProcessDevelopmentArtifact(args: GetApplicationBusinessProcessDevelopmentArtifactArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationBusinessProcessDevelopmentArtifactResult>;
export interface GetApplicationBusinessProcessDevelopmentArtifactArgs {
/**
* The name of the Application
*/
applicationName: string;
/**
* The name of the business process development artifact.
*/
name: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the space
*/
spaceName: string;
}
/**
* The business process development artifact save or get response.
*/
export interface GetApplicationBusinessProcessDevelopmentArtifactResult {
/**
* The name of the business process development artifact.
*/
readonly name: string;
/**
* The properties of the business process development artifact.
*/
readonly properties: outputs.integrationspaces.BusinessProcessDevelopmentArtifactPropertiesResponse;
/**
* The system data of the business process development artifact.
*/
readonly systemData: outputs.integrationspaces.SystemDataResponse;
}
/**
* The get business process development artifact action.
*
* Uses Azure REST API version 2023-11-14-preview.
*/
export declare function getApplicationBusinessProcessDevelopmentArtifactOutput(args: GetApplicationBusinessProcessDevelopmentArtifactOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationBusinessProcessDevelopmentArtifactResult>;
export interface GetApplicationBusinessProcessDevelopmentArtifactOutputArgs {
/**
* The name of the Application
*/
applicationName: pulumi.Input<string>;
/**
* The name of the business process development artifact.
*/
name: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the space
*/
spaceName: pulumi.Input<string>;
}