@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.25 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a BusinessProcess
*
* Uses Azure REST API version 2023-11-14-preview.
*/
export declare function getBusinessProcess(args: GetBusinessProcessArgs, opts?: pulumi.InvokeOptions): Promise<GetBusinessProcessResult>;
export interface GetBusinessProcessArgs {
/**
* The name of the Application
*/
applicationName: string;
/**
* The name of the business process
*/
businessProcessName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the space
*/
spaceName: string;
}
/**
* A business process under application.
*/
export interface GetBusinessProcessResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The business process mapping.
*/
readonly businessProcessMapping?: {
[key: string]: outputs.integrationspaces.BusinessProcessMappingItemResponse;
};
/**
* The business process stages.
*/
readonly businessProcessStages?: {
[key: string]: outputs.integrationspaces.BusinessProcessStageResponse;
};
/**
* The description of the business process.
*/
readonly description?: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The business process identifier.
*/
readonly identifier?: outputs.integrationspaces.BusinessProcessIdentifierResponse;
/**
* The name of the resource
*/
readonly name: string;
/**
* The status of the last operation.
*/
readonly provisioningState: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.integrationspaces.SystemDataResponse;
/**
* The table name of the business process.
*/
readonly tableName?: string;
/**
* The tracking data store reference name.
*/
readonly trackingDataStoreReferenceName?: string;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
/**
* The version of the business process.
*/
readonly version: string;
}
/**
* Get a BusinessProcess
*
* Uses Azure REST API version 2023-11-14-preview.
*/
export declare function getBusinessProcessOutput(args: GetBusinessProcessOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBusinessProcessResult>;
export interface GetBusinessProcessOutputArgs {
/**
* The name of the Application
*/
applicationName: pulumi.Input<string>;
/**
* The name of the business process
*/
businessProcessName: 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>;
}