azure-native.databricks.VNetPeering
Explore with Pulumi AI
Peerings in a VirtualNetwork resource 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"
"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 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(Map.of("id", "/subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/subramantest/providers/Microsoft.Network/virtualNetworks/subramanvnet"))
.resourceGroupName("rg")
.useRemoteGateways(false)
.workspaceName("myWorkspace")
.build());
}
}
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=azure_native.databricks.VirtualNetworkPeeringPropertiesFormatRemoteVirtualNetworkArgs(
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")
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",
});
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 =
{
{ "id", "string" },
},
ResourceGroupName = "string",
WorkspaceName = "string",
AllowForwardedTraffic = false,
AllowGatewayTransit = false,
AllowVirtualNetworkAccess = false,
DatabricksAddressSpace =
{
{ "addressPrefixes", new[]
{
"string",
} },
},
DatabricksVirtualNetwork =
{
{ "id", "string" },
},
PeeringName = "string",
RemoteAddressSpace =
{
{ "addressPrefixes", new[]
{
"string",
} },
},
UseRemoteGateways = false,
});
example, err := databricks.NewVNetPeering(ctx, "vNetPeeringResource", &databricks.VNetPeeringArgs{
RemoteVirtualNetwork: map[string]interface{}{
"id": "string",
},
ResourceGroupName: "string",
WorkspaceName: "string",
AllowForwardedTraffic: false,
AllowGatewayTransit: false,
AllowVirtualNetworkAccess: false,
DatabricksAddressSpace: map[string]interface{}{
"addressPrefixes": []string{
"string",
},
},
DatabricksVirtualNetwork: map[string]interface{}{
"id": "string",
},
PeeringName: "string",
RemoteAddressSpace: map[string]interface{}{
"addressPrefixes": []string{
"string",
},
},
UseRemoteGateways: false,
})
var vNetPeeringResource = new VNetPeering("vNetPeeringResource", VNetPeeringArgs.builder()
.remoteVirtualNetwork(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.workspaceName("string")
.allowForwardedTraffic(false)
.allowGatewayTransit(false)
.allowVirtualNetworkAccess(false)
.databricksAddressSpace(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.databricksVirtualNetwork(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.peeringName("string")
.remoteAddressSpace(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.useRemoteGateways(false)
.build());
v_net_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={
addressPrefixes: [string],
},
databricks_virtual_network={
id: string,
},
peering_name=string,
remote_address_space={
addressPrefixes: [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
The VNetPeering resource accepts the following input properties:
- Remote
Virtual 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).
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - 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 Pulumi.Space Azure Native. Databricks. Inputs. Address Space - The reference to the databricks virtual network address space.
- Databricks
Virtual 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).
- Peering
Name string - The name of the workspace vNet peering.
- Remote
Address Pulumi.Space Azure Native. Databricks. Inputs. Address Space - 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.
- 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 stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - 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 string - 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.
- remote
Virtual 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).
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - The name of the workspace.
- allow
Forwarded BooleanTraffic - Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- allow
Gateway BooleanTransit - If gateway links can be used in remote virtual networking to link to this virtual network.
- allow
Virtual BooleanNetwork 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 - The reference to the databricks virtual network address space.
- databricks
Virtual 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).
- peering
Name String - The name of the workspace vNet peering.
- remote
Address AddressSpace Space - The reference to the remote virtual network address space.
- use
Remote 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 - 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 stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - The name of the workspace.
- allow
Forwarded booleanTraffic - Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- allow
Gateway booleanTransit - If gateway links can be used in remote virtual networking to link to this virtual network.
- allow
Virtual booleanNetwork 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 - The reference to the databricks virtual network address space.
- databricks
Virtual 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).
- peering
Name string - The name of the workspace vNet peering.
- remote
Address AddressSpace Space - The reference to the remote virtual network address space.
- use
Remote 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.
- remote
Virtual 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).
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - The name of the workspace.
- allow
Forwarded BooleanTraffic - Whether the forwarded traffic from the VMs in the local virtual network will be allowed/disallowed in remote virtual network.
- allow
Gateway BooleanTransit - If gateway links can be used in remote virtual networking to link to this virtual network.
- allow
Virtual BooleanNetwork Access - Whether the VMs in the local virtual network space would be able to access the VMs in remote virtual network space.
- databricks
Address Property MapSpace - The reference to the databricks virtual network address space.
- databricks
Virtual 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).
- peering
Name String - The name of the workspace vNet peering.
- remote
Address Property MapSpace - The reference to the remote virtual network address space.
- use
Remote 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
- Peering
State string - The status of the virtual network peering.
- Provisioning
State 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
- Peering
State string - The status of the virtual network peering.
- Provisioning
State 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
- peering
State String - The status of the virtual network peering.
- provisioning
State 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
- peering
State string - The status of the virtual network peering.
- provisioning
State 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
- peering
State String - The status of the virtual network peering.
- provisioning
State String - The provisioning state of the virtual network peering resource.
- type String
- type of the virtual network peering resource
Supporting Types
AddressSpace, AddressSpaceArgs
- Address
Prefixes List<string> - A list of address blocks reserved for this virtual network in CIDR notation.
- Address
Prefixes []string - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes 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.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
AddressSpaceResponse, AddressSpaceResponseArgs
- Address
Prefixes List<string> - A list of address blocks reserved for this virtual network in CIDR notation.
- Address
Prefixes []string - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes 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.
- address
Prefixes 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/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/subramantest/providers/Microsoft.Databricks/workspaces/adbworkspace/virtualNetworkPeerings/vNetPeeringTest
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0