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

154 lines (153 loc) 5.06 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the managed application. * * Uses Azure REST API version 2021-07-01. * * Other available API versions: 2023-12-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native solutions [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationResult>; export interface GetApplicationArgs { /** * The name of the managed application. */ applicationName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Information about managed application. */ export interface GetApplicationResult { /** * The fully qualified path of managed application definition Id. */ readonly applicationDefinitionId?: string; /** * The collection of managed application artifacts. */ readonly artifacts: outputs.solutions.ApplicationArtifactResponse[]; /** * The read-only authorizations property that is retrieved from the application package. */ readonly authorizations: outputs.solutions.ApplicationAuthorizationResponse[]; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The managed application billing details. */ readonly billingDetails: outputs.solutions.ApplicationBillingDetailsDefinitionResponse; /** * The client entity that created the JIT request. */ readonly createdBy: outputs.solutions.ApplicationClientDetailsResponse; /** * The read-only customer support property that is retrieved from the application package. */ readonly customerSupport: outputs.solutions.ApplicationPackageContactResponse; /** * Resource ID */ readonly id: string; /** * The identity of the resource. */ readonly identity?: outputs.solutions.IdentityResponse; /** * The managed application Jit access policy. */ readonly jitAccessPolicy?: outputs.solutions.ApplicationJitAccessPolicyResponse; /** * The kind of the managed application. Allowed values are MarketPlace and ServiceCatalog. */ readonly kind: string; /** * Resource location */ readonly location?: string; /** * ID of the resource that manages this resource. */ readonly managedBy?: string; /** * The managed resource group Id. */ readonly managedResourceGroupId?: string; /** * The managed application management mode. */ readonly managementMode: string; /** * Resource name */ readonly name: string; /** * Name and value pairs that define the managed application outputs. */ readonly outputs: any; /** * Name and value pairs that define the managed application parameters. It can be a JObject or a well formed JSON string. */ readonly parameters?: any; /** * The plan information. */ readonly plan?: outputs.solutions.PlanResponse; /** * The managed application provisioning state. */ readonly provisioningState: string; /** * The publisher tenant Id. */ readonly publisherTenantId: string; /** * The SKU of the resource. */ readonly sku?: outputs.solutions.SkuResponse; /** * The read-only support URLs property that is retrieved from the application package. */ readonly supportUrls: outputs.solutions.ApplicationPackageSupportUrlsResponse; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: outputs.solutions.SystemDataResponse; /** * Resource tags */ readonly tags?: { [key: string]: string; }; /** * Resource type */ readonly type: string; /** * The client entity that last updated the JIT request. */ readonly updatedBy: outputs.solutions.ApplicationClientDetailsResponse; } /** * Gets the managed application. * * Uses Azure REST API version 2021-07-01. * * Other available API versions: 2023-12-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native solutions [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationResult>; export interface GetApplicationOutputArgs { /** * The name of the managed application. */ applicationName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }