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

63 lines (62 loc) 1.69 kB
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>; }