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

76 lines (75 loc) 2.96 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get the content callback url for an integration account assembly. * * Uses Azure REST API version 2019-05-01. * * Other available API versions: 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 listIntegrationAccountAssemblyContentCallbackUrl(args: ListIntegrationAccountAssemblyContentCallbackUrlArgs, opts?: pulumi.InvokeOptions): Promise<ListIntegrationAccountAssemblyContentCallbackUrlResult>; export interface ListIntegrationAccountAssemblyContentCallbackUrlArgs { /** * The assembly artifact name. */ assemblyArtifactName: string; /** * The integration account name. */ integrationAccountName: string; /** * The resource group name. */ resourceGroupName: string; } /** * The workflow trigger callback URL. */ export interface ListIntegrationAccountAssemblyContentCallbackUrlResult { /** * 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 content callback url for an integration account assembly. * * Uses Azure REST API version 2019-05-01. * * Other available API versions: 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 listIntegrationAccountAssemblyContentCallbackUrlOutput(args: ListIntegrationAccountAssemblyContentCallbackUrlOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListIntegrationAccountAssemblyContentCallbackUrlResult>; export interface ListIntegrationAccountAssemblyContentCallbackUrlOutputArgs { /** * The assembly artifact name. */ assemblyArtifactName: pulumi.Input<string>; /** * The integration account name. */ integrationAccountName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; }