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

98 lines (97 loc) 3.21 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the specified NSP association by name. * * 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 getNetworkSecurityPerimeterAssociation(args: GetNetworkSecurityPerimeterAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkSecurityPerimeterAssociationResult>; export interface GetNetworkSecurityPerimeterAssociationArgs { /** * The name of the NSP association. */ associationName: string; /** * The name of the network security perimeter. */ networkSecurityPerimeterName: string; /** * The name of the resource group. */ resourceGroupName: string; } /** * The NSP resource association resource */ export interface GetNetworkSecurityPerimeterAssociationResult { /** * Access mode on the association. */ readonly accessMode?: string; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Specifies if there are provisioning issues */ readonly hasProvisioningIssues: string; /** * Resource ID. */ readonly id: string; /** * Resource location. */ readonly location?: string; /** * Resource name. */ readonly name: string; /** * The PaaS resource to be associated. */ readonly privateLinkResource?: outputs.network.SubResourceResponse; /** * Profile id to which the PaaS resource is associated. */ readonly profile?: outputs.network.SubResourceResponse; /** * The provisioning state of the resource association resource. */ readonly provisioningState: string; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * Resource type. */ readonly type: string; } /** * Gets the specified NSP association by name. * * 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 getNetworkSecurityPerimeterAssociationOutput(args: GetNetworkSecurityPerimeterAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNetworkSecurityPerimeterAssociationResult>; export interface GetNetworkSecurityPerimeterAssociationOutputArgs { /** * The name of the NSP association. */ associationName: pulumi.Input<string>; /** * The name of the network security perimeter. */ networkSecurityPerimeterName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; }