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

55 lines (54 loc) 1.45 kB
import * as pulumi from "@pulumi/pulumi"; /** * Get exposure control feature for specific location. * * Uses Azure REST API version 2018-06-01. */ export declare function getExposureControlFeatureValue(args: GetExposureControlFeatureValueArgs, opts?: pulumi.InvokeOptions): Promise<GetExposureControlFeatureValueResult>; export interface GetExposureControlFeatureValueArgs { /** * The feature name. */ featureName?: string; /** * The feature type. */ featureType?: string; /** * The location identifier. */ locationId: string; } /** * The exposure control response. */ export interface GetExposureControlFeatureValueResult { /** * The feature name. */ readonly featureName: string; /** * The feature value. */ readonly value: string; } /** * Get exposure control feature for specific location. * * Uses Azure REST API version 2018-06-01. */ export declare function getExposureControlFeatureValueOutput(args: GetExposureControlFeatureValueOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExposureControlFeatureValueResult>; export interface GetExposureControlFeatureValueOutputArgs { /** * The feature name. */ featureName?: pulumi.Input<string>; /** * The feature type. */ featureType?: pulumi.Input<string>; /** * The location identifier. */ locationId: pulumi.Input<string>; }