@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.45 kB
TypeScript
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>;
}