1. Packages
  2. Azure Native
  3. API Docs
  4. networkcloud
  5. AccessBridge
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi

    Uses Azure REST API version 2026-01-01-preview.

    Example Usage

    Create or update access bridge

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var accessBridge = new AzureNative.NetworkCloud.AccessBridge("accessBridge", new()
        {
            AccessBridgeName = "Bastion",
            ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
            {
                Name = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
                Type = "CustomLocation",
            },
            Ipv4ConnectedPrefix = "198.51.100.0/24",
            Ipv6ConnectedPrefix = "2001:db8::/64",
            Location = "location",
            NetworkId = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName/internalNetworks/internalNetworkName",
            ResourceGroupName = "resourceGroupName",
            SecurityRules = new[]
            {
                new AzureNative.NetworkCloud.Inputs.AccessBridgeSecurityRuleArgs
                {
                    Description = "Allow management plane egress",
                    Direction = AzureNative.NetworkCloud.SecurityRuleDirection.Outbound,
                    Ipv4Addresses = new[]
                    {
                        "10.10.20.10-10.10.20.20",
                    },
                    Ipv6Addresses = new[]
                    {
                        "2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff",
                    },
                    Port = "24562-24570",
                },
            },
            Tags = 
            {
                { "key1", "myvalue1" },
                { "key2", "myvalue2" },
            },
        });
    
    });
    
    package main
    
    import (
    	networkcloud "github.com/pulumi/pulumi-azure-native-sdk/networkcloud/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := networkcloud.NewAccessBridge(ctx, "accessBridge", &networkcloud.AccessBridgeArgs{
    			AccessBridgeName: pulumi.String("Bastion"),
    			ExtendedLocation: &networkcloud.ExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
    				Type: pulumi.String("CustomLocation"),
    			},
    			Ipv4ConnectedPrefix: pulumi.String("198.51.100.0/24"),
    			Ipv6ConnectedPrefix: pulumi.String("2001:db8::/64"),
    			Location:            pulumi.String("location"),
    			NetworkId:           pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName/internalNetworks/internalNetworkName"),
    			ResourceGroupName:   pulumi.String("resourceGroupName"),
    			SecurityRules: networkcloud.AccessBridgeSecurityRuleArray{
    				&networkcloud.AccessBridgeSecurityRuleArgs{
    					Description: pulumi.String("Allow management plane egress"),
    					Direction:   pulumi.String(networkcloud.SecurityRuleDirectionOutbound),
    					Ipv4Addresses: pulumi.StringArray{
    						pulumi.String("10.10.20.10-10.10.20.20"),
    					},
    					Ipv6Addresses: pulumi.StringArray{
    						pulumi.String("2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff"),
    					},
    					Port: pulumi.String("24562-24570"),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"key1": pulumi.String("myvalue1"),
    				"key2": pulumi.String("myvalue2"),
    			},
    		})
    		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.networkcloud.AccessBridge;
    import com.pulumi.azurenative.networkcloud.AccessBridgeArgs;
    import com.pulumi.azurenative.networkcloud.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.networkcloud.inputs.AccessBridgeSecurityRuleArgs;
    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 accessBridge = new AccessBridge("accessBridge", AccessBridgeArgs.builder()
                .accessBridgeName("Bastion")
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName")
                    .type("CustomLocation")
                    .build())
                .ipv4ConnectedPrefix("198.51.100.0/24")
                .ipv6ConnectedPrefix("2001:db8::/64")
                .location("location")
                .networkId("/subscriptions/123e4567-e89b-12d3-a456-426655440000/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName/internalNetworks/internalNetworkName")
                .resourceGroupName("resourceGroupName")
                .securityRules(AccessBridgeSecurityRuleArgs.builder()
                    .description("Allow management plane egress")
                    .direction("Outbound")
                    .ipv4Addresses("10.10.20.10-10.10.20.20")
                    .ipv6Addresses("2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff")
                    .port("24562-24570")
                    .build())
                .tags(Map.ofEntries(
                    Map.entry("key1", "myvalue1"),
                    Map.entry("key2", "myvalue2")
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const accessBridge = new azure_native.networkcloud.AccessBridge("accessBridge", {
        accessBridgeName: "Bastion",
        extendedLocation: {
            name: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
            type: "CustomLocation",
        },
        ipv4ConnectedPrefix: "198.51.100.0/24",
        ipv6ConnectedPrefix: "2001:db8::/64",
        location: "location",
        networkId: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName/internalNetworks/internalNetworkName",
        resourceGroupName: "resourceGroupName",
        securityRules: [{
            description: "Allow management plane egress",
            direction: azure_native.networkcloud.SecurityRuleDirection.Outbound,
            ipv4Addresses: ["10.10.20.10-10.10.20.20"],
            ipv6Addresses: ["2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff"],
            port: "24562-24570",
        }],
        tags: {
            key1: "myvalue1",
            key2: "myvalue2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    access_bridge = azure_native.networkcloud.AccessBridge("accessBridge",
        access_bridge_name="Bastion",
        extended_location={
            "name": "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
            "type": "CustomLocation",
        },
        ipv4_connected_prefix="198.51.100.0/24",
        ipv6_connected_prefix="2001:db8::/64",
        location="location",
        network_id="/subscriptions/123e4567-e89b-12d3-a456-426655440000/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName/internalNetworks/internalNetworkName",
        resource_group_name="resourceGroupName",
        security_rules=[{
            "description": "Allow management plane egress",
            "direction": azure_native.networkcloud.SecurityRuleDirection.OUTBOUND,
            "ipv4_addresses": ["10.10.20.10-10.10.20.20"],
            "ipv6_addresses": ["2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff"],
            "port": "24562-24570",
        }],
        tags={
            "key1": "myvalue1",
            "key2": "myvalue2",
        })
    
    resources:
      accessBridge:
        type: azure-native:networkcloud:AccessBridge
        properties:
          accessBridgeName: Bastion
          extendedLocation:
            name: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName
            type: CustomLocation
          ipv4ConnectedPrefix: 198.51.100.0/24
          ipv6ConnectedPrefix: 2001:db8::/64
          location: location
          networkId: /subscriptions/123e4567-e89b-12d3-a456-426655440000/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName/internalNetworks/internalNetworkName
          resourceGroupName: resourceGroupName
          securityRules:
            - description: Allow management plane egress
              direction: Outbound
              ipv4Addresses:
                - 10.10.20.10-10.10.20.20
              ipv6Addresses:
                - 2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff
              port: 24562-24570
          tags:
            key1: myvalue1
            key2: myvalue2
    

    Create AccessBridge Resource

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

    Constructor syntax

    new AccessBridge(name: string, args: AccessBridgeArgs, opts?: CustomResourceOptions);
    @overload
    def AccessBridge(resource_name: str,
                     args: AccessBridgeArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def AccessBridge(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     extended_location: Optional[ExtendedLocationArgs] = None,
                     network_id: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     access_bridge_name: Optional[str] = None,
                     ipv4_connected_prefix: Optional[str] = None,
                     ipv6_connected_prefix: Optional[str] = None,
                     location: Optional[str] = None,
                     security_rules: Optional[Sequence[AccessBridgeSecurityRuleArgs]] = None,
                     tags: Optional[Mapping[str, str]] = None)
    func NewAccessBridge(ctx *Context, name string, args AccessBridgeArgs, opts ...ResourceOption) (*AccessBridge, error)
    public AccessBridge(string name, AccessBridgeArgs args, CustomResourceOptions? opts = null)
    public AccessBridge(String name, AccessBridgeArgs args)
    public AccessBridge(String name, AccessBridgeArgs args, CustomResourceOptions options)
    
    type: azure-native:networkcloud:AccessBridge
    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 AccessBridgeArgs
    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 AccessBridgeArgs
    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 AccessBridgeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccessBridgeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccessBridgeArgs
    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 accessBridgeResource = new AzureNative.NetworkCloud.AccessBridge("accessBridgeResource", new()
    {
        ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        NetworkId = "string",
        ResourceGroupName = "string",
        AccessBridgeName = "string",
        Ipv4ConnectedPrefix = "string",
        Ipv6ConnectedPrefix = "string",
        Location = "string",
        SecurityRules = new[]
        {
            new AzureNative.NetworkCloud.Inputs.AccessBridgeSecurityRuleArgs
            {
                Direction = "string",
                Port = "string",
                Description = "string",
                Ipv4Addresses = new[]
                {
                    "string",
                },
                Ipv6Addresses = new[]
                {
                    "string",
                },
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := networkcloud.NewAccessBridge(ctx, "accessBridgeResource", &networkcloud.AccessBridgeArgs{
    	ExtendedLocation: &networkcloud.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	NetworkId:           pulumi.String("string"),
    	ResourceGroupName:   pulumi.String("string"),
    	AccessBridgeName:    pulumi.String("string"),
    	Ipv4ConnectedPrefix: pulumi.String("string"),
    	Ipv6ConnectedPrefix: pulumi.String("string"),
    	Location:            pulumi.String("string"),
    	SecurityRules: networkcloud.AccessBridgeSecurityRuleArray{
    		&networkcloud.AccessBridgeSecurityRuleArgs{
    			Direction:   pulumi.String("string"),
    			Port:        pulumi.String("string"),
    			Description: pulumi.String("string"),
    			Ipv4Addresses: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Ipv6Addresses: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var accessBridgeResource = new AccessBridge("accessBridgeResource", AccessBridgeArgs.builder()
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .networkId("string")
        .resourceGroupName("string")
        .accessBridgeName("string")
        .ipv4ConnectedPrefix("string")
        .ipv6ConnectedPrefix("string")
        .location("string")
        .securityRules(AccessBridgeSecurityRuleArgs.builder()
            .direction("string")
            .port("string")
            .description("string")
            .ipv4Addresses("string")
            .ipv6Addresses("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    access_bridge_resource = azure_native.networkcloud.AccessBridge("accessBridgeResource",
        extended_location={
            "name": "string",
            "type": "string",
        },
        network_id="string",
        resource_group_name="string",
        access_bridge_name="string",
        ipv4_connected_prefix="string",
        ipv6_connected_prefix="string",
        location="string",
        security_rules=[{
            "direction": "string",
            "port": "string",
            "description": "string",
            "ipv4_addresses": ["string"],
            "ipv6_addresses": ["string"],
        }],
        tags={
            "string": "string",
        })
    
    const accessBridgeResource = new azure_native.networkcloud.AccessBridge("accessBridgeResource", {
        extendedLocation: {
            name: "string",
            type: "string",
        },
        networkId: "string",
        resourceGroupName: "string",
        accessBridgeName: "string",
        ipv4ConnectedPrefix: "string",
        ipv6ConnectedPrefix: "string",
        location: "string",
        securityRules: [{
            direction: "string",
            port: "string",
            description: "string",
            ipv4Addresses: ["string"],
            ipv6Addresses: ["string"],
        }],
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:networkcloud:AccessBridge
    properties:
        accessBridgeName: string
        extendedLocation:
            name: string
            type: string
        ipv4ConnectedPrefix: string
        ipv6ConnectedPrefix: string
        location: string
        networkId: string
        resourceGroupName: string
        securityRules:
            - description: string
              direction: string
              ipv4Addresses:
                - string
              ipv6Addresses:
                - string
              port: string
        tags:
            string: string
    

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

    ExtendedLocation Pulumi.AzureNative.NetworkCloud.Inputs.ExtendedLocation
    The extended location of the cluster associated with the resource.
    NetworkId string
    The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AccessBridgeName string
    The name of the access bridge.
    Ipv4ConnectedPrefix string
    The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    Ipv6ConnectedPrefix string
    The IPv6 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    Location string
    The geo-location where the resource lives
    SecurityRules List<Pulumi.AzureNative.NetworkCloud.Inputs.AccessBridgeSecurityRule>
    The list of security rules enforced by the access bridge.
    Tags Dictionary<string, string>
    Resource tags.
    ExtendedLocation ExtendedLocationArgs
    The extended location of the cluster associated with the resource.
    NetworkId string
    The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AccessBridgeName string
    The name of the access bridge.
    Ipv4ConnectedPrefix string
    The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    Ipv6ConnectedPrefix string
    The IPv6 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    Location string
    The geo-location where the resource lives
    SecurityRules []AccessBridgeSecurityRuleArgs
    The list of security rules enforced by the access bridge.
    Tags map[string]string
    Resource tags.
    extendedLocation ExtendedLocation
    The extended location of the cluster associated with the resource.
    networkId String
    The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    accessBridgeName String
    The name of the access bridge.
    ipv4ConnectedPrefix String
    The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    ipv6ConnectedPrefix String
    The IPv6 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    location String
    The geo-location where the resource lives
    securityRules List<AccessBridgeSecurityRule>
    The list of security rules enforced by the access bridge.
    tags Map<String,String>
    Resource tags.
    extendedLocation ExtendedLocation
    The extended location of the cluster associated with the resource.
    networkId string
    The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    accessBridgeName string
    The name of the access bridge.
    ipv4ConnectedPrefix string
    The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    ipv6ConnectedPrefix string
    The IPv6 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    location string
    The geo-location where the resource lives
    securityRules AccessBridgeSecurityRule[]
    The list of security rules enforced by the access bridge.
    tags {[key: string]: string}
    Resource tags.
    extended_location ExtendedLocationArgs
    The extended location of the cluster associated with the resource.
    network_id str
    The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    access_bridge_name str
    The name of the access bridge.
    ipv4_connected_prefix str
    The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    ipv6_connected_prefix str
    The IPv6 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    location str
    The geo-location where the resource lives
    security_rules Sequence[AccessBridgeSecurityRuleArgs]
    The list of security rules enforced by the access bridge.
    tags Mapping[str, str]
    Resource tags.
    extendedLocation Property Map
    The extended location of the cluster associated with the resource.
    networkId String
    The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    accessBridgeName String
    The name of the access bridge.
    ipv4ConnectedPrefix String
    The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    ipv6ConnectedPrefix String
    The IPv6 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
    location String
    The geo-location where the resource lives
    securityRules List<Property Map>
    The list of security rules enforced by the access bridge.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    DetailedStatus string
    The detailed status reported by the access bridge.
    DetailedStatusMessage string
    The descriptive message that accompanies the detailed status.
    Endpoints List<Pulumi.AzureNative.NetworkCloud.Outputs.AccessBridgeEndpointResponse>
    The observed endpoints that clients should use to reach the access bridge.
    Etag string
    Resource ETag.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Protocol string
    The protocol advertised by the access bridge endpoints.
    ProvisioningState string
    The provisioning state of the access bridge.
    SystemData Pulumi.AzureNative.NetworkCloud.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    DetailedStatus string
    The detailed status reported by the access bridge.
    DetailedStatusMessage string
    The descriptive message that accompanies the detailed status.
    Endpoints []AccessBridgeEndpointResponse
    The observed endpoints that clients should use to reach the access bridge.
    Etag string
    Resource ETag.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Protocol string
    The protocol advertised by the access bridge endpoints.
    ProvisioningState string
    The provisioning state of the access bridge.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    detailedStatus String
    The detailed status reported by the access bridge.
    detailedStatusMessage String
    The descriptive message that accompanies the detailed status.
    endpoints List<AccessBridgeEndpointResponse>
    The observed endpoints that clients should use to reach the access bridge.
    etag String
    Resource ETag.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    protocol String
    The protocol advertised by the access bridge endpoints.
    provisioningState String
    The provisioning state of the access bridge.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    detailedStatus string
    The detailed status reported by the access bridge.
    detailedStatusMessage string
    The descriptive message that accompanies the detailed status.
    endpoints AccessBridgeEndpointResponse[]
    The observed endpoints that clients should use to reach the access bridge.
    etag string
    Resource ETag.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    protocol string
    The protocol advertised by the access bridge endpoints.
    provisioningState string
    The provisioning state of the access bridge.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    detailed_status str
    The detailed status reported by the access bridge.
    detailed_status_message str
    The descriptive message that accompanies the detailed status.
    endpoints Sequence[AccessBridgeEndpointResponse]
    The observed endpoints that clients should use to reach the access bridge.
    etag str
    Resource ETag.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    protocol str
    The protocol advertised by the access bridge endpoints.
    provisioning_state str
    The provisioning state of the access bridge.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    detailedStatus String
    The detailed status reported by the access bridge.
    detailedStatusMessage String
    The descriptive message that accompanies the detailed status.
    endpoints List<Property Map>
    The observed endpoints that clients should use to reach the access bridge.
    etag String
    Resource ETag.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    protocol String
    The protocol advertised by the access bridge endpoints.
    provisioningState String
    The provisioning state of the access bridge.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AccessBridgeEndpointResponse, AccessBridgeEndpointResponseArgs

    Fqdn string
    The fully qualified domain name used to describe the certificate name for the endpoint.
    Ipv4Address string
    The IPv4 address associated with the endpoint.
    Ipv6Address string
    The IPv6 address associated with the endpoint.
    Name string
    The name that identifies the type of endpoint (for example VIP or host).
    Fqdn string
    The fully qualified domain name used to describe the certificate name for the endpoint.
    Ipv4Address string
    The IPv4 address associated with the endpoint.
    Ipv6Address string
    The IPv6 address associated with the endpoint.
    Name string
    The name that identifies the type of endpoint (for example VIP or host).
    fqdn String
    The fully qualified domain name used to describe the certificate name for the endpoint.
    ipv4Address String
    The IPv4 address associated with the endpoint.
    ipv6Address String
    The IPv6 address associated with the endpoint.
    name String
    The name that identifies the type of endpoint (for example VIP or host).
    fqdn string
    The fully qualified domain name used to describe the certificate name for the endpoint.
    ipv4Address string
    The IPv4 address associated with the endpoint.
    ipv6Address string
    The IPv6 address associated with the endpoint.
    name string
    The name that identifies the type of endpoint (for example VIP or host).
    fqdn str
    The fully qualified domain name used to describe the certificate name for the endpoint.
    ipv4_address str
    The IPv4 address associated with the endpoint.
    ipv6_address str
    The IPv6 address associated with the endpoint.
    name str
    The name that identifies the type of endpoint (for example VIP or host).
    fqdn String
    The fully qualified domain name used to describe the certificate name for the endpoint.
    ipv4Address String
    The IPv4 address associated with the endpoint.
    ipv6Address String
    The IPv6 address associated with the endpoint.
    name String
    The name that identifies the type of endpoint (for example VIP or host).

    AccessBridgeSecurityRule, AccessBridgeSecurityRuleArgs

    Direction string | Pulumi.AzureNative.NetworkCloud.SecurityRuleDirection
    The direction of allowed network traffic based on the rule.
    Port string
    The source or destination port or port range. Example 24562 or 24562-24570.
    Description string
    The user provided value describing this rule.
    Ipv4Addresses List<string>
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    Ipv6Addresses List<string>
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    Direction string | SecurityRuleDirection
    The direction of allowed network traffic based on the rule.
    Port string
    The source or destination port or port range. Example 24562 or 24562-24570.
    Description string
    The user provided value describing this rule.
    Ipv4Addresses []string
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    Ipv6Addresses []string
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    direction String | SecurityRuleDirection
    The direction of allowed network traffic based on the rule.
    port String
    The source or destination port or port range. Example 24562 or 24562-24570.
    description String
    The user provided value describing this rule.
    ipv4Addresses List<String>
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    ipv6Addresses List<String>
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    direction string | SecurityRuleDirection
    The direction of allowed network traffic based on the rule.
    port string
    The source or destination port or port range. Example 24562 or 24562-24570.
    description string
    The user provided value describing this rule.
    ipv4Addresses string[]
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    ipv6Addresses string[]
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    direction str | SecurityRuleDirection
    The direction of allowed network traffic based on the rule.
    port str
    The source or destination port or port range. Example 24562 or 24562-24570.
    description str
    The user provided value describing this rule.
    ipv4_addresses Sequence[str]
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    ipv6_addresses Sequence[str]
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    direction String | "Inbound" | "Outbound"
    The direction of allowed network traffic based on the rule.
    port String
    The source or destination port or port range. Example 24562 or 24562-24570.
    description String
    The user provided value describing this rule.
    ipv4Addresses List<String>
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    ipv6Addresses List<String>
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.

    AccessBridgeSecurityRuleResponse, AccessBridgeSecurityRuleResponseArgs

    Direction string
    The direction of allowed network traffic based on the rule.
    Port string
    The source or destination port or port range. Example 24562 or 24562-24570.
    Description string
    The user provided value describing this rule.
    Ipv4Addresses List<string>
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    Ipv6Addresses List<string>
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    Direction string
    The direction of allowed network traffic based on the rule.
    Port string
    The source or destination port or port range. Example 24562 or 24562-24570.
    Description string
    The user provided value describing this rule.
    Ipv4Addresses []string
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    Ipv6Addresses []string
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    direction String
    The direction of allowed network traffic based on the rule.
    port String
    The source or destination port or port range. Example 24562 or 24562-24570.
    description String
    The user provided value describing this rule.
    ipv4Addresses List<String>
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    ipv6Addresses List<String>
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    direction string
    The direction of allowed network traffic based on the rule.
    port string
    The source or destination port or port range. Example 24562 or 24562-24570.
    description string
    The user provided value describing this rule.
    ipv4Addresses string[]
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    ipv6Addresses string[]
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    direction str
    The direction of allowed network traffic based on the rule.
    port str
    The source or destination port or port range. Example 24562 or 24562-24570.
    description str
    The user provided value describing this rule.
    ipv4_addresses Sequence[str]
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    ipv6_addresses Sequence[str]
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.
    direction String
    The direction of allowed network traffic based on the rule.
    port String
    The source or destination port or port range. Example 24562 or 24562-24570.
    description String
    The user provided value describing this rule.
    ipv4Addresses List<String>
    The set of IPv4 addresses permitted as the source or destination of the security rule. For as single address, utilize a /32 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 10.10.10.10-10.10.10.20 or 10.10.10.10/24.
    ipv6Addresses List<String>
    The set of IPv6 addresses permitted as the source or destination of the security rule. For as single address, utilize a /128 (CIDR notation). One or both Ipv4Addresses and Ipv6Addresses must be specified. Example formats: 2001:db8:abcd::1-2001:db8:abcd::ff or 2001:db8:abcd::1/64.

    ExtendedLocation, ExtendedLocationArgs

    Name string
    The resource ID of the extended location on which the resource will be created.
    Type string
    The extended location type, for example, CustomLocation.
    Name string
    The resource ID of the extended location on which the resource will be created.
    Type string
    The extended location type, for example, CustomLocation.
    name String
    The resource ID of the extended location on which the resource will be created.
    type String
    The extended location type, for example, CustomLocation.
    name string
    The resource ID of the extended location on which the resource will be created.
    type string
    The extended location type, for example, CustomLocation.
    name str
    The resource ID of the extended location on which the resource will be created.
    type str
    The extended location type, for example, CustomLocation.
    name String
    The resource ID of the extended location on which the resource will be created.
    type String
    The extended location type, for example, CustomLocation.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string
    The resource ID of the extended location on which the resource will be created.
    Type string
    The extended location type, for example, CustomLocation.
    Name string
    The resource ID of the extended location on which the resource will be created.
    Type string
    The extended location type, for example, CustomLocation.
    name String
    The resource ID of the extended location on which the resource will be created.
    type String
    The extended location type, for example, CustomLocation.
    name string
    The resource ID of the extended location on which the resource will be created.
    type string
    The extended location type, for example, CustomLocation.
    name str
    The resource ID of the extended location on which the resource will be created.
    type str
    The extended location type, for example, CustomLocation.
    name String
    The resource ID of the extended location on which the resource will be created.
    type String
    The extended location type, for example, CustomLocation.

    SecurityRuleDirection, SecurityRuleDirectionArgs

    Inbound
    Inbound Inbound traffic toward the on-premsises cluster.
    Outbound
    Outbound Outbound traffic from the on-premises cluster.
    SecurityRuleDirectionInbound
    Inbound Inbound traffic toward the on-premsises cluster.
    SecurityRuleDirectionOutbound
    Outbound Outbound traffic from the on-premises cluster.
    Inbound
    Inbound Inbound traffic toward the on-premsises cluster.
    Outbound
    Outbound Outbound traffic from the on-premises cluster.
    Inbound
    Inbound Inbound traffic toward the on-premsises cluster.
    Outbound
    Outbound Outbound traffic from the on-premises cluster.
    INBOUND
    Inbound Inbound traffic toward the on-premsises cluster.
    OUTBOUND
    Outbound Outbound traffic from the on-premises cluster.
    "Inbound"
    Inbound Inbound traffic toward the on-premsises cluster.
    "Outbound"
    Outbound Outbound traffic from the on-premises cluster.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:networkcloud:AccessBridge accessBridgeName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetworkCloud/accessBridges/{accessBridgeName} 
    

    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 v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.16.0
    published on Friday, Mar 20, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.