@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.46 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List all effective security admin rules applied on a virtual network.
*
* Uses Azure REST API version 2021-02-01-preview.
*/
export declare function listNetworkManagerEffectiveSecurityAdminRule(args: ListNetworkManagerEffectiveSecurityAdminRuleArgs, opts?: pulumi.InvokeOptions): Promise<ListNetworkManagerEffectiveSecurityAdminRuleResult>;
export interface ListNetworkManagerEffectiveSecurityAdminRuleArgs {
/**
* 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;
/**
* The name of the virtual network.
*/
virtualNetworkName: string;
}
/**
* Result of the request to list networkManagerEffectiveSecurityAdminRules. It contains a list of groups and a skiptoken to get the next set of results.
*/
export interface ListNetworkManagerEffectiveSecurityAdminRuleResult {
/**
* 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 NetworkManagerEffectiveSecurityAdminRules
*/
readonly value?: (outputs.network.EffectiveDefaultSecurityAdminRuleResponse | outputs.network.EffectiveSecurityAdminRuleResponse)[];
}
/**
* List all effective security admin rules applied on a virtual network.
*
* Uses Azure REST API version 2021-02-01-preview.
*/
export declare function listNetworkManagerEffectiveSecurityAdminRuleOutput(args: ListNetworkManagerEffectiveSecurityAdminRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListNetworkManagerEffectiveSecurityAdminRuleResult>;
export interface ListNetworkManagerEffectiveSecurityAdminRuleOutputArgs {
/**
* 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>;
/**
* The name of the virtual network.
*/
virtualNetworkName: pulumi.Input<string>;
}