UNPKG

@kengachu-pulumi/azure-native-web

Version:

Pulumi Azure Native package for web

64 lines (63 loc) 2.23 kB
import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * 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?: types.inputs.ConsentLinkParameterDefinition[]; /** * The resource group */ resourceGroupName: string; /** * Subscription Id */ subscriptionId?: string; } /** * Collection of consent links */ export interface ListConnectionConsentLinksResult { /** * Collection of resources */ readonly value?: types.outputs.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<types.inputs.ConsentLinkParameterDefinitionArgs>[]>; /** * The resource group */ resourceGroupName: pulumi.Input<string>; /** * Subscription Id */ subscriptionId?: pulumi.Input<string>; }