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

128 lines (127 loc) 4.01 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a security user rule. * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2024-03-01, 2024-07-01, 2024-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getSecurityUserRule(args: GetSecurityUserRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetSecurityUserRuleResult>; export interface GetSecurityUserRuleArgs { /** * The name of the network manager Security Configuration. */ configurationName: string; /** * The name of the network manager. */ networkManagerName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the network manager security Configuration rule collection. */ ruleCollectionName: string; /** * The name of the rule. */ ruleName: string; } /** * Network security user rule. */ export interface GetSecurityUserRuleResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * A description for this rule. */ readonly description?: string; /** * The destination port ranges. */ readonly destinationPortRanges?: string[]; /** * The destination address prefixes. CIDR or destination IP ranges. */ readonly destinations?: outputs.network.AddressPrefixItemResponse[]; /** * Indicates if the traffic matched against the rule in inbound or outbound. */ readonly direction: string; /** * A unique read-only string that changes whenever the resource is updated. */ readonly etag: string; /** * Resource ID. */ readonly id: string; /** * Resource name. */ readonly name: string; /** * Network protocol this rule applies to. */ readonly protocol: string; /** * The provisioning state of the security configuration user rule resource. */ readonly provisioningState: string; /** * Unique identifier for this resource. */ readonly resourceGuid: string; /** * The source port ranges. */ readonly sourcePortRanges?: string[]; /** * The CIDR or source IP ranges. */ readonly sources?: outputs.network.AddressPrefixItemResponse[]; /** * The system metadata related to this resource. */ readonly systemData: outputs.network.SystemDataResponse; /** * Resource type. */ readonly type: string; } /** * Gets a security user rule. * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2024-03-01, 2024-07-01, 2024-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getSecurityUserRuleOutput(args: GetSecurityUserRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecurityUserRuleResult>; export interface GetSecurityUserRuleOutputArgs { /** * The name of the network manager Security Configuration. */ configurationName: pulumi.Input<string>; /** * The name of the network manager. */ networkManagerName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the network manager security Configuration rule collection. */ ruleCollectionName: pulumi.Input<string>; /** * The name of the rule. */ ruleName: pulumi.Input<string>; }