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

76 lines (75 loc) 2.87 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the NSP logging configuration. * * Uses Azure REST API version 2024-06-01-preview. * * Other available API versions: 2024-07-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 getNetworkSecurityPerimeterLoggingConfiguration(args: GetNetworkSecurityPerimeterLoggingConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkSecurityPerimeterLoggingConfigurationResult>; export interface GetNetworkSecurityPerimeterLoggingConfigurationArgs { /** * The name of the NSP logging configuration. Accepts 'instance' as name. */ loggingConfigurationName: string; /** * The name of the network security perimeter. */ networkSecurityPerimeterName: string; /** * The name of the resource group. */ resourceGroupName: string; } /** * The NSP logging configuration */ export interface GetNetworkSecurityPerimeterLoggingConfigurationResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: 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; /** * Properties of the NSP logging configuration. */ readonly properties: outputs.network.NspLoggingConfigurationPropertiesResponse; /** * Resource type. */ readonly type: string; } /** * Gets the NSP logging configuration. * * Uses Azure REST API version 2024-06-01-preview. * * Other available API versions: 2024-07-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 getNetworkSecurityPerimeterLoggingConfigurationOutput(args: GetNetworkSecurityPerimeterLoggingConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNetworkSecurityPerimeterLoggingConfigurationResult>; export interface GetNetworkSecurityPerimeterLoggingConfigurationOutputArgs { /** * The name of the NSP logging configuration. Accepts 'instance' as name. */ loggingConfigurationName: pulumi.Input<string>; /** * The name of the network security perimeter. */ networkSecurityPerimeterName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; }