1. Packages
  2. Azure Classic
  3. API Docs
  4. managedapplication
  5. Definition

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

azure.managedapplication.Definition

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

    Manages a Managed Application Definition.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const current = azure.core.getClientConfig({});
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleDefinition = new azure.managedapplication.Definition("example", {
        name: "examplemanagedapplicationdefinition",
        location: example.location,
        resourceGroupName: example.name,
        lockLevel: "ReadOnly",
        packageFileUri: "https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip",
        displayName: "TestManagedApplicationDefinition",
        description: "Test Managed Application Definition",
        authorizations: [{
            servicePrincipalId: current.then(current => current.objectId),
            roleDefinitionId: "a094b430-dad3-424d-ae58-13f72fd72591",
        }],
    });
    
    import pulumi
    import pulumi_azure as azure
    
    current = azure.core.get_client_config()
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_definition = azure.managedapplication.Definition("example",
        name="examplemanagedapplicationdefinition",
        location=example.location,
        resource_group_name=example.name,
        lock_level="ReadOnly",
        package_file_uri="https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip",
        display_name="TestManagedApplicationDefinition",
        description="Test Managed Application Definition",
        authorizations=[azure.managedapplication.DefinitionAuthorizationArgs(
            service_principal_id=current.object_id,
            role_definition_id="a094b430-dad3-424d-ae58-13f72fd72591",
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/managedapplication"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		current, err := core.GetClientConfig(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = managedapplication.NewDefinition(ctx, "example", &managedapplication.DefinitionArgs{
    			Name:              pulumi.String("examplemanagedapplicationdefinition"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			LockLevel:         pulumi.String("ReadOnly"),
    			PackageFileUri:    pulumi.String("https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip"),
    			DisplayName:       pulumi.String("TestManagedApplicationDefinition"),
    			Description:       pulumi.String("Test Managed Application Definition"),
    			Authorizations: managedapplication.DefinitionAuthorizationArray{
    				&managedapplication.DefinitionAuthorizationArgs{
    					ServicePrincipalId: pulumi.String(current.ObjectId),
    					RoleDefinitionId:   pulumi.String("a094b430-dad3-424d-ae58-13f72fd72591"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var current = Azure.Core.GetClientConfig.Invoke();
    
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleDefinition = new Azure.ManagedApplication.Definition("example", new()
        {
            Name = "examplemanagedapplicationdefinition",
            Location = example.Location,
            ResourceGroupName = example.Name,
            LockLevel = "ReadOnly",
            PackageFileUri = "https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip",
            DisplayName = "TestManagedApplicationDefinition",
            Description = "Test Managed Application Definition",
            Authorizations = new[]
            {
                new Azure.ManagedApplication.Inputs.DefinitionAuthorizationArgs
                {
                    ServicePrincipalId = current.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
                    RoleDefinitionId = "a094b430-dad3-424d-ae58-13f72fd72591",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.CoreFunctions;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.managedapplication.Definition;
    import com.pulumi.azure.managedapplication.DefinitionArgs;
    import com.pulumi.azure.managedapplication.inputs.DefinitionAuthorizationArgs;
    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) {
            final var current = CoreFunctions.getClientConfig();
    
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleDefinition = new Definition("exampleDefinition", DefinitionArgs.builder()        
                .name("examplemanagedapplicationdefinition")
                .location(example.location())
                .resourceGroupName(example.name())
                .lockLevel("ReadOnly")
                .packageFileUri("https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip")
                .displayName("TestManagedApplicationDefinition")
                .description("Test Managed Application Definition")
                .authorizations(DefinitionAuthorizationArgs.builder()
                    .servicePrincipalId(current.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
                    .roleDefinitionId("a094b430-dad3-424d-ae58-13f72fd72591")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleDefinition:
        type: azure:managedapplication:Definition
        name: example
        properties:
          name: examplemanagedapplicationdefinition
          location: ${example.location}
          resourceGroupName: ${example.name}
          lockLevel: ReadOnly
          packageFileUri: https://github.com/Azure/azure-managedapp-samples/raw/master/Managed Application Sample Packages/201-managed-storage-account/managedstorage.zip
          displayName: TestManagedApplicationDefinition
          description: Test Managed Application Definition
          authorizations:
            - servicePrincipalId: ${current.objectId}
              roleDefinitionId: a094b430-dad3-424d-ae58-13f72fd72591
    variables:
      current:
        fn::invoke:
          Function: azure:core:getClientConfig
          Arguments: {}
    

    Create Definition Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Definition(name: string, args: DefinitionArgs, opts?: CustomResourceOptions);
    @overload
    def Definition(resource_name: str,
                   args: DefinitionArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Definition(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   display_name: Optional[str] = None,
                   lock_level: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   authorizations: Optional[Sequence[DefinitionAuthorizationArgs]] = None,
                   create_ui_definition: Optional[str] = None,
                   description: Optional[str] = None,
                   location: Optional[str] = None,
                   main_template: Optional[str] = None,
                   name: Optional[str] = None,
                   package_enabled: Optional[bool] = None,
                   package_file_uri: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewDefinition(ctx *Context, name string, args DefinitionArgs, opts ...ResourceOption) (*Definition, error)
    public Definition(string name, DefinitionArgs args, CustomResourceOptions? opts = null)
    public Definition(String name, DefinitionArgs args)
    public Definition(String name, DefinitionArgs args, CustomResourceOptions options)
    
    type: azure:managedapplication:Definition
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DefinitionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DefinitionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DefinitionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DefinitionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DefinitionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var azureDefinitionResource = new Azure.ManagedApplication.Definition("azureDefinitionResource", new()
    {
        DisplayName = "string",
        LockLevel = "string",
        ResourceGroupName = "string",
        Authorizations = new[]
        {
            new Azure.ManagedApplication.Inputs.DefinitionAuthorizationArgs
            {
                RoleDefinitionId = "string",
                ServicePrincipalId = "string",
            },
        },
        CreateUiDefinition = "string",
        Description = "string",
        Location = "string",
        MainTemplate = "string",
        Name = "string",
        PackageEnabled = false,
        PackageFileUri = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := managedapplication.NewDefinition(ctx, "azureDefinitionResource", &managedapplication.DefinitionArgs{
    	DisplayName:       pulumi.String("string"),
    	LockLevel:         pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Authorizations: managedapplication.DefinitionAuthorizationArray{
    		&managedapplication.DefinitionAuthorizationArgs{
    			RoleDefinitionId:   pulumi.String("string"),
    			ServicePrincipalId: pulumi.String("string"),
    		},
    	},
    	CreateUiDefinition: pulumi.String("string"),
    	Description:        pulumi.String("string"),
    	Location:           pulumi.String("string"),
    	MainTemplate:       pulumi.String("string"),
    	Name:               pulumi.String("string"),
    	PackageEnabled:     pulumi.Bool(false),
    	PackageFileUri:     pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var azureDefinitionResource = new Definition("azureDefinitionResource", DefinitionArgs.builder()        
        .displayName("string")
        .lockLevel("string")
        .resourceGroupName("string")
        .authorizations(DefinitionAuthorizationArgs.builder()
            .roleDefinitionId("string")
            .servicePrincipalId("string")
            .build())
        .createUiDefinition("string")
        .description("string")
        .location("string")
        .mainTemplate("string")
        .name("string")
        .packageEnabled(false)
        .packageFileUri("string")
        .tags(Map.of("string", "string"))
        .build());
    
    azure_definition_resource = azure.managedapplication.Definition("azureDefinitionResource",
        display_name="string",
        lock_level="string",
        resource_group_name="string",
        authorizations=[azure.managedapplication.DefinitionAuthorizationArgs(
            role_definition_id="string",
            service_principal_id="string",
        )],
        create_ui_definition="string",
        description="string",
        location="string",
        main_template="string",
        name="string",
        package_enabled=False,
        package_file_uri="string",
        tags={
            "string": "string",
        })
    
    const azureDefinitionResource = new azure.managedapplication.Definition("azureDefinitionResource", {
        displayName: "string",
        lockLevel: "string",
        resourceGroupName: "string",
        authorizations: [{
            roleDefinitionId: "string",
            servicePrincipalId: "string",
        }],
        createUiDefinition: "string",
        description: "string",
        location: "string",
        mainTemplate: "string",
        name: "string",
        packageEnabled: false,
        packageFileUri: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:managedapplication:Definition
    properties:
        authorizations:
            - roleDefinitionId: string
              servicePrincipalId: string
        createUiDefinition: string
        description: string
        displayName: string
        location: string
        lockLevel: string
        mainTemplate: string
        name: string
        packageEnabled: false
        packageFileUri: string
        resourceGroupName: string
        tags:
            string: string
    

    Definition Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Definition resource accepts the following input properties:

    DisplayName string
    Specifies the managed application definition display name.
    LockLevel string
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    Authorizations List<DefinitionAuthorization>
    One or more authorization block defined below.
    CreateUiDefinition string
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    Description string
    Specifies the managed application definition description.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MainTemplate string
    Specifies the inline main template JSON which has resources to be provisioned.
    Name string
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    PackageEnabled bool
    Is the package enabled? Defaults to true.
    PackageFileUri string
    Specifies the managed application definition package file Uri.
    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    DisplayName string
    Specifies the managed application definition display name.
    LockLevel string
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    Authorizations []DefinitionAuthorizationArgs
    One or more authorization block defined below.
    CreateUiDefinition string
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    Description string
    Specifies the managed application definition description.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MainTemplate string
    Specifies the inline main template JSON which has resources to be provisioned.
    Name string
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    PackageEnabled bool
    Is the package enabled? Defaults to true.
    PackageFileUri string
    Specifies the managed application definition package file Uri.
    Tags map[string]string

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    displayName String
    Specifies the managed application definition display name.
    lockLevel String
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    authorizations List<DefinitionAuthorization>
    One or more authorization block defined below.
    createUiDefinition String
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    description String
    Specifies the managed application definition description.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    mainTemplate String
    Specifies the inline main template JSON which has resources to be provisioned.
    name String
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    packageEnabled Boolean
    Is the package enabled? Defaults to true.
    packageFileUri String
    Specifies the managed application definition package file Uri.
    tags Map<String,String>

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    displayName string
    Specifies the managed application definition display name.
    lockLevel string
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    authorizations DefinitionAuthorization[]
    One or more authorization block defined below.
    createUiDefinition string
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    description string
    Specifies the managed application definition description.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    mainTemplate string
    Specifies the inline main template JSON which has resources to be provisioned.
    name string
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    packageEnabled boolean
    Is the package enabled? Defaults to true.
    packageFileUri string
    Specifies the managed application definition package file Uri.
    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    display_name str
    Specifies the managed application definition display name.
    lock_level str
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    authorizations Sequence[DefinitionAuthorizationArgs]
    One or more authorization block defined below.
    create_ui_definition str
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    description str
    Specifies the managed application definition description.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    main_template str
    Specifies the inline main template JSON which has resources to be provisioned.
    name str
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    package_enabled bool
    Is the package enabled? Defaults to true.
    package_file_uri str
    Specifies the managed application definition package file Uri.
    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    displayName String
    Specifies the managed application definition display name.
    lockLevel String
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    authorizations List<Property Map>
    One or more authorization block defined below.
    createUiDefinition String
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    description String
    Specifies the managed application definition description.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    mainTemplate String
    Specifies the inline main template JSON which has resources to be provisioned.
    name String
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    packageEnabled Boolean
    Is the package enabled? Defaults to true.
    packageFileUri String
    Specifies the managed application definition package file Uri.
    tags Map<String>

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Definition resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Definition Resource

    Get an existing Definition resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DefinitionState, opts?: CustomResourceOptions): Definition
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authorizations: Optional[Sequence[DefinitionAuthorizationArgs]] = None,
            create_ui_definition: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            location: Optional[str] = None,
            lock_level: Optional[str] = None,
            main_template: Optional[str] = None,
            name: Optional[str] = None,
            package_enabled: Optional[bool] = None,
            package_file_uri: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> Definition
    func GetDefinition(ctx *Context, name string, id IDInput, state *DefinitionState, opts ...ResourceOption) (*Definition, error)
    public static Definition Get(string name, Input<string> id, DefinitionState? state, CustomResourceOptions? opts = null)
    public static Definition get(String name, Output<String> id, DefinitionState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Authorizations List<DefinitionAuthorization>
    One or more authorization block defined below.
    CreateUiDefinition string
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    Description string
    Specifies the managed application definition description.
    DisplayName string
    Specifies the managed application definition display name.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    LockLevel string
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    MainTemplate string
    Specifies the inline main template JSON which has resources to be provisioned.
    Name string
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    PackageEnabled bool
    Is the package enabled? Defaults to true.
    PackageFileUri string
    Specifies the managed application definition package file Uri.
    ResourceGroupName string
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    Authorizations []DefinitionAuthorizationArgs
    One or more authorization block defined below.
    CreateUiDefinition string
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    Description string
    Specifies the managed application definition description.
    DisplayName string
    Specifies the managed application definition display name.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    LockLevel string
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    MainTemplate string
    Specifies the inline main template JSON which has resources to be provisioned.
    Name string
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    PackageEnabled bool
    Is the package enabled? Defaults to true.
    PackageFileUri string
    Specifies the managed application definition package file Uri.
    ResourceGroupName string
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    Tags map[string]string

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    authorizations List<DefinitionAuthorization>
    One or more authorization block defined below.
    createUiDefinition String
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    description String
    Specifies the managed application definition description.
    displayName String
    Specifies the managed application definition display name.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    lockLevel String
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    mainTemplate String
    Specifies the inline main template JSON which has resources to be provisioned.
    name String
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    packageEnabled Boolean
    Is the package enabled? Defaults to true.
    packageFileUri String
    Specifies the managed application definition package file Uri.
    resourceGroupName String
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    tags Map<String,String>

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    authorizations DefinitionAuthorization[]
    One or more authorization block defined below.
    createUiDefinition string
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    description string
    Specifies the managed application definition description.
    displayName string
    Specifies the managed application definition display name.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    lockLevel string
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    mainTemplate string
    Specifies the inline main template JSON which has resources to be provisioned.
    name string
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    packageEnabled boolean
    Is the package enabled? Defaults to true.
    packageFileUri string
    Specifies the managed application definition package file Uri.
    resourceGroupName string
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    authorizations Sequence[DefinitionAuthorizationArgs]
    One or more authorization block defined below.
    create_ui_definition str
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    description str
    Specifies the managed application definition description.
    display_name str
    Specifies the managed application definition display name.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    lock_level str
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    main_template str
    Specifies the inline main template JSON which has resources to be provisioned.
    name str
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    package_enabled bool
    Is the package enabled? Defaults to true.
    package_file_uri str
    Specifies the managed application definition package file Uri.
    resource_group_name str
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    authorizations List<Property Map>
    One or more authorization block defined below.
    createUiDefinition String
    Specifies the createUiDefinition JSON for the backing template with Microsoft.Solutions/applications resource.
    description String
    Specifies the managed application definition description.
    displayName String
    Specifies the managed application definition display name.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    lockLevel String
    Specifies the managed application lock level. Valid values include CanNotDelete, None, ReadOnly. Changing this forces a new resource to be created.
    mainTemplate String
    Specifies the inline main template JSON which has resources to be provisioned.
    name String
    Specifies the name of the Managed Application Definition. Changing this forces a new resource to be created.
    packageEnabled Boolean
    Is the package enabled? Defaults to true.
    packageFileUri String
    Specifies the managed application definition package file Uri.
    resourceGroupName String
    The name of the Resource Group where the Managed Application Definition should exist. Changing this forces a new resource to be created.
    tags Map<String>

    A mapping of tags to assign to the resource.

    NOTE: If either create_ui_definition or main_template is set they both must be set.

    Supporting Types

    DefinitionAuthorization, DefinitionAuthorizationArgs

    RoleDefinitionId string
    Specifies a role definition identifier for the provider. This role will define all the permissions that the provider must have on the managed application's container resource group. This role definition cannot have permission to delete the resource group.
    ServicePrincipalId string
    Specifies a service principal identifier for the provider. This is the identity that the provider will use to call ARM to manage the managed application resources.
    RoleDefinitionId string
    Specifies a role definition identifier for the provider. This role will define all the permissions that the provider must have on the managed application's container resource group. This role definition cannot have permission to delete the resource group.
    ServicePrincipalId string
    Specifies a service principal identifier for the provider. This is the identity that the provider will use to call ARM to manage the managed application resources.
    roleDefinitionId String
    Specifies a role definition identifier for the provider. This role will define all the permissions that the provider must have on the managed application's container resource group. This role definition cannot have permission to delete the resource group.
    servicePrincipalId String
    Specifies a service principal identifier for the provider. This is the identity that the provider will use to call ARM to manage the managed application resources.
    roleDefinitionId string
    Specifies a role definition identifier for the provider. This role will define all the permissions that the provider must have on the managed application's container resource group. This role definition cannot have permission to delete the resource group.
    servicePrincipalId string
    Specifies a service principal identifier for the provider. This is the identity that the provider will use to call ARM to manage the managed application resources.
    role_definition_id str
    Specifies a role definition identifier for the provider. This role will define all the permissions that the provider must have on the managed application's container resource group. This role definition cannot have permission to delete the resource group.
    service_principal_id str
    Specifies a service principal identifier for the provider. This is the identity that the provider will use to call ARM to manage the managed application resources.
    roleDefinitionId String
    Specifies a role definition identifier for the provider. This role will define all the permissions that the provider must have on the managed application's container resource group. This role definition cannot have permission to delete the resource group.
    servicePrincipalId String
    Specifies a service principal identifier for the provider. This is the identity that the provider will use to call ARM to manage the managed application resources.

    Import

    Managed Application Definition can be imported using the resource id, e.g.

    $ pulumi import azure:managedapplication/definition:Definition example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Solutions/applicationDefinitions/appDefinition1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi