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

114 lines (113 loc) 3.33 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get Network Tap Rule resource details. * * Uses Azure REST API version 2023-06-15. */ export declare function getNetworkTapRule(args: GetNetworkTapRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkTapRuleResult>; export interface GetNetworkTapRuleArgs { /** * Name of the Network Tap Rule. */ networkTapRuleName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * The NetworkTapRule resource definition. */ export interface GetNetworkTapRuleResult { /** * Administrative state of the resource. */ readonly administrativeState: string; /** * Switch configuration description. */ readonly annotation?: string; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Configuration state of the resource. */ readonly configurationState: string; /** * Input method to configure Network Tap Rule. */ readonly configurationType: string; /** * List of dynamic match configurations. */ readonly dynamicMatchConfigurations?: outputs.managednetworkfabric.CommonDynamicMatchConfigurationResponse[]; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The last sync timestamp. */ readonly lastSyncedTime: string; /** * The geo-location where the resource lives */ readonly location: string; /** * List of match configurations. */ readonly matchConfigurations?: outputs.managednetworkfabric.NetworkTapRuleMatchConfigurationResponse[]; /** * The name of the resource */ readonly name: string; /** * The ARM resource Id of the NetworkTap. */ readonly networkTapId: string; /** * Polling interval in seconds. */ readonly pollingIntervalInSeconds?: number; /** * Provisioning state of the resource. */ readonly provisioningState: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.managednetworkfabric.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * Network Tap Rules file URL. */ readonly tapRulesUrl?: string; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Get Network Tap Rule resource details. * * Uses Azure REST API version 2023-06-15. */ export declare function getNetworkTapRuleOutput(args: GetNetworkTapRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNetworkTapRuleResult>; export interface GetNetworkTapRuleOutputArgs { /** * Name of the Network Tap Rule. */ networkTapRuleName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }