@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.14 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Retrieves a network manager security user configuration.
*
* Uses Azure REST API version 2024-05-01.
*
* Other available API versions: 2021-02-01-preview, 2022-02-01-preview, 2022-04-01-preview, 2024-03-01, 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 getSecurityUserConfiguration(args: GetSecurityUserConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetSecurityUserConfigurationResult>;
export interface GetSecurityUserConfigurationArgs {
/**
* The name of the network manager Security Configuration.
*/
configurationName: string;
/**
* The name of the network manager.
*/
networkManagerName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Defines the security user configuration
*/
export interface GetSecurityUserConfigurationResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* A description of the security user configuration.
*/
readonly description?: 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;
/**
* The provisioning state of the resource.
*/
readonly provisioningState: string;
/**
* Unique identifier for this resource.
*/
readonly resourceGuid: string;
/**
* The system metadata related to this resource.
*/
readonly systemData: outputs.network.SystemDataResponse;
/**
* Resource type.
*/
readonly type: string;
}
/**
* Retrieves a network manager security user configuration.
*
* Uses Azure REST API version 2024-05-01.
*
* Other available API versions: 2021-02-01-preview, 2022-02-01-preview, 2022-04-01-preview, 2024-03-01, 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 getSecurityUserConfigurationOutput(args: GetSecurityUserConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecurityUserConfigurationResult>;
export interface GetSecurityUserConfigurationOutputArgs {
/**
* The name of the network manager Security Configuration.
*/
configurationName: pulumi.Input<string>;
/**
* The name of the network manager.
*/
networkManagerName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}