azure-native.databricks.VNetPeering
Explore with Pulumi AI
Peerings in a VirtualNetwork resource
Uses Azure REST API version 2023-02-01. In version 1.x of the Azure Native provider, it used API version 2018-04-01.
Example Usage
Create vNet Peering for Workspace
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var vNetPeering = new AzureNative.Databricks.VNetPeering("vNetPeering", new()
    {
        AllowForwardedTraffic = false,
        AllowGatewayTransit = false,
        AllowVirtualNetworkAccess = true,
        PeeringName = "vNetPeeringTest",
        RemoteVirtualNetwork = new AzureNative.Databricks.Inputs.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs
        {
            Id = "/subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/subramantest/providers/Microsoft.Network/virtualNetworks/subramanvnet",
        },
        ResourceGroupName = "rg",
        UseRemoteGateways = false,
        WorkspaceName = "myWorkspace",
    });
});
package main
import (
	databricks "github.com/pulumi/pulumi-azure-native-sdk/databricks/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databricks.NewVNetPeering(ctx, "vNetPeering", &databricks.VNetPeeringArgs{
			AllowForwardedTraffic:     pulumi.Bool(false),
			AllowGatewayTransit:       pulumi.Bool(false),
			AllowVirtualNetworkAccess: pulumi.Bool(true),
			PeeringName:               pulumi.String("vNetPeeringTest"),
			RemoteVirtualNetwork: &databricks.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs{
				Id: pulumi.String("/subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/subramantest/providers/Microsoft.Network/virtualNetworks/subramanvnet"),
			},
			ResourceGroupName: pulumi.String("rg"),
			UseRemoteGateways: pulumi.Bool(false),
			WorkspaceName:     pulumi.String("myWorkspace"),
		})
		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.databricks.VNetPeering;
import com.pulumi.azurenative.databricks.VNetPeeringArgs;
import com.pulumi.azurenative.databricks.inputs.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs;
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 vNetPeering = new VNetPeering("vNetPeering", VNetPeeringArgs.builder()
            .allowForwardedTraffic(false)
            .allowGatewayTransit(false)
            .allowVirtualNetworkAccess(true)
            .peeringName("vNetPeeringTest")
            .remoteVirtualNetwork(VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs.builder()
                .id("/subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/subramantest/providers/Microsoft.Network/virtualNetworks/subramanvnet")
                .build())
            .resourceGroupName("rg")
            .useRemoteGateways(false)
            .workspaceName("myWorkspace")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const vNetPeering = new azure_native.databricks.VNetPeering("vNetPeering", {
    allowForwardedTraffic: false,
    allowGatewayTransit: false,
    allowVirtualNetworkAccess: true,
    peeringName: "vNetPeeringTest",
    remoteVirtualNetwork: {
        id: "/subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/subramantest/providers/Microsoft.Network/virtualNetworks/subramanvnet",
    },
    resourceGroupName: "rg",
    useRemoteGateways: false,
    workspaceName: "myWorkspace",
});
import pulumi
import pulumi_azure_native as azure_native
v_net_peering = azure_native.databricks.VNetPeering("vNetPeering",
    allow_forwarded_traffic=False,
    allow_gateway_transit=False,
    allow_virtual_network_access=True,
    peering_name="vNetPeeringTest",
    remote_virtual_network={
        "id": "/subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/subramantest/providers/Microsoft.Network/virtualNetworks/subramanvnet",
    },
    resource_group_name="rg",
    use_remote_gateways=False,
    workspace_name="myWorkspace")
resources:
  vNetPeering:
    type: azure-native:databricks:VNetPeering
    properties:
      allowForwardedTraffic: false
      allowGatewayTransit: false
      allowVirtualNetworkAccess: true
      peeringName: vNetPeeringTest
      remoteVirtualNetwork:
        id: /subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/subramantest/providers/Microsoft.Network/virtualNetworks/subramanvnet
      resourceGroupName: rg
      useRemoteGateways: false
      workspaceName: myWorkspace
Create VNetPeering Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VNetPeering(name: string, args: VNetPeeringArgs, opts?: CustomResourceOptions);@overload
def VNetPeering(resource_name: str,
                args: VNetPeeringArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def VNetPeering(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                remote_virtual_network: Optional[VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs] = None,
                resource_group_name: Optional[str] = None,
                workspace_name: Optional[str] = None,
                allow_forwarded_traffic: Optional[bool] = None,
                allow_gateway_transit: Optional[bool] = None,
                allow_virtual_network_access: Optional[bool] = None,
                databricks_address_space: Optional[AddressSpaceArgs] = None,
                databricks_virtual_network: Optional[VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkArgs] = None,
                peering_name: Optional[str] = None,
                remote_address_space: Optional[AddressSpaceArgs] = None,
                use_remote_gateways: Optional[bool] = None)func NewVNetPeering(ctx *Context, name string, args VNetPeeringArgs, opts ...ResourceOption) (*VNetPeering, error)public VNetPeering(string name, VNetPeeringArgs args, CustomResourceOptions? opts = null)
public VNetPeering(String name, VNetPeeringArgs args)
public VNetPeering(String name, VNetPeeringArgs args, CustomResourceOptions options)
type: azure-native:databricks:VNetPeering
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 VNetPeeringArgs
- 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 VNetPeeringArgs
- 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 VNetPeeringArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VNetPeeringArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VNetPeeringArgs
- 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 vnetPeeringResource = new AzureNative.Databricks.VNetPeering("vnetPeeringResource", new()
{
    RemoteVirtualNetwork = new AzureNative.Databricks.Inputs.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs
    {
        Id = "string",
    },
    ResourceGroupName = "string",
    WorkspaceName = "string",
    AllowForwardedTraffic = false,
    AllowGatewayTransit = false,
    AllowVirtualNetworkAccess = false,
    DatabricksAddressSpace = new AzureNative.Databricks.Inputs.AddressSpaceArgs
    {
        AddressPrefixes = new[]
        {
            "string",
        },
    },
    DatabricksVirtualNetwork = new AzureNative.Databricks.Inputs.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkArgs
    {
        Id = "string",
    },
    PeeringName = "string",
    RemoteAddressSpace = new AzureNative.Databricks.Inputs.AddressSpaceArgs
    {
        AddressPrefixes = new[]
        {
            "string",
        },
    },
    UseRemoteGateways = false,
});
example, err := databricks.NewVNetPeering(ctx, "vnetPeeringResource", &databricks.VNetPeeringArgs{
	RemoteVirtualNetwork: &databricks.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs{
		Id: pulumi.String("string"),
	},
	ResourceGroupName:         pulumi.String("string"),
	WorkspaceName:             pulumi.String("string"),
	AllowForwardedTraffic:     pulumi.Bool(false),
	AllowGatewayTransit:       pulumi.Bool(false),
	AllowVirtualNetworkAccess: pulumi.Bool(false),
	DatabricksAddressSpace: &databricks.AddressSpaceArgs{
		AddressPrefixes: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	DatabricksVirtualNetwork: &databricks.VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkArgs{
		Id: pulumi.String("string"),
	},
	PeeringName: pulumi.String("string"),
	RemoteAddressSpace: &databricks.AddressSpaceArgs{
		AddressPrefixes: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	UseRemoteGateways: pulumi.Bool(false),
})
var vnetPeeringResource = new VNetPeering("vnetPeeringResource", VNetPeeringArgs.builder()
    .remoteVirtualNetwork(VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs.builder()
        .id("string")
        .build())
    .resourceGroupName("string")
    .workspaceName("string")
    .allowForwardedTraffic(false)
    .allowGatewayTransit(false)
    .allowVirtualNetworkAccess(false)
    .databricksAddressSpace(AddressSpaceArgs.builder()
        .addressPrefixes("string")
        .build())
    .databricksVirtualNetwork(VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkArgs.builder()
        .id("string")
        .build())
    .peeringName("string")
    .remoteAddressSpace(AddressSpaceArgs.builder()
        .addressPrefixes("string")
        .build())
    .useRemoteGateways(false)
    .build());
vnet_peering_resource = azure_native.databricks.VNetPeering("vnetPeeringResource",
    remote_virtual_network={
        "id": "string",
    },
    resource_group_name="string",
    workspace_name="string",
    allow_forwarded_traffic=False,
    allow_gateway_transit=False,
    allow_virtual_network_access=False,
    databricks_address_space={
        "address_prefixes": ["string"],
    },
    databricks_virtual_network={
        "id": "string",
    },
    peering_name="string",
    remote_address_space={
        "address_prefixes": ["string"],
    },
    use_remote_gateways=False)
const vnetPeeringResource = new azure_native.databricks.VNetPeering("vnetPeeringResource", {
    remoteVirtualNetwork: {
        id: "string",
    },
    resourceGroupName: "string",
    workspaceName: "string",
    allowForwardedTraffic: false,
    allowGatewayTransit: false,
    allowVirtualNetworkAccess: false,
    databricksAddressSpace: {
        addressPrefixes: ["string"],
    },
    databricksVirtualNetwork: {
        id: "string",
    },
    peeringName: "string",
    remoteAddressSpace: {
        addressPrefixes: ["string"],
    },
    useRemoteGateways: false,
});
type: azure-native:databricks:VNetPeering
properties:
    allowForwardedTraffic: false
    allowGatewayTransit: false
    allowVirtualNetworkAccess: false
    databricksAddressSpace:
        addressPrefixes:
            - string
    databricksVirtualNetwork:
        id: string
    peeringName: string
    remoteAddressSpace:
        addressPrefixes:
            - string
    remoteVirtualNetwork:
        id: string
    resourceGroupName: string
    useRemoteGateways: false
    workspaceName: string
VNetPeering 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 VNetPeering resource accepts the following input properties:
- RemoteVirtual Pulumi.Network Azure Native. Databricks. Inputs. Virtual Network Peering Properties Format Remote Virtual Network 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- AllowForwarded boolTraffic 
- Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- AllowGateway boolTransit 
- If gateway links can be used in remote virtual networking to link to this virtual network.
- AllowVirtual boolNetwork Access 
- Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.
- DatabricksAddress Pulumi.Space Azure Native. Databricks. Inputs. Address Space 
- The reference to the databricks virtual network address space.
- DatabricksVirtual Pulumi.Network Azure Native. Databricks. Inputs. Virtual Network Peering Properties Format Databricks Virtual Network 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- PeeringName string
- The name of the workspace vNet peering.
- RemoteAddress Pulumi.Space Azure Native. Databricks. Inputs. Address Space 
- The reference to the remote virtual network address space.
- UseRemote boolGateways 
- If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.
- RemoteVirtual VirtualNetwork Network Peering Properties Format Remote Virtual Network Args 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- AllowForwarded boolTraffic 
- Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- AllowGateway boolTransit 
- If gateway links can be used in remote virtual networking to link to this virtual network.
- AllowVirtual boolNetwork Access 
- Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.
- DatabricksAddress AddressSpace Space Args 
- The reference to the databricks virtual network address space.
- DatabricksVirtual VirtualNetwork Network Peering Properties Format Databricks Virtual Network Args 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- PeeringName string
- The name of the workspace vNet peering.
- RemoteAddress AddressSpace Space Args 
- The reference to the remote virtual network address space.
- UseRemote boolGateways 
- If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.
- remoteVirtual VirtualNetwork Network Peering Properties Format Remote Virtual Network 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- allowForwarded BooleanTraffic 
- Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- allowGateway BooleanTransit 
- If gateway links can be used in remote virtual networking to link to this virtual network.
- allowVirtual BooleanNetwork Access 
- Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.
- databricksAddress AddressSpace Space 
- The reference to the databricks virtual network address space.
- databricksVirtual VirtualNetwork Network Peering Properties Format Databricks Virtual Network 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- peeringName String
- The name of the workspace vNet peering.
- remoteAddress AddressSpace Space 
- The reference to the remote virtual network address space.
- useRemote BooleanGateways 
- If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.
- remoteVirtual VirtualNetwork Network Peering Properties Format Remote Virtual Network 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- workspaceName string
- The name of the workspace.
- allowForwarded booleanTraffic 
- Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- allowGateway booleanTransit 
- If gateway links can be used in remote virtual networking to link to this virtual network.
- allowVirtual booleanNetwork Access 
- Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.
- databricksAddress AddressSpace Space 
- The reference to the databricks virtual network address space.
- databricksVirtual VirtualNetwork Network Peering Properties Format Databricks Virtual Network 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- peeringName string
- The name of the workspace vNet peering.
- remoteAddress AddressSpace Space 
- The reference to the remote virtual network address space.
- useRemote booleanGateways 
- If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.
- remote_virtual_ Virtualnetwork Network Peering Properties Format Remote Virtual Network Args 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- workspace_name str
- The name of the workspace.
- allow_forwarded_ booltraffic 
- Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- allow_gateway_ booltransit 
- If gateway links can be used in remote virtual networking to link to this virtual network.
- allow_virtual_ boolnetwork_ access 
- Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.
- databricks_address_ Addressspace Space Args 
- The reference to the databricks virtual network address space.
- databricks_virtual_ Virtualnetwork Network Peering Properties Format Databricks Virtual Network Args 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- peering_name str
- The name of the workspace vNet peering.
- remote_address_ Addressspace Space Args 
- The reference to the remote virtual network address space.
- use_remote_ boolgateways 
- If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.
- remoteVirtual Property MapNetwork 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- allowForwarded BooleanTraffic 
- Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- allowGateway BooleanTransit 
- If gateway links can be used in remote virtual networking to link to this virtual network.
- allowVirtual BooleanNetwork Access 
- Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.
- databricksAddress Property MapSpace 
- The reference to the databricks virtual network address space.
- databricksVirtual Property MapNetwork 
- The remote virtual network should be in the same region. See here to learn more (https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/vnet-peering).
- peeringName String
- The name of the workspace vNet peering.
- remoteAddress Property MapSpace 
- The reference to the remote virtual network address space.
- useRemote BooleanGateways 
- If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.
Outputs
All input properties are implicitly available as output properties. Additionally, the VNetPeering resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the virtual network peering resource
- PeeringState string
- The status of the virtual network peering.
- ProvisioningState string
- The provisioning state of the virtual network peering resource.
- Type string
- type of the virtual network peering resource
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the virtual network peering resource
- PeeringState string
- The status of the virtual network peering.
- ProvisioningState string
- The provisioning state of the virtual network peering resource.
- Type string
- type of the virtual network peering resource
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the virtual network peering resource
- peeringState String
- The status of the virtual network peering.
- provisioningState String
- The provisioning state of the virtual network peering resource.
- type String
- type of the virtual network peering resource
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the virtual network peering resource
- peeringState string
- The status of the virtual network peering.
- provisioningState string
- The provisioning state of the virtual network peering resource.
- type string
- type of the virtual network peering resource
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the virtual network peering resource
- peering_state str
- The status of the virtual network peering.
- provisioning_state str
- The provisioning state of the virtual network peering resource.
- type str
- type of the virtual network peering resource
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the virtual network peering resource
- peeringState String
- The status of the virtual network peering.
- provisioningState String
- The provisioning state of the virtual network peering resource.
- type String
- type of the virtual network peering resource
Supporting Types
AddressSpace, AddressSpaceArgs    
- AddressPrefixes List<string>
- A list of address blocks reserved for this virtual network in CIDR notation.
- AddressPrefixes []string
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes string[]
- A list of address blocks reserved for this virtual network in CIDR notation.
- address_prefixes Sequence[str]
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
AddressSpaceResponse, AddressSpaceResponseArgs      
- AddressPrefixes List<string>
- A list of address blocks reserved for this virtual network in CIDR notation.
- AddressPrefixes []string
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes string[]
- A list of address blocks reserved for this virtual network in CIDR notation.
- address_prefixes Sequence[str]
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetwork, VirtualNetworkPeeringPropertiesFormatDatabricksVirtualNetworkArgs                
- Id string
- The Id of the databricks virtual network.
- Id string
- The Id of the databricks virtual network.
- id String
- The Id of the databricks virtual network.
- id string
- The Id of the databricks virtual network.
- id str
- The Id of the databricks virtual network.
- id String
- The Id of the databricks virtual network.
VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetwork, VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs                
- Id string
- The Id of the remote virtual network.
- Id string
- The Id of the remote virtual network.
- id String
- The Id of the remote virtual network.
- id string
- The Id of the remote virtual network.
- id str
- The Id of the remote virtual network.
- id String
- The Id of the remote virtual network.
VirtualNetworkPeeringPropertiesFormatResponseDatabricksVirtualNetwork, VirtualNetworkPeeringPropertiesFormatResponseDatabricksVirtualNetworkArgs                  
- Id string
- The Id of the databricks virtual network.
- Id string
- The Id of the databricks virtual network.
- id String
- The Id of the databricks virtual network.
- id string
- The Id of the databricks virtual network.
- id str
- The Id of the databricks virtual network.
- id String
- The Id of the databricks virtual network.
VirtualNetworkPeeringPropertiesFormatResponseRemoteVirtualNetwork, VirtualNetworkPeeringPropertiesFormatResponseRemoteVirtualNetworkArgs                  
- Id string
- The Id of the remote virtual network.
- Id string
- The Id of the remote virtual network.
- id String
- The Id of the remote virtual network.
- id string
- The Id of the remote virtual network.
- id str
- The Id of the remote virtual network.
- id String
- The Id of the remote virtual network.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:databricks:VNetPeering vNetPeeringTest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/virtualNetworkPeerings/{peeringName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0