azure-native.networkcloud.DefaultCniNetwork
Explore with Pulumi AI
API Version: 2022-12-12-preview.
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
This property is required. string - The unique name of the resource.
- args
This property is required. DefaultCniNetworkArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. DefaultCniNetworkArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. DefaultCniNetworkArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. 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 This property is required. Pulumi.Azure Native. Network Cloud. Inputs. Extended Location - The extended location of the cluster associated with the resource.
- L3Isolation
Domain Id This property is required. Changes to this property will trigger replacement.
- The resource ID of the Network Fabric l3IsolationDomain.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Vlan
This property is required. Changes to this property will trigger replacement.
- The VLAN from the l3IsolationDomain that is used for this network.
- Cni
Bgp Configuration Changes to this property will trigger replacement.
Azure Native. Network Cloud. Inputs. Cni Bgp Configuration - The Calico BGP configuration.
- Default
Cni Network Name Changes to this property will trigger replacement.
- The name of the default CNI network.
- Ip
Allocation Type Changes to this property will trigger replacement.
Azure Native. Network Cloud. Ip Allocation Type - The type of the IP address allocation.
- Ipv4Connected
Prefix Changes to this property will trigger replacement.
- The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- Ipv6Connected
Prefix Changes to this property will trigger replacement.
- The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Extended
Location This property is required. ExtendedLocation Args - The extended location of the cluster associated with the resource.
- L3Isolation
Domain Id This property is required. Changes to this property will trigger replacement.
- The resource ID of the Network Fabric l3IsolationDomain.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Vlan
This property is required. Changes to this property will trigger replacement.
- The VLAN from the l3IsolationDomain that is used for this network.
- Cni
Bgp Configuration Changes to this property will trigger replacement.
Bgp Configuration Args - The Calico BGP configuration.
- Default
Cni Network Name Changes to this property will trigger replacement.
- The name of the default CNI network.
- Ip
Allocation Type Changes to this property will trigger replacement.
Allocation Type - The type of the IP address allocation.
- Ipv4Connected
Prefix Changes to this property will trigger replacement.
- The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- Ipv6Connected
Prefix Changes to this property will trigger replacement.
- The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- extended
Location This property is required. ExtendedLocation - The extended location of the cluster associated with the resource.
- l3Isolation
Domain Id This property is required. Changes to this property will trigger replacement.
- The resource ID of the Network Fabric l3IsolationDomain.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- vlan
This property is required. Changes to this property will trigger replacement.
- The VLAN from the l3IsolationDomain that is used for this network.
- cni
Bgp Configuration Changes to this property will trigger replacement.
Bgp Configuration - The Calico BGP configuration.
- default
Cni Network Name Changes to this property will trigger replacement.
- The name of the default CNI network.
- ip
Allocation Type Changes to this property will trigger replacement.
Allocation Type - The type of the IP address allocation.
- ipv4Connected
Prefix Changes to this property will trigger replacement.
- The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- ipv6Connected
Prefix Changes to this property will trigger replacement.
- The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- extended
Location This property is required. ExtendedLocation - The extended location of the cluster associated with the resource.
- l3Isolation
Domain Id This property is required. Changes to this property will trigger replacement.
- The resource ID of the Network Fabric l3IsolationDomain.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- vlan
This property is required. Changes to this property will trigger replacement.
- The VLAN from the l3IsolationDomain that is used for this network.
- cni
Bgp Configuration Changes to this property will trigger replacement.
Bgp Configuration - The Calico BGP configuration.
- default
Cni Network Name Changes to this property will trigger replacement.
- The name of the default CNI network.
- ip
Allocation Type Changes to this property will trigger replacement.
Allocation Type - The type of the IP address allocation.
- ipv4Connected
Prefix Changes to this property will trigger replacement.
- The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- ipv6Connected
Prefix Changes to this property will trigger replacement.
- The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- extended_
location This property is required. ExtendedLocation Args - The extended location of the cluster associated with the resource.
- l3_
isolation_ domain_ id This property is required. Changes to this property will trigger replacement.
- The resource ID of the Network Fabric l3IsolationDomain.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- vlan
This property is required. Changes to this property will trigger replacement.
- The VLAN from the l3IsolationDomain that is used for this network.
- cni_
bgp_ configuration Changes to this property will trigger replacement.
Bgp Configuration Args - The Calico BGP configuration.
- default_
cni_ network_ name Changes to this property will trigger replacement.
- The name of the default CNI network.
- ip_
allocation_ type Changes to this property will trigger replacement.
Allocation Type - The type of the IP address allocation.
- ipv4_
connected_ prefix Changes to this property will trigger replacement.
- The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- ipv6_
connected_ prefix Changes to this property will trigger replacement.
- The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- extended
Location This property is required. Property Map - The extended location of the cluster associated with the resource.
- l3Isolation
Domain Id This property is required. Changes to this property will trigger replacement.
- The resource ID of the Network Fabric l3IsolationDomain.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- vlan
This property is required. Changes to this property will trigger replacement.
- The VLAN from the l3IsolationDomain that is used for this network.
- cni
Bgp Configuration Changes to this property will trigger replacement.
- The Calico BGP configuration.
- default
Cni Network Name Changes to this property will trigger replacement.
- The name of the default CNI network.
- ip
Allocation Type Changes to this property will trigger replacement.
Stack" - The type of the IP address allocation.
- ipv4Connected
Prefix Changes to this property will trigger replacement.
- The IPV4 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV4 or DualStack.
- ipv6Connected
Prefix Changes to this property will trigger replacement.
- The IPV6 prefix (CIDR) assigned to this default CNI network. It is required when the IP allocation type is IPV6 or DualStack.
- location
Changes to this property will trigger replacement.
- 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 This property is required. double - The ASN (Autonomous System Number) of the BGP peer.
- Peer
Ip This property is required. 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 This property is required. float64 - The ASN (Autonomous System Number) of the BGP peer.
- Peer
Ip This property is required. 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 This property is required. Double - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip This property is required. 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 This property is required. number - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip This property is required. 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 This property is required. float - The ASN (Autonomous System Number) of the BGP peer.
- peer_
ip This property is required. 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 This property is required. Number - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip This property is required. 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
- As
Number This property is required. double - The ASN (Autonomous System Number) of the BGP peer.
- Peer
Ip This property is required. 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.
- As
Number This property is required. float64 - The ASN (Autonomous System Number) of the BGP peer.
- Peer
Ip This property is required. 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.
- as
Number This property is required. Double - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip This property is required. 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.
- as
Number This property is required. number - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip This property is required. 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.
- as_
number This property is required. float - The ASN (Autonomous System Number) of the BGP peer.
- peer_
ip This property is required. 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.
- as
Number This property is required. Number - The ASN (Autonomous System Number) of the BGP peer.
- peer
Ip This property is required. 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.
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
This property is required. List<string> - The list of community strings to announce with this prefix.
- Subnet
Prefix This property is required. string - The subnet in CIDR format for which properties should be advertised.
- Communities
This property is required. []string - The list of community strings to announce with this prefix.
- Subnet
Prefix This property is required. string - The subnet in CIDR format for which properties should be advertised.
- communities
This property is required. List<String> - The list of community strings to announce with this prefix.
- subnet
Prefix This property is required. String - The subnet in CIDR format for which properties should be advertised.
- communities
This property is required. string[] - The list of community strings to announce with this prefix.
- subnet
Prefix This property is required. string - The subnet in CIDR format for which properties should be advertised.
- communities
This property is required. Sequence[str] - The list of community strings to announce with this prefix.
- subnet_
prefix This property is required. str - The subnet in CIDR format for which properties should be advertised.
- communities
This property is required. List<String> - The list of community strings to announce with this prefix.
- subnet
Prefix This property is required. String - The subnet in CIDR format for which properties should be advertised.
CommunityAdvertisementResponse, CommunityAdvertisementResponseArgs
- Communities
This property is required. List<string> - The list of community strings to announce with this prefix.
- Subnet
Prefix This property is required. string - The subnet in CIDR format for which properties should be advertised.
- Communities
This property is required. []string - The list of community strings to announce with this prefix.
- Subnet
Prefix This property is required. string - The subnet in CIDR format for which properties should be advertised.
- communities
This property is required. List<String> - The list of community strings to announce with this prefix.
- subnet
Prefix This property is required. String - The subnet in CIDR format for which properties should be advertised.
- communities
This property is required. string[] - The list of community strings to announce with this prefix.
- subnet
Prefix This property is required. string - The subnet in CIDR format for which properties should be advertised.
- communities
This property is required. Sequence[str] - The list of community strings to announce with this prefix.
- subnet_
prefix This property is required. str - The subnet in CIDR format for which properties should be advertised.
- communities
This property is required. List<String> - The list of community strings to announce with this prefix.
- subnet
Prefix This property is required. 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