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

67 lines (66 loc) 1.84 kB
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>; }