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

128 lines (127 loc) 3.55 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a workflow. * * Uses Azure REST API version 2019-05-01. * * Other available API versions: 2015-02-01-preview, 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 getWorkflow(args: GetWorkflowArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkflowResult>; export interface GetWorkflowArgs { /** * The resource group name. */ resourceGroupName: string; /** * The workflow name. */ workflowName: string; } /** * The workflow type. */ export interface GetWorkflowResult { /** * The access control configuration. */ readonly accessControl?: outputs.logic.FlowAccessControlConfigurationResponse; /** * Gets the access endpoint. */ readonly accessEndpoint: string; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Gets the changed time. */ readonly changedTime: string; /** * Gets the created time. */ readonly createdTime: string; /** * The definition. */ readonly definition?: any; /** * The endpoints configuration. */ readonly endpointsConfiguration?: outputs.logic.FlowEndpointsConfigurationResponse; /** * The resource id. */ readonly id: string; /** * Managed service identity properties. */ readonly identity?: outputs.logic.ManagedServiceIdentityResponse; /** * The integration account. */ readonly integrationAccount?: outputs.logic.ResourceReferenceResponse; /** * The integration service environment. */ readonly integrationServiceEnvironment?: outputs.logic.ResourceReferenceResponse; /** * The resource location. */ readonly location?: string; /** * Gets the resource name. */ readonly name: string; /** * The parameters. */ readonly parameters?: { [key: string]: outputs.logic.WorkflowParameterResponse; }; /** * Gets the provisioning state. */ readonly provisioningState: string; /** * The sku. */ readonly sku: outputs.logic.SkuResponse; /** * The state. */ readonly state?: string; /** * The resource tags. */ readonly tags?: { [key: string]: string; }; /** * Gets the resource type. */ readonly type: string; /** * Gets the version. */ readonly version: string; } /** * Gets a workflow. * * Uses Azure REST API version 2019-05-01. * * Other available API versions: 2015-02-01-preview, 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 getWorkflowOutput(args: GetWorkflowOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkflowResult>; export interface GetWorkflowOutputArgs { /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; /** * The workflow name. */ workflowName: pulumi.Input<string>; }