@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.26 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 getSecurityConnectorApplication(args: GetSecurityConnectorApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetSecurityConnectorApplicationResult>;
export interface GetSecurityConnectorApplicationArgs {
/**
* The security Application key - unique key for the standard application
*/
applicationId: string;
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The security connector name.
*/
securityConnectorName: string;
}
/**
* Security Application over a given scope
*/
export interface GetSecurityConnectorApplicationResult {
/**
* 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 getSecurityConnectorApplicationOutput(args: GetSecurityConnectorApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecurityConnectorApplicationResult>;
export interface GetSecurityConnectorApplicationOutputArgs {
/**
* The security Application key - unique key for the standard application
*/
applicationId: pulumi.Input<string>;
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The security connector name.
*/
securityConnectorName: pulumi.Input<string>;
}