1. Packages
  2. Azure Native
  3. API Docs
  4. servicefabricmesh
  5. Network
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.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.servicefabricmesh.Network

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.37.0 published on Monday, Apr 15, 2024 by Pulumi

    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,
        });
    
    });
    
    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
    	})
    }
    
    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 com.pulumi.azurenative.servicefabricmesh.inputs.NetworkResourcePropertiesArgs;
    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());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    network = azure_native.servicefabricmesh.Network("network",
        location="EastUS",
        network_resource_name="sampleNetwork",
        properties=azure_native.servicefabricmesh.NetworkResourcePropertiesArgs(),
        resource_group_name="sbz_demo",
        tags={})
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const network = new azure_native.servicefabricmesh.Network("network", {
        location: "EastUS",
        networkResourceName: "sampleNetwork",
        properties: {},
        resourceGroupName: "sbz_demo",
        tags: {},
    });
    
    resources:
      network:
        type: azure-native:servicefabricmesh:Network
        properties:
          location: EastUS
          networkResourceName: sampleNetwork
          properties: {}
          resourceGroupName: sbz_demo
          tags: {}
    

    Create Network Resource

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

    Constructor syntax

    new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);
    @overload
    def Network(resource_name: str,
                args: NetworkArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Network(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                properties: Optional[NetworkResourcePropertiesArgs] = None,
                resource_group_name: Optional[str] = None,
                location: Optional[str] = None,
                network_resource_name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)
    public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
    public Network(String name, NetworkArgs args)
    public Network(String name, NetworkArgs args, CustomResourceOptions options)
    
    type: azure-native:servicefabricmesh:Network
    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 NetworkArgs
    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 NetworkArgs
    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 NetworkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var networkResource = new AzureNative.ServiceFabricMesh.Network("networkResource", new()
    {
        Properties = new AzureNative.ServiceFabricMesh.Inputs.NetworkResourcePropertiesArgs
        {
            Kind = "NetworkResourceProperties",
            Description = "string",
        },
        ResourceGroupName = "string",
        Location = "string",
        NetworkResourceName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := servicefabricmesh.NewNetwork(ctx, "networkResource", &servicefabricmesh.NetworkArgs{
    Properties: &servicefabricmesh.NetworkResourcePropertiesArgs{
    Kind: pulumi.String("NetworkResourceProperties"),
    Description: pulumi.String("string"),
    },
    ResourceGroupName: pulumi.String("string"),
    Location: pulumi.String("string"),
    NetworkResourceName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var networkResource = new Network("networkResource", NetworkArgs.builder()        
        .properties(NetworkResourcePropertiesArgs.builder()
            .kind("NetworkResourceProperties")
            .description("string")
            .build())
        .resourceGroupName("string")
        .location("string")
        .networkResourceName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    network_resource = azure_native.servicefabricmesh.Network("networkResource",
        properties=azure_native.servicefabricmesh.NetworkResourcePropertiesArgs(
            kind="NetworkResourceProperties",
            description="string",
        ),
        resource_group_name="string",
        location="string",
        network_resource_name="string",
        tags={
            "string": "string",
        })
    
    const networkResource = new azure_native.servicefabricmesh.Network("networkResource", {
        properties: {
            kind: "NetworkResourceProperties",
            description: "string",
        },
        resourceGroupName: "string",
        location: "string",
        networkResourceName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:servicefabricmesh:Network
    properties:
        location: string
        networkResourceName: string
        properties:
            description: string
            kind: NetworkResourceProperties
        resourceGroupName: string
        tags:
            string: string
    

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

    Properties Pulumi.AzureNative.ServiceFabricMesh.Inputs.NetworkResourceProperties
    Describes properties of a network resource.
    ResourceGroupName string
    Azure resource group name
    Location string
    The geo-location where the resource lives
    NetworkResourceName string
    The identity of the network.
    Tags Dictionary<string, string>
    Resource tags.
    Properties NetworkResourcePropertiesArgs
    Describes properties of a network resource.
    ResourceGroupName string
    Azure resource group name
    Location string
    The geo-location where the resource lives
    NetworkResourceName string
    The identity of the network.
    Tags map[string]string
    Resource tags.
    properties NetworkResourceProperties
    Describes properties of a network resource.
    resourceGroupName String
    Azure resource group name
    location String
    The geo-location where the resource lives
    networkResourceName String
    The identity of the network.
    tags Map<String,String>
    Resource tags.
    properties NetworkResourceProperties
    Describes properties of a network resource.
    resourceGroupName string
    Azure resource group name
    location string
    The geo-location where the resource lives
    networkResourceName string
    The identity of the network.
    tags {[key: string]: string}
    Resource tags.
    properties NetworkResourcePropertiesArgs
    Describes properties of a network resource.
    resource_group_name str
    Azure resource group name
    location str
    The geo-location where the resource lives
    network_resource_name str
    The identity of the network.
    tags Mapping[str, str]
    Resource tags.
    properties Property Map
    Describes properties of a network resource.
    resourceGroupName String
    Azure resource group name
    location String
    The geo-location where the resource lives
    networkResourceName String
    The identity of the network.
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Type string
    The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Type string
    The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    type String
    The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    type string
    The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    type str
    The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    type String
    The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.

    Supporting Types

    NetworkResourceProperties, NetworkResourcePropertiesArgs

    Description string
    User readable description of the network.
    Description string
    User readable description of the network.
    description String
    User readable description of the network.
    description string
    User readable description of the network.
    description str
    User readable description of the network.
    description String
    User readable description of the network.

    NetworkResourcePropertiesResponse, NetworkResourcePropertiesResponseArgs

    ProvisioningState string
    State of the resource.
    Status string
    Status of the network.
    StatusDetails string
    Gives additional information about the current status of the network.
    Description string
    User readable description of the network.
    ProvisioningState string
    State of the resource.
    Status string
    Status of the network.
    StatusDetails string
    Gives additional information about the current status of the network.
    Description string
    User readable description of the network.
    provisioningState String
    State of the resource.
    status String
    Status of the network.
    statusDetails String
    Gives additional information about the current status of the network.
    description String
    User readable description of the network.
    provisioningState string
    State of the resource.
    status string
    Status of the network.
    statusDetails string
    Gives additional information about the current status of the network.
    description string
    User readable description of the network.
    provisioning_state str
    State of the resource.
    status str
    Status of the network.
    status_details str
    Gives additional information about the current status of the network.
    description str
    User readable description of the network.
    provisioningState String
    State of the resource.
    status String
    Status of the network.
    statusDetails String
    Gives additional information about the current status of the network.
    description String
    User readable description of the network.

    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} 
    

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

    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.37.0 published on Monday, Apr 15, 2024 by Pulumi