@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.84 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets the specified Data Lake Store trusted identity provider.
*
* Uses Azure REST API version 2016-11-01.
*/
export declare function getTrustedIdProvider(args: GetTrustedIdProviderArgs, opts?: pulumi.InvokeOptions): Promise<GetTrustedIdProviderResult>;
export interface GetTrustedIdProviderArgs {
/**
* The name of the Data Lake Store account.
*/
accountName: string;
/**
* The name of the Azure resource group.
*/
resourceGroupName: string;
/**
* The name of the trusted identity provider to retrieve.
*/
trustedIdProviderName: string;
}
/**
* Data Lake Store trusted identity provider information.
*/
export interface GetTrustedIdProviderResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The resource identifier.
*/
readonly id: string;
/**
* The URL of this trusted identity provider.
*/
readonly idProvider: string;
/**
* The resource name.
*/
readonly name: string;
/**
* The resource type.
*/
readonly type: string;
}
/**
* Gets the specified Data Lake Store trusted identity provider.
*
* Uses Azure REST API version 2016-11-01.
*/
export declare function getTrustedIdProviderOutput(args: GetTrustedIdProviderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTrustedIdProviderResult>;
export interface GetTrustedIdProviderOutputArgs {
/**
* The name of the Data Lake Store account.
*/
accountName: pulumi.Input<string>;
/**
* The name of the Azure resource group.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the trusted identity provider to retrieve.
*/
trustedIdProviderName: pulumi.Input<string>;
}