azure-native.network.ConnectivityConfiguration
Explore with Pulumi AI
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, 2024-01-01, 2024-03-01, 2024-05-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 (
	network "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 * 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",
});
import pulumi
import pulumi_azure_native as azure_native
connectivity_configuration = azure_native.network.ConnectivityConfiguration("connectivityConfiguration",
    applies_to_groups=[{
        "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=[{
        "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")
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.
Constructor 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=[{
        "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=[{
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ConnectivityConfiguration resource accepts the following input properties:
- AppliesTo List<Pulumi.Groups Azure Native. Network. Inputs. Connectivity Group Item> 
- Groups for configuration
- ConnectivityTopology string | Pulumi.Azure Native. Network. Connectivity Topology 
- Connectivity topology type.
- NetworkManager stringName 
- The name of the network manager.
- ResourceGroup stringName 
- The name of the resource group.
- ConfigurationName string
- The name of the network manager connectivity configuration.
- DeleteExisting string | Pulumi.Peering Azure Native. Network. Delete Existing Peering 
- Flag if need to remove current existing peerings.
- Description string
- A description of the connectivity configuration.
- Hubs
List<Pulumi.Azure Native. Network. Inputs. Hub> 
- List of hubItems
- IsGlobal string | Pulumi.Azure Native. Network. Is Global 
- Flag if global mesh is supported.
- AppliesTo []ConnectivityGroups Group Item Args 
- Groups for configuration
- ConnectivityTopology string | ConnectivityTopology 
- Connectivity topology type.
- NetworkManager stringName 
- The name of the network manager.
- ResourceGroup stringName 
- The name of the resource group.
- ConfigurationName string
- The name of the network manager connectivity configuration.
- DeleteExisting string | DeletePeering Existing Peering 
- 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.
- appliesTo List<ConnectivityGroups Group Item> 
- Groups for configuration
- connectivityTopology String | ConnectivityTopology 
- Connectivity topology type.
- networkManager StringName 
- The name of the network manager.
- resourceGroup StringName 
- The name of the resource group.
- configurationName String
- The name of the network manager connectivity configuration.
- deleteExisting String | DeletePeering Existing Peering 
- 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.
- appliesTo ConnectivityGroups Group Item[] 
- Groups for configuration
- connectivityTopology string | ConnectivityTopology 
- Connectivity topology type.
- networkManager stringName 
- The name of the network manager.
- resourceGroup stringName 
- The name of the resource group.
- configurationName string
- The name of the network manager connectivity configuration.
- deleteExisting string | DeletePeering Existing Peering 
- 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_ Sequence[Connectivitygroups Group Item Args] 
- Groups for configuration
- connectivity_topology str | ConnectivityTopology 
- Connectivity topology type.
- network_manager_ strname 
- The name of the network manager.
- resource_group_ strname 
- The name of the resource group.
- configuration_name str
- The name of the network manager connectivity configuration.
- delete_existing_ str | Deletepeering Existing Peering 
- 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.
- appliesTo List<Property Map>Groups 
- Groups for configuration
- connectivityTopology String | "HubAnd Spoke" | "Mesh" 
- Connectivity topology type.
- networkManager StringName 
- The name of the network manager.
- resourceGroup StringName 
- The name of the resource group.
- configurationName String
- The name of the network manager connectivity configuration.
- deleteExisting String | "False" | "True"Peering 
- 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.Azure Native. Network. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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.Azure Native. Network. Group Connectivity 
- Group connectivity type.
- NetworkGroup stringId 
- Network group Id.
- IsGlobal string | Pulumi.Azure Native. Network. Is Global 
- Flag if global is supported.
- UseHub string | Pulumi.Gateway Azure Native. Network. Use Hub Gateway 
- Flag if need to use hub gateway.
- GroupConnectivity string | GroupConnectivity 
- Group connectivity type.
- NetworkGroup stringId 
- Network group Id.
- IsGlobal string | IsGlobal 
- Flag if global is supported.
- UseHub string | UseGateway Hub Gateway 
- Flag if need to use hub gateway.
- groupConnectivity String | GroupConnectivity 
- Group connectivity type.
- networkGroup StringId 
- Network group Id.
- isGlobal String | IsGlobal 
- Flag if global is supported.
- useHub String | UseGateway Hub Gateway 
- Flag if need to use hub gateway.
- groupConnectivity string | GroupConnectivity 
- Group connectivity type.
- networkGroup stringId 
- Network group Id.
- isGlobal string | IsGlobal 
- Flag if global is supported.
- useHub string | UseGateway Hub Gateway 
- Flag if need to use hub gateway.
- group_connectivity str | GroupConnectivity 
- Group connectivity type.
- network_group_ strid 
- Network group Id.
- is_global str | IsGlobal 
- Flag if global is supported.
- use_hub_ str | Usegateway Hub Gateway 
- Flag if need to use hub gateway.
- groupConnectivity String | "None" | "DirectlyConnected" 
- Group connectivity type.
- networkGroup StringId 
- Network group Id.
- isGlobal String | "False" | "True"
- Flag if global is supported.
- useHub String | "False" | "True"Gateway 
- Flag if need to use hub gateway.
ConnectivityGroupItemResponse, ConnectivityGroupItemResponseArgs        
- GroupConnectivity string
- Group connectivity type.
- NetworkGroup stringId 
- Network group Id.
- IsGlobal string
- Flag if global is supported.
- UseHub stringGateway 
- Flag if need to use hub gateway.
- GroupConnectivity string
- Group connectivity type.
- NetworkGroup stringId 
- Network group Id.
- IsGlobal string
- Flag if global is supported.
- UseHub stringGateway 
- Flag if need to use hub gateway.
- groupConnectivity String
- Group connectivity type.
- networkGroup StringId 
- Network group Id.
- isGlobal String
- Flag if global is supported.
- useHub StringGateway 
- Flag if need to use hub gateway.
- groupConnectivity string
- Group connectivity type.
- networkGroup stringId 
- Network group Id.
- isGlobal string
- Flag if global is supported.
- useHub stringGateway 
- Flag if need to use hub gateway.
- group_connectivity str
- Group connectivity type.
- network_group_ strid 
- Network group Id.
- is_global str
- Flag if global is supported.
- use_hub_ strgateway 
- Flag if need to use hub gateway.
- groupConnectivity String
- Group connectivity type.
- networkGroup StringId 
- Network group Id.
- isGlobal String
- Flag if global is supported.
- useHub StringGateway 
- Flag if need to use hub gateway.
ConnectivityTopology, ConnectivityTopologyArgs    
- HubAnd Spoke 
- HubAndSpoke
- Mesh
- Mesh
- ConnectivityTopology Hub And Spoke 
- HubAndSpoke
- ConnectivityTopology Mesh 
- Mesh
- HubAnd Spoke 
- HubAndSpoke
- Mesh
- Mesh
- HubAnd Spoke 
- HubAndSpoke
- Mesh
- Mesh
- HUB_AND_SPOKE
- HubAndSpoke
- MESH
- Mesh
- "HubAnd Spoke" 
- HubAndSpoke
- "Mesh"
- Mesh
DeleteExistingPeering, DeleteExistingPeeringArgs      
- False
- False
- True
- True
- DeleteExisting Peering False 
- False
- DeleteExisting Peering True 
- True
- False
- False
- True
- True
- False
- False
- True
- True
- FALSE
- False
- TRUE
- True
- "False"
- False
- "True"
- True
GroupConnectivity, GroupConnectivityArgs    
- None
- None
- DirectlyConnected 
- DirectlyConnected
- GroupConnectivity None 
- None
- GroupConnectivity Directly Connected 
- 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
- IsGlobal False 
- False
- IsGlobal True 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The type of identity that last modified the resource.
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The type of identity that last modified the resource.
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The type of identity that last modified the resource.
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The type of identity that last modified the resource.
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The type of identity that last modified the resource.
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The type of identity that last modified the resource.
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UseHubGateway, UseHubGatewayArgs      
- False
- False
- True
- True
- UseHub Gateway False 
- False
- UseHub Gateway True 
- 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