azure-native.managednetworkfabric.NetworkFabricController
Explore with Pulumi AI
The NetworkFabricController resource definition. Azure REST API version: 2023-02-01-preview. Prior API version in Azure Native 1.x: 2023-02-01-preview.
Other available API versions: 2023-06-15.
Example Usage
NetworkFabricControllers_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var networkFabricController = new AzureNative.ManagedNetworkFabric.NetworkFabricController("networkFabricController", new()
{
Annotation = "lab 1",
InfrastructureExpressRouteConnections = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformationArgs
{
ExpressRouteAuthorizationKey = "xxxxxxx",
ExpressRouteCircuitId = "/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
},
},
Ipv4AddressSpace = "172.253.0.0/19",
Location = "eastus",
ManagedResourceGroupConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.ManagedResourceGroupConfigurationArgs
{
Location = "eastus",
Name = "managedResourceGroupName",
},
NetworkFabricControllerName = "NetworkControllerName",
ResourceGroupName = "resourceGroupName",
WorkloadExpressRouteConnections = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformationArgs
{
ExpressRouteAuthorizationKey = "xxxxx",
ExpressRouteCircuitId = "/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
},
},
});
});
package main
import (
managednetworkfabric "github.com/pulumi/pulumi-azure-native-sdk/managednetworkfabric/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := managednetworkfabric.NewNetworkFabricController(ctx, "networkFabricController", &managednetworkfabric.NetworkFabricControllerArgs{
Annotation: pulumi.String("lab 1"),
InfrastructureExpressRouteConnections: managednetworkfabric.ExpressRouteConnectionInformationArray{
&managednetworkfabric.ExpressRouteConnectionInformationArgs{
ExpressRouteAuthorizationKey: pulumi.String("xxxxxxx"),
ExpressRouteCircuitId: pulumi.String("/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName"),
},
},
Ipv4AddressSpace: pulumi.String("172.253.0.0/19"),
Location: pulumi.String("eastus"),
ManagedResourceGroupConfiguration: &managednetworkfabric.ManagedResourceGroupConfigurationArgs{
Location: pulumi.String("eastus"),
Name: pulumi.String("managedResourceGroupName"),
},
NetworkFabricControllerName: pulumi.String("NetworkControllerName"),
ResourceGroupName: pulumi.String("resourceGroupName"),
WorkloadExpressRouteConnections: managednetworkfabric.ExpressRouteConnectionInformationArray{
&managednetworkfabric.ExpressRouteConnectionInformationArgs{
ExpressRouteAuthorizationKey: pulumi.String("xxxxx"),
ExpressRouteCircuitId: pulumi.String("/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName"),
},
},
})
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.managednetworkfabric.NetworkFabricController;
import com.pulumi.azurenative.managednetworkfabric.NetworkFabricControllerArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.ExpressRouteConnectionInformationArgs;
import com.pulumi.azurenative.managednetworkfabric.inputs.ManagedResourceGroupConfigurationArgs;
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 networkFabricController = new NetworkFabricController("networkFabricController", NetworkFabricControllerArgs.builder()
.annotation("lab 1")
.infrastructureExpressRouteConnections(ExpressRouteConnectionInformationArgs.builder()
.expressRouteAuthorizationKey("xxxxxxx")
.expressRouteCircuitId("/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName")
.build())
.ipv4AddressSpace("172.253.0.0/19")
.location("eastus")
.managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
.location("eastus")
.name("managedResourceGroupName")
.build())
.networkFabricControllerName("NetworkControllerName")
.resourceGroupName("resourceGroupName")
.workloadExpressRouteConnections(ExpressRouteConnectionInformationArgs.builder()
.expressRouteAuthorizationKey("xxxxx")
.expressRouteCircuitId("/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
network_fabric_controller = azure_native.managednetworkfabric.NetworkFabricController("networkFabricController",
annotation="lab 1",
infrastructure_express_route_connections=[{
"express_route_authorization_key": "xxxxxxx",
"express_route_circuit_id": "/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
}],
ipv4_address_space="172.253.0.0/19",
location="eastus",
managed_resource_group_configuration={
"location": "eastus",
"name": "managedResourceGroupName",
},
network_fabric_controller_name="NetworkControllerName",
resource_group_name="resourceGroupName",
workload_express_route_connections=[{
"express_route_authorization_key": "xxxxx",
"express_route_circuit_id": "/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
}])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const networkFabricController = new azure_native.managednetworkfabric.NetworkFabricController("networkFabricController", {
annotation: "lab 1",
infrastructureExpressRouteConnections: [{
expressRouteAuthorizationKey: "xxxxxxx",
expressRouteCircuitId: "/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
}],
ipv4AddressSpace: "172.253.0.0/19",
location: "eastus",
managedResourceGroupConfiguration: {
location: "eastus",
name: "managedResourceGroupName",
},
networkFabricControllerName: "NetworkControllerName",
resourceGroupName: "resourceGroupName",
workloadExpressRouteConnections: [{
expressRouteAuthorizationKey: "xxxxx",
expressRouteCircuitId: "/subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName",
}],
});
resources:
networkFabricController:
type: azure-native:managednetworkfabric:NetworkFabricController
properties:
annotation: lab 1
infrastructureExpressRouteConnections:
- expressRouteAuthorizationKey: xxxxxxx
expressRouteCircuitId: /subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName
ipv4AddressSpace: 172.253.0.0/19
location: eastus
managedResourceGroupConfiguration:
location: eastus
name: managedResourceGroupName
networkFabricControllerName: NetworkControllerName
resourceGroupName: resourceGroupName
workloadExpressRouteConnections:
- expressRouteAuthorizationKey: xxxxx
expressRouteCircuitId: /subscriptions/xxxxx/resourceGroups/resourceGroupName/providers/Microsoft.Network/expressRouteCircuits/expressRouteCircuitName
Create NetworkFabricController Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkFabricController(name: string, args: NetworkFabricControllerArgs, opts?: CustomResourceOptions);
@overload
def NetworkFabricController(resource_name: str,
args: NetworkFabricControllerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkFabricController(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
annotation: Optional[str] = None,
infrastructure_express_route_connections: Optional[Sequence[ExpressRouteConnectionInformationArgs]] = None,
ipv4_address_space: Optional[str] = None,
ipv6_address_space: Optional[str] = None,
location: Optional[str] = None,
managed_resource_group_configuration: Optional[ManagedResourceGroupConfigurationArgs] = None,
network_fabric_controller_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
workload_express_route_connections: Optional[Sequence[ExpressRouteConnectionInformationArgs]] = None)
func NewNetworkFabricController(ctx *Context, name string, args NetworkFabricControllerArgs, opts ...ResourceOption) (*NetworkFabricController, error)
public NetworkFabricController(string name, NetworkFabricControllerArgs args, CustomResourceOptions? opts = null)
public NetworkFabricController(String name, NetworkFabricControllerArgs args)
public NetworkFabricController(String name, NetworkFabricControllerArgs args, CustomResourceOptions options)
type: azure-native:managednetworkfabric:NetworkFabricController
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 NetworkFabricControllerArgs
- 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 NetworkFabricControllerArgs
- 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 NetworkFabricControllerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkFabricControllerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkFabricControllerArgs
- 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 networkFabricControllerResource = new AzureNative.ManagedNetworkFabric.NetworkFabricController("networkFabricControllerResource", new()
{
ResourceGroupName = "string",
Annotation = "string",
InfrastructureExpressRouteConnections = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformationArgs
{
ExpressRouteAuthorizationKey = "string",
ExpressRouteCircuitId = "string",
},
},
Ipv4AddressSpace = "string",
Ipv6AddressSpace = "string",
Location = "string",
ManagedResourceGroupConfiguration = new AzureNative.ManagedNetworkFabric.Inputs.ManagedResourceGroupConfigurationArgs
{
Location = "string",
Name = "string",
},
NetworkFabricControllerName = "string",
Tags =
{
{ "string", "string" },
},
WorkloadExpressRouteConnections = new[]
{
new AzureNative.ManagedNetworkFabric.Inputs.ExpressRouteConnectionInformationArgs
{
ExpressRouteAuthorizationKey = "string",
ExpressRouteCircuitId = "string",
},
},
});
example, err := managednetworkfabric.NewNetworkFabricController(ctx, "networkFabricControllerResource", &managednetworkfabric.NetworkFabricControllerArgs{
ResourceGroupName: pulumi.String("string"),
Annotation: pulumi.String("string"),
InfrastructureExpressRouteConnections: managednetworkfabric.ExpressRouteConnectionInformationArray{
&managednetworkfabric.ExpressRouteConnectionInformationArgs{
ExpressRouteAuthorizationKey: pulumi.String("string"),
ExpressRouteCircuitId: pulumi.String("string"),
},
},
Ipv4AddressSpace: pulumi.String("string"),
Ipv6AddressSpace: pulumi.String("string"),
Location: pulumi.String("string"),
ManagedResourceGroupConfiguration: &managednetworkfabric.ManagedResourceGroupConfigurationArgs{
Location: pulumi.String("string"),
Name: pulumi.String("string"),
},
NetworkFabricControllerName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
WorkloadExpressRouteConnections: managednetworkfabric.ExpressRouteConnectionInformationArray{
&managednetworkfabric.ExpressRouteConnectionInformationArgs{
ExpressRouteAuthorizationKey: pulumi.String("string"),
ExpressRouteCircuitId: pulumi.String("string"),
},
},
})
var networkFabricControllerResource = new NetworkFabricController("networkFabricControllerResource", NetworkFabricControllerArgs.builder()
.resourceGroupName("string")
.annotation("string")
.infrastructureExpressRouteConnections(ExpressRouteConnectionInformationArgs.builder()
.expressRouteAuthorizationKey("string")
.expressRouteCircuitId("string")
.build())
.ipv4AddressSpace("string")
.ipv6AddressSpace("string")
.location("string")
.managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
.location("string")
.name("string")
.build())
.networkFabricControllerName("string")
.tags(Map.of("string", "string"))
.workloadExpressRouteConnections(ExpressRouteConnectionInformationArgs.builder()
.expressRouteAuthorizationKey("string")
.expressRouteCircuitId("string")
.build())
.build());
network_fabric_controller_resource = azure_native.managednetworkfabric.NetworkFabricController("networkFabricControllerResource",
resource_group_name="string",
annotation="string",
infrastructure_express_route_connections=[{
"expressRouteAuthorizationKey": "string",
"expressRouteCircuitId": "string",
}],
ipv4_address_space="string",
ipv6_address_space="string",
location="string",
managed_resource_group_configuration={
"location": "string",
"name": "string",
},
network_fabric_controller_name="string",
tags={
"string": "string",
},
workload_express_route_connections=[{
"expressRouteAuthorizationKey": "string",
"expressRouteCircuitId": "string",
}])
const networkFabricControllerResource = new azure_native.managednetworkfabric.NetworkFabricController("networkFabricControllerResource", {
resourceGroupName: "string",
annotation: "string",
infrastructureExpressRouteConnections: [{
expressRouteAuthorizationKey: "string",
expressRouteCircuitId: "string",
}],
ipv4AddressSpace: "string",
ipv6AddressSpace: "string",
location: "string",
managedResourceGroupConfiguration: {
location: "string",
name: "string",
},
networkFabricControllerName: "string",
tags: {
string: "string",
},
workloadExpressRouteConnections: [{
expressRouteAuthorizationKey: "string",
expressRouteCircuitId: "string",
}],
});
type: azure-native:managednetworkfabric:NetworkFabricController
properties:
annotation: string
infrastructureExpressRouteConnections:
- expressRouteAuthorizationKey: string
expressRouteCircuitId: string
ipv4AddressSpace: string
ipv6AddressSpace: string
location: string
managedResourceGroupConfiguration:
location: string
name: string
networkFabricControllerName: string
resourceGroupName: string
tags:
string: string
workloadExpressRouteConnections:
- expressRouteAuthorizationKey: string
expressRouteCircuitId: string
NetworkFabricController 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 NetworkFabricController resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Annotation string
- Switch configuration description.
- Infrastructure
Express List<Pulumi.Route Connections Azure Native. Managed Network Fabric. Inputs. Express Route Connection Information> - As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
- Ipv4Address
Space string - IPv4 Network Fabric Controller Address Space.
- Ipv6Address
Space string - IPv6 Network Fabric Controller Address Space.
- Location string
- The geo-location where the resource lives
- Managed
Resource Pulumi.Group Configuration Azure Native. Managed Network Fabric. Inputs. Managed Resource Group Configuration - Managed Resource Group configuration properties.
- Network
Fabric stringController Name - Name of the Network Fabric Controller
- Dictionary<string, string>
- Resource tags.
- Workload
Express List<Pulumi.Route Connections Azure Native. Managed Network Fabric. Inputs. Express Route Connection Information> - As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Annotation string
- Switch configuration description.
- Infrastructure
Express []ExpressRoute Connections Route Connection Information Args - As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
- Ipv4Address
Space string - IPv4 Network Fabric Controller Address Space.
- Ipv6Address
Space string - IPv6 Network Fabric Controller Address Space.
- Location string
- The geo-location where the resource lives
- Managed
Resource ManagedGroup Configuration Resource Group Configuration Args - Managed Resource Group configuration properties.
- Network
Fabric stringController Name - Name of the Network Fabric Controller
- map[string]string
- Resource tags.
- Workload
Express []ExpressRoute Connections Route Connection Information Args - As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- annotation String
- Switch configuration description.
- infrastructure
Express List<ExpressRoute Connections Route Connection Information> - As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
- ipv4Address
Space String - IPv4 Network Fabric Controller Address Space.
- ipv6Address
Space String - IPv6 Network Fabric Controller Address Space.
- location String
- The geo-location where the resource lives
- managed
Resource ManagedGroup Configuration Resource Group Configuration - Managed Resource Group configuration properties.
- network
Fabric StringController Name - Name of the Network Fabric Controller
- Map<String,String>
- Resource tags.
- workload
Express List<ExpressRoute Connections Route Connection Information> - As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- annotation string
- Switch configuration description.
- infrastructure
Express ExpressRoute Connections Route Connection Information[] - As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
- ipv4Address
Space string - IPv4 Network Fabric Controller Address Space.
- ipv6Address
Space string - IPv6 Network Fabric Controller Address Space.
- location string
- The geo-location where the resource lives
- managed
Resource ManagedGroup Configuration Resource Group Configuration - Managed Resource Group configuration properties.
- network
Fabric stringController Name - Name of the Network Fabric Controller
- {[key: string]: string}
- Resource tags.
- workload
Express ExpressRoute Connections Route Connection Information[] - As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- annotation str
- Switch configuration description.
- infrastructure_
express_ Sequence[Expressroute_ connections Route Connection Information Args] - As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
- ipv4_
address_ strspace - IPv4 Network Fabric Controller Address Space.
- ipv6_
address_ strspace - IPv6 Network Fabric Controller Address Space.
- location str
- The geo-location where the resource lives
- managed_
resource_ Managedgroup_ configuration Resource Group Configuration Args - Managed Resource Group configuration properties.
- network_
fabric_ strcontroller_ name - Name of the Network Fabric Controller
- Mapping[str, str]
- Resource tags.
- workload_
express_ Sequence[Expressroute_ connections Route Connection Information Args] - As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- annotation String
- Switch configuration description.
- infrastructure
Express List<Property Map>Route Connections - As part of an update, the Infrastructure ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Infrastructure services. (This is a Mandatory attribute)
- ipv4Address
Space String - IPv4 Network Fabric Controller Address Space.
- ipv6Address
Space String - IPv6 Network Fabric Controller Address Space.
- location String
- The geo-location where the resource lives
- managed
Resource Property MapGroup Configuration - Managed Resource Group configuration properties.
- network
Fabric StringController Name - Name of the Network Fabric Controller
- Map<String>
- Resource tags.
- workload
Express List<Property Map>Route Connections - As part of an update, the workload ExpressRoute CircuitID should be provided to create and Provision a NFC. This Express route is dedicated for Workload services. (This is a Mandatory attribute).
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkFabricController resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Infrastructure
Services Pulumi.Azure Native. Managed Network Fabric. Outputs. Infrastructure Services Response - InfrastructureServices IP ranges.
- Name string
- The name of the resource
- Network
Fabric List<string>Ids - The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
- Operational
State string - The Operational Status would always be NULL. Look only in to the Provisioning state for the latest status.
- Provisioning
State string - Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
- System
Data Pulumi.Azure Native. Managed Network Fabric. 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"
- Workload
Management boolNetwork - A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
- Workload
Services Pulumi.Azure Native. Managed Network Fabric. Outputs. Workload Services Response - WorkloadServices IP ranges.
- Id string
- The provider-assigned unique ID for this managed resource.
- Infrastructure
Services InfrastructureServices Response - InfrastructureServices IP ranges.
- Name string
- The name of the resource
- Network
Fabric []stringIds - The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
- Operational
State string - The Operational Status would always be NULL. Look only in to the Provisioning state for the latest status.
- Provisioning
State string - Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
- 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"
- Workload
Management boolNetwork - A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
- Workload
Services WorkloadServices Response - WorkloadServices IP ranges.
- id String
- The provider-assigned unique ID for this managed resource.
- infrastructure
Services InfrastructureServices Response - InfrastructureServices IP ranges.
- name String
- The name of the resource
- network
Fabric List<String>Ids - The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
- operational
State String - The Operational Status would always be NULL. Look only in to the Provisioning state for the latest status.
- provisioning
State String - Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
- 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"
- workload
Management BooleanNetwork - A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
- workload
Services WorkloadServices Response - WorkloadServices IP ranges.
- id string
- The provider-assigned unique ID for this managed resource.
- infrastructure
Services InfrastructureServices Response - InfrastructureServices IP ranges.
- name string
- The name of the resource
- network
Fabric string[]Ids - The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
- operational
State string - The Operational Status would always be NULL. Look only in to the Provisioning state for the latest status.
- provisioning
State string - Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
- 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"
- workload
Management booleanNetwork - A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
- workload
Services WorkloadServices Response - WorkloadServices IP ranges.
- id str
- The provider-assigned unique ID for this managed resource.
- infrastructure_
services InfrastructureServices Response - InfrastructureServices IP ranges.
- name str
- The name of the resource
- network_
fabric_ Sequence[str]ids - The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
- operational_
state str - The Operational Status would always be NULL. Look only in to the Provisioning state for the latest status.
- provisioning_
state str - Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
- 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"
- workload_
management_ boolnetwork - A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
- workload_
services WorkloadServices Response - WorkloadServices IP ranges.
- id String
- The provider-assigned unique ID for this managed resource.
- infrastructure
Services Property Map - InfrastructureServices IP ranges.
- name String
- The name of the resource
- network
Fabric List<String>Ids - The NF-ID will be an input parameter used by the NF to link and get associated with the parent NFC Service.
- operational
State String - The Operational Status would always be NULL. Look only in to the Provisioning state for the latest status.
- provisioning
State String - Provides you the latest status of the NFC service, whether it is Accepted, updating, Succeeded or Failed. During this process, the states keep changing based on the status of NFC provisioning.
- 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"
- workload
Management BooleanNetwork - A workload management network is required for all the tenant (workload) traffic. This traffic is only dedicated for Tenant workloads which are required to access internet or any other MSFT/Public endpoints.
- workload
Services Property Map - WorkloadServices IP ranges.
Supporting Types
ExpressRouteConnectionInformation, ExpressRouteConnectionInformationArgs
- string
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- Express
Route stringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- string
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- Express
Route stringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- String
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- express
Route StringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- string
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- express
Route stringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- str
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- express_
route_ strcircuit_ id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- String
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- express
Route StringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
ExpressRouteConnectionInformationResponse, ExpressRouteConnectionInformationResponseArgs
- string
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- Express
Route stringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- string
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- Express
Route stringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- String
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- express
Route StringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- string
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- express
Route stringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- str
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- express_
route_ strcircuit_ id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
- String
- Authorization key for the circuit, must be of type Microsoft.Network/expressRouteCircuits/authorizations. The Auth Key is a mandatory attribute.
- express
Route StringCircuit Id - The express route circuit Azure resource ID, must be of type Microsoft.Network/expressRouteCircuits/circuitName. The ExpressRoute Circuit is a mandatory attribute.
InfrastructureServicesResponse, InfrastructureServicesResponseArgs
- Ipv4Address
Spaces List<string> - The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- Ipv6Address
Spaces List<string> - The IPv6 is not supported right now.
- Ipv4Address
Spaces []string - The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- Ipv6Address
Spaces []string - The IPv6 is not supported right now.
- ipv4Address
Spaces List<String> - The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- ipv6Address
Spaces List<String> - The IPv6 is not supported right now.
- ipv4Address
Spaces string[] - The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- ipv6Address
Spaces string[] - The IPv6 is not supported right now.
- ipv4_
address_ Sequence[str]spaces - The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- ipv6_
address_ Sequence[str]spaces - The IPv6 is not supported right now.
- ipv4Address
Spaces List<String> - The IPv4 Address space is optional, if the value is not defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- ipv6Address
Spaces List<String> - The IPv6 is not supported right now.
ManagedResourceGroupConfiguration, ManagedResourceGroupConfigurationArgs
ManagedResourceGroupConfigurationResponse, ManagedResourceGroupConfigurationResponseArgs
SystemDataResponse, SystemDataResponseArgs
- 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.
WorkloadServicesResponse, WorkloadServicesResponseArgs
- Ipv4Address
Spaces List<string> - The IPv4 Address space is optional, if the value is defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- Ipv6Address
Spaces List<string> - The IPv6 is not supported right now.
- Ipv4Address
Spaces []string - The IPv4 Address space is optional, if the value is defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- Ipv6Address
Spaces []string - The IPv6 is not supported right now.
- ipv4Address
Spaces List<String> - The IPv4 Address space is optional, if the value is defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- ipv6Address
Spaces List<String> - The IPv6 is not supported right now.
- ipv4Address
Spaces string[] - The IPv4 Address space is optional, if the value is defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- ipv6Address
Spaces string[] - The IPv6 is not supported right now.
- ipv4_
address_ Sequence[str]spaces - The IPv4 Address space is optional, if the value is defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- ipv6_
address_ Sequence[str]spaces - The IPv6 is not supported right now.
- ipv4Address
Spaces List<String> - The IPv4 Address space is optional, if the value is defined at the time of NFC creation, then the default value 10.0.0.0/19 is considered. The IPV4 address subnet is an optional attribute.
- ipv6Address
Spaces List<String> - The IPv6 is not supported right now.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:managednetworkfabric:NetworkFabricController NetworkFabricName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/{networkFabricControllerName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0