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

75 lines (74 loc) 1.89 kB
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>; }