1. Packages
  2. Azure Native v2
  3. API Docs
  4. networkcloud
  5. AgentPool
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.networkcloud.AgentPool

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Azure REST API version: 2023-10-01-preview.

Other available API versions: 2023-07-01, 2024-06-01-preview, 2024-07-01, 2024-10-01-preview.

Example Usage

Create or update Kubernetes cluster agent pool

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var agentPool = new AzureNative.NetworkCloud.AgentPool("agentPool", new()
    {
        AdministratorConfiguration = new AzureNative.NetworkCloud.Inputs.AdministratorConfigurationArgs
        {
            AdminUsername = "azure",
            SshPublicKeys = new[]
            {
                new AzureNative.NetworkCloud.Inputs.SshPublicKeyArgs
                {
                    KeyData = "ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm",
                },
            },
        },
        AgentOptions = new AzureNative.NetworkCloud.Inputs.AgentOptionsArgs
        {
            HugepagesCount = 96,
            HugepagesSize = AzureNative.NetworkCloud.HugepagesSize.HugepagesSize_1G,
        },
        AgentPoolName = "agentPoolName",
        AttachedNetworkConfiguration = new AzureNative.NetworkCloud.Inputs.AttachedNetworkConfigurationArgs
        {
            L2Networks = new[]
            {
                new AzureNative.NetworkCloud.Inputs.L2NetworkAttachmentConfigurationArgs
                {
                    NetworkId = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l2Networks/l2NetworkName",
                    PluginType = AzureNative.NetworkCloud.KubernetesPluginType.DPDK,
                },
            },
            L3Networks = new[]
            {
                new AzureNative.NetworkCloud.Inputs.L3NetworkAttachmentConfigurationArgs
                {
                    IpamEnabled = AzureNative.NetworkCloud.L3NetworkConfigurationIpamEnabled.False,
                    NetworkId = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName",
                    PluginType = AzureNative.NetworkCloud.KubernetesPluginType.SRIOV,
                },
            },
            TrunkedNetworks = new[]
            {
                new AzureNative.NetworkCloud.Inputs.TrunkedNetworkAttachmentConfigurationArgs
                {
                    NetworkId = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/trunkedNetworks/trunkedNetworkName",
                    PluginType = AzureNative.NetworkCloud.KubernetesPluginType.MACVLAN,
                },
            },
        },
        AvailabilityZones = new[]
        {
            "1",
            "2",
            "3",
        },
        Count = 3,
        ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
            Type = "CustomLocation",
        },
        KubernetesClusterName = "kubernetesClusterName",
        Labels = new[]
        {
            new AzureNative.NetworkCloud.Inputs.KubernetesLabelArgs
            {
                Key = "kubernetes.label",
                Value = "true",
            },
        },
        Location = "location",
        Mode = AzureNative.NetworkCloud.AgentPoolMode.System,
        ResourceGroupName = "resourceGroupName",
        Tags = 
        {
            { "key1", "myvalue1" },
            { "key2", "myvalue2" },
        },
        Taints = new[]
        {
            new AzureNative.NetworkCloud.Inputs.KubernetesLabelArgs
            {
                Key = "kubernetes.taint",
                Value = "true",
            },
        },
        UpgradeSettings = new AzureNative.NetworkCloud.Inputs.AgentPoolUpgradeSettingsArgs
        {
            MaxSurge = "1",
        },
        VmSkuName = "NC_M16_v1",
    });

});
Copy
package main

import (
	networkcloud "github.com/pulumi/pulumi-azure-native-sdk/networkcloud/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkcloud.NewAgentPool(ctx, "agentPool", &networkcloud.AgentPoolArgs{
			AdministratorConfiguration: &networkcloud.AdministratorConfigurationArgs{
				AdminUsername: pulumi.String("azure"),
				SshPublicKeys: networkcloud.SshPublicKeyArray{
					&networkcloud.SshPublicKeyArgs{
						KeyData: pulumi.String("ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm"),
					},
				},
			},
			AgentOptions: &networkcloud.AgentOptionsArgs{
				HugepagesCount: pulumi.Float64(96),
				HugepagesSize:  pulumi.String(networkcloud.HugepagesSize_1G),
			},
			AgentPoolName: pulumi.String("agentPoolName"),
			AttachedNetworkConfiguration: &networkcloud.AttachedNetworkConfigurationArgs{
				L2Networks: networkcloud.L2NetworkAttachmentConfigurationArray{
					&networkcloud.L2NetworkAttachmentConfigurationArgs{
						NetworkId:  pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l2Networks/l2NetworkName"),
						PluginType: pulumi.String(networkcloud.KubernetesPluginTypeDPDK),
					},
				},
				L3Networks: networkcloud.L3NetworkAttachmentConfigurationArray{
					&networkcloud.L3NetworkAttachmentConfigurationArgs{
						IpamEnabled: pulumi.String(networkcloud.L3NetworkConfigurationIpamEnabledFalse),
						NetworkId:   pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName"),
						PluginType:  pulumi.String(networkcloud.KubernetesPluginTypeSRIOV),
					},
				},
				TrunkedNetworks: networkcloud.TrunkedNetworkAttachmentConfigurationArray{
					&networkcloud.TrunkedNetworkAttachmentConfigurationArgs{
						NetworkId:  pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/trunkedNetworks/trunkedNetworkName"),
						PluginType: pulumi.String(networkcloud.KubernetesPluginTypeMACVLAN),
					},
				},
			},
			AvailabilityZones: pulumi.StringArray{
				pulumi.String("1"),
				pulumi.String("2"),
				pulumi.String("3"),
			},
			Count: pulumi.Float64(3),
			ExtendedLocation: &networkcloud.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
				Type: pulumi.String("CustomLocation"),
			},
			KubernetesClusterName: pulumi.String("kubernetesClusterName"),
			Labels: networkcloud.KubernetesLabelArray{
				&networkcloud.KubernetesLabelArgs{
					Key:   pulumi.String("kubernetes.label"),
					Value: pulumi.String("true"),
				},
			},
			Location:          pulumi.String("location"),
			Mode:              pulumi.String(networkcloud.AgentPoolModeSystem),
			ResourceGroupName: pulumi.String("resourceGroupName"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("myvalue1"),
				"key2": pulumi.String("myvalue2"),
			},
			Taints: networkcloud.KubernetesLabelArray{
				&networkcloud.KubernetesLabelArgs{
					Key:   pulumi.String("kubernetes.taint"),
					Value: pulumi.String("true"),
				},
			},
			UpgradeSettings: &networkcloud.AgentPoolUpgradeSettingsArgs{
				MaxSurge: pulumi.String("1"),
			},
			VmSkuName: pulumi.String("NC_M16_v1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.networkcloud.AgentPool;
import com.pulumi.azurenative.networkcloud.AgentPoolArgs;
import com.pulumi.azurenative.networkcloud.inputs.AdministratorConfigurationArgs;
import com.pulumi.azurenative.networkcloud.inputs.AgentOptionsArgs;
import com.pulumi.azurenative.networkcloud.inputs.AttachedNetworkConfigurationArgs;
import com.pulumi.azurenative.networkcloud.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.networkcloud.inputs.KubernetesLabelArgs;
import com.pulumi.azurenative.networkcloud.inputs.AgentPoolUpgradeSettingsArgs;
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 agentPool = new AgentPool("agentPool", AgentPoolArgs.builder()
            .administratorConfiguration(AdministratorConfigurationArgs.builder()
                .adminUsername("azure")
                .sshPublicKeys(SshPublicKeyArgs.builder()
                    .keyData("ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm")
                    .build())
                .build())
            .agentOptions(AgentOptionsArgs.builder()
                .hugepagesCount(96)
                .hugepagesSize("1G")
                .build())
            .agentPoolName("agentPoolName")
            .attachedNetworkConfiguration(AttachedNetworkConfigurationArgs.builder()
                .l2Networks(L2NetworkAttachmentConfigurationArgs.builder()
                    .networkId("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l2Networks/l2NetworkName")
                    .pluginType("DPDK")
                    .build())
                .l3Networks(L3NetworkAttachmentConfigurationArgs.builder()
                    .ipamEnabled("False")
                    .networkId("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName")
                    .pluginType("SRIOV")
                    .build())
                .trunkedNetworks(TrunkedNetworkAttachmentConfigurationArgs.builder()
                    .networkId("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/trunkedNetworks/trunkedNetworkName")
                    .pluginType("MACVLAN")
                    .build())
                .build())
            .availabilityZones(            
                "1",
                "2",
                "3")
            .count(3)
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName")
                .type("CustomLocation")
                .build())
            .kubernetesClusterName("kubernetesClusterName")
            .labels(KubernetesLabelArgs.builder()
                .key("kubernetes.label")
                .value("true")
                .build())
            .location("location")
            .mode("System")
            .resourceGroupName("resourceGroupName")
            .tags(Map.ofEntries(
                Map.entry("key1", "myvalue1"),
                Map.entry("key2", "myvalue2")
            ))
            .taints(KubernetesLabelArgs.builder()
                .key("kubernetes.taint")
                .value("true")
                .build())
            .upgradeSettings(AgentPoolUpgradeSettingsArgs.builder()
                .maxSurge("1")
                .build())
            .vmSkuName("NC_M16_v1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const agentPool = new azure_native.networkcloud.AgentPool("agentPool", {
    administratorConfiguration: {
        adminUsername: "azure",
        sshPublicKeys: [{
            keyData: "ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm",
        }],
    },
    agentOptions: {
        hugepagesCount: 96,
        hugepagesSize: azure_native.networkcloud.HugepagesSize.HugepagesSize_1G,
    },
    agentPoolName: "agentPoolName",
    attachedNetworkConfiguration: {
        l2Networks: [{
            networkId: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l2Networks/l2NetworkName",
            pluginType: azure_native.networkcloud.KubernetesPluginType.DPDK,
        }],
        l3Networks: [{
            ipamEnabled: azure_native.networkcloud.L3NetworkConfigurationIpamEnabled.False,
            networkId: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName",
            pluginType: azure_native.networkcloud.KubernetesPluginType.SRIOV,
        }],
        trunkedNetworks: [{
            networkId: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/trunkedNetworks/trunkedNetworkName",
            pluginType: azure_native.networkcloud.KubernetesPluginType.MACVLAN,
        }],
    },
    availabilityZones: [
        "1",
        "2",
        "3",
    ],
    count: 3,
    extendedLocation: {
        name: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
        type: "CustomLocation",
    },
    kubernetesClusterName: "kubernetesClusterName",
    labels: [{
        key: "kubernetes.label",
        value: "true",
    }],
    location: "location",
    mode: azure_native.networkcloud.AgentPoolMode.System,
    resourceGroupName: "resourceGroupName",
    tags: {
        key1: "myvalue1",
        key2: "myvalue2",
    },
    taints: [{
        key: "kubernetes.taint",
        value: "true",
    }],
    upgradeSettings: {
        maxSurge: "1",
    },
    vmSkuName: "NC_M16_v1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

agent_pool = azure_native.networkcloud.AgentPool("agentPool",
    administrator_configuration={
        "admin_username": "azure",
        "ssh_public_keys": [{
            "key_data": "ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm",
        }],
    },
    agent_options={
        "hugepages_count": 96,
        "hugepages_size": azure_native.networkcloud.HugepagesSize.HUGEPAGES_SIZE_1_G,
    },
    agent_pool_name="agentPoolName",
    attached_network_configuration={
        "l2_networks": [{
            "network_id": "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l2Networks/l2NetworkName",
            "plugin_type": azure_native.networkcloud.KubernetesPluginType.DPDK,
        }],
        "l3_networks": [{
            "ipam_enabled": azure_native.networkcloud.L3NetworkConfigurationIpamEnabled.FALSE,
            "network_id": "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName",
            "plugin_type": azure_native.networkcloud.KubernetesPluginType.SRIOV,
        }],
        "trunked_networks": [{
            "network_id": "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/trunkedNetworks/trunkedNetworkName",
            "plugin_type": azure_native.networkcloud.KubernetesPluginType.MACVLAN,
        }],
    },
    availability_zones=[
        "1",
        "2",
        "3",
    ],
    count=3,
    extended_location={
        "name": "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
        "type": "CustomLocation",
    },
    kubernetes_cluster_name="kubernetesClusterName",
    labels=[{
        "key": "kubernetes.label",
        "value": "true",
    }],
    location="location",
    mode=azure_native.networkcloud.AgentPoolMode.SYSTEM,
    resource_group_name="resourceGroupName",
    tags={
        "key1": "myvalue1",
        "key2": "myvalue2",
    },
    taints=[{
        "key": "kubernetes.taint",
        "value": "true",
    }],
    upgrade_settings={
        "max_surge": "1",
    },
    vm_sku_name="NC_M16_v1")
Copy
resources:
  agentPool:
    type: azure-native:networkcloud:AgentPool
    properties:
      administratorConfiguration:
        adminUsername: azure
        sshPublicKeys:
          - keyData: ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm
      agentOptions:
        hugepagesCount: 96
        hugepagesSize: 1G
      agentPoolName: agentPoolName
      attachedNetworkConfiguration:
        l2Networks:
          - networkId: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l2Networks/l2NetworkName
            pluginType: DPDK
        l3Networks:
          - ipamEnabled: False
            networkId: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName
            pluginType: SRIOV
        trunkedNetworks:
          - networkId: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/trunkedNetworks/trunkedNetworkName
            pluginType: MACVLAN
      availabilityZones:
        - '1'
        - '2'
        - '3'
      count: 3
      extendedLocation:
        name: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName
        type: CustomLocation
      kubernetesClusterName: kubernetesClusterName
      labels:
        - key: kubernetes.label
          value: 'true'
      location: location
      mode: System
      resourceGroupName: resourceGroupName
      tags:
        key1: myvalue1
        key2: myvalue2
      taints:
        - key: kubernetes.taint
          value: 'true'
      upgradeSettings:
        maxSurge: '1'
      vmSkuName: NC_M16_v1
Copy

Create AgentPool Resource

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

Constructor syntax

new AgentPool(name: string, args: AgentPoolArgs, opts?: CustomResourceOptions);
@overload
def AgentPool(resource_name: str,
              args: AgentPoolArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def AgentPool(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              count: Optional[float] = None,
              vm_sku_name: Optional[str] = None,
              resource_group_name: Optional[str] = None,
              mode: Optional[Union[str, AgentPoolMode]] = None,
              kubernetes_cluster_name: Optional[str] = None,
              labels: Optional[Sequence[KubernetesLabelArgs]] = None,
              extended_location: Optional[ExtendedLocationArgs] = None,
              availability_zones: Optional[Sequence[str]] = None,
              administrator_configuration: Optional[AdministratorConfigurationArgs] = None,
              location: Optional[str] = None,
              attached_network_configuration: Optional[AttachedNetworkConfigurationArgs] = None,
              agent_pool_name: Optional[str] = None,
              tags: Optional[Mapping[str, str]] = None,
              taints: Optional[Sequence[KubernetesLabelArgs]] = None,
              upgrade_settings: Optional[AgentPoolUpgradeSettingsArgs] = None,
              agent_options: Optional[AgentOptionsArgs] = None)
func NewAgentPool(ctx *Context, name string, args AgentPoolArgs, opts ...ResourceOption) (*AgentPool, error)
public AgentPool(string name, AgentPoolArgs args, CustomResourceOptions? opts = null)
public AgentPool(String name, AgentPoolArgs args)
public AgentPool(String name, AgentPoolArgs args, CustomResourceOptions options)
type: azure-native:networkcloud:AgentPool
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. AgentPoolArgs
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. AgentPoolArgs
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. AgentPoolArgs
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. AgentPoolArgs
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. AgentPoolArgs
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 exampleagentPoolResourceResourceFromNetworkcloud = new AzureNative.Networkcloud.AgentPool("exampleagentPoolResourceResourceFromNetworkcloud", new()
{
    Count = 0,
    VmSkuName = "string",
    ResourceGroupName = "string",
    Mode = "string",
    KubernetesClusterName = "string",
    Labels = new[]
    {
        
        {
            { "key", "string" },
            { "value", "string" },
        },
    },
    ExtendedLocation = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    AvailabilityZones = new[]
    {
        "string",
    },
    AdministratorConfiguration = 
    {
        { "adminUsername", "string" },
        { "sshPublicKeys", new[]
        {
            
            {
                { "keyData", "string" },
            },
        } },
    },
    Location = "string",
    AttachedNetworkConfiguration = 
    {
        { "l2Networks", new[]
        {
            
            {
                { "networkId", "string" },
                { "pluginType", "string" },
            },
        } },
        { "l3Networks", new[]
        {
            
            {
                { "networkId", "string" },
                { "ipamEnabled", "string" },
                { "pluginType", "string" },
            },
        } },
        { "trunkedNetworks", new[]
        {
            
            {
                { "networkId", "string" },
                { "pluginType", "string" },
            },
        } },
    },
    AgentPoolName = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Taints = new[]
    {
        
        {
            { "key", "string" },
            { "value", "string" },
        },
    },
    UpgradeSettings = 
    {
        { "maxSurge", "string" },
    },
    AgentOptions = 
    {
        { "hugepagesCount", 0 },
        { "hugepagesSize", "string" },
    },
});
Copy
example, err := networkcloud.NewAgentPool(ctx, "exampleagentPoolResourceResourceFromNetworkcloud", &networkcloud.AgentPoolArgs{
	Count:                 0,
	VmSkuName:             "string",
	ResourceGroupName:     "string",
	Mode:                  "string",
	KubernetesClusterName: "string",
	Labels: []map[string]interface{}{
		map[string]interface{}{
			"key":   "string",
			"value": "string",
		},
	},
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	AvailabilityZones: []string{
		"string",
	},
	AdministratorConfiguration: map[string]interface{}{
		"adminUsername": "string",
		"sshPublicKeys": []map[string]interface{}{
			map[string]interface{}{
				"keyData": "string",
			},
		},
	},
	Location: "string",
	AttachedNetworkConfiguration: map[string]interface{}{
		"l2Networks": []map[string]interface{}{
			map[string]interface{}{
				"networkId":  "string",
				"pluginType": "string",
			},
		},
		"l3Networks": []map[string]interface{}{
			map[string]interface{}{
				"networkId":   "string",
				"ipamEnabled": "string",
				"pluginType":  "string",
			},
		},
		"trunkedNetworks": []map[string]interface{}{
			map[string]interface{}{
				"networkId":  "string",
				"pluginType": "string",
			},
		},
	},
	AgentPoolName: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	Taints: []map[string]interface{}{
		map[string]interface{}{
			"key":   "string",
			"value": "string",
		},
	},
	UpgradeSettings: map[string]interface{}{
		"maxSurge": "string",
	},
	AgentOptions: map[string]interface{}{
		"hugepagesCount": 0,
		"hugepagesSize":  "string",
	},
})
Copy
var exampleagentPoolResourceResourceFromNetworkcloud = new AgentPool("exampleagentPoolResourceResourceFromNetworkcloud", AgentPoolArgs.builder()
    .count(0)
    .vmSkuName("string")
    .resourceGroupName("string")
    .mode("string")
    .kubernetesClusterName("string")
    .labels(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .availabilityZones("string")
    .administratorConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .attachedNetworkConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .agentPoolName("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .taints(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .upgradeSettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .agentOptions(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
exampleagent_pool_resource_resource_from_networkcloud = azure_native.networkcloud.AgentPool("exampleagentPoolResourceResourceFromNetworkcloud",
    count=0,
    vm_sku_name=string,
    resource_group_name=string,
    mode=string,
    kubernetes_cluster_name=string,
    labels=[{
        key: string,
        value: string,
    }],
    extended_location={
        name: string,
        type: string,
    },
    availability_zones=[string],
    administrator_configuration={
        adminUsername: string,
        sshPublicKeys: [{
            keyData: string,
        }],
    },
    location=string,
    attached_network_configuration={
        l2Networks: [{
            networkId: string,
            pluginType: string,
        }],
        l3Networks: [{
            networkId: string,
            ipamEnabled: string,
            pluginType: string,
        }],
        trunkedNetworks: [{
            networkId: string,
            pluginType: string,
        }],
    },
    agent_pool_name=string,
    tags={
        string: string,
    },
    taints=[{
        key: string,
        value: string,
    }],
    upgrade_settings={
        maxSurge: string,
    },
    agent_options={
        hugepagesCount: 0,
        hugepagesSize: string,
    })
Copy
const exampleagentPoolResourceResourceFromNetworkcloud = new azure_native.networkcloud.AgentPool("exampleagentPoolResourceResourceFromNetworkcloud", {
    count: 0,
    vmSkuName: "string",
    resourceGroupName: "string",
    mode: "string",
    kubernetesClusterName: "string",
    labels: [{
        key: "string",
        value: "string",
    }],
    extendedLocation: {
        name: "string",
        type: "string",
    },
    availabilityZones: ["string"],
    administratorConfiguration: {
        adminUsername: "string",
        sshPublicKeys: [{
            keyData: "string",
        }],
    },
    location: "string",
    attachedNetworkConfiguration: {
        l2Networks: [{
            networkId: "string",
            pluginType: "string",
        }],
        l3Networks: [{
            networkId: "string",
            ipamEnabled: "string",
            pluginType: "string",
        }],
        trunkedNetworks: [{
            networkId: "string",
            pluginType: "string",
        }],
    },
    agentPoolName: "string",
    tags: {
        string: "string",
    },
    taints: [{
        key: "string",
        value: "string",
    }],
    upgradeSettings: {
        maxSurge: "string",
    },
    agentOptions: {
        hugepagesCount: 0,
        hugepagesSize: "string",
    },
});
Copy
type: azure-native:networkcloud:AgentPool
properties:
    administratorConfiguration:
        adminUsername: string
        sshPublicKeys:
            - keyData: string
    agentOptions:
        hugepagesCount: 0
        hugepagesSize: string
    agentPoolName: string
    attachedNetworkConfiguration:
        l2Networks:
            - networkId: string
              pluginType: string
        l3Networks:
            - ipamEnabled: string
              networkId: string
              pluginType: string
        trunkedNetworks:
            - networkId: string
              pluginType: string
    availabilityZones:
        - string
    count: 0
    extendedLocation:
        name: string
        type: string
    kubernetesClusterName: string
    labels:
        - key: string
          value: string
    location: string
    mode: string
    resourceGroupName: string
    tags:
        string: string
    taints:
        - key: string
          value: string
    upgradeSettings:
        maxSurge: string
    vmSkuName: string
Copy

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

Count This property is required. double
The number of virtual machines that use this configuration.
KubernetesClusterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Kubernetes cluster.
Mode
This property is required.
Changes to this property will trigger replacement.
string | Pulumi.AzureNative.NetworkCloud.AgentPoolMode
The selection of how this agent pool is utilized, either as a system pool or a user pool. System pools run the features and critical services for the Kubernetes Cluster, while user pools are dedicated to user workloads. Every Kubernetes cluster must contain at least one system node pool with at least one node.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
VmSkuName
This property is required.
Changes to this property will trigger replacement.
string
The name of the VM SKU that determines the size of resources allocated for node VMs.
AdministratorConfiguration Changes to this property will trigger replacement. Pulumi.AzureNative.NetworkCloud.Inputs.AdministratorConfiguration
The administrator credentials to be used for the nodes in this agent pool.
AgentOptions Changes to this property will trigger replacement. Pulumi.AzureNative.NetworkCloud.Inputs.AgentOptions
The configurations that will be applied to each agent in this agent pool.
AgentPoolName Changes to this property will trigger replacement. string
The name of the Kubernetes cluster agent pool.
AttachedNetworkConfiguration Changes to this property will trigger replacement. Pulumi.AzureNative.NetworkCloud.Inputs.AttachedNetworkConfiguration
The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
AvailabilityZones Changes to this property will trigger replacement. List<string>
The list of availability zones of the Network Cloud cluster used for the provisioning of nodes in this agent pool. If not specified, all availability zones will be used.
ExtendedLocation Pulumi.AzureNative.NetworkCloud.Inputs.ExtendedLocation
The extended location of the cluster associated with the resource.
Labels Changes to this property will trigger replacement. List<Pulumi.AzureNative.NetworkCloud.Inputs.KubernetesLabel>
The labels applied to the nodes in this agent pool.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Tags Dictionary<string, string>
Resource tags.
Taints Changes to this property will trigger replacement. List<Pulumi.AzureNative.NetworkCloud.Inputs.KubernetesLabel>
The taints applied to the nodes in this agent pool.
UpgradeSettings Pulumi.AzureNative.NetworkCloud.Inputs.AgentPoolUpgradeSettings
The configuration of the agent pool.
Count This property is required. float64
The number of virtual machines that use this configuration.
KubernetesClusterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Kubernetes cluster.
Mode
This property is required.
Changes to this property will trigger replacement.
string | AgentPoolMode
The selection of how this agent pool is utilized, either as a system pool or a user pool. System pools run the features and critical services for the Kubernetes Cluster, while user pools are dedicated to user workloads. Every Kubernetes cluster must contain at least one system node pool with at least one node.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
VmSkuName
This property is required.
Changes to this property will trigger replacement.
string
The name of the VM SKU that determines the size of resources allocated for node VMs.
AdministratorConfiguration Changes to this property will trigger replacement. AdministratorConfigurationArgs
The administrator credentials to be used for the nodes in this agent pool.
AgentOptions Changes to this property will trigger replacement. AgentOptionsArgs
The configurations that will be applied to each agent in this agent pool.
AgentPoolName Changes to this property will trigger replacement. string
The name of the Kubernetes cluster agent pool.
AttachedNetworkConfiguration Changes to this property will trigger replacement. AttachedNetworkConfigurationArgs
The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
AvailabilityZones Changes to this property will trigger replacement. []string
The list of availability zones of the Network Cloud cluster used for the provisioning of nodes in this agent pool. If not specified, all availability zones will be used.
ExtendedLocation ExtendedLocationArgs
The extended location of the cluster associated with the resource.
Labels Changes to this property will trigger replacement. []KubernetesLabelArgs
The labels applied to the nodes in this agent pool.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Tags map[string]string
Resource tags.
Taints Changes to this property will trigger replacement. []KubernetesLabelArgs
The taints applied to the nodes in this agent pool.
UpgradeSettings AgentPoolUpgradeSettingsArgs
The configuration of the agent pool.
count This property is required. Double
The number of virtual machines that use this configuration.
kubernetesClusterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Kubernetes cluster.
mode
This property is required.
Changes to this property will trigger replacement.
String | AgentPoolMode
The selection of how this agent pool is utilized, either as a system pool or a user pool. System pools run the features and critical services for the Kubernetes Cluster, while user pools are dedicated to user workloads. Every Kubernetes cluster must contain at least one system node pool with at least one node.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
vmSkuName
This property is required.
Changes to this property will trigger replacement.
String
The name of the VM SKU that determines the size of resources allocated for node VMs.
administratorConfiguration Changes to this property will trigger replacement. AdministratorConfiguration
The administrator credentials to be used for the nodes in this agent pool.
agentOptions Changes to this property will trigger replacement. AgentOptions
The configurations that will be applied to each agent in this agent pool.
agentPoolName Changes to this property will trigger replacement. String
The name of the Kubernetes cluster agent pool.
attachedNetworkConfiguration Changes to this property will trigger replacement. AttachedNetworkConfiguration
The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
availabilityZones Changes to this property will trigger replacement. List<String>
The list of availability zones of the Network Cloud cluster used for the provisioning of nodes in this agent pool. If not specified, all availability zones will be used.
extendedLocation ExtendedLocation
The extended location of the cluster associated with the resource.
labels Changes to this property will trigger replacement. List<KubernetesLabel>
The labels applied to the nodes in this agent pool.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
tags Map<String,String>
Resource tags.
taints Changes to this property will trigger replacement. List<KubernetesLabel>
The taints applied to the nodes in this agent pool.
upgradeSettings AgentPoolUpgradeSettings
The configuration of the agent pool.
count This property is required. number
The number of virtual machines that use this configuration.
kubernetesClusterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Kubernetes cluster.
mode
This property is required.
Changes to this property will trigger replacement.
string | AgentPoolMode
The selection of how this agent pool is utilized, either as a system pool or a user pool. System pools run the features and critical services for the Kubernetes Cluster, while user pools are dedicated to user workloads. Every Kubernetes cluster must contain at least one system node pool with at least one node.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
vmSkuName
This property is required.
Changes to this property will trigger replacement.
string
The name of the VM SKU that determines the size of resources allocated for node VMs.
administratorConfiguration Changes to this property will trigger replacement. AdministratorConfiguration
The administrator credentials to be used for the nodes in this agent pool.
agentOptions Changes to this property will trigger replacement. AgentOptions
The configurations that will be applied to each agent in this agent pool.
agentPoolName Changes to this property will trigger replacement. string
The name of the Kubernetes cluster agent pool.
attachedNetworkConfiguration Changes to this property will trigger replacement. AttachedNetworkConfiguration
The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
availabilityZones Changes to this property will trigger replacement. string[]
The list of availability zones of the Network Cloud cluster used for the provisioning of nodes in this agent pool. If not specified, all availability zones will be used.
extendedLocation ExtendedLocation
The extended location of the cluster associated with the resource.
labels Changes to this property will trigger replacement. KubernetesLabel[]
The labels applied to the nodes in this agent pool.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
tags {[key: string]: string}
Resource tags.
taints Changes to this property will trigger replacement. KubernetesLabel[]
The taints applied to the nodes in this agent pool.
upgradeSettings AgentPoolUpgradeSettings
The configuration of the agent pool.
count This property is required. float
The number of virtual machines that use this configuration.
kubernetes_cluster_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Kubernetes cluster.
mode
This property is required.
Changes to this property will trigger replacement.
str | AgentPoolMode
The selection of how this agent pool is utilized, either as a system pool or a user pool. System pools run the features and critical services for the Kubernetes Cluster, while user pools are dedicated to user workloads. Every Kubernetes cluster must contain at least one system node pool with at least one node.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
vm_sku_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the VM SKU that determines the size of resources allocated for node VMs.
administrator_configuration Changes to this property will trigger replacement. AdministratorConfigurationArgs
The administrator credentials to be used for the nodes in this agent pool.
agent_options Changes to this property will trigger replacement. AgentOptionsArgs
The configurations that will be applied to each agent in this agent pool.
agent_pool_name Changes to this property will trigger replacement. str
The name of the Kubernetes cluster agent pool.
attached_network_configuration Changes to this property will trigger replacement. AttachedNetworkConfigurationArgs
The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
availability_zones Changes to this property will trigger replacement. Sequence[str]
The list of availability zones of the Network Cloud cluster used for the provisioning of nodes in this agent pool. If not specified, all availability zones will be used.
extended_location ExtendedLocationArgs
The extended location of the cluster associated with the resource.
labels Changes to this property will trigger replacement. Sequence[KubernetesLabelArgs]
The labels applied to the nodes in this agent pool.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
tags Mapping[str, str]
Resource tags.
taints Changes to this property will trigger replacement. Sequence[KubernetesLabelArgs]
The taints applied to the nodes in this agent pool.
upgrade_settings AgentPoolUpgradeSettingsArgs
The configuration of the agent pool.
count This property is required. Number
The number of virtual machines that use this configuration.
kubernetesClusterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Kubernetes cluster.
mode
This property is required.
Changes to this property will trigger replacement.
String | "System" | "User" | "NotApplicable"
The selection of how this agent pool is utilized, either as a system pool or a user pool. System pools run the features and critical services for the Kubernetes Cluster, while user pools are dedicated to user workloads. Every Kubernetes cluster must contain at least one system node pool with at least one node.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
vmSkuName
This property is required.
Changes to this property will trigger replacement.
String
The name of the VM SKU that determines the size of resources allocated for node VMs.
administratorConfiguration Changes to this property will trigger replacement. Property Map
The administrator credentials to be used for the nodes in this agent pool.
agentOptions Changes to this property will trigger replacement. Property Map
The configurations that will be applied to each agent in this agent pool.
agentPoolName Changes to this property will trigger replacement. String
The name of the Kubernetes cluster agent pool.
attachedNetworkConfiguration Changes to this property will trigger replacement. Property Map
The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
availabilityZones Changes to this property will trigger replacement. List<String>
The list of availability zones of the Network Cloud cluster used for the provisioning of nodes in this agent pool. If not specified, all availability zones will be used.
extendedLocation Property Map
The extended location of the cluster associated with the resource.
labels Changes to this property will trigger replacement. List<Property Map>
The labels applied to the nodes in this agent pool.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
tags Map<String>
Resource tags.
taints Changes to this property will trigger replacement. List<Property Map>
The taints applied to the nodes in this agent pool.
upgradeSettings Property Map
The configuration of the agent pool.

Outputs

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

DetailedStatus string
The current status of the agent pool.
DetailedStatusMessage string
The descriptive message about the current detailed status.
Id string
The provider-assigned unique ID for this managed resource.
KubernetesVersion string
The Kubernetes version running in this agent pool.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the agent pool.
SystemData Pulumi.AzureNative.NetworkCloud.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
DetailedStatus string
The current status of the agent pool.
DetailedStatusMessage string
The descriptive message about the current detailed status.
Id string
The provider-assigned unique ID for this managed resource.
KubernetesVersion string
The Kubernetes version running in this agent pool.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the agent pool.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
detailedStatus String
The current status of the agent pool.
detailedStatusMessage String
The descriptive message about the current detailed status.
id String
The provider-assigned unique ID for this managed resource.
kubernetesVersion String
The Kubernetes version running in this agent pool.
name String
The name of the resource
provisioningState String
The provisioning state of the agent pool.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
detailedStatus string
The current status of the agent pool.
detailedStatusMessage string
The descriptive message about the current detailed status.
id string
The provider-assigned unique ID for this managed resource.
kubernetesVersion string
The Kubernetes version running in this agent pool.
name string
The name of the resource
provisioningState string
The provisioning state of the agent pool.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
detailed_status str
The current status of the agent pool.
detailed_status_message str
The descriptive message about the current detailed status.
id str
The provider-assigned unique ID for this managed resource.
kubernetes_version str
The Kubernetes version running in this agent pool.
name str
The name of the resource
provisioning_state str
The provisioning state of the agent pool.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
detailedStatus String
The current status of the agent pool.
detailedStatusMessage String
The descriptive message about the current detailed status.
id String
The provider-assigned unique ID for this managed resource.
kubernetesVersion String
The Kubernetes version running in this agent pool.
name String
The name of the resource
provisioningState String
The provisioning state of the agent pool.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AdministratorConfiguration
, AdministratorConfigurationArgs

AdminUsername string
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
SshPublicKeys List<Pulumi.AzureNative.NetworkCloud.Inputs.SshPublicKey>
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
AdminUsername string
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
SshPublicKeys []SshPublicKey
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
adminUsername String
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
sshPublicKeys List<SshPublicKey>
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
adminUsername string
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
sshPublicKeys SshPublicKey[]
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
admin_username str
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
ssh_public_keys Sequence[SshPublicKey]
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
adminUsername String
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
sshPublicKeys List<Property Map>
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.

AdministratorConfigurationResponse
, AdministratorConfigurationResponseArgs

AdminUsername string
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
SshPublicKeys List<Pulumi.AzureNative.NetworkCloud.Inputs.SshPublicKeyResponse>
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
AdminUsername string
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
SshPublicKeys []SshPublicKeyResponse
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
adminUsername String
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
sshPublicKeys List<SshPublicKeyResponse>
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
adminUsername string
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
sshPublicKeys SshPublicKeyResponse[]
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
admin_username str
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
ssh_public_keys Sequence[SshPublicKeyResponse]
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.
adminUsername String
The user name for the administrator that will be applied to the operating systems that run Kubernetes nodes. If not supplied, a user name will be chosen by the service.
sshPublicKeys List<Property Map>
The SSH configuration for the operating systems that run the nodes in the Kubernetes cluster. In some cases, specification of public keys may be required to produce a working environment.

AgentOptions
, AgentOptionsArgs

HugepagesCount This property is required. double
The number of hugepages to allocate.
HugepagesSize string | Pulumi.AzureNative.NetworkCloud.HugepagesSize
The size of the hugepages to allocate.
HugepagesCount This property is required. float64
The number of hugepages to allocate.
HugepagesSize string | HugepagesSize
The size of the hugepages to allocate.
hugepagesCount This property is required. Double
The number of hugepages to allocate.
hugepagesSize String | HugepagesSize
The size of the hugepages to allocate.
hugepagesCount This property is required. number
The number of hugepages to allocate.
hugepagesSize string | HugepagesSize
The size of the hugepages to allocate.
hugepages_count This property is required. float
The number of hugepages to allocate.
hugepages_size str | HugepagesSize
The size of the hugepages to allocate.
hugepagesCount This property is required. Number
The number of hugepages to allocate.
hugepagesSize String | "2M" | "1G"
The size of the hugepages to allocate.

AgentOptionsResponse
, AgentOptionsResponseArgs

HugepagesCount This property is required. double
The number of hugepages to allocate.
HugepagesSize string
The size of the hugepages to allocate.
HugepagesCount This property is required. float64
The number of hugepages to allocate.
HugepagesSize string
The size of the hugepages to allocate.
hugepagesCount This property is required. Double
The number of hugepages to allocate.
hugepagesSize String
The size of the hugepages to allocate.
hugepagesCount This property is required. number
The number of hugepages to allocate.
hugepagesSize string
The size of the hugepages to allocate.
hugepages_count This property is required. float
The number of hugepages to allocate.
hugepages_size str
The size of the hugepages to allocate.
hugepagesCount This property is required. Number
The number of hugepages to allocate.
hugepagesSize String
The size of the hugepages to allocate.

AgentPoolMode
, AgentPoolModeArgs

System
System
User
User
NotApplicable
NotApplicable
AgentPoolModeSystem
System
AgentPoolModeUser
User
AgentPoolModeNotApplicable
NotApplicable
System
System
User
User
NotApplicable
NotApplicable
System
System
User
User
NotApplicable
NotApplicable
SYSTEM
System
USER
User
NOT_APPLICABLE
NotApplicable
"System"
System
"User"
User
"NotApplicable"
NotApplicable

AgentPoolUpgradeSettings
, AgentPoolUpgradeSettingsArgs

MaxSurge string
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
MaxSurge string
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
maxSurge String
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
maxSurge string
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
max_surge str
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
maxSurge String
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.

AgentPoolUpgradeSettingsResponse
, AgentPoolUpgradeSettingsResponseArgs

MaxSurge string
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
MaxSurge string
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
maxSurge String
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
maxSurge string
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
max_surge str
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.
maxSurge String
The maximum number or percentage of nodes that are surged during upgrade. This can either be set to an integer (e.g. '5') or a percentage (e.g. '50%'). If a percentage is specified, it is the percentage of the total agent pool size at the time of the upgrade. For percentages, fractional nodes are rounded up. If not specified, the default is 1.

AttachedNetworkConfiguration
, AttachedNetworkConfigurationArgs

L2Networks List<Pulumi.AzureNative.NetworkCloud.Inputs.L2NetworkAttachmentConfiguration>
The list of Layer 2 Networks and related configuration for attachment.
L3Networks List<Pulumi.AzureNative.NetworkCloud.Inputs.L3NetworkAttachmentConfiguration>
The list of Layer 3 Networks and related configuration for attachment.
TrunkedNetworks List<Pulumi.AzureNative.NetworkCloud.Inputs.TrunkedNetworkAttachmentConfiguration>
The list of Trunked Networks and related configuration for attachment.
L2Networks []L2NetworkAttachmentConfiguration
The list of Layer 2 Networks and related configuration for attachment.
L3Networks []L3NetworkAttachmentConfiguration
The list of Layer 3 Networks and related configuration for attachment.
TrunkedNetworks []TrunkedNetworkAttachmentConfiguration
The list of Trunked Networks and related configuration for attachment.
l2Networks List<L2NetworkAttachmentConfiguration>
The list of Layer 2 Networks and related configuration for attachment.
l3Networks List<L3NetworkAttachmentConfiguration>
The list of Layer 3 Networks and related configuration for attachment.
trunkedNetworks List<TrunkedNetworkAttachmentConfiguration>
The list of Trunked Networks and related configuration for attachment.
l2Networks L2NetworkAttachmentConfiguration[]
The list of Layer 2 Networks and related configuration for attachment.
l3Networks L3NetworkAttachmentConfiguration[]
The list of Layer 3 Networks and related configuration for attachment.
trunkedNetworks TrunkedNetworkAttachmentConfiguration[]
The list of Trunked Networks and related configuration for attachment.
l2_networks Sequence[L2NetworkAttachmentConfiguration]
The list of Layer 2 Networks and related configuration for attachment.
l3_networks Sequence[L3NetworkAttachmentConfiguration]
The list of Layer 3 Networks and related configuration for attachment.
trunked_networks Sequence[TrunkedNetworkAttachmentConfiguration]
The list of Trunked Networks and related configuration for attachment.
l2Networks List<Property Map>
The list of Layer 2 Networks and related configuration for attachment.
l3Networks List<Property Map>
The list of Layer 3 Networks and related configuration for attachment.
trunkedNetworks List<Property Map>
The list of Trunked Networks and related configuration for attachment.

AttachedNetworkConfigurationResponse
, AttachedNetworkConfigurationResponseArgs

L2Networks List<Pulumi.AzureNative.NetworkCloud.Inputs.L2NetworkAttachmentConfigurationResponse>
The list of Layer 2 Networks and related configuration for attachment.
L3Networks List<Pulumi.AzureNative.NetworkCloud.Inputs.L3NetworkAttachmentConfigurationResponse>
The list of Layer 3 Networks and related configuration for attachment.
TrunkedNetworks List<Pulumi.AzureNative.NetworkCloud.Inputs.TrunkedNetworkAttachmentConfigurationResponse>
The list of Trunked Networks and related configuration for attachment.
L2Networks []L2NetworkAttachmentConfigurationResponse
The list of Layer 2 Networks and related configuration for attachment.
L3Networks []L3NetworkAttachmentConfigurationResponse
The list of Layer 3 Networks and related configuration for attachment.
TrunkedNetworks []TrunkedNetworkAttachmentConfigurationResponse
The list of Trunked Networks and related configuration for attachment.
l2Networks List<L2NetworkAttachmentConfigurationResponse>
The list of Layer 2 Networks and related configuration for attachment.
l3Networks List<L3NetworkAttachmentConfigurationResponse>
The list of Layer 3 Networks and related configuration for attachment.
trunkedNetworks List<TrunkedNetworkAttachmentConfigurationResponse>
The list of Trunked Networks and related configuration for attachment.
l2Networks L2NetworkAttachmentConfigurationResponse[]
The list of Layer 2 Networks and related configuration for attachment.
l3Networks L3NetworkAttachmentConfigurationResponse[]
The list of Layer 3 Networks and related configuration for attachment.
trunkedNetworks TrunkedNetworkAttachmentConfigurationResponse[]
The list of Trunked Networks and related configuration for attachment.
l2_networks Sequence[L2NetworkAttachmentConfigurationResponse]
The list of Layer 2 Networks and related configuration for attachment.
l3_networks Sequence[L3NetworkAttachmentConfigurationResponse]
The list of Layer 3 Networks and related configuration for attachment.
trunked_networks Sequence[TrunkedNetworkAttachmentConfigurationResponse]
The list of Trunked Networks and related configuration for attachment.
l2Networks List<Property Map>
The list of Layer 2 Networks and related configuration for attachment.
l3Networks List<Property Map>
The list of Layer 3 Networks and related configuration for attachment.
trunkedNetworks List<Property Map>
The list of Trunked Networks and related configuration for attachment.

ExtendedLocation
, ExtendedLocationArgs

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

ExtendedLocationResponse
, ExtendedLocationResponseArgs

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

HugepagesSize
, HugepagesSizeArgs

HugepagesSize_2M
2M
HugepagesSize_1G
1G
HugepagesSize_2M
2M
HugepagesSize_1G
1G
_2M
2M
_1G
1G
HugepagesSize_2M
2M
HugepagesSize_1G
1G
HUGEPAGES_SIZE_2_M
2M
HUGEPAGES_SIZE_1_G
1G
"2M"
2M
"1G"
1G

KubernetesLabel
, KubernetesLabelArgs

Key This property is required. string
The name of the label or taint.
Value This property is required. string
The value of the label or taint.
Key This property is required. string
The name of the label or taint.
Value This property is required. string
The value of the label or taint.
key This property is required. String
The name of the label or taint.
value This property is required. String
The value of the label or taint.
key This property is required. string
The name of the label or taint.
value This property is required. string
The value of the label or taint.
key This property is required. str
The name of the label or taint.
value This property is required. str
The value of the label or taint.
key This property is required. String
The name of the label or taint.
value This property is required. String
The value of the label or taint.

KubernetesLabelResponse
, KubernetesLabelResponseArgs

Key This property is required. string
The name of the label or taint.
Value This property is required. string
The value of the label or taint.
Key This property is required. string
The name of the label or taint.
Value This property is required. string
The value of the label or taint.
key This property is required. String
The name of the label or taint.
value This property is required. String
The value of the label or taint.
key This property is required. string
The name of the label or taint.
value This property is required. string
The value of the label or taint.
key This property is required. str
The name of the label or taint.
value This property is required. str
The value of the label or taint.
key This property is required. String
The name of the label or taint.
value This property is required. String
The value of the label or taint.

KubernetesPluginType
, KubernetesPluginTypeArgs

DPDK
DPDK
SRIOV
SRIOV
OSDevice
OSDevice
MACVLAN
MACVLAN
IPVLAN
IPVLAN
KubernetesPluginTypeDPDK
DPDK
KubernetesPluginTypeSRIOV
SRIOV
KubernetesPluginTypeOSDevice
OSDevice
KubernetesPluginTypeMACVLAN
MACVLAN
KubernetesPluginTypeIPVLAN
IPVLAN
DPDK
DPDK
SRIOV
SRIOV
OSDevice
OSDevice
MACVLAN
MACVLAN
IPVLAN
IPVLAN
DPDK
DPDK
SRIOV
SRIOV
OSDevice
OSDevice
MACVLAN
MACVLAN
IPVLAN
IPVLAN
DPDK
DPDK
SRIOV
SRIOV
OS_DEVICE
OSDevice
MACVLAN
MACVLAN
IPVLAN
IPVLAN
"DPDK"
DPDK
"SRIOV"
SRIOV
"OSDevice"
OSDevice
"MACVLAN"
MACVLAN
"IPVLAN"
IPVLAN

L2NetworkAttachmentConfiguration
, L2NetworkAttachmentConfigurationArgs

NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
PluginType string | Pulumi.AzureNative.NetworkCloud.KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
PluginType string | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
pluginType String | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. string
The resource ID of the network that is being configured for attachment.
pluginType string | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
network_id This property is required. str
The resource ID of the network that is being configured for attachment.
plugin_type str | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
pluginType String | "DPDK" | "SRIOV" | "OSDevice" | "MACVLAN" | "IPVLAN"
The indicator of how this network will be utilized by the Kubernetes cluster.

L2NetworkAttachmentConfigurationResponse
, L2NetworkAttachmentConfigurationResponseArgs

NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
PluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
PluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
pluginType String
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. string
The resource ID of the network that is being configured for attachment.
pluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
network_id This property is required. str
The resource ID of the network that is being configured for attachment.
plugin_type str
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
pluginType String
The indicator of how this network will be utilized by the Kubernetes cluster.

L3NetworkAttachmentConfiguration
, L3NetworkAttachmentConfigurationArgs

NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
IpamEnabled string | Pulumi.AzureNative.NetworkCloud.L3NetworkConfigurationIpamEnabled
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
PluginType string | Pulumi.AzureNative.NetworkCloud.KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
IpamEnabled string | L3NetworkConfigurationIpamEnabled
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
PluginType string | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
ipamEnabled String | L3NetworkConfigurationIpamEnabled
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
pluginType String | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. string
The resource ID of the network that is being configured for attachment.
ipamEnabled string | L3NetworkConfigurationIpamEnabled
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
pluginType string | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
network_id This property is required. str
The resource ID of the network that is being configured for attachment.
ipam_enabled str | L3NetworkConfigurationIpamEnabled
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
plugin_type str | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
ipamEnabled String | "True" | "False"
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
pluginType String | "DPDK" | "SRIOV" | "OSDevice" | "MACVLAN" | "IPVLAN"
The indicator of how this network will be utilized by the Kubernetes cluster.

L3NetworkAttachmentConfigurationResponse
, L3NetworkAttachmentConfigurationResponseArgs

NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
IpamEnabled string
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
PluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
IpamEnabled string
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
PluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
ipamEnabled String
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
pluginType String
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. string
The resource ID of the network that is being configured for attachment.
ipamEnabled string
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
pluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
network_id This property is required. str
The resource ID of the network that is being configured for attachment.
ipam_enabled str
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
plugin_type str
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
ipamEnabled String
The indication of whether this network will or will not perform IP address management and allocate IP addresses when attached.
pluginType String
The indicator of how this network will be utilized by the Kubernetes cluster.

L3NetworkConfigurationIpamEnabled
, L3NetworkConfigurationIpamEnabledArgs

True
True
False
False
L3NetworkConfigurationIpamEnabledTrue
True
L3NetworkConfigurationIpamEnabledFalse
False
True
True
False
False
True
True
False
False
TRUE
True
FALSE
False
"True"
True
"False"
False

SshPublicKey
, SshPublicKeyArgs

KeyData This property is required. string
The SSH public key data.
KeyData This property is required. string
The SSH public key data.
keyData This property is required. String
The SSH public key data.
keyData This property is required. string
The SSH public key data.
key_data This property is required. str
The SSH public key data.
keyData This property is required. String
The SSH public key data.

SshPublicKeyResponse
, SshPublicKeyResponseArgs

KeyData This property is required. string
The SSH public key data.
KeyData This property is required. string
The SSH public key data.
keyData This property is required. String
The SSH public key data.
keyData This property is required. string
The SSH public key data.
key_data This property is required. str
The SSH public key data.
keyData This property is required. String
The SSH public key data.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

TrunkedNetworkAttachmentConfiguration
, TrunkedNetworkAttachmentConfigurationArgs

NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
PluginType string | Pulumi.AzureNative.NetworkCloud.KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
PluginType string | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
pluginType String | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. string
The resource ID of the network that is being configured for attachment.
pluginType string | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
network_id This property is required. str
The resource ID of the network that is being configured for attachment.
plugin_type str | KubernetesPluginType
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
pluginType String | "DPDK" | "SRIOV" | "OSDevice" | "MACVLAN" | "IPVLAN"
The indicator of how this network will be utilized by the Kubernetes cluster.

TrunkedNetworkAttachmentConfigurationResponse
, TrunkedNetworkAttachmentConfigurationResponseArgs

NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
PluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
NetworkId This property is required. string
The resource ID of the network that is being configured for attachment.
PluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
pluginType String
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. string
The resource ID of the network that is being configured for attachment.
pluginType string
The indicator of how this network will be utilized by the Kubernetes cluster.
network_id This property is required. str
The resource ID of the network that is being configured for attachment.
plugin_type str
The indicator of how this network will be utilized by the Kubernetes cluster.
networkId This property is required. String
The resource ID of the network that is being configured for attachment.
pluginType String
The indicator of how this network will be utilized by the Kubernetes cluster.

Import

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

$ pulumi import azure-native:networkcloud:AgentPool default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetworkCloud/kubernetesClusters/{kubernetesClusterName}/agentPools/{agentPoolName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi