1. Packages
  2. Azure Native
  3. API Docs
  4. operationsmanagement
  5. ManagementAssociation
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

azure-native.operationsmanagement.ManagementAssociation

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

    The container for solution. Azure REST API version: 2015-11-01-preview. Prior API version in Azure Native 1.x: 2015-11-01-preview.

    Example Usage

    SolutionCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var managementAssociation = new AzureNative.OperationsManagement.ManagementAssociation("managementAssociation", new()
        {
            Location = "East US",
            ManagementAssociationName = "managementAssociation1",
            Properties = new AzureNative.OperationsManagement.Inputs.ManagementAssociationPropertiesArgs
            {
                ApplicationId = "/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1",
            },
            ProviderName = "providerName",
            ResourceGroupName = "rg1",
            ResourceName = "resourceName",
            ResourceType = "resourceType",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/operationsmanagement/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := operationsmanagement.NewManagementAssociation(ctx, "managementAssociation", &operationsmanagement.ManagementAssociationArgs{
    			Location:                  pulumi.String("East US"),
    			ManagementAssociationName: pulumi.String("managementAssociation1"),
    			Properties: &operationsmanagement.ManagementAssociationPropertiesArgs{
    				ApplicationId: pulumi.String("/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1"),
    			},
    			ProviderName:      pulumi.String("providerName"),
    			ResourceGroupName: pulumi.String("rg1"),
    			ResourceName:      pulumi.String("resourceName"),
    			ResourceType:      pulumi.String("resourceType"),
    		})
    		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.ManagementAssociation;
    import com.pulumi.azurenative.operationsmanagement.ManagementAssociationArgs;
    import com.pulumi.azurenative.operationsmanagement.inputs.ManagementAssociationPropertiesArgs;
    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 managementAssociation = new ManagementAssociation("managementAssociation", ManagementAssociationArgs.builder()        
                .location("East US")
                .managementAssociationName("managementAssociation1")
                .properties(ManagementAssociationPropertiesArgs.builder()
                    .applicationId("/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1")
                    .build())
                .providerName("providerName")
                .resourceGroupName("rg1")
                .resourceName("resourceName")
                .resourceType("resourceType")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    management_association = azure_native.operationsmanagement.ManagementAssociation("managementAssociation",
        location="East US",
        management_association_name="managementAssociation1",
        properties=azure_native.operationsmanagement.ManagementAssociationPropertiesArgs(
            application_id="/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1",
        ),
        provider_name="providerName",
        resource_group_name="rg1",
        resource_name_="resourceName",
        resource_type="resourceType")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const managementAssociation = new azure_native.operationsmanagement.ManagementAssociation("managementAssociation", {
        location: "East US",
        managementAssociationName: "managementAssociation1",
        properties: {
            applicationId: "/subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1",
        },
        providerName: "providerName",
        resourceGroupName: "rg1",
        resourceName: "resourceName",
        resourceType: "resourceType",
    });
    
    resources:
      managementAssociation:
        type: azure-native:operationsmanagement:ManagementAssociation
        properties:
          location: East US
          managementAssociationName: managementAssociation1
          properties:
            applicationId: /subscriptions/sub1/resourcegroups/rg1/providers/Microsoft.Appliance/Appliances/appliance1
          providerName: providerName
          resourceGroupName: rg1
          resourceName: resourceName
          resourceType: resourceType
    

    Create ManagementAssociation Resource

    new ManagementAssociation(name: string, args: ManagementAssociationArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementAssociation(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              location: Optional[str] = None,
                              management_association_name: Optional[str] = None,
                              properties: Optional[ManagementAssociationPropertiesArgs] = None,
                              provider_name: Optional[str] = None,
                              resource_group_name: Optional[str] = None,
                              resource_name_: Optional[str] = None,
                              resource_type: Optional[str] = None)
    @overload
    def ManagementAssociation(resource_name: str,
                              args: ManagementAssociationArgs,
                              opts: Optional[ResourceOptions] = None)
    func NewManagementAssociation(ctx *Context, name string, args ManagementAssociationArgs, opts ...ResourceOption) (*ManagementAssociation, error)
    public ManagementAssociation(string name, ManagementAssociationArgs args, CustomResourceOptions? opts = null)
    public ManagementAssociation(String name, ManagementAssociationArgs args)
    public ManagementAssociation(String name, ManagementAssociationArgs args, CustomResourceOptions options)
    
    type: azure-native:operationsmanagement:ManagementAssociation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ManagementAssociationArgs
    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 ManagementAssociationArgs
    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 ManagementAssociationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementAssociationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementAssociationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ManagementAssociation 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 ManagementAssociation resource accepts the following input properties:

    ProviderName string
    Provider name for the parent resource.
    ResourceGroupName string
    The name of the resource group to get. The name is case insensitive.
    ResourceName string
    Parent resource name.
    ResourceType string
    Resource type for the parent resource
    Location string
    Resource location
    ManagementAssociationName string
    User ManagementAssociation Name.
    Properties Pulumi.AzureNative.OperationsManagement.Inputs.ManagementAssociationProperties
    Properties for ManagementAssociation object supported by the OperationsManagement resource provider.
    ProviderName string
    Provider name for the parent resource.
    ResourceGroupName string
    The name of the resource group to get. The name is case insensitive.
    ResourceName string
    Parent resource name.
    ResourceType string
    Resource type for the parent resource
    Location string
    Resource location
    ManagementAssociationName string
    User ManagementAssociation Name.
    Properties ManagementAssociationPropertiesArgs
    Properties for ManagementAssociation object supported by the OperationsManagement resource provider.
    providerName String
    Provider name for the parent resource.
    resourceGroupName String
    The name of the resource group to get. The name is case insensitive.
    resourceName String
    Parent resource name.
    resourceType String
    Resource type for the parent resource
    location String
    Resource location
    managementAssociationName String
    User ManagementAssociation Name.
    properties ManagementAssociationProperties
    Properties for ManagementAssociation object supported by the OperationsManagement resource provider.
    providerName string
    Provider name for the parent resource.
    resourceGroupName string
    The name of the resource group to get. The name is case insensitive.
    resourceName string
    Parent resource name.
    resourceType string
    Resource type for the parent resource
    location string
    Resource location
    managementAssociationName string
    User ManagementAssociation Name.
    properties ManagementAssociationProperties
    Properties for ManagementAssociation object supported by the OperationsManagement resource provider.
    provider_name str
    Provider name for the parent resource.
    resource_group_name str
    The name of the resource group to get. The name is case insensitive.
    resource_name str
    Parent resource name.
    resource_type str
    Resource type for the parent resource
    location str
    Resource location
    management_association_name str
    User ManagementAssociation Name.
    properties ManagementAssociationPropertiesArgs
    Properties for ManagementAssociation object supported by the OperationsManagement resource provider.
    providerName String
    Provider name for the parent resource.
    resourceGroupName String
    The name of the resource group to get. The name is case insensitive.
    resourceName String
    Parent resource name.
    resourceType String
    Resource type for the parent resource
    location String
    Resource location
    managementAssociationName String
    User ManagementAssociation Name.
    properties Property Map
    Properties for ManagementAssociation object supported by the OperationsManagement resource provider.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    Type string
    Resource type.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    Type string
    Resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    type String
    Resource type.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Resource name.
    type string
    Resource type.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Resource name.
    type str
    Resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    type String
    Resource type.

    Supporting Types

    ManagementAssociationProperties, ManagementAssociationPropertiesArgs

    ApplicationId string
    The applicationId of the appliance for this association.
    ApplicationId string
    The applicationId of the appliance for this association.
    applicationId String
    The applicationId of the appliance for this association.
    applicationId string
    The applicationId of the appliance for this association.
    application_id str
    The applicationId of the appliance for this association.
    applicationId String
    The applicationId of the appliance for this association.

    ManagementAssociationPropertiesResponse, ManagementAssociationPropertiesResponseArgs

    ApplicationId string
    The applicationId of the appliance for this association.
    ApplicationId string
    The applicationId of the appliance for this association.
    applicationId String
    The applicationId of the appliance for this association.
    applicationId string
    The applicationId of the appliance for this association.
    application_id str
    The applicationId of the appliance for this association.
    applicationId String
    The applicationId of the appliance for this association.

    Import

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

    $ pulumi import azure-native:operationsmanagement:ManagementAssociation managementAssociation1 /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi