@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.87 kB
TypeScript
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>;
}