azure-native.managednetwork.ManagedNetworkGroup
Explore with Pulumi AI
The Managed Network Group resource Azure REST API version: 2019-06-01-preview. Prior API version in Azure Native 1.x: 2019-06-01-preview.
Example Usage
ManagementNetworkGroupsPut
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var managedNetworkGroup = new AzureNative.ManagedNetwork.ManagedNetworkGroup("managedNetworkGroup", new()
    {
        ManagedNetworkGroupName = "myManagedNetworkGroup1",
        ManagedNetworkName = "myManagedNetwork",
        ManagementGroups = new[] {},
        ResourceGroupName = "myResourceGroup",
        Subnets = new[]
        {
            new AzureNative.ManagedNetwork.Inputs.ResourceIdArgs
            {
                Id = "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA/subnets/subnetA",
            },
        },
        Subscriptions = new[] {},
        VirtualNetworks = new[]
        {
            new AzureNative.ManagedNetwork.Inputs.ResourceIdArgs
            {
                Id = "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA",
            },
            new AzureNative.ManagedNetwork.Inputs.ResourceIdArgs
            {
                Id = "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetB",
            },
        },
    });
});
package main
import (
	managednetwork "github.com/pulumi/pulumi-azure-native-sdk/managednetwork/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := managednetwork.NewManagedNetworkGroup(ctx, "managedNetworkGroup", &managednetwork.ManagedNetworkGroupArgs{
			ManagedNetworkGroupName: pulumi.String("myManagedNetworkGroup1"),
			ManagedNetworkName:      pulumi.String("myManagedNetwork"),
			ManagementGroups:        managednetwork.ResourceIdArray{},
			ResourceGroupName:       pulumi.String("myResourceGroup"),
			Subnets: managednetwork.ResourceIdArray{
				&managednetwork.ResourceIdArgs{
					Id: pulumi.String("/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA/subnets/subnetA"),
				},
			},
			Subscriptions: managednetwork.ResourceIdArray{},
			VirtualNetworks: managednetwork.ResourceIdArray{
				&managednetwork.ResourceIdArgs{
					Id: pulumi.String("/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA"),
				},
				&managednetwork.ResourceIdArgs{
					Id: pulumi.String("/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetB"),
				},
			},
		})
		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.managednetwork.ManagedNetworkGroup;
import com.pulumi.azurenative.managednetwork.ManagedNetworkGroupArgs;
import com.pulumi.azurenative.managednetwork.inputs.ResourceIdArgs;
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 managedNetworkGroup = new ManagedNetworkGroup("managedNetworkGroup", ManagedNetworkGroupArgs.builder()
            .managedNetworkGroupName("myManagedNetworkGroup1")
            .managedNetworkName("myManagedNetwork")
            .managementGroups()
            .resourceGroupName("myResourceGroup")
            .subnets(ResourceIdArgs.builder()
                .id("/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA/subnets/subnetA")
                .build())
            .subscriptions()
            .virtualNetworks(            
                ResourceIdArgs.builder()
                    .id("/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA")
                    .build(),
                ResourceIdArgs.builder()
                    .id("/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetB")
                    .build())
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const managedNetworkGroup = new azure_native.managednetwork.ManagedNetworkGroup("managedNetworkGroup", {
    managedNetworkGroupName: "myManagedNetworkGroup1",
    managedNetworkName: "myManagedNetwork",
    managementGroups: [],
    resourceGroupName: "myResourceGroup",
    subnets: [{
        id: "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA/subnets/subnetA",
    }],
    subscriptions: [],
    virtualNetworks: [
        {
            id: "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA",
        },
        {
            id: "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetB",
        },
    ],
});
import pulumi
import pulumi_azure_native as azure_native
managed_network_group = azure_native.managednetwork.ManagedNetworkGroup("managedNetworkGroup",
    managed_network_group_name="myManagedNetworkGroup1",
    managed_network_name="myManagedNetwork",
    management_groups=[],
    resource_group_name="myResourceGroup",
    subnets=[{
        "id": "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA/subnets/subnetA",
    }],
    subscriptions=[],
    virtual_networks=[
        {
            "id": "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA",
        },
        {
            "id": "/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetB",
        },
    ])
resources:
  managedNetworkGroup:
    type: azure-native:managednetwork:ManagedNetworkGroup
    properties:
      managedNetworkGroupName: myManagedNetworkGroup1
      managedNetworkName: myManagedNetwork
      managementGroups: []
      resourceGroupName: myResourceGroup
      subnets:
        - id: /subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA/subnets/subnetA
      subscriptions: []
      virtualNetworks:
        - id: /subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetA
        - id: /subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetB
Create ManagedNetworkGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedNetworkGroup(name: string, args: ManagedNetworkGroupArgs, opts?: CustomResourceOptions);@overload
def ManagedNetworkGroup(resource_name: str,
                        args: ManagedNetworkGroupArgs,
                        opts: Optional[ResourceOptions] = None)
@overload
def ManagedNetworkGroup(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        managed_network_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        kind: Optional[Union[str, Kind]] = None,
                        location: Optional[str] = None,
                        managed_network_group_name: Optional[str] = None,
                        management_groups: Optional[Sequence[ResourceIdArgs]] = None,
                        subnets: Optional[Sequence[ResourceIdArgs]] = None,
                        subscriptions: Optional[Sequence[ResourceIdArgs]] = None,
                        virtual_networks: Optional[Sequence[ResourceIdArgs]] = None)func NewManagedNetworkGroup(ctx *Context, name string, args ManagedNetworkGroupArgs, opts ...ResourceOption) (*ManagedNetworkGroup, error)public ManagedNetworkGroup(string name, ManagedNetworkGroupArgs args, CustomResourceOptions? opts = null)
public ManagedNetworkGroup(String name, ManagedNetworkGroupArgs args)
public ManagedNetworkGroup(String name, ManagedNetworkGroupArgs args, CustomResourceOptions options)
type: azure-native:managednetwork:ManagedNetworkGroup
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 ManagedNetworkGroupArgs
- 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 ManagedNetworkGroupArgs
- 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 ManagedNetworkGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedNetworkGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedNetworkGroupArgs
- 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 managedNetworkGroupResource = new AzureNative.ManagedNetwork.ManagedNetworkGroup("managedNetworkGroupResource", new()
{
    ManagedNetworkName = "string",
    ResourceGroupName = "string",
    Kind = "string",
    Location = "string",
    ManagedNetworkGroupName = "string",
    ManagementGroups = new[]
    {
        new AzureNative.ManagedNetwork.Inputs.ResourceIdArgs
        {
            Id = "string",
        },
    },
    Subnets = new[]
    {
        new AzureNative.ManagedNetwork.Inputs.ResourceIdArgs
        {
            Id = "string",
        },
    },
    Subscriptions = new[]
    {
        new AzureNative.ManagedNetwork.Inputs.ResourceIdArgs
        {
            Id = "string",
        },
    },
    VirtualNetworks = new[]
    {
        new AzureNative.ManagedNetwork.Inputs.ResourceIdArgs
        {
            Id = "string",
        },
    },
});
example, err := managednetwork.NewManagedNetworkGroup(ctx, "managedNetworkGroupResource", &managednetwork.ManagedNetworkGroupArgs{
	ManagedNetworkName:      pulumi.String("string"),
	ResourceGroupName:       pulumi.String("string"),
	Kind:                    pulumi.String("string"),
	Location:                pulumi.String("string"),
	ManagedNetworkGroupName: pulumi.String("string"),
	ManagementGroups: managednetwork.ResourceIdArray{
		&managednetwork.ResourceIdArgs{
			Id: pulumi.String("string"),
		},
	},
	Subnets: managednetwork.ResourceIdArray{
		&managednetwork.ResourceIdArgs{
			Id: pulumi.String("string"),
		},
	},
	Subscriptions: managednetwork.ResourceIdArray{
		&managednetwork.ResourceIdArgs{
			Id: pulumi.String("string"),
		},
	},
	VirtualNetworks: managednetwork.ResourceIdArray{
		&managednetwork.ResourceIdArgs{
			Id: pulumi.String("string"),
		},
	},
})
var managedNetworkGroupResource = new ManagedNetworkGroup("managedNetworkGroupResource", ManagedNetworkGroupArgs.builder()
    .managedNetworkName("string")
    .resourceGroupName("string")
    .kind("string")
    .location("string")
    .managedNetworkGroupName("string")
    .managementGroups(ResourceIdArgs.builder()
        .id("string")
        .build())
    .subnets(ResourceIdArgs.builder()
        .id("string")
        .build())
    .subscriptions(ResourceIdArgs.builder()
        .id("string")
        .build())
    .virtualNetworks(ResourceIdArgs.builder()
        .id("string")
        .build())
    .build());
managed_network_group_resource = azure_native.managednetwork.ManagedNetworkGroup("managedNetworkGroupResource",
    managed_network_name="string",
    resource_group_name="string",
    kind="string",
    location="string",
    managed_network_group_name="string",
    management_groups=[{
        "id": "string",
    }],
    subnets=[{
        "id": "string",
    }],
    subscriptions=[{
        "id": "string",
    }],
    virtual_networks=[{
        "id": "string",
    }])
const managedNetworkGroupResource = new azure_native.managednetwork.ManagedNetworkGroup("managedNetworkGroupResource", {
    managedNetworkName: "string",
    resourceGroupName: "string",
    kind: "string",
    location: "string",
    managedNetworkGroupName: "string",
    managementGroups: [{
        id: "string",
    }],
    subnets: [{
        id: "string",
    }],
    subscriptions: [{
        id: "string",
    }],
    virtualNetworks: [{
        id: "string",
    }],
});
type: azure-native:managednetwork:ManagedNetworkGroup
properties:
    kind: string
    location: string
    managedNetworkGroupName: string
    managedNetworkName: string
    managementGroups:
        - id: string
    resourceGroupName: string
    subnets:
        - id: string
    subscriptions:
        - id: string
    virtualNetworks:
        - id: string
ManagedNetworkGroup 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 ManagedNetworkGroup resource accepts the following input properties:
- ManagedNetwork stringName 
- The name of the Managed Network.
- ResourceGroup stringName 
- The name of the resource group.
- Kind
string | Pulumi.Azure Native. Managed Network. Kind 
- Responsibility role under which this Managed Network Group will be created
- Location string
- The geo-location where the resource lives
- ManagedNetwork stringGroup Name 
- The name of the Managed Network Group.
- ManagementGroups List<Pulumi.Azure Native. Managed Network. Inputs. Resource Id> 
- The collection of management groups covered by the Managed Network
- Subnets
List<Pulumi.Azure Native. Managed Network. Inputs. Resource Id> 
- The collection of subnets covered by the Managed Network
- Subscriptions
List<Pulumi.Azure Native. Managed Network. Inputs. Resource Id> 
- The collection of subscriptions covered by the Managed Network
- VirtualNetworks List<Pulumi.Azure Native. Managed Network. Inputs. Resource Id> 
- The collection of virtual nets covered by the Managed Network
- ManagedNetwork stringName 
- The name of the Managed Network.
- ResourceGroup stringName 
- The name of the resource group.
- Kind string | Kind
- Responsibility role under which this Managed Network Group will be created
- Location string
- The geo-location where the resource lives
- ManagedNetwork stringGroup Name 
- The name of the Managed Network Group.
- ManagementGroups []ResourceId Args 
- The collection of management groups covered by the Managed Network
- Subnets
[]ResourceId Args 
- The collection of subnets covered by the Managed Network
- Subscriptions
[]ResourceId Args 
- The collection of subscriptions covered by the Managed Network
- VirtualNetworks []ResourceId Args 
- The collection of virtual nets covered by the Managed Network
- managedNetwork StringName 
- The name of the Managed Network.
- resourceGroup StringName 
- The name of the resource group.
- kind String | Kind
- Responsibility role under which this Managed Network Group will be created
- location String
- The geo-location where the resource lives
- managedNetwork StringGroup Name 
- The name of the Managed Network Group.
- managementGroups List<ResourceId> 
- The collection of management groups covered by the Managed Network
- subnets
List<ResourceId> 
- The collection of subnets covered by the Managed Network
- subscriptions
List<ResourceId> 
- The collection of subscriptions covered by the Managed Network
- virtualNetworks List<ResourceId> 
- The collection of virtual nets covered by the Managed Network
- managedNetwork stringName 
- The name of the Managed Network.
- resourceGroup stringName 
- The name of the resource group.
- kind string | Kind
- Responsibility role under which this Managed Network Group will be created
- location string
- The geo-location where the resource lives
- managedNetwork stringGroup Name 
- The name of the Managed Network Group.
- managementGroups ResourceId[] 
- The collection of management groups covered by the Managed Network
- subnets
ResourceId[] 
- The collection of subnets covered by the Managed Network
- subscriptions
ResourceId[] 
- The collection of subscriptions covered by the Managed Network
- virtualNetworks ResourceId[] 
- The collection of virtual nets covered by the Managed Network
- managed_network_ strname 
- The name of the Managed Network.
- resource_group_ strname 
- The name of the resource group.
- kind str | Kind
- Responsibility role under which this Managed Network Group will be created
- location str
- The geo-location where the resource lives
- managed_network_ strgroup_ name 
- The name of the Managed Network Group.
- management_groups Sequence[ResourceId Args] 
- The collection of management groups covered by the Managed Network
- subnets
Sequence[ResourceId Args] 
- The collection of subnets covered by the Managed Network
- subscriptions
Sequence[ResourceId Args] 
- The collection of subscriptions covered by the Managed Network
- virtual_networks Sequence[ResourceId Args] 
- The collection of virtual nets covered by the Managed Network
- managedNetwork StringName 
- The name of the Managed Network.
- resourceGroup StringName 
- The name of the resource group.
- kind String | "Connectivity"
- Responsibility role under which this Managed Network Group will be created
- location String
- The geo-location where the resource lives
- managedNetwork StringGroup Name 
- The name of the Managed Network Group.
- managementGroups List<Property Map>
- The collection of management groups covered by the Managed Network
- subnets List<Property Map>
- The collection of subnets covered by the Managed Network
- subscriptions List<Property Map>
- The collection of subscriptions covered by the Managed Network
- virtualNetworks List<Property Map>
- The collection of virtual nets covered by the Managed Network
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedNetworkGroup resource produces the following output properties:
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the ManagedNetwork resource.
- Type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the ManagedNetwork resource.
- Type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the ManagedNetwork resource.
- type String
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioningState string
- Provisioning state of the ManagedNetwork resource.
- type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_state str
- Provisioning state of the ManagedNetwork resource.
- type str
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the ManagedNetwork resource.
- type String
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
Supporting Types
Kind, KindArgs  
- Connectivity
- Connectivity
- KindConnectivity 
- Connectivity
- Connectivity
- Connectivity
- Connectivity
- Connectivity
- CONNECTIVITY
- Connectivity
- "Connectivity"
- Connectivity
ResourceId, ResourceIdArgs    
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
ResourceIdResponse, ResourceIdResponseArgs      
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:managednetwork:ManagedNetworkGroup myManagedNetworkGroup1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetwork/managedNetworks/{managedNetworkName}/managedNetworkGroups/{managedNetworkGroupName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0