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

68 lines (67 loc) 2.33 kB
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>; }