Network Args
    data class NetworkArgs(val location: Output<String>? = null, val networkResourceName: Output<String>? = null, val properties: Output<NetworkResourcePropertiesArgs>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<NetworkArgs> 
This type describes a network resource. Azure REST API version: 2018-09-01-preview. Prior API version in Azure Native 1.x: 2018-09-01-preview. Other available API versions: 2018-07-01-preview.
Example Usage
CreateOrUpdateNetwork
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
    var network = new AzureNative.ServiceFabricMesh.Network("network", new()
    {
        Location = "EastUS",
        NetworkResourceName = "sampleNetwork",
        Properties = null,
        ResourceGroupName = "sbz_demo",
        Tags = null,
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-azure-native-sdk/servicefabricmesh/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := servicefabricmesh.NewNetwork(ctx, "network", &servicefabricmesh.NetworkArgs{
			Location:            pulumi.String("EastUS"),
			NetworkResourceName: pulumi.String("sampleNetwork"),
			Properties:          nil,
			ResourceGroupName:   pulumi.String("sbz_demo"),
			Tags:                nil,
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.servicefabricmesh.Network;
import com.pulumi.azurenative.servicefabricmesh.NetworkArgs;
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 network = new Network("network", NetworkArgs.builder()
            .location("EastUS")
            .networkResourceName("sampleNetwork")
            .properties()
            .resourceGroupName("sbz_demo")
            .tags()
            .build());
    }
}Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:servicefabricmesh:Network sampleNetwork /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/networks/{networkResourceName}Content copied to clipboard
Constructors
Link copied to clipboard
                fun NetworkArgs(location: Output<String>? = null, networkResourceName: Output<String>? = null, properties: Output<NetworkResourcePropertiesArgs>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null)