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

47 lines (46 loc) 1.99 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets the secret validation key of the DelegationSettings. * * Uses Azure REST API version 2021-08-01. * * Other available API versions: 2021-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listDelegationSettingSecrets(args: ListDelegationSettingSecretsArgs, opts?: pulumi.InvokeOptions): Promise<ListDelegationSettingSecretsResult>; export interface ListDelegationSettingSecretsArgs { /** * The name of the resource group. */ resourceGroupName: string; /** * The name of the API Management service. */ serviceName: string; } /** * Client or app secret used in IdentityProviders, Aad, OpenID or OAuth. */ export interface ListDelegationSettingSecretsResult { /** * This is secret value of the validation key in portal settings. */ readonly validationKey?: string; } /** * Gets the secret validation key of the DelegationSettings. * * Uses Azure REST API version 2021-08-01. * * Other available API versions: 2021-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listDelegationSettingSecretsOutput(args: ListDelegationSettingSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListDelegationSettingSecretsResult>; export interface ListDelegationSettingSecretsOutputArgs { /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; /** * The name of the API Management service. */ serviceName: pulumi.Input<string>; }