@kengachu-pulumi/azure-native-apimanagement
Version:
Pulumi Azure Native package for apimanagement
41 lines (40 loc) • 1.36 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets the secret validation key of the DelegationSettings.
* Azure REST API version: 2021-08-01.
*/
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.
* Azure REST API version: 2021-08-01.
*/
export declare function listDelegationSettingSecretsOutput(args: ListDelegationSettingSecretsOutputArgs, opts?: pulumi.InvokeOptions): 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>;
}