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

200 lines (199 loc) 7.23 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Information about managed application. * * Uses Azure REST API version 2021-07-01. In version 2.x of the Azure Native provider, it used 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 class Application extends pulumi.CustomResource { /** * Get an existing Application resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Application; /** * Returns true if the given object is an instance of Application. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Application; /** * The fully qualified path of managed application definition Id. */ readonly applicationDefinitionId: pulumi.Output<string | undefined>; /** * The collection of managed application artifacts. */ readonly artifacts: pulumi.Output<outputs.solutions.ApplicationArtifactResponse[]>; /** * The read-only authorizations property that is retrieved from the application package. */ readonly authorizations: pulumi.Output<outputs.solutions.ApplicationAuthorizationResponse[]>; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * The managed application billing details. */ readonly billingDetails: pulumi.Output<outputs.solutions.ApplicationBillingDetailsDefinitionResponse>; /** * The client entity that created the JIT request. */ readonly createdBy: pulumi.Output<outputs.solutions.ApplicationClientDetailsResponse>; /** * The read-only customer support property that is retrieved from the application package. */ readonly customerSupport: pulumi.Output<outputs.solutions.ApplicationPackageContactResponse>; /** * The identity of the resource. */ readonly identity: pulumi.Output<outputs.solutions.IdentityResponse | undefined>; /** * The managed application Jit access policy. */ readonly jitAccessPolicy: pulumi.Output<outputs.solutions.ApplicationJitAccessPolicyResponse | undefined>; /** * The kind of the managed application. Allowed values are MarketPlace and ServiceCatalog. */ readonly kind: pulumi.Output<string>; /** * Resource location */ readonly location: pulumi.Output<string | undefined>; /** * ID of the resource that manages this resource. */ readonly managedBy: pulumi.Output<string | undefined>; /** * The managed resource group Id. */ readonly managedResourceGroupId: pulumi.Output<string | undefined>; /** * The managed application management mode. */ readonly managementMode: pulumi.Output<string>; /** * Resource name */ readonly name: pulumi.Output<string>; /** * Name and value pairs that define the managed application outputs. */ readonly outputs: pulumi.Output<any>; /** * Name and value pairs that define the managed application parameters. It can be a JObject or a well formed JSON string. */ readonly parameters: pulumi.Output<any | undefined>; /** * The plan information. */ readonly plan: pulumi.Output<outputs.solutions.PlanResponse | undefined>; /** * The managed application provisioning state. */ readonly provisioningState: pulumi.Output<string>; /** * The publisher tenant Id. */ readonly publisherTenantId: pulumi.Output<string>; /** * The SKU of the resource. */ readonly sku: pulumi.Output<outputs.solutions.SkuResponse | undefined>; /** * The read-only support URLs property that is retrieved from the application package. */ readonly supportUrls: pulumi.Output<outputs.solutions.ApplicationPackageSupportUrlsResponse>; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: pulumi.Output<outputs.solutions.SystemDataResponse>; /** * Resource tags */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Resource type */ readonly type: pulumi.Output<string>; /** * The client entity that last updated the JIT request. */ readonly updatedBy: pulumi.Output<outputs.solutions.ApplicationClientDetailsResponse>; /** * Create a Application resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ApplicationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Application resource. */ export interface ApplicationArgs { /** * The fully qualified path of managed application definition Id. */ applicationDefinitionId?: pulumi.Input<string>; /** * The name of the managed application. */ applicationName?: pulumi.Input<string>; /** * The identity of the resource. */ identity?: pulumi.Input<inputs.solutions.IdentityArgs>; /** * The managed application Jit access policy. */ jitAccessPolicy?: pulumi.Input<inputs.solutions.ApplicationJitAccessPolicyArgs>; /** * The kind of the managed application. Allowed values are MarketPlace and ServiceCatalog. */ kind: pulumi.Input<string>; /** * Resource location */ location?: pulumi.Input<string>; /** * ID of the resource that manages this resource. */ managedBy?: pulumi.Input<string>; /** * The managed resource group Id. */ managedResourceGroupId?: pulumi.Input<string>; /** * Name and value pairs that define the managed application parameters. It can be a JObject or a well formed JSON string. */ parameters?: any; /** * The plan information. */ plan?: pulumi.Input<inputs.solutions.PlanArgs>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The SKU of the resource. */ sku?: pulumi.Input<inputs.solutions.SkuArgs>; /** * Resource tags */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; }