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

65 lines (64 loc) 2.28 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Lists the consent links of a connection * * Uses Azure REST API version 2016-06-01. * * Other available API versions: 2015-08-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listConnectionConsentLinks(args: ListConnectionConsentLinksArgs, opts?: pulumi.InvokeOptions): Promise<ListConnectionConsentLinksResult>; export interface ListConnectionConsentLinksArgs { /** * Connection name */ connectionName: string; /** * Collection of resources */ parameters?: inputs.web.ConsentLinkParameterDefinition[]; /** * The resource group */ resourceGroupName: string; /** * Subscription Id */ subscriptionId?: string; } /** * Collection of consent links */ export interface ListConnectionConsentLinksResult { /** * Collection of resources */ readonly value?: outputs.web.ConsentLinkDefinitionResponse[]; } /** * Lists the consent links of a connection * * Uses Azure REST API version 2016-06-01. * * Other available API versions: 2015-08-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listConnectionConsentLinksOutput(args: ListConnectionConsentLinksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListConnectionConsentLinksResult>; export interface ListConnectionConsentLinksOutputArgs { /** * Connection name */ connectionName: pulumi.Input<string>; /** * Collection of resources */ parameters?: pulumi.Input<pulumi.Input<inputs.web.ConsentLinkParameterDefinitionArgs>[]>; /** * The resource group */ resourceGroupName: pulumi.Input<string>; /** * Subscription Id */ subscriptionId?: pulumi.Input<string>; }