@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.61 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Get a specific application for the requested scope by applicationId
*
* Uses Azure REST API version 2022-07-01-preview.
*/
export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationResult>;
export interface GetApplicationArgs {
/**
* The security Application key - unique key for the standard application
*/
applicationId: string;
}
/**
* Security Application over a given scope
*/
export interface GetApplicationResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* description of the application
*/
readonly description?: string;
/**
* display name of the application
*/
readonly displayName?: string;
/**
* Resource Id
*/
readonly id: string;
/**
* Resource name
*/
readonly name: string;
/**
* The application source, what it affects, e.g. Assessments
*/
readonly sourceResourceType: string;
/**
* Resource type
*/
readonly type: string;
}
/**
* Get a specific application for the requested scope by applicationId
*
* Uses Azure REST API version 2022-07-01-preview.
*/
export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationResult>;
export interface GetApplicationOutputArgs {
/**
* The security Application key - unique key for the standard application
*/
applicationId: pulumi.Input<string>;
}