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

64 lines (63 loc) 2.4 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists Active Security User Rules in a network manager. * * Uses Azure REST API version 2021-02-01-preview. */ export declare function listActiveSecurityUserRule(args: ListActiveSecurityUserRuleArgs, opts?: pulumi.InvokeOptions): Promise<ListActiveSecurityUserRuleResult>; export interface ListActiveSecurityUserRuleArgs { /** * The name of the network manager. */ networkManagerName: string; /** * List of regions. */ regions?: string[]; /** * The name of the resource group. */ resourceGroupName: string; /** * When present, the value can be passed to a subsequent query call (together with the same query and scopes used in the current request) to retrieve the next page of data. */ skipToken?: string; } /** * Result of the request to list active security user rules. It contains a list of active security user rules and a skiptoken to get the next set of results. */ export interface ListActiveSecurityUserRuleResult { /** * When present, the value can be passed to a subsequent query call (together with the same query and scopes used in the current request) to retrieve the next page of data. */ readonly skipToken?: string; /** * Gets a page of active security user rules. */ readonly value?: (outputs.network.ActiveDefaultSecurityUserRuleResponse | outputs.network.ActiveSecurityUserRuleResponse)[]; } /** * Lists Active Security User Rules in a network manager. * * Uses Azure REST API version 2021-02-01-preview. */ export declare function listActiveSecurityUserRuleOutput(args: ListActiveSecurityUserRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListActiveSecurityUserRuleResult>; export interface ListActiveSecurityUserRuleOutputArgs { /** * The name of the network manager. */ networkManagerName: pulumi.Input<string>; /** * List of regions. */ regions?: pulumi.Input<pulumi.Input<string>[]>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; /** * When present, the value can be passed to a subsequent query call (together with the same query and scopes used in the current request) to retrieve the next page of data. */ skipToken?: pulumi.Input<string>; }