@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.44 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a AuthenticationSetting
*
* Uses Azure REST API version 2025-05-01-preview.
*/
export declare function getAuthenticationSetting(args: GetAuthenticationSettingArgs, opts?: pulumi.InvokeOptions): Promise<GetAuthenticationSettingResult>;
export interface GetAuthenticationSettingArgs {
/**
* Name of the authentication setting. Must be unique within a health model.
*/
authenticationSettingName: string;
/**
* Name of health model resource
*/
healthModelName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* An authentication setting in a health model
*/
export interface GetAuthenticationSettingResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The resource-specific properties for this resource.
*/
readonly properties: outputs.cloudhealth.ManagedIdentityAuthenticationSettingPropertiesResponse;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.cloudhealth.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get a AuthenticationSetting
*
* Uses Azure REST API version 2025-05-01-preview.
*/
export declare function getAuthenticationSettingOutput(args: GetAuthenticationSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAuthenticationSettingResult>;
export interface GetAuthenticationSettingOutputArgs {
/**
* Name of the authentication setting. Must be unique within a health model.
*/
authenticationSettingName: pulumi.Input<string>;
/**
* Name of health model resource
*/
healthModelName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}