azure-native.networkcloud.DefaultCniNetwork
Explore with Pulumi AI
API Version: 2022-12-12-preview.
Example Usage
Create or update default CNI network
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var defaultCniNetwork = new AzureNative.NetworkCloud.DefaultCniNetwork("defaultCniNetwork", new()
{
CniBgpConfiguration = new AzureNative.NetworkCloud.Inputs.CniBgpConfigurationArgs
{
BgpPeers = new[]
{
new AzureNative.NetworkCloud.Inputs.BgpPeerArgs
{
AsNumber = 64497,
PeerIp = "203.0.113.254",
},
},
CommunityAdvertisements = new[]
{
new AzureNative.NetworkCloud.Inputs.CommunityAdvertisementArgs
{
Communities = new[]
{
"64512:100",
},
SubnetPrefix = "192.0.2.0/27",
},
},
ServiceExternalPrefixes = new[]
{
"192.0.2.0/28",
},
ServiceLoadBalancerPrefixes = new[]
{
"192.0.2.16/28",
},
},
DefaultCniNetworkName = "defaultCniNetworkName",
ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
Type = "CustomLocation",
},
IpAllocationType = "DualStack",
Ipv4ConnectedPrefix = "203.0.113.0/24",
Ipv6ConnectedPrefix = "2001:db8:0:3::/64",
L3IsolationDomainId = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName",
Location = "location",
ResourceGroupName = "resourceGroupName",
Tags =
{
{ "key1", "myvalue1" },
{ "key2", "myvalue2" },
},
Vlan = 12,
});
});
package main
import (
networkcloud "github.com/pulumi/pulumi-azure-native-sdk/networkcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkcloud.NewDefaultCniNetwork(ctx, "defaultCniNetwork", &networkcloud.DefaultCniNetworkArgs{
CniBgpConfiguration: networkcloud.CniBgpConfigurationResponse{
BgpPeers: networkcloud.BgpPeerArray{
&networkcloud.BgpPeerArgs{
AsNumber: pulumi.Float64(64497),
PeerIp: pulumi.String("203.0.113.254"),
},
},
CommunityAdvertisements: networkcloud.CommunityAdvertisementArray{
&networkcloud.CommunityAdvertisementArgs{
Communities: pulumi.StringArray{
pulumi.String("64512:100"),
},
SubnetPrefix: pulumi.String("192.0.2.0/27"),
},
},
ServiceExternalPrefixes: pulumi.StringArray{
pulumi.String("192.0.2.0/28"),
},
ServiceLoadBalancerPrefixes: pulumi.StringArray{
pulumi.String("192.0.2.16/28"),
},
},
DefaultCniNetworkName: pulumi.String("defaultCniNetworkName"),
ExtendedLocation: &networkcloud.ExtendedLocationArgs{
Name: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
Type: pulumi.String("CustomLocation"),
},
IpAllocationType: pulumi.String("DualStack"),
Ipv4ConnectedPrefix: pulumi.String("203.0.113.0/24"),
Ipv6ConnectedPrefix: pulumi.String("2001:db8:0:3::/64"),
L3IsolationDomainId: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName"),
Location: pulumi.String("location"),
ResourceGroupName: pulumi.String("resourceGroupName"),
Tags: pulumi.StringMap{
"key1": pulumi.String("myvalue1"),
"key2": pulumi.String("myvalue2"),
},
Vlan: pulumi.Float64(12),
})
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.DefaultCniNetwork;
import com.pulumi.azurenative.networkcloud.DefaultCniNetworkArgs;
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 defaultCniNetwork = new DefaultCniNetwork("defaultCniNetwork", DefaultCniNetworkArgs.builder()
.cniBgpConfiguration(Map.ofEntries(
Map.entry("bgpPeers", Map.ofEntries(
Map.entry("asNumber", 64497),
Map.entry("peerIp", "203.0.113.254")
)),
Map.entry("communityAdvertisements", Map.ofEntries(
Map.entry("communities", "64512:100"),
Map.entry("subnetPrefix", "192.0.2.0/27")
)),
Map.entry("serviceExternalPrefixes", "192.0.2.0/28"),
Map.entry("serviceLoadBalancerPrefixes", "192.0.2.16/28")
))
.defaultCniNetworkName("defaultCniNetworkName")
.extendedLocation(Map.ofEntries(
Map.entry("name", "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
Map.entry("type", "CustomLocation")
))
.ipAllocationType("DualStack")
.ipv4ConnectedPrefix("203.0.113.0/24")
.ipv6ConnectedPrefix("2001:db8:0:3::/64")
.l3IsolationDomainId("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName")
.location("location")
.resourceGroupName("resourceGroupName")
.tags(Map.ofEntries(
Map.entry("key1", "myvalue1"),
Map.entry("key2", "myvalue2")
))
.vlan(12)
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
default_cni_network = azure_native.networkcloud.DefaultCniNetwork("defaultCniNetwork",
cni_bgp_configuration=azure_native.networkcloud.CniBgpConfigurationResponseArgs(
bgp_peers=[azure_native.networkcloud.BgpPeerArgs(
as_number=64497,
peer_ip="203.0.113.254",
)],
community_advertisements=[azure_native.networkcloud.CommunityAdvertisementArgs(
communities=["64512:100"],
subnet_prefix="192.0.2.0/27",
)],
service_external_prefixes=["192.0.2.0/28"],
service_load_balancer_prefixes=["192.0.2.16/28"],
),
default_cni_network_name="defaultCniNetworkName",
extended_location=azure_native.networkcloud.ExtendedLocationArgs(
name="/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
type="CustomLocation",
),
ip_allocation_type="DualStack",
ipv4_connected_prefix="203.0.113.0/24",
ipv6_connected_prefix="2001:db8:0:3::/64",
l3_isolation_domain_id="/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName",
location="location",
resource_group_name="resourceGroupName",
tags={
"key1": "myvalue1",
"key2": "myvalue2",
},
vlan=12)
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const defaultCniNetwork = new azure_native.networkcloud.DefaultCniNetwork("defaultCniNetwork", {
cniBgpConfiguration: {
bgpPeers: [{
asNumber: 64497,
peerIp: "203.0.113.254",
}],
communityAdvertisements: [{
communities: ["64512:100"],
subnetPrefix: "192.0.2.0/27",
}],
serviceExternalPrefixes: ["192.0.2.0/28"],
serviceLoadBalancerPrefixes: ["192.0.2.16/28"],
},
defaultCniNetworkName: "defaultCniNetworkName",
extendedLocation: {
name: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
type: "CustomLocation",
},
ipAllocationType: "DualStack",
ipv4ConnectedPrefix: "203.0.113.0/24",
ipv6ConnectedPrefix: "2001:db8:0:3::/64",
l3IsolationDomainId: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName",
location: "location",
resourceGroupName: "resourceGroupName",
tags: {
key1: "myvalue1",
key2: "myvalue2",
},
vlan: 12,
});
resources:
defaultCniNetwork:
type: azure-native:networkcloud:DefaultCniNetwork
properties:
cniBgpConfiguration:
bgpPeers:
- asNumber: 64497
peerIp: 203.0.113.254
communityAdvertisements:
- communities:
- 64512:100
subnetPrefix: 192.0.2.0/27
serviceExternalPrefixes:
- 192.0.2.0/28
serviceLoadBalancerPrefixes:
- 192.0.2.16/28
defaultCniNetworkName: defaultCniNetworkName
extendedLocation:
name: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName
type: CustomLocation
ipAllocationType: DualStack
ipv4ConnectedPrefix: 203.0.113.0/24
ipv6ConnectedPrefix: 2001:db8:0:3::/64
l3IsolationDomainId: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName
location: location
resourceGroupName: resourceGroupName
tags:
key1: myvalue1
key2: myvalue2
vlan: 12
Create DefaultCniNetwork Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DefaultCniNetwork(name: string, args: DefaultCniNetworkArgs, opts?: CustomResourceOptions);
@overload
def DefaultCniNetwork(resource_name: str,
args: DefaultCniNetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DefaultCniNetwork(resource_name: str,
opts: Optional[ResourceOptions] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
l3_isolation_domain_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
vlan: Optional[float] = None,
cni_bgp_configuration: Optional[CniBgpConfigurationArgs] = None,
default_cni_network_name: Optional[str] = None,
ip_allocation_type: Optional[Union[str, IpAllocationType]] = None,
ipv4_connected_prefix: Optional[str] = None,
ipv6_connected_prefix: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewDefaultCniNetwork(ctx *Context, name string, args DefaultCniNetworkArgs, opts ...ResourceOption) (*DefaultCniNetwork, error)
public DefaultCniNetwork(string name, DefaultCniNetworkArgs args, CustomResourceOptions? opts = null)
public DefaultCniNetwork(String name, DefaultCniNetworkArgs args)
public DefaultCniNetwork(String name, DefaultCniNetworkArgs args, CustomResourceOptions options)
type: azure-native:networkcloud:DefaultCniNetwork
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 DefaultCniNetworkArgs
- 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 DefaultCniNetworkArgs
- 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 DefaultCniNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DefaultCniNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DefaultCniNetworkArgs
- 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 defaultCniNetworkResource = new AzureNative.Networkcloud.DefaultCniNetwork("defaultCniNetworkResource", new()
{
ExtendedLocation =
{
{ "name", "string" },
{ "type", "string" },
},
L3IsolationDomainId = "string",
ResourceGroupName = "string",
Vlan = 0,
CniBgpConfiguration =
{
{ "bgpPeers", new[]
{
{
{ "asNumber", 0 },
{ "peerIp", "string" },
{ "password", "string" },
},
} },
{ "communityAdvertisements", new[]
{
{
{ "communities", new[]
{
"string",
} },
{ "subnetPrefix", "string" },
},
} },
{ "nodeMeshPassword", "string" },
{ "serviceExternalPrefixes", new[]
{
"string",
} },
{ "serviceLoadBalancerPrefixes", new[]
{
"string",
} },
},
DefaultCniNetworkName = "string",
IpAllocationType = "string",
Ipv4ConnectedPrefix = "string",
Ipv6ConnectedPrefix = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := networkcloud.NewDefaultCniNetwork(ctx, "defaultCniNetworkResource", &networkcloud.DefaultCniNetworkArgs{
ExtendedLocation: map[string]interface{}{
"name": "string",
"type": "string",
},
L3IsolationDomainId: "string",
ResourceGroupName: "string",
Vlan: 0,
CniBgpConfiguration: map[string]interface{}{
"bgpPeers": []map[string]interface{}{
map[string]interface{}{
"asNumber": 0,
"peerIp": "string",
"password": "string",
},
},
"communityAdvertisements": []map[string]interface{}{
map[string]interface{}{
"communities": []string{
"string",
},
"subnetPrefix": "string",
},
},
"nodeMeshPassword": "string",
"serviceExternalPrefixes": []string{
"string",
},
"serviceLoadBalancerPrefixes": []string{
"string",
},
},
DefaultCniNetworkName: "string",
IpAllocationType: "string",
Ipv4ConnectedPrefix: "string",
Ipv6ConnectedPrefix: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var defaultCniNetworkResource = new DefaultCniNetwork("defaultCniNetworkResource", DefaultCniNetworkArgs.builder()
.extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.l3IsolationDomainId("string")
.resourceGroupName("string")
.vlan(0)
.cniBgpConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.defaultCniNetworkName("string")
.ipAllocationType("string")
.ipv4ConnectedPrefix("string")
.ipv6ConnectedPrefix("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
default_cni_network_resource = azure_native.networkcloud.DefaultCniNetwork("defaultCniNetworkResource",
extended_location={
name: string,
type: string,
},
l3_isolation_domain_id=string,
resource_group_name=string,
vlan=0,
cni_bgp_configuration={
bgpPeers: [{
asNumber: 0,
peerIp: string,
password: string,
}],
communityAdvertisements: [{
communities: [string],
subnetPrefix: string,
}],
nodeMeshPassword: string,
serviceExternalPrefixes: [string],
serviceLoadBalancerPrefixes: [string],
},
default_cni_network_name=string,
ip_allocation_type=string,
ipv4_connected_prefix=string,
ipv6_connected_prefix=string,
location=string,
tags={
string: string,
})
const defaultCniNetworkResource = new azure_native.networkcloud.DefaultCniNetwork("defaultCniNetworkResource", {
extendedLocation: {
name: "string",
type: "string",
},
l3IsolationDomainId: "string",
resourceGroupName: "string",
vlan: 0,
cniBgpConfiguration: {
bgpPeers: [{
asNumber: 0,
peerIp: "string",
password: "string",
}],
communityAdvertisements: [{
communities: ["string"],
subnetPrefix: "string",
}],
nodeMeshPassword: "string",
serviceExternalPrefixes: ["string"],
serviceLoadBalancerPrefixes: ["string"],
},
defaultCniNetworkName: "string",
ipAllocationType: "string",
ipv4ConnectedPrefix: "string",
ipv6ConnectedPrefix: "string",
location: "string",
tags: {
string: "string",
},
});
type: azure-native:networkcloud:DefaultCniNetwork
properties:
cniBgpConfiguration:
bgpPeers:
- asNumber: 0
password: string
peerIp: string
communityAdvertisements:
- communities:
- string
subnetPrefix: string
nodeMeshPassword: string
serviceExternalPrefixes:
- string
serviceLoadBalancerPrefixes:
- string
defaultCniNetworkName: string
extendedLocation:
name: string
type: string
ipAllocationType: string
ipv4ConnectedPrefix: string
ipv6ConnectedPrefix: string
l3IsolationDomainId: string
location: string
resourceGroupName: string
tags:
string: string
vlan: 0
DefaultCniNetwork 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 DefaultCniNetwork 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.
- L3Isolation
Domain stringId - The resource ID of the Network Fabric l3IsolationDomain.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Vlan double
- The VLAN from the l3IsolationDomain that is used for this network.
- Cni
Bgp Pulumi.Configuration Azure Native. Network Cloud. Inputs. Cni Bgp Configuration - The Calico BGP configuration.
- Default
Cni stringNetwork Name - The name of the default CNI network.
- Ip
Allocation string | Pulumi.Type Azure Native. Network Cloud. Ip Allocation Type - The type of the IP address allocation.
- Ipv4Connected
Prefix string - The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- Ipv6Connected
Prefix string - The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Extended
Location ExtendedLocation Args - The extended location of the cluster associated with the resource.
- L3Isolation
Domain stringId - The resource ID of the Network Fabric l3IsolationDomain.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Vlan float64
- The VLAN from the l3IsolationDomain that is used for this network.
- Cni
Bgp CniConfiguration Bgp Configuration Args - The Calico BGP configuration.
- Default
Cni stringNetwork Name - The name of the default CNI network.
- Ip
Allocation string | IpType Allocation Type - The type of the IP address allocation.
- Ipv4Connected
Prefix string - The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- Ipv6Connected
Prefix string - The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- extended
Location ExtendedLocation - The extended location of the cluster associated with the resource.
- l3Isolation
Domain StringId - The resource ID of the Network Fabric l3IsolationDomain.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- vlan Double
- The VLAN from the l3IsolationDomain that is used for this network.
- cni
Bgp CniConfiguration Bgp Configuration - The Calico BGP configuration.
- default
Cni StringNetwork Name - The name of the default CNI network.
- ip
Allocation String | IpType Allocation Type - The type of the IP address allocation.
- ipv4Connected
Prefix String - The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- ipv6Connected
Prefix String - The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- extended
Location ExtendedLocation - The extended location of the cluster associated with the resource.
- l3Isolation
Domain stringId - The resource ID of the Network Fabric l3IsolationDomain.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- vlan number
- The VLAN from the l3IsolationDomain that is used for this network.
- cni
Bgp CniConfiguration Bgp Configuration - The Calico BGP configuration.
- default
Cni stringNetwork Name - The name of the default CNI network.
- ip
Allocation string | IpType Allocation Type - The type of the IP address allocation.
- ipv4Connected
Prefix string - The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- ipv6Connected
Prefix string - The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- extended_
location ExtendedLocation Args - The extended location of the cluster associated with the resource.
- l3_
isolation_ strdomain_ id - The resource ID of the Network Fabric l3IsolationDomain.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- vlan float
- The VLAN from the l3IsolationDomain that is used for this network.
- cni_
bgp_ Cniconfiguration Bgp Configuration Args - The Calico BGP configuration.
- default_
cni_ strnetwork_ name - The name of the default CNI network.
- ip_
allocation_ str | Iptype Allocation Type - The type of the IP address allocation.
- ipv4_
connected_ strprefix - The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- ipv6_
connected_ strprefix - The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- extended
Location Property Map - The extended location of the cluster associated with the resource.
- l3Isolation
Domain StringId - The resource ID of the Network Fabric l3IsolationDomain.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- vlan Number
- The VLAN from the l3IsolationDomain that is used for this network.
- cni
Bgp Property MapConfiguration - The Calico BGP configuration.
- default
Cni StringNetwork Name - The name of the default CNI network.
- ip
Allocation String | "IPV4" | "IPV6" | "DualType Stack" - The type of the IP address allocation.
- ipv4Connected
Prefix String - The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- ipv6Connected
Prefix String - The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DefaultCniNetwork resource produces the following output properties:
- Cluster
Id string - The resource ID of the Network Cloud cluster this default CNI network is associated with.
- Cni
As doubleNumber - The autonomous system number that the fabric expects to peer with, derived from the associated L3 isolation domain.
- Detailed
Status string - The more detailed status of the default CNI network.
- Detailed
Status stringMessage - The descriptive message about the current detailed status.
- Fabric
Bgp List<Pulumi.Peers Azure Native. Network Cloud. Outputs. Bgp Peer Response> - The L3 isolation fabric BGP peering connectivity information necessary for BGP peering the Hybrid AKS Cluster with the switch fabric.
- Hybrid
Aks List<string>Clusters Associated Ids - The list of Hybrid AKS cluster resource ID(s) that are associated with this default CNI network.
- Id string
- The provider-assigned unique ID for this managed resource.
- Interface
Name string - The name of the interface that will be present in the virtual machine to represent this network.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the default CNI network.
- 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"
- Cluster
Id string - The resource ID of the Network Cloud cluster this default CNI network is associated with.
- Cni
As float64Number - The autonomous system number that the fabric expects to peer with, derived from the associated L3 isolation domain.
- Detailed
Status string - The more detailed status of the default CNI network.
- Detailed
Status stringMessage - The descriptive message about the current detailed status.
- Fabric
Bgp []BgpPeers Peer Response - The L3 isolation fabric BGP peering connectivity information necessary for BGP peering the Hybrid AKS Cluster with the switch fabric.
- Hybrid
Aks []stringClusters Associated Ids - The list of Hybrid AKS cluster resource ID(s) that are associated with this default CNI network.
- Id string
- The provider-assigned unique ID for this managed resource.
- Interface
Name string - The name of the interface that will be present in the virtual machine to represent this network.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the default CNI network.
- 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"
- cluster
Id String - The resource ID of the Network Cloud cluster this default CNI network is associated with.
- cni
As DoubleNumber - The autonomous system number that the fabric expects to peer with, derived from the associated L3 isolation domain.
- detailed
Status String - The more detailed status of the default CNI network.
- detailed
Status StringMessage - The descriptive message about the current detailed status.
- fabric
Bgp List<BgpPeers Peer Response> - The L3 isolation fabric BGP peering connectivity information necessary for BGP peering the Hybrid AKS Cluster with the switch fabric.
- hybrid
Aks List<String>Clusters Associated Ids - The list of Hybrid AKS cluster resource ID(s) that are associated with this default CNI network.
- id String
- The provider-assigned unique ID for this managed resource.
- interface
Name String - The name of the interface that will be present in the virtual machine to represent this network.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the default CNI network.
- 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"
- cluster
Id string - The resource ID of the Network Cloud cluster this default CNI network is associated with.
- cni
As numberNumber - The autonomous system number that the fabric expects to peer with, derived from the associated L3 isolation domain.
- detailed
Status string - The more detailed status of the default CNI network.
- detailed
Status stringMessage - The descriptive message about the current detailed status.
- fabric
Bgp BgpPeers Peer Response[] - The L3 isolation fabric BGP peering connectivity information necessary for BGP peering the Hybrid AKS Cluster with the switch fabric.
- hybrid
Aks string[]Clusters Associated Ids - The list of Hybrid AKS cluster resource ID(s) that are associated with this default CNI network.
- id string
- The provider-assigned unique ID for this managed resource.
- interface
Name string - The name of the interface that will be present in the virtual machine to represent this network.
- name string
- The name of the resource
- provisioning
State string - The provisioning state of the default CNI network.
- 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"
- cluster_
id str - The resource ID of the Network Cloud cluster this default CNI network is associated with.
- cni_
as_ floatnumber - The autonomous system number that the fabric expects to peer with, derived from the associated L3 isolation domain.
- detailed_
status str - The more detailed status of the default CNI network.
- detailed_
status_ strmessage - The descriptive message about the current detailed status.
- fabric_
bgp_ Sequence[Bgppeers Peer Response] - The L3 isolation fabric BGP peering connectivity information necessary for BGP peering the Hybrid AKS Cluster with the switch fabric.
- hybrid_
aks_ Sequence[str]clusters_ associated_ ids - The list of Hybrid AKS cluster resource ID(s) that are associated with this default CNI network.
- id str
- The provider-assigned unique ID for this managed resource.
- interface_
name str - The name of the interface that will be present in the virtual machine to represent this network.
- name str
- The name of the resource
- provisioning_
state str - The provisioning state of the default CNI network.
- 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"
- cluster
Id String - The resource ID of the Network Cloud cluster this default CNI network is associated with.
- cni
As NumberNumber - The autonomous system number that the fabric expects to peer with, derived from the associated L3 isolation domain.
- detailed
Status String - The more detailed status of the default CNI network.
- detailed
Status StringMessage - The descriptive message about the current detailed status.
- fabric
Bgp List<Property Map>Peers - The L3 isolation fabric BGP peering connectivity information necessary for BGP peering the Hybrid AKS Cluster with the switch fabric.
- hybrid
Aks List<String>Clusters Associated Ids - The list of Hybrid AKS cluster resource ID(s) that are associated with this default CNI network.
- id String
- The provider-assigned unique ID for this managed resource.
- interface
Name String - The name of the interface that will be present in the virtual machine to represent this network.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the default CNI network.
- 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
BgpPeer, BgpPeerArgs
- As
Number double - The ASN (Autonomous System Number) of the BGP peer.
- Peer
Ip string - The IPv4 or IPv6 address to peer with the associated CNI Network. The IP version type will drive a peering with the same version type from the Default CNI Network. For example, IPv4 to IPv4 or IPv6 to IPv6.
- Password string
- The password for this peering neighbor. It defaults to no password if not specified.
- As
Number float64 - The ASN (Autonomous System Number) of the BGP peer.
- Peer
Ip string - The IPv4 or IPv6 address to peer with the associated CNI Network. The IP version type will drive a peering with the same version type from the Default CNI Network. For example, IPv4 to IPv4 or IPv6 to IPv6.
- Password string
- The password for this peering neighbor. It defaults to no password if not specified.
- as
Number Double - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip String - The IPv4 or IPv6 address to peer with the associated CNI Network. The IP version type will drive a peering with the same version type from the Default CNI Network. For example, IPv4 to IPv4 or IPv6 to IPv6.
- password String
- The password for this peering neighbor. It defaults to no password if not specified.
- as
Number number - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip string - The IPv4 or IPv6 address to peer with the associated CNI Network. The IP version type will drive a peering with the same version type from the Default CNI Network. For example, IPv4 to IPv4 or IPv6 to IPv6.
- password string
- The password for this peering neighbor. It defaults to no password if not specified.
- as_
number float - The ASN (Autonomous System Number) of the BGP peer.
- peer_
ip str - The IPv4 or IPv6 address to peer with the associated CNI Network. The IP version type will drive a peering with the same version type from the Default CNI Network. For example, IPv4 to IPv4 or IPv6 to IPv6.
- password str
- The password for this peering neighbor. It defaults to no password if not specified.
- as
Number Number - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip String - The IPv4 or IPv6 address to peer with the associated CNI Network. The IP version type will drive a peering with the same version type from the Default CNI Network. For example, IPv4 to IPv4 or IPv6 to IPv6.
- password String
- The password for this peering neighbor. It defaults to no password if not specified.
BgpPeerResponse, BgpPeerResponseArgs
CniBgpConfiguration, CniBgpConfigurationArgs
- Bgp
Peers List<Pulumi.Azure Native. Network Cloud. Inputs. Bgp Peer> - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- Community
Advertisements List<Pulumi.Azure Native. Network Cloud. Inputs. Community Advertisement> - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- Node
Mesh stringPassword - The password of the Calico node mesh. It defaults to a randomly-generated string when not provided.
- Service
External List<string>Prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- Service
Load List<string>Balancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- Bgp
Peers []BgpPeer - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- Community
Advertisements []CommunityAdvertisement - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- Node
Mesh stringPassword - The password of the Calico node mesh. It defaults to a randomly-generated string when not provided.
- Service
External []stringPrefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- Service
Load []stringBalancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- bgp
Peers List<BgpPeer> - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- community
Advertisements List<CommunityAdvertisement> - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- node
Mesh StringPassword - The password of the Calico node mesh. It defaults to a randomly-generated string when not provided.
- service
External List<String>Prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- service
Load List<String>Balancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- bgp
Peers BgpPeer[] - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- community
Advertisements CommunityAdvertisement[] - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- node
Mesh stringPassword - The password of the Calico node mesh. It defaults to a randomly-generated string when not provided.
- service
External string[]Prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- service
Load string[]Balancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- bgp_
peers Sequence[BgpPeer] - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- community_
advertisements Sequence[CommunityAdvertisement] - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- node_
mesh_ strpassword - The password of the Calico node mesh. It defaults to a randomly-generated string when not provided.
- service_
external_ Sequence[str]prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- service_
load_ Sequence[str]balancer_ prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- bgp
Peers List<Property Map> - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- community
Advertisements List<Property Map> - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- node
Mesh StringPassword - The password of the Calico node mesh. It defaults to a randomly-generated string when not provided.
- service
External List<String>Prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- service
Load List<String>Balancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
CniBgpConfigurationResponse, CniBgpConfigurationResponseArgs
- Bgp
Peers List<Pulumi.Azure Native. Network Cloud. Inputs. Bgp Peer Response> - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- Community
Advertisements List<Pulumi.Azure Native. Network Cloud. Inputs. Community Advertisement Response> - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- Service
External List<string>Prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- Service
Load List<string>Balancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- Bgp
Peers []BgpPeer Response - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- Community
Advertisements []CommunityAdvertisement Response - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- Service
External []stringPrefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- Service
Load []stringBalancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- bgp
Peers List<BgpPeer Response> - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- community
Advertisements List<CommunityAdvertisement Response> - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- service
External List<String>Prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- service
Load List<String>Balancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- bgp
Peers BgpPeer Response[] - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- community
Advertisements CommunityAdvertisement Response[] - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- service
External string[]Prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- service
Load string[]Balancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- bgp_
peers Sequence[BgpPeer Response] - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- community_
advertisements Sequence[CommunityAdvertisement Response] - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- service_
external_ Sequence[str]prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- service_
load_ Sequence[str]balancer_ prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
- bgp
Peers List<Property Map> - The list of BgpPeer entities that the Hybrid AKS cluster will peer with in addition to peering that occurs automatically with the switch fabric.
- community
Advertisements List<Property Map> - The list of prefix community advertisement properties. Each prefix community specifies a prefix, and the communities that should be associated with that prefix when it is announced.
- service
External List<String>Prefixes - The subnet blocks in CIDR format for Kubernetes service external IPs to be advertised over BGP.
- service
Load List<String>Balancer Prefixes - The subnet blocks in CIDR format for Kubernetes load balancers. Load balancer IPs will only be advertised if they are within one of these blocks.
CommunityAdvertisement, CommunityAdvertisementArgs
- Communities List<string>
- The list of community strings to announce with this prefix.
- Subnet
Prefix string - The subnet in CIDR format for which properties should be advertised.
- Communities []string
- The list of community strings to announce with this prefix.
- Subnet
Prefix string - The subnet in CIDR format for which properties should be advertised.
- communities List<String>
- The list of community strings to announce with this prefix.
- subnet
Prefix String - The subnet in CIDR format for which properties should be advertised.
- communities string[]
- The list of community strings to announce with this prefix.
- subnet
Prefix string - The subnet in CIDR format for which properties should be advertised.
- communities Sequence[str]
- The list of community strings to announce with this prefix.
- subnet_
prefix str - The subnet in CIDR format for which properties should be advertised.
- communities List<String>
- The list of community strings to announce with this prefix.
- subnet
Prefix String - The subnet in CIDR format for which properties should be advertised.
CommunityAdvertisementResponse, CommunityAdvertisementResponseArgs
- Communities List<string>
- The list of community strings to announce with this prefix.
- Subnet
Prefix string - The subnet in CIDR format for which properties should be advertised.
- Communities []string
- The list of community strings to announce with this prefix.
- Subnet
Prefix string - The subnet in CIDR format for which properties should be advertised.
- communities List<String>
- The list of community strings to announce with this prefix.
- subnet
Prefix String - The subnet in CIDR format for which properties should be advertised.
- communities string[]
- The list of community strings to announce with this prefix.
- subnet
Prefix string - The subnet in CIDR format for which properties should be advertised.
- communities Sequence[str]
- The list of community strings to announce with this prefix.
- subnet_
prefix str - The subnet in CIDR format for which properties should be advertised.
- communities List<String>
- The list of community strings to announce with this prefix.
- subnet
Prefix String - The subnet in CIDR format for which properties should be advertised.
ExtendedLocation, ExtendedLocationArgs
ExtendedLocationResponse, ExtendedLocationResponseArgs
IpAllocationType, IpAllocationTypeArgs
- IPV4
- IPV4
- IPV6
- IPV6
- Dual
Stack - DualStack
- Ip
Allocation Type IPV4 - IPV4
- Ip
Allocation Type IPV6 - IPV6
- Ip
Allocation Type Dual Stack - DualStack
- IPV4
- IPV4
- IPV6
- IPV6
- Dual
Stack - DualStack
- IPV4
- IPV4
- IPV6
- IPV6
- Dual
Stack - DualStack
- IPV4
- IPV4
- IPV6
- IPV6
- DUAL_STACK
- DualStack
- "IPV4"
- IPV4
- "IPV6"
- IPV6
- "Dual
Stack" - DualStack
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:networkcloud:DefaultCniNetwork defaultcniNetworkName /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/defaultcniNetworks/defaultcniNetworkName
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0