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

129 lines (128 loc) 3.91 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a user rule. * * Uses Azure REST API version 2022-04-01-preview. * * Other available API versions: 2021-02-01-preview, 2022-02-01-preview. 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 getUserRule(args: GetUserRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetUserRuleResult>; export interface GetUserRuleArgs { /** * The name of the network manager Security Configuration. */ configurationName: string; /** * The name of the network manager. */ networkManagerName: string; /** * The name of the resource group. */ 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 GetUserRuleResult { /** * 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; /** * Whether the rule is custom or default. * Expected value is 'Custom'. */ readonly kind: "Custom"; /** * 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; /** * 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 user rule. * * Uses Azure REST API version 2022-04-01-preview. * * Other available API versions: 2021-02-01-preview, 2022-02-01-preview. 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 getUserRuleOutput(args: GetUserRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetUserRuleResult>; export interface GetUserRuleOutputArgs { /** * 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. */ 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>; }