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

75 lines (74 loc) 2.26 kB
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>; }