published on Friday, Mar 20, 2026 by Pulumi
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:
- Extended
Location Pulumi.Azure Native. Network Cloud. Inputs. Extended Location - The extended location of the cluster associated with the resource.
- Network
Id string - The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Access
Bridge stringName - The name of the access bridge.
- Ipv4Connected
Prefix string - The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
- Ipv6Connected
Prefix 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
- Security
Rules List<Pulumi.Azure Native. Network Cloud. Inputs. Access Bridge Security Rule> - The list of security rules enforced by the access bridge.
- Dictionary<string, string>
- Resource tags.
- Extended
Location ExtendedLocation Args - The extended location of the cluster associated with the resource.
- Network
Id string - The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Access
Bridge stringName - The name of the access bridge.
- Ipv4Connected
Prefix string - The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
- Ipv6Connected
Prefix 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
- Security
Rules []AccessBridge Security Rule Args - The list of security rules enforced by the access bridge.
- map[string]string
- Resource tags.
- extended
Location ExtendedLocation - The extended location of the cluster associated with the resource.
- network
Id String - The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- access
Bridge StringName - The name of the access bridge.
- ipv4Connected
Prefix String - The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
- ipv6Connected
Prefix 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
- security
Rules List<AccessBridge Security Rule> - The list of security rules enforced by the access bridge.
- Map<String,String>
- Resource tags.
- extended
Location ExtendedLocation - The extended location of the cluster associated with the resource.
- network
Id string - The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- access
Bridge stringName - The name of the access bridge.
- ipv4Connected
Prefix string - The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
- ipv6Connected
Prefix 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
- security
Rules AccessBridge Security Rule[] - The list of security rules enforced by the access bridge.
- {[key: string]: string}
- Resource tags.
- extended_
location ExtendedLocation Args - 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_ strname - The name of the resource group. The name is case insensitive.
- access_
bridge_ strname - The name of the access bridge.
- ipv4_
connected_ strprefix - 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_ strprefix - 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[AccessBridge Security Rule Args] - The list of security rules enforced by the access bridge.
- Mapping[str, str]
- Resource tags.
- extended
Location Property Map - The extended location of the cluster associated with the resource.
- network
Id String - The resource ID of the internal network in a layer 3 isolation domain containing the IP subnets to use.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- access
Bridge StringName - The name of the access bridge.
- ipv4Connected
Prefix String - The IPv4 subnet from which the access bridge allocates an address. This subnet must be part of the internal network specified by networkId.
- ipv6Connected
Prefix 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
- security
Rules List<Property Map> - The list of security rules enforced by the access bridge.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the AccessBridge resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Detailed
Status string - The detailed status reported by the access bridge.
- Detailed
Status stringMessage - The descriptive message that accompanies the detailed status.
- Endpoints
List<Pulumi.
Azure Native. Network Cloud. Outputs. Access Bridge Endpoint Response> - 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.
- Provisioning
State string - The provisioning state of the access bridge.
- System
Data Pulumi.Azure Native. Network Cloud. Outputs. System Data Response - 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 stringVersion - The Azure API version of the resource.
- Detailed
Status string - The detailed status reported by the access bridge.
- Detailed
Status stringMessage - The descriptive message that accompanies the detailed status.
- Endpoints
[]Access
Bridge Endpoint Response - 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.
- Provisioning
State string - The provisioning state of the access bridge.
- System
Data SystemData Response - 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 StringVersion - The Azure API version of the resource.
- detailed
Status String - The detailed status reported by the access bridge.
- detailed
Status StringMessage - The descriptive message that accompanies the detailed status.
- endpoints
List<Access
Bridge Endpoint Response> - 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.
- provisioning
State String - The provisioning state of the access bridge.
- system
Data SystemData Response - 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 stringVersion - The Azure API version of the resource.
- detailed
Status string - The detailed status reported by the access bridge.
- detailed
Status stringMessage - The descriptive message that accompanies the detailed status.
- endpoints
Access
Bridge Endpoint Response[] - 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.
- provisioning
State string - The provisioning state of the access bridge.
- system
Data SystemData Response - 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_ strversion - The Azure API version of the resource.
- detailed_
status str - The detailed status reported by the access bridge.
- detailed_
status_ strmessage - The descriptive message that accompanies the detailed status.
- endpoints
Sequence[Access
Bridge Endpoint Response] - 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 SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- detailed
Status String - The detailed status reported by the access bridge.
- detailed
Status StringMessage - 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.
- provisioning
State String - The provisioning state of the access bridge.
- system
Data 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.
Azure Native. Network Cloud. Security Rule Direction - 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 | Security
Rule Direction - 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 | Security
Rule Direction - 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 | Security
Rule Direction - 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 | Security
Rule Direction - 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
ExtendedLocationResponse, ExtendedLocationResponseArgs
SecurityRuleDirection, SecurityRuleDirectionArgs
- Inbound
InboundInbound traffic toward the on-premsises cluster.- Outbound
OutboundOutbound traffic from the on-premises cluster.
- Security
Rule Direction Inbound InboundInbound traffic toward the on-premsises cluster.- Security
Rule Direction Outbound OutboundOutbound traffic from the on-premises cluster.
- Inbound
InboundInbound traffic toward the on-premsises cluster.- Outbound
OutboundOutbound traffic from the on-premises cluster.
- Inbound
InboundInbound traffic toward the on-premsises cluster.- Outbound
OutboundOutbound traffic from the on-premises cluster.
- INBOUND
InboundInbound traffic toward the on-premsises cluster.- OUTBOUND
OutboundOutbound traffic from the on-premises cluster.
- "Inbound"
InboundInbound traffic toward the on-premsises cluster.- "Outbound"
OutboundOutbound traffic from the on-premises cluster.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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
published on Friday, Mar 20, 2026 by Pulumi
