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.44 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. */ export declare function getDefaultUserRule(args: GetDefaultUserRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetDefaultUserRuleResult>; export interface GetDefaultUserRuleArgs { /** * 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 default user rule. */ export interface GetDefaultUserRuleResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * A description for this rule. Restricted to 140 chars. */ 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; /** * Default rule flag. */ readonly flag?: string; /** * Resource ID. */ readonly id: string; /** * Whether the rule is custom or default. * Expected value is 'Default'. */ readonly kind: "Default"; /** * 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. */ export declare function getDefaultUserRuleOutput(args: GetDefaultUserRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDefaultUserRuleResult>; export interface GetDefaultUserRuleOutputArgs { /** * 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>; }