1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. ConnectivityConfiguration
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.network.ConnectivityConfiguration

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

    The network manager connectivity configuration resource Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2021-02-01-preview.

    Other available API versions: 2021-02-01-preview, 2021-05-01-preview, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01.

    Example Usage

    ConnectivityConfigurationsPut

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var connectivityConfiguration = new AzureNative.Network.ConnectivityConfiguration("connectivityConfiguration", new()
        {
            AppliesToGroups = new[]
            {
                new AzureNative.Network.Inputs.ConnectivityGroupItemArgs
                {
                    GroupConnectivity = AzureNative.Network.GroupConnectivity.None,
                    IsGlobal = AzureNative.Network.IsGlobal.False,
                    NetworkGroupId = "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkManagers/testNetworkManager/networkGroups/group1",
                    UseHubGateway = AzureNative.Network.UseHubGateway.True,
                },
            },
            ConfigurationName = "myTestConnectivityConfig",
            ConnectivityTopology = AzureNative.Network.ConnectivityTopology.HubAndSpoke,
            DeleteExistingPeering = AzureNative.Network.DeleteExistingPeering.True,
            Description = "Sample Configuration",
            Hubs = new[]
            {
                new AzureNative.Network.Inputs.HubArgs
                {
                    ResourceId = "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myTestConnectivityConfig",
                    ResourceType = "Microsoft.Network/virtualNetworks",
                },
            },
            IsGlobal = AzureNative.Network.IsGlobal.True,
            NetworkManagerName = "testNetworkManager",
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/network/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := network.NewConnectivityConfiguration(ctx, "connectivityConfiguration", &network.ConnectivityConfigurationArgs{
    			AppliesToGroups: network.ConnectivityGroupItemArray{
    				&network.ConnectivityGroupItemArgs{
    					GroupConnectivity: pulumi.String(network.GroupConnectivityNone),
    					IsGlobal:          pulumi.String(network.IsGlobalFalse),
    					NetworkGroupId:    pulumi.String("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkManagers/testNetworkManager/networkGroups/group1"),
    					UseHubGateway:     pulumi.String(network.UseHubGatewayTrue),
    				},
    			},
    			ConfigurationName:     pulumi.String("myTestConnectivityConfig"),
    			ConnectivityTopology:  pulumi.String(network.ConnectivityTopologyHubAndSpoke),
    			DeleteExistingPeering: pulumi.String(network.DeleteExistingPeeringTrue),
    			Description:           pulumi.String("Sample Configuration"),
    			Hubs: network.HubArray{
    				&network.HubArgs{
    					ResourceId:   pulumi.String("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myTestConnectivityConfig"),
    					ResourceType: pulumi.String("Microsoft.Network/virtualNetworks"),
    				},
    			},
    			IsGlobal:           pulumi.String(network.IsGlobalTrue),
    			NetworkManagerName: pulumi.String("testNetworkManager"),
    			ResourceGroupName:  pulumi.String("myResourceGroup"),
    		})
    		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.network.ConnectivityConfiguration;
    import com.pulumi.azurenative.network.ConnectivityConfigurationArgs;
    import com.pulumi.azurenative.network.inputs.ConnectivityGroupItemArgs;
    import com.pulumi.azurenative.network.inputs.HubArgs;
    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 connectivityConfiguration = new ConnectivityConfiguration("connectivityConfiguration", ConnectivityConfigurationArgs.builder()        
                .appliesToGroups(ConnectivityGroupItemArgs.builder()
                    .groupConnectivity("None")
                    .isGlobal("False")
                    .networkGroupId("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkManagers/testNetworkManager/networkGroups/group1")
                    .useHubGateway("True")
                    .build())
                .configurationName("myTestConnectivityConfig")
                .connectivityTopology("HubAndSpoke")
                .deleteExistingPeering("True")
                .description("Sample Configuration")
                .hubs(HubArgs.builder()
                    .resourceId("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myTestConnectivityConfig")
                    .resourceType("Microsoft.Network/virtualNetworks")
                    .build())
                .isGlobal("True")
                .networkManagerName("testNetworkManager")
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    connectivity_configuration = azure_native.network.ConnectivityConfiguration("connectivityConfiguration",
        applies_to_groups=[azure_native.network.ConnectivityGroupItemArgs(
            group_connectivity=azure_native.network.GroupConnectivity.NONE,
            is_global=azure_native.network.IsGlobal.FALSE,
            network_group_id="subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkManagers/testNetworkManager/networkGroups/group1",
            use_hub_gateway=azure_native.network.UseHubGateway.TRUE,
        )],
        configuration_name="myTestConnectivityConfig",
        connectivity_topology=azure_native.network.ConnectivityTopology.HUB_AND_SPOKE,
        delete_existing_peering=azure_native.network.DeleteExistingPeering.TRUE,
        description="Sample Configuration",
        hubs=[azure_native.network.HubArgs(
            resource_id="subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myTestConnectivityConfig",
            resource_type="Microsoft.Network/virtualNetworks",
        )],
        is_global=azure_native.network.IsGlobal.TRUE,
        network_manager_name="testNetworkManager",
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const connectivityConfiguration = new azure_native.network.ConnectivityConfiguration("connectivityConfiguration", {
        appliesToGroups: [{
            groupConnectivity: azure_native.network.GroupConnectivity.None,
            isGlobal: azure_native.network.IsGlobal.False,
            networkGroupId: "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkManagers/testNetworkManager/networkGroups/group1",
            useHubGateway: azure_native.network.UseHubGateway.True,
        }],
        configurationName: "myTestConnectivityConfig",
        connectivityTopology: azure_native.network.ConnectivityTopology.HubAndSpoke,
        deleteExistingPeering: azure_native.network.DeleteExistingPeering.True,
        description: "Sample Configuration",
        hubs: [{
            resourceId: "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myTestConnectivityConfig",
            resourceType: "Microsoft.Network/virtualNetworks",
        }],
        isGlobal: azure_native.network.IsGlobal.True,
        networkManagerName: "testNetworkManager",
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      connectivityConfiguration:
        type: azure-native:network:ConnectivityConfiguration
        properties:
          appliesToGroups:
            - groupConnectivity: None
              isGlobal: False
              networkGroupId: subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkManagers/testNetworkManager/networkGroups/group1
              useHubGateway: True
          configurationName: myTestConnectivityConfig
          connectivityTopology: HubAndSpoke
          deleteExistingPeering: True
          description: Sample Configuration
          hubs:
            - resourceId: subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myTestConnectivityConfig
              resourceType: Microsoft.Network/virtualNetworks
          isGlobal: True
          networkManagerName: testNetworkManager
          resourceGroupName: myResourceGroup
    

    Create ConnectivityConfiguration Resource

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

    Constructor syntax

    new ConnectivityConfiguration(name: string, args: ConnectivityConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def ConnectivityConfiguration(resource_name: str,
                                  args: ConnectivityConfigurationArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ConnectivityConfiguration(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  applies_to_groups: Optional[Sequence[ConnectivityGroupItemArgs]] = None,
                                  connectivity_topology: Optional[Union[str, ConnectivityTopology]] = None,
                                  network_manager_name: Optional[str] = None,
                                  resource_group_name: Optional[str] = None,
                                  configuration_name: Optional[str] = None,
                                  delete_existing_peering: Optional[Union[str, DeleteExistingPeering]] = None,
                                  description: Optional[str] = None,
                                  hubs: Optional[Sequence[HubArgs]] = None,
                                  is_global: Optional[Union[str, IsGlobal]] = None)
    func NewConnectivityConfiguration(ctx *Context, name string, args ConnectivityConfigurationArgs, opts ...ResourceOption) (*ConnectivityConfiguration, error)
    public ConnectivityConfiguration(string name, ConnectivityConfigurationArgs args, CustomResourceOptions? opts = null)
    public ConnectivityConfiguration(String name, ConnectivityConfigurationArgs args)
    public ConnectivityConfiguration(String name, ConnectivityConfigurationArgs args, CustomResourceOptions options)
    
    type: azure-native:network:ConnectivityConfiguration
    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 ConnectivityConfigurationArgs
    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 ConnectivityConfigurationArgs
    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 ConnectivityConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectivityConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectivityConfigurationArgs
    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 connectivityConfigurationResource = new AzureNative.Network.ConnectivityConfiguration("connectivityConfigurationResource", new()
    {
        AppliesToGroups = new[]
        {
            new AzureNative.Network.Inputs.ConnectivityGroupItemArgs
            {
                GroupConnectivity = "string",
                NetworkGroupId = "string",
                IsGlobal = "string",
                UseHubGateway = "string",
            },
        },
        ConnectivityTopology = "string",
        NetworkManagerName = "string",
        ResourceGroupName = "string",
        ConfigurationName = "string",
        DeleteExistingPeering = "string",
        Description = "string",
        Hubs = new[]
        {
            new AzureNative.Network.Inputs.HubArgs
            {
                ResourceId = "string",
                ResourceType = "string",
            },
        },
        IsGlobal = "string",
    });
    
    example, err := network.NewConnectivityConfiguration(ctx, "connectivityConfigurationResource", &network.ConnectivityConfigurationArgs{
    AppliesToGroups: network.ConnectivityGroupItemArray{
    &network.ConnectivityGroupItemArgs{
    GroupConnectivity: pulumi.String("string"),
    NetworkGroupId: pulumi.String("string"),
    IsGlobal: pulumi.String("string"),
    UseHubGateway: pulumi.String("string"),
    },
    },
    ConnectivityTopology: pulumi.String("string"),
    NetworkManagerName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    ConfigurationName: pulumi.String("string"),
    DeleteExistingPeering: pulumi.String("string"),
    Description: pulumi.String("string"),
    Hubs: network.HubArray{
    &network.HubArgs{
    ResourceId: pulumi.String("string"),
    ResourceType: pulumi.String("string"),
    },
    },
    IsGlobal: pulumi.String("string"),
    })
    
    var connectivityConfigurationResource = new ConnectivityConfiguration("connectivityConfigurationResource", ConnectivityConfigurationArgs.builder()        
        .appliesToGroups(ConnectivityGroupItemArgs.builder()
            .groupConnectivity("string")
            .networkGroupId("string")
            .isGlobal("string")
            .useHubGateway("string")
            .build())
        .connectivityTopology("string")
        .networkManagerName("string")
        .resourceGroupName("string")
        .configurationName("string")
        .deleteExistingPeering("string")
        .description("string")
        .hubs(HubArgs.builder()
            .resourceId("string")
            .resourceType("string")
            .build())
        .isGlobal("string")
        .build());
    
    connectivity_configuration_resource = azure_native.network.ConnectivityConfiguration("connectivityConfigurationResource",
        applies_to_groups=[azure_native.network.ConnectivityGroupItemArgs(
            group_connectivity="string",
            network_group_id="string",
            is_global="string",
            use_hub_gateway="string",
        )],
        connectivity_topology="string",
        network_manager_name="string",
        resource_group_name="string",
        configuration_name="string",
        delete_existing_peering="string",
        description="string",
        hubs=[azure_native.network.HubArgs(
            resource_id="string",
            resource_type="string",
        )],
        is_global="string")
    
    const connectivityConfigurationResource = new azure_native.network.ConnectivityConfiguration("connectivityConfigurationResource", {
        appliesToGroups: [{
            groupConnectivity: "string",
            networkGroupId: "string",
            isGlobal: "string",
            useHubGateway: "string",
        }],
        connectivityTopology: "string",
        networkManagerName: "string",
        resourceGroupName: "string",
        configurationName: "string",
        deleteExistingPeering: "string",
        description: "string",
        hubs: [{
            resourceId: "string",
            resourceType: "string",
        }],
        isGlobal: "string",
    });
    
    type: azure-native:network:ConnectivityConfiguration
    properties:
        appliesToGroups:
            - groupConnectivity: string
              isGlobal: string
              networkGroupId: string
              useHubGateway: string
        configurationName: string
        connectivityTopology: string
        deleteExistingPeering: string
        description: string
        hubs:
            - resourceId: string
              resourceType: string
        isGlobal: string
        networkManagerName: string
        resourceGroupName: string
    

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

    AppliesToGroups List<Pulumi.AzureNative.Network.Inputs.ConnectivityGroupItem>
    Groups for configuration
    ConnectivityTopology string | Pulumi.AzureNative.Network.ConnectivityTopology
    Connectivity topology type.
    NetworkManagerName string
    The name of the network manager.
    ResourceGroupName string
    The name of the resource group.
    ConfigurationName string
    The name of the network manager connectivity configuration.
    DeleteExistingPeering string | Pulumi.AzureNative.Network.DeleteExistingPeering
    Flag if need to remove current existing peerings.
    Description string
    A description of the connectivity configuration.
    Hubs List<Pulumi.AzureNative.Network.Inputs.Hub>
    List of hubItems
    IsGlobal string | Pulumi.AzureNative.Network.IsGlobal
    Flag if global mesh is supported.
    AppliesToGroups []ConnectivityGroupItemArgs
    Groups for configuration
    ConnectivityTopology string | ConnectivityTopology
    Connectivity topology type.
    NetworkManagerName string
    The name of the network manager.
    ResourceGroupName string
    The name of the resource group.
    ConfigurationName string
    The name of the network manager connectivity configuration.
    DeleteExistingPeering string | DeleteExistingPeering
    Flag if need to remove current existing peerings.
    Description string
    A description of the connectivity configuration.
    Hubs []HubArgs
    List of hubItems
    IsGlobal string | IsGlobal
    Flag if global mesh is supported.
    appliesToGroups List<ConnectivityGroupItem>
    Groups for configuration
    connectivityTopology String | ConnectivityTopology
    Connectivity topology type.
    networkManagerName String
    The name of the network manager.
    resourceGroupName String
    The name of the resource group.
    configurationName String
    The name of the network manager connectivity configuration.
    deleteExistingPeering String | DeleteExistingPeering
    Flag if need to remove current existing peerings.
    description String
    A description of the connectivity configuration.
    hubs List<Hub>
    List of hubItems
    isGlobal String | IsGlobal
    Flag if global mesh is supported.
    appliesToGroups ConnectivityGroupItem[]
    Groups for configuration
    connectivityTopology string | ConnectivityTopology
    Connectivity topology type.
    networkManagerName string
    The name of the network manager.
    resourceGroupName string
    The name of the resource group.
    configurationName string
    The name of the network manager connectivity configuration.
    deleteExistingPeering string | DeleteExistingPeering
    Flag if need to remove current existing peerings.
    description string
    A description of the connectivity configuration.
    hubs Hub[]
    List of hubItems
    isGlobal string | IsGlobal
    Flag if global mesh is supported.
    applies_to_groups Sequence[ConnectivityGroupItemArgs]
    Groups for configuration
    connectivity_topology str | ConnectivityTopology
    Connectivity topology type.
    network_manager_name str
    The name of the network manager.
    resource_group_name str
    The name of the resource group.
    configuration_name str
    The name of the network manager connectivity configuration.
    delete_existing_peering str | DeleteExistingPeering
    Flag if need to remove current existing peerings.
    description str
    A description of the connectivity configuration.
    hubs Sequence[HubArgs]
    List of hubItems
    is_global str | IsGlobal
    Flag if global mesh is supported.
    appliesToGroups List<Property Map>
    Groups for configuration
    connectivityTopology String | "HubAndSpoke" | "Mesh"
    Connectivity topology type.
    networkManagerName String
    The name of the network manager.
    resourceGroupName String
    The name of the resource group.
    configurationName String
    The name of the network manager connectivity configuration.
    deleteExistingPeering String | "False" | "True"
    Flag if need to remove current existing peerings.
    description String
    A description of the connectivity configuration.
    hubs List<Property Map>
    List of hubItems
    isGlobal String | "False" | "True"
    Flag if global mesh is supported.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ConnectivityConfiguration 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
    Resource name.
    ProvisioningState string
    The provisioning state of the connectivity configuration resource.
    ResourceGuid string
    Unique identifier for this resource.
    SystemData Pulumi.AzureNative.Network.Outputs.SystemDataResponse
    The system metadata related to this resource.
    Type string
    Resource type.
    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
    Resource name.
    ProvisioningState string
    The provisioning state of the connectivity configuration resource.
    ResourceGuid string
    Unique identifier for this resource.
    SystemData SystemDataResponse
    The system metadata related to this resource.
    Type string
    Resource type.
    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
    Resource name.
    provisioningState String
    The provisioning state of the connectivity configuration resource.
    resourceGuid String
    Unique identifier for this resource.
    systemData SystemDataResponse
    The system metadata related to this resource.
    type String
    Resource type.
    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
    Resource name.
    provisioningState string
    The provisioning state of the connectivity configuration resource.
    resourceGuid string
    Unique identifier for this resource.
    systemData SystemDataResponse
    The system metadata related to this resource.
    type string
    Resource type.
    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
    Resource name.
    provisioning_state str
    The provisioning state of the connectivity configuration resource.
    resource_guid str
    Unique identifier for this resource.
    system_data SystemDataResponse
    The system metadata related to this resource.
    type str
    Resource type.
    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
    Resource name.
    provisioningState String
    The provisioning state of the connectivity configuration resource.
    resourceGuid String
    Unique identifier for this resource.
    systemData Property Map
    The system metadata related to this resource.
    type String
    Resource type.

    Supporting Types

    ConnectivityGroupItem, ConnectivityGroupItemArgs

    GroupConnectivity string | Pulumi.AzureNative.Network.GroupConnectivity
    Group connectivity type.
    NetworkGroupId string
    Network group Id.
    IsGlobal string | Pulumi.AzureNative.Network.IsGlobal
    Flag if global is supported.
    UseHubGateway string | Pulumi.AzureNative.Network.UseHubGateway
    Flag if need to use hub gateway.
    GroupConnectivity string | GroupConnectivity
    Group connectivity type.
    NetworkGroupId string
    Network group Id.
    IsGlobal string | IsGlobal
    Flag if global is supported.
    UseHubGateway string | UseHubGateway
    Flag if need to use hub gateway.
    groupConnectivity String | GroupConnectivity
    Group connectivity type.
    networkGroupId String
    Network group Id.
    isGlobal String | IsGlobal
    Flag if global is supported.
    useHubGateway String | UseHubGateway
    Flag if need to use hub gateway.
    groupConnectivity string | GroupConnectivity
    Group connectivity type.
    networkGroupId string
    Network group Id.
    isGlobal string | IsGlobal
    Flag if global is supported.
    useHubGateway string | UseHubGateway
    Flag if need to use hub gateway.
    group_connectivity str | GroupConnectivity
    Group connectivity type.
    network_group_id str
    Network group Id.
    is_global str | IsGlobal
    Flag if global is supported.
    use_hub_gateway str | UseHubGateway
    Flag if need to use hub gateway.
    groupConnectivity String | "None" | "DirectlyConnected"
    Group connectivity type.
    networkGroupId String
    Network group Id.
    isGlobal String | "False" | "True"
    Flag if global is supported.
    useHubGateway String | "False" | "True"
    Flag if need to use hub gateway.

    ConnectivityGroupItemResponse, ConnectivityGroupItemResponseArgs

    GroupConnectivity string
    Group connectivity type.
    NetworkGroupId string
    Network group Id.
    IsGlobal string
    Flag if global is supported.
    UseHubGateway string
    Flag if need to use hub gateway.
    GroupConnectivity string
    Group connectivity type.
    NetworkGroupId string
    Network group Id.
    IsGlobal string
    Flag if global is supported.
    UseHubGateway string
    Flag if need to use hub gateway.
    groupConnectivity String
    Group connectivity type.
    networkGroupId String
    Network group Id.
    isGlobal String
    Flag if global is supported.
    useHubGateway String
    Flag if need to use hub gateway.
    groupConnectivity string
    Group connectivity type.
    networkGroupId string
    Network group Id.
    isGlobal string
    Flag if global is supported.
    useHubGateway string
    Flag if need to use hub gateway.
    group_connectivity str
    Group connectivity type.
    network_group_id str
    Network group Id.
    is_global str
    Flag if global is supported.
    use_hub_gateway str
    Flag if need to use hub gateway.
    groupConnectivity String
    Group connectivity type.
    networkGroupId String
    Network group Id.
    isGlobal String
    Flag if global is supported.
    useHubGateway String
    Flag if need to use hub gateway.

    ConnectivityTopology, ConnectivityTopologyArgs

    HubAndSpoke
    HubAndSpoke
    Mesh
    Mesh
    ConnectivityTopologyHubAndSpoke
    HubAndSpoke
    ConnectivityTopologyMesh
    Mesh
    HubAndSpoke
    HubAndSpoke
    Mesh
    Mesh
    HubAndSpoke
    HubAndSpoke
    Mesh
    Mesh
    HUB_AND_SPOKE
    HubAndSpoke
    MESH
    Mesh
    "HubAndSpoke"
    HubAndSpoke
    "Mesh"
    Mesh

    DeleteExistingPeering, DeleteExistingPeeringArgs

    False
    False
    True
    True
    DeleteExistingPeeringFalse
    False
    DeleteExistingPeeringTrue
    True
    False
    False
    True
    True
    False
    False
    True
    True
    FALSE
    False
    TRUE
    True
    "False"
    False
    "True"
    True

    GroupConnectivity, GroupConnectivityArgs

    None
    None
    DirectlyConnected
    DirectlyConnected
    GroupConnectivityNone
    None
    GroupConnectivityDirectlyConnected
    DirectlyConnected
    None
    None
    DirectlyConnected
    DirectlyConnected
    None
    None
    DirectlyConnected
    DirectlyConnected
    NONE
    None
    DIRECTLY_CONNECTED
    DirectlyConnected
    "None"
    None
    "DirectlyConnected"
    DirectlyConnected

    Hub, HubArgs

    ResourceId string
    Resource Id.
    ResourceType string
    Resource Type.
    ResourceId string
    Resource Id.
    ResourceType string
    Resource Type.
    resourceId String
    Resource Id.
    resourceType String
    Resource Type.
    resourceId string
    Resource Id.
    resourceType string
    Resource Type.
    resource_id str
    Resource Id.
    resource_type str
    Resource Type.
    resourceId String
    Resource Id.
    resourceType String
    Resource Type.

    HubResponse, HubResponseArgs

    ResourceId string
    Resource Id.
    ResourceType string
    Resource Type.
    ResourceId string
    Resource Id.
    ResourceType string
    Resource Type.
    resourceId String
    Resource Id.
    resourceType String
    Resource Type.
    resourceId string
    Resource Id.
    resourceType string
    Resource Type.
    resource_id str
    Resource Id.
    resource_type str
    Resource Type.
    resourceId String
    Resource Id.
    resourceType String
    Resource Type.

    IsGlobal, IsGlobalArgs

    False
    False
    True
    True
    IsGlobalFalse
    False
    IsGlobalTrue
    True
    False
    False
    True
    True
    False
    False
    True
    True
    FALSE
    False
    TRUE
    True
    "False"
    False
    "True"
    True

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The type of identity that last modified the resource.
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The type of identity that last modified the resource.
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The type of identity that last modified the resource.
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The type of identity that last modified the resource.
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The type of identity that last modified the resource.
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The type of identity that last modified the resource.
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UseHubGateway, UseHubGatewayArgs

    False
    False
    True
    True
    UseHubGatewayFalse
    False
    UseHubGatewayTrue
    True
    False
    False
    True
    True
    False
    False
    True
    True
    FALSE
    False
    TRUE
    True
    "False"
    False
    "True"
    True

    Import

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

    $ pulumi import azure-native:network:ConnectivityConfiguration myTestConnectivityConfig /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkManagers/{networkManagerName}/connectivityConfigurations/{configurationName} 
    

    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