Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.solutions.kotlin
import com.pulumi.azurenative.solutions.ApplicationArgs.builder
import com.pulumi.azurenative.solutions.kotlin.inputs.ApplicationJitAccessPolicyArgs
import com.pulumi.azurenative.solutions.kotlin.inputs.ApplicationJitAccessPolicyArgsBuilder
import com.pulumi.azurenative.solutions.kotlin.inputs.IdentityArgs
import com.pulumi.azurenative.solutions.kotlin.inputs.IdentityArgsBuilder
import com.pulumi.azurenative.solutions.kotlin.inputs.PlanArgs
import com.pulumi.azurenative.solutions.kotlin.inputs.PlanArgsBuilder
import com.pulumi.azurenative.solutions.kotlin.inputs.SkuArgs
import com.pulumi.azurenative.solutions.kotlin.inputs.SkuArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Information about managed application.
* Azure REST API version: 2021-07-01. Prior API version in Azure Native 1.x: 2019-07-01.
* Other available API versions: 2017-12-01, 2018-06-01, 2023-12-01-preview.
* ## Example Usage
* ### Create or update managed application
* ```csharp
* 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",
* });
* });
* ```
* ```go
* 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
* })
* }
* ```
* ```java
* 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.
* ```sh
* $ pulumi import azure-native:solutions:Application myManagedApplication /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Solutions/applications/{applicationName}
* ```
* @property applicationDefinitionId The fully qualified path of managed application definition Id.
* @property applicationName The name of the managed application.
* @property identity The identity of the resource.
* @property jitAccessPolicy The managed application Jit access policy.
* @property kind The kind of the managed application. Allowed values are MarketPlace and ServiceCatalog.
* @property location Resource location
* @property managedBy ID of the resource that manages this resource.
* @property managedResourceGroupId The managed resource group Id.
* @property parameters Name and value pairs that define the managed application parameters. It can be a JObject or a well formed JSON string.
* @property plan The plan information.
* @property resourceGroupName The name of the resource group. The name is case insensitive.
* @property sku The SKU of the resource.
* @property tags Resource tags
*/
public data class ApplicationArgs(
public val applicationDefinitionId: Output? = null,
public val applicationName: Output? = null,
public val identity: Output? = null,
public val jitAccessPolicy: Output? = null,
public val kind: Output? = null,
public val location: Output? = null,
public val managedBy: Output? = null,
public val managedResourceGroupId: Output? = null,
public val parameters: Output? = null,
public val plan: Output? = null,
public val resourceGroupName: Output? = null,
public val sku: Output? = null,
public val tags: Output