@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.89 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets an IpFilterRule for a Namespace by rule name.
*
* Uses Azure REST API version 2018-01-01-preview.
*/
export declare function getNamespaceIpFilterRule(args: GetNamespaceIpFilterRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetNamespaceIpFilterRuleResult>;
export interface GetNamespaceIpFilterRuleArgs {
/**
* The IP Filter Rule name.
*/
ipFilterRuleName: string;
/**
* The namespace name
*/
namespaceName: string;
/**
* Name of the Resource group within the Azure subscription.
*/
resourceGroupName: string;
}
/**
* Single item in a List or Get IpFilterRules operation
*/
export interface GetNamespaceIpFilterRuleResult {
/**
* The IP Filter Action
*/
readonly action?: string;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* IP Filter name
*/
readonly filterName?: string;
/**
* Resource Id
*/
readonly id: string;
/**
* IP Mask
*/
readonly ipMask?: string;
/**
* Resource name
*/
readonly name: string;
/**
* Resource type
*/
readonly type: string;
}
/**
* Gets an IpFilterRule for a Namespace by rule name.
*
* Uses Azure REST API version 2018-01-01-preview.
*/
export declare function getNamespaceIpFilterRuleOutput(args: GetNamespaceIpFilterRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNamespaceIpFilterRuleResult>;
export interface GetNamespaceIpFilterRuleOutputArgs {
/**
* The IP Filter Rule name.
*/
ipFilterRuleName: pulumi.Input<string>;
/**
* The namespace name
*/
namespaceName: pulumi.Input<string>;
/**
* Name of the Resource group within the Azure subscription.
*/
resourceGroupName: pulumi.Input<string>;
}