@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.69 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Get exposure control feature for specific factory.
*
* Uses Azure REST API version 2018-06-01.
*/
export declare function getExposureControlFeatureValueByFactory(args: GetExposureControlFeatureValueByFactoryArgs, opts?: pulumi.InvokeOptions): Promise<GetExposureControlFeatureValueByFactoryResult>;
export interface GetExposureControlFeatureValueByFactoryArgs {
/**
* The factory name.
*/
factoryName: string;
/**
* The feature name.
*/
featureName?: string;
/**
* The feature type.
*/
featureType?: string;
/**
* The resource group name.
*/
resourceGroupName: string;
}
/**
* The exposure control response.
*/
export interface GetExposureControlFeatureValueByFactoryResult {
/**
* The feature name.
*/
readonly featureName: string;
/**
* The feature value.
*/
readonly value: string;
}
/**
* Get exposure control feature for specific factory.
*
* Uses Azure REST API version 2018-06-01.
*/
export declare function getExposureControlFeatureValueByFactoryOutput(args: GetExposureControlFeatureValueByFactoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExposureControlFeatureValueByFactoryResult>;
export interface GetExposureControlFeatureValueByFactoryOutputArgs {
/**
* The factory name.
*/
factoryName: pulumi.Input<string>;
/**
* The feature name.
*/
featureName?: pulumi.Input<string>;
/**
* The feature type.
*/
featureType?: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
}