@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.6 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Get the callback url for a trigger of a workflow version.
*
* Uses Azure REST API version 2016-06-01.
*/
export declare function listWorkflowVersionCallbackUrl(args: ListWorkflowVersionCallbackUrlArgs, opts?: pulumi.InvokeOptions): Promise<ListWorkflowVersionCallbackUrlResult>;
export interface ListWorkflowVersionCallbackUrlArgs {
/**
* The key type.
*/
keyType?: enums.logic.KeyType;
/**
* The expiry time.
*/
notAfter?: string;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The workflow trigger name.
*/
triggerName: string;
/**
* The workflow versionId.
*/
versionId: string;
/**
* The workflow name.
*/
workflowName: string;
}
/**
* The workflow trigger callback URL.
*/
export interface ListWorkflowVersionCallbackUrlResult {
/**
* Gets the workflow trigger callback URL base path.
*/
readonly basePath: string;
/**
* Gets the workflow trigger callback URL HTTP method.
*/
readonly method: string;
/**
* Gets the workflow trigger callback URL query parameters.
*/
readonly queries?: outputs.logic.WorkflowTriggerListCallbackUrlQueriesResponse;
/**
* Gets the workflow trigger callback URL relative path.
*/
readonly relativePath: string;
/**
* Gets the workflow trigger callback URL relative path parameters.
*/
readonly relativePathParameters?: string[];
/**
* Gets the workflow trigger callback URL.
*/
readonly value: string;
}
/**
* Get the callback url for a trigger of a workflow version.
*
* Uses Azure REST API version 2016-06-01.
*/
export declare function listWorkflowVersionCallbackUrlOutput(args: ListWorkflowVersionCallbackUrlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListWorkflowVersionCallbackUrlResult>;
export interface ListWorkflowVersionCallbackUrlOutputArgs {
/**
* The key type.
*/
keyType?: pulumi.Input<enums.logic.KeyType>;
/**
* The expiry time.
*/
notAfter?: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The workflow trigger name.
*/
triggerName: pulumi.Input<string>;
/**
* The workflow versionId.
*/
versionId: pulumi.Input<string>;
/**
* The workflow name.
*/
workflowName: pulumi.Input<string>;
}