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

72 lines (71 loc) 2.74 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Log Profile for Firewall * * Uses Azure REST API version 2025-02-06-preview. * * Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getFirewallLogProfile(args: GetFirewallLogProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetFirewallLogProfileResult>; export interface GetFirewallLogProfileArgs { /** * Firewall resource name */ firewallName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Log Settings for Firewall */ export interface GetFirewallLogProfileResult { /** * Application Insight details */ readonly applicationInsights?: outputs.cloudngfw.ApplicationInsightsResponse; /** * Common destination configurations */ readonly commonDestination?: outputs.cloudngfw.LogDestinationResponse; /** * Decrypt destination configurations */ readonly decryptLogDestination?: outputs.cloudngfw.LogDestinationResponse; /** * Log option SAME/INDIVIDUAL */ readonly logOption?: string; /** * One of possible log type */ readonly logType?: string; /** * Threat destination configurations */ readonly threatLogDestination?: outputs.cloudngfw.LogDestinationResponse; /** * Traffic destination configurations */ readonly trafficLogDestination?: outputs.cloudngfw.LogDestinationResponse; } /** * Log Profile for Firewall * * Uses Azure REST API version 2025-02-06-preview. * * Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getFirewallLogProfileOutput(args: GetFirewallLogProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFirewallLogProfileResult>; export interface GetFirewallLogProfileOutputArgs { /** * Firewall resource name */ firewallName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }