Application

class Application : KotlinCustomResource

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/#accessing-any-api-version-via-local-packages for details.

Example Usage

Create or update managed application

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var application = new AzureNative.Solutions.Application("application", new()
{
ApplicationDefinitionId = "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/applicationDefinitions/myAppDef",
ApplicationName = "myManagedApplication",
Kind = "ServiceCatalog",
ManagedResourceGroupId = "/subscriptions/subid/resourceGroups/myManagedRG",
ResourceGroupName = "rg",
});
});
package main
import (
solutions "github.com/pulumi/pulumi-azure-native-sdk/solutions/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := solutions.NewApplication(ctx, "application", &solutions.ApplicationArgs{
ApplicationDefinitionId: pulumi.String("/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/applicationDefinitions/myAppDef"),
ApplicationName: pulumi.String("myManagedApplication"),
Kind: pulumi.String("ServiceCatalog"),
ManagedResourceGroupId: pulumi.String("/subscriptions/subid/resourceGroups/myManagedRG"),
ResourceGroupName: pulumi.String("rg"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.solutions.Application;
import com.pulumi.azurenative.solutions.ApplicationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var application = new Application("application", ApplicationArgs.builder()
.applicationDefinitionId("/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Solutions/applicationDefinitions/myAppDef")
.applicationName("myManagedApplication")
.kind("ServiceCatalog")
.managedResourceGroupId("/subscriptions/subid/resourceGroups/myManagedRG")
.resourceGroupName("rg")
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:solutions:Application myManagedApplication /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Solutions/applications/{applicationName}

Properties

Link copied to clipboard

The fully qualified path of managed application definition Id.

Link copied to clipboard

The collection of managed application artifacts.

Link copied to clipboard

The read-only authorizations property that is retrieved from the application package.

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard

The managed application billing details.

Link copied to clipboard

The client entity that created the JIT request.

Link copied to clipboard

The read-only customer support property that is retrieved from the application package.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

The identity of the resource.

Link copied to clipboard

The managed application Jit access policy.

Link copied to clipboard
val kind: Output<String>

The kind of the managed application. Allowed values are MarketPlace and ServiceCatalog.

Link copied to clipboard
val location: Output<String>?

Resource location

Link copied to clipboard
val managedBy: Output<String>?

ID of the resource that manages this resource.

Link copied to clipboard

The managed resource group Id.

Link copied to clipboard
val managementMode: Output<String>

The managed application management mode.

Link copied to clipboard
val name: Output<String>

Resource name

Link copied to clipboard
val outputs: Output<Any>

Name and value pairs that define the managed application outputs.

Link copied to clipboard
val parameters: Output<Any>?

Name and value pairs that define the managed application parameters. It can be a JObject or a well formed JSON string.

Link copied to clipboard
val plan: Output<PlanResponse>?

The plan information.

Link copied to clipboard

The managed application provisioning state.

Link copied to clipboard

The publisher tenant Id.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val sku: Output<SkuResponse>?

The SKU of the resource.

Link copied to clipboard

The read-only support URLs property that is retrieved from the application package.

Link copied to clipboard

Metadata pertaining to creation and last modification of the resource.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Resource tags

Link copied to clipboard
val type: Output<String>

Resource type

Link copied to clipboard

The client entity that last updated the JIT request.

Link copied to clipboard
val urn: Output<String>