Show / Hide Table of Contents

Class ApplicationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ApplicationArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.ManagedApplication
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ApplicationArgs : ResourceArgs

Constructors

View Source

ApplicationArgs()

Declaration
public ApplicationArgs()

Properties

View Source

ApplicationDefinitionId

The application definition ID to deploy.

Declaration
public Input<string> ApplicationDefinitionId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Kind

The kind of the managed application to deploy. Possible values are MarketPlace and ServiceCatalog. Changing this forces a new resource to be created.

Declaration
public Input<string> Kind { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Location

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ManagedResourceGroupName

The name of the target resource group where all the resources deployed by the managed application will reside. Changing this forces a new resource to be created.

Declaration
public Input<string> ManagedResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the Managed Application. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Parameters

A mapping of name and value pairs to pass to the managed application as parameters.

Declaration
public InputMap<string> Parameters { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Plan

One plan block as defined below.

Declaration
public Input<ApplicationPlanArgs> Plan { get; set; }
Property Value
Type Description
Input<ApplicationPlanArgs>
View Source

ResourceGroupName

The name of the Resource Group where the Managed Application should exist. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.