azure-native.operationsmanagement.ManagementConfiguration
Explore with Pulumi AI
The container for solution. 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",
});
});
package main
import (
operationsmanagement "github.com/pulumi/pulumi-azure-native-sdk/operationsmanagement"
"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
})
}
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());
}
}
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")
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",
});
resources:
managementConfiguration:
type: azure-native:operationsmanagement:ManagementConfiguration
properties:
location: East US
managementConfigurationName: managementConfiguration1
resourceGroupName: rg1
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 string
- The unique name of the resource.
- args ManagementConfigurationArgs
- 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 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 string
- The unique name of the resource.
- args ManagementConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 =
{
{ "parameters", new[]
{
{
{ "name", "string" },
{ "value", "string" },
},
} },
{ "parentResourceType", "string" },
{ "template", "any" },
{ "applicationId", "string" },
},
});
example, err := operationsmanagement.NewManagementConfiguration(ctx, "managementConfigurationResource", &operationsmanagement.ManagementConfigurationArgs{
ResourceGroupName: "string",
Location: "string",
ManagementConfigurationName: "string",
Properties: map[string]interface{}{
"parameters": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"value": "string",
},
},
"parentResourceType": "string",
"template": "any",
"applicationId": "string",
},
})
var managementConfigurationResource = new ManagementConfiguration("managementConfigurationResource", ManagementConfigurationArgs.builder()
.resourceGroupName("string")
.location("string")
.managementConfigurationName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
management_configuration_resource = azure_native.operationsmanagement.ManagementConfiguration("managementConfigurationResource",
resource_group_name=string,
location=string,
management_configuration_name=string,
properties={
parameters: [{
name: string,
value: string,
}],
parentResourceType: string,
template: any,
applicationId: string,
})
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",
},
});
type: azure-native:operationsmanagement:ManagementConfiguration
properties:
location: string
managementConfigurationName: string
properties:
applicationId: string
parameters:
- name: string
value: string
parentResourceType: string
template: any
resourceGroupName: string
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
The ManagementConfiguration resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group to get. The name is case insensitive.
- Location string
- Resource location
- Management
Configuration stringName - User Management Configuration Name.
- Properties
Pulumi.
Azure Native. Operations Management. Inputs. Management Configuration Properties - Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
- Resource
Group stringName - The name of the resource group to get. The name is case insensitive.
- Location string
- Resource location
- Management
Configuration stringName - User Management Configuration Name.
- Properties
Management
Configuration Properties Args - Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
- resource
Group StringName - The name of the resource group to get. The name is case insensitive.
- location String
- Resource location
- management
Configuration StringName - User Management Configuration Name.
- properties
Management
Configuration Properties - Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
- resource
Group stringName - The name of the resource group to get. The name is case insensitive.
- location string
- Resource location
- management
Configuration stringName - User Management Configuration Name.
- properties
Management
Configuration Properties - Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
- resource_
group_ strname - The name of the resource group to get. The name is case insensitive.
- location str
- Resource location
- management_
configuration_ strname - User Management Configuration Name.
- properties
Management
Configuration Properties Args - Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
- resource
Group StringName - The name of the resource group to get. The name is case insensitive.
- location String
- Resource location
- management
Configuration StringName - 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:
Supporting Types
ArmTemplateParameter, ArmTemplateParameterArgs
ArmTemplateParameterResponse, ArmTemplateParameterResponseArgs
ManagementConfigurationProperties, ManagementConfigurationPropertiesArgs
- Parameters
List<Pulumi.
Azure Native. Operations Management. Inputs. Arm Template Parameter> - Parameters to run the ARM template
- Parent
Resource stringType - The type of the parent resource.
- Template object
- The Json object containing the ARM template to deploy
- Application
Id string - The applicationId of the appliance for this Management.
- Parameters
[]Arm
Template Parameter - Parameters to run the ARM template
- Parent
Resource stringType - The type of the parent resource.
- Template interface{}
- The Json object containing the ARM template to deploy
- Application
Id string - The applicationId of the appliance for this Management.
- parameters
List<Arm
Template Parameter> - Parameters to run the ARM template
- parent
Resource StringType - The type of the parent resource.
- template Object
- The Json object containing the ARM template to deploy
- application
Id String - The applicationId of the appliance for this Management.
- parameters
Arm
Template Parameter[] - Parameters to run the ARM template
- parent
Resource stringType - The type of the parent resource.
- template any
- The Json object containing the ARM template to deploy
- application
Id string - The applicationId of the appliance for this Management.
- parameters
Sequence[Arm
Template Parameter] - Parameters to run the ARM template
- parent_
resource_ strtype - The type of the parent resource.
- template Any
- The Json object containing the ARM template to deploy
- application_
id str - The applicationId of the appliance for this Management.
- parameters List<Property Map>
- Parameters to run the ARM template
- parent
Resource StringType - The type of the parent resource.
- template Any
- The Json object containing the ARM template to deploy
- application
Id String - The applicationId of the appliance for this Management.
ManagementConfigurationPropertiesResponse, ManagementConfigurationPropertiesResponseArgs
- Parameters
List<Pulumi.
Azure Native. Operations Management. Inputs. Arm Template Parameter Response> - Parameters to run the ARM template
- Parent
Resource stringType - The type of the parent resource.
- Provisioning
State string - The provisioning state for the ManagementConfiguration.
- Template object
- The Json object containing the ARM template to deploy
- Application
Id string - The applicationId of the appliance for this Management.
- Parameters
[]Arm
Template Parameter Response - Parameters to run the ARM template
- Parent
Resource stringType - The type of the parent resource.
- Provisioning
State string - The provisioning state for the ManagementConfiguration.
- Template interface{}
- The Json object containing the ARM template to deploy
- Application
Id string - The applicationId of the appliance for this Management.
- parameters
List<Arm
Template Parameter Response> - Parameters to run the ARM template
- parent
Resource StringType - The type of the parent resource.
- provisioning
State String - The provisioning state for the ManagementConfiguration.
- template Object
- The Json object containing the ARM template to deploy
- application
Id String - The applicationId of the appliance for this Management.
- parameters
Arm
Template Parameter Response[] - Parameters to run the ARM template
- parent
Resource stringType - The type of the parent resource.
- provisioning
State string - The provisioning state for the ManagementConfiguration.
- template any
- The Json object containing the ARM template to deploy
- application
Id string - The applicationId of the appliance for this Management.
- parameters
Sequence[Arm
Template Parameter Response] - Parameters to run the ARM template
- parent_
resource_ strtype - The type of the parent resource.
- provisioning_
state str - The provisioning state for the ManagementConfiguration.
- template Any
- The Json object containing the ARM template to deploy
- application_
id str - The applicationId of the appliance for this Management.
- parameters List<Property Map>
- Parameters to run the ARM template
- parent
Resource StringType - The type of the parent resource.
- provisioning
State String - The provisioning state for the ManagementConfiguration.
- template Any
- The Json object containing the ARM template to deploy
- application
Id 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/subid/resourcegroups/rg1/providers/Microsoft.OperationsManagement/ManagementConfigurations/managementConfiguration1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0