1. Packages
  2. Azure Native
  3. API Docs
  4. operationsmanagement
  5. ManagementConfiguration
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.operationsmanagement.ManagementConfiguration

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

The container for solution.

Uses Azure REST API version 2015-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2015-11-01-preview.

Example Usage

ManagementConfigurationCreate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var managementConfiguration = new AzureNative.OperationsManagement.ManagementConfiguration("managementConfiguration", new()
    {
        Location = "East US",
        ManagementConfigurationName = "managementConfiguration1",
        ResourceGroupName = "rg1",
    });

});
Copy
package main

import (
	operationsmanagement "github.com/pulumi/pulumi-azure-native-sdk/operationsmanagement/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := operationsmanagement.NewManagementConfiguration(ctx, "managementConfiguration", &operationsmanagement.ManagementConfigurationArgs{
			Location:                    pulumi.String("East US"),
			ManagementConfigurationName: pulumi.String("managementConfiguration1"),
			ResourceGroupName:           pulumi.String("rg1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.operationsmanagement.ManagementConfiguration;
import com.pulumi.azurenative.operationsmanagement.ManagementConfigurationArgs;
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 managementConfiguration = new ManagementConfiguration("managementConfiguration", ManagementConfigurationArgs.builder()
            .location("East US")
            .managementConfigurationName("managementConfiguration1")
            .resourceGroupName("rg1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const managementConfiguration = new azure_native.operationsmanagement.ManagementConfiguration("managementConfiguration", {
    location: "East US",
    managementConfigurationName: "managementConfiguration1",
    resourceGroupName: "rg1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

management_configuration = azure_native.operationsmanagement.ManagementConfiguration("managementConfiguration",
    location="East US",
    management_configuration_name="managementConfiguration1",
    resource_group_name="rg1")
Copy
resources:
  managementConfiguration:
    type: azure-native:operationsmanagement:ManagementConfiguration
    properties:
      location: East US
      managementConfigurationName: managementConfiguration1
      resourceGroupName: rg1
Copy

Create ManagementConfiguration Resource

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

Constructor syntax

new ManagementConfiguration(name: string, args: ManagementConfigurationArgs, opts?: CustomResourceOptions);
@overload
def ManagementConfiguration(resource_name: str,
                            args: ManagementConfigurationArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def ManagementConfiguration(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            resource_group_name: Optional[str] = None,
                            location: Optional[str] = None,
                            management_configuration_name: Optional[str] = None,
                            properties: Optional[ManagementConfigurationPropertiesArgs] = None)
func NewManagementConfiguration(ctx *Context, name string, args ManagementConfigurationArgs, opts ...ResourceOption) (*ManagementConfiguration, error)
public ManagementConfiguration(string name, ManagementConfigurationArgs args, CustomResourceOptions? opts = null)
public ManagementConfiguration(String name, ManagementConfigurationArgs args)
public ManagementConfiguration(String name, ManagementConfigurationArgs args, CustomResourceOptions options)
type: azure-native:operationsmanagement:ManagementConfiguration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

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

Constructor example

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

var managementConfigurationResource = new AzureNative.OperationsManagement.ManagementConfiguration("managementConfigurationResource", new()
{
    ResourceGroupName = "string",
    Location = "string",
    ManagementConfigurationName = "string",
    Properties = new AzureNative.OperationsManagement.Inputs.ManagementConfigurationPropertiesArgs
    {
        Parameters = new[]
        {
            new AzureNative.OperationsManagement.Inputs.ArmTemplateParameterArgs
            {
                Name = "string",
                Value = "string",
            },
        },
        ParentResourceType = "string",
        Template = "any",
        ApplicationId = "string",
    },
});
Copy
example, err := operationsmanagement.NewManagementConfiguration(ctx, "managementConfigurationResource", &operationsmanagement.ManagementConfigurationArgs{
	ResourceGroupName:           pulumi.String("string"),
	Location:                    pulumi.String("string"),
	ManagementConfigurationName: pulumi.String("string"),
	Properties: &operationsmanagement.ManagementConfigurationPropertiesArgs{
		Parameters: operationsmanagement.ArmTemplateParameterArray{
			&operationsmanagement.ArmTemplateParameterArgs{
				Name:  pulumi.String("string"),
				Value: pulumi.String("string"),
			},
		},
		ParentResourceType: pulumi.String("string"),
		Template:           pulumi.Any("any"),
		ApplicationId:      pulumi.String("string"),
	},
})
Copy
var managementConfigurationResource = new ManagementConfiguration("managementConfigurationResource", ManagementConfigurationArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .managementConfigurationName("string")
    .properties(ManagementConfigurationPropertiesArgs.builder()
        .parameters(ArmTemplateParameterArgs.builder()
            .name("string")
            .value("string")
            .build())
        .parentResourceType("string")
        .template("any")
        .applicationId("string")
        .build())
    .build());
Copy
management_configuration_resource = azure_native.operationsmanagement.ManagementConfiguration("managementConfigurationResource",
    resource_group_name="string",
    location="string",
    management_configuration_name="string",
    properties={
        "parameters": [{
            "name": "string",
            "value": "string",
        }],
        "parent_resource_type": "string",
        "template": "any",
        "application_id": "string",
    })
Copy
const managementConfigurationResource = new azure_native.operationsmanagement.ManagementConfiguration("managementConfigurationResource", {
    resourceGroupName: "string",
    location: "string",
    managementConfigurationName: "string",
    properties: {
        parameters: [{
            name: "string",
            value: "string",
        }],
        parentResourceType: "string",
        template: "any",
        applicationId: "string",
    },
});
Copy
type: azure-native:operationsmanagement:ManagementConfiguration
properties:
    location: string
    managementConfigurationName: string
    properties:
        applicationId: string
        parameters:
            - name: string
              value: string
        parentResourceType: string
        template: any
    resourceGroupName: string
Copy

ManagementConfiguration Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ManagementConfiguration resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group to get. The name is case insensitive.
Location string
Resource location
ManagementConfigurationName Changes to this property will trigger replacement. string
User Management Configuration Name.
Properties Pulumi.AzureNative.OperationsManagement.Inputs.ManagementConfigurationProperties
Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group to get. The name is case insensitive.
Location string
Resource location
ManagementConfigurationName Changes to this property will trigger replacement. string
User Management Configuration Name.
Properties ManagementConfigurationPropertiesArgs
Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group to get. The name is case insensitive.
location String
Resource location
managementConfigurationName Changes to this property will trigger replacement. String
User Management Configuration Name.
properties ManagementConfigurationProperties
Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group to get. The name is case insensitive.
location string
Resource location
managementConfigurationName Changes to this property will trigger replacement. string
User Management Configuration Name.
properties ManagementConfigurationProperties
Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group to get. The name is case insensitive.
location str
Resource location
management_configuration_name Changes to this property will trigger replacement. str
User Management Configuration Name.
properties ManagementConfigurationPropertiesArgs
Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group to get. The name is case insensitive.
location String
Resource location
managementConfigurationName Changes to this property will trigger replacement. String
User Management Configuration Name.
properties Property Map
Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
Type string
Resource type.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
Type string
Resource type.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
type String
Resource type.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Resource name.
type string
Resource type.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Resource name.
type str
Resource type.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
type String
Resource type.

Supporting Types

ArmTemplateParameter
, ArmTemplateParameterArgs

Name string
name of the parameter.
Value string
value for the parameter. In Jtoken
Name string
name of the parameter.
Value string
value for the parameter. In Jtoken
name String
name of the parameter.
value String
value for the parameter. In Jtoken
name string
name of the parameter.
value string
value for the parameter. In Jtoken
name str
name of the parameter.
value str
value for the parameter. In Jtoken
name String
name of the parameter.
value String
value for the parameter. In Jtoken

ArmTemplateParameterResponse
, ArmTemplateParameterResponseArgs

Name string
name of the parameter.
Value string
value for the parameter. In Jtoken
Name string
name of the parameter.
Value string
value for the parameter. In Jtoken
name String
name of the parameter.
value String
value for the parameter. In Jtoken
name string
name of the parameter.
value string
value for the parameter. In Jtoken
name str
name of the parameter.
value str
value for the parameter. In Jtoken
name String
name of the parameter.
value String
value for the parameter. In Jtoken

ManagementConfigurationProperties
, ManagementConfigurationPropertiesArgs

Parameters This property is required. List<Pulumi.AzureNative.OperationsManagement.Inputs.ArmTemplateParameter>
Parameters to run the ARM template
ParentResourceType This property is required. string
The type of the parent resource.
Template This property is required. object
The Json object containing the ARM template to deploy
ApplicationId string
The applicationId of the appliance for this Management.
Parameters This property is required. []ArmTemplateParameter
Parameters to run the ARM template
ParentResourceType This property is required. string
The type of the parent resource.
Template This property is required. interface{}
The Json object containing the ARM template to deploy
ApplicationId string
The applicationId of the appliance for this Management.
parameters This property is required. List<ArmTemplateParameter>
Parameters to run the ARM template
parentResourceType This property is required. String
The type of the parent resource.
template This property is required. Object
The Json object containing the ARM template to deploy
applicationId String
The applicationId of the appliance for this Management.
parameters This property is required. ArmTemplateParameter[]
Parameters to run the ARM template
parentResourceType This property is required. string
The type of the parent resource.
template This property is required. any
The Json object containing the ARM template to deploy
applicationId string
The applicationId of the appliance for this Management.
parameters This property is required. Sequence[ArmTemplateParameter]
Parameters to run the ARM template
parent_resource_type This property is required. str
The type of the parent resource.
template This property is required. Any
The Json object containing the ARM template to deploy
application_id str
The applicationId of the appliance for this Management.
parameters This property is required. List<Property Map>
Parameters to run the ARM template
parentResourceType This property is required. String
The type of the parent resource.
template This property is required. Any
The Json object containing the ARM template to deploy
applicationId String
The applicationId of the appliance for this Management.

ManagementConfigurationPropertiesResponse
, ManagementConfigurationPropertiesResponseArgs

Parameters This property is required. List<Pulumi.AzureNative.OperationsManagement.Inputs.ArmTemplateParameterResponse>
Parameters to run the ARM template
ParentResourceType This property is required. string
The type of the parent resource.
ProvisioningState This property is required. string
The provisioning state for the ManagementConfiguration.
Template This property is required. object
The Json object containing the ARM template to deploy
ApplicationId string
The applicationId of the appliance for this Management.
Parameters This property is required. []ArmTemplateParameterResponse
Parameters to run the ARM template
ParentResourceType This property is required. string
The type of the parent resource.
ProvisioningState This property is required. string
The provisioning state for the ManagementConfiguration.
Template This property is required. interface{}
The Json object containing the ARM template to deploy
ApplicationId string
The applicationId of the appliance for this Management.
parameters This property is required. List<ArmTemplateParameterResponse>
Parameters to run the ARM template
parentResourceType This property is required. String
The type of the parent resource.
provisioningState This property is required. String
The provisioning state for the ManagementConfiguration.
template This property is required. Object
The Json object containing the ARM template to deploy
applicationId String
The applicationId of the appliance for this Management.
parameters This property is required. ArmTemplateParameterResponse[]
Parameters to run the ARM template
parentResourceType This property is required. string
The type of the parent resource.
provisioningState This property is required. string
The provisioning state for the ManagementConfiguration.
template This property is required. any
The Json object containing the ARM template to deploy
applicationId string
The applicationId of the appliance for this Management.
parameters This property is required. Sequence[ArmTemplateParameterResponse]
Parameters to run the ARM template
parent_resource_type This property is required. str
The type of the parent resource.
provisioning_state This property is required. str
The provisioning state for the ManagementConfiguration.
template This property is required. Any
The Json object containing the ARM template to deploy
application_id str
The applicationId of the appliance for this Management.
parameters This property is required. List<Property Map>
Parameters to run the ARM template
parentResourceType This property is required. String
The type of the parent resource.
provisioningState This property is required. String
The provisioning state for the ManagementConfiguration.
template This property is required. Any
The Json object containing the ARM template to deploy
applicationId String
The applicationId of the appliance for this Management.

Import

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

$ pulumi import azure-native:operationsmanagement:ManagementConfiguration managementConfiguration1 /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi