1. Packages
  2. Azure Native
  3. API Docs
  4. networkcloud
  5. AgentPool
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.networkcloud.AgentPool

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

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

    Other available API versions: 2023-07-01, 2023-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",
        });
    
    });
    
    package main
    
    import (
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    agent_pool = azure_native.networkcloud.AgentPool("agentPool",
        administrator_configuration=azure_native.networkcloud.AdministratorConfigurationArgs(
            admin_username="azure",
            ssh_public_keys=[azure_native.networkcloud.SshPublicKeyArgs(
                key_data="ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm",
            )],
        ),
        agent_options=azure_native.networkcloud.AgentOptionsArgs(
            hugepages_count=96,
            hugepages_size=azure_native.networkcloud.HugepagesSize.HUGEPAGES_SIZE_1_G,
        ),
        agent_pool_name="agentPoolName",
        attached_network_configuration=azure_native.networkcloud.AttachedNetworkConfigurationArgs(
            l2_networks=[azure_native.networkcloud.L2NetworkAttachmentConfigurationArgs(
                network_id="/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l2Networks/l2NetworkName",
                plugin_type=azure_native.networkcloud.KubernetesPluginType.DPDK,
            )],
            l3_networks=[azure_native.networkcloud.L3NetworkAttachmentConfigurationArgs(
                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=[azure_native.networkcloud.TrunkedNetworkAttachmentConfigurationArgs(
                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=azure_native.networkcloud.ExtendedLocationArgs(
            name="/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
            type="CustomLocation",
        ),
        kubernetes_cluster_name="kubernetesClusterName",
        labels=[azure_native.networkcloud.KubernetesLabelArgs(
            key="kubernetes.label",
            value="true",
        )],
        location="location",
        mode=azure_native.networkcloud.AgentPoolMode.SYSTEM,
        resource_group_name="resourceGroupName",
        tags={
            "key1": "myvalue1",
            "key2": "myvalue2",
        },
        taints=[azure_native.networkcloud.KubernetesLabelArgs(
            key="kubernetes.taint",
            value="true",
        )],
        upgrade_settings=azure_native.networkcloud.AgentPoolUpgradeSettingsArgs(
            max_surge="1",
        ),
        vm_sku_name="NC_M16_v1")
    
    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",
    });
    
    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
    

    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 string
    The unique name of the resource.
    args AgentPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args AgentPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentPoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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[]
        {
            new AzureNative.NetworkCloud.Inputs.KubernetesLabelArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        AvailabilityZones = new[]
        {
            "string",
        },
        AdministratorConfiguration = new AzureNative.NetworkCloud.Inputs.AdministratorConfigurationArgs
        {
            AdminUsername = "string",
            SshPublicKeys = new[]
            {
                new AzureNative.NetworkCloud.Inputs.SshPublicKeyArgs
                {
                    KeyData = "string",
                },
            },
        },
        Location = "string",
        AttachedNetworkConfiguration = new AzureNative.NetworkCloud.Inputs.AttachedNetworkConfigurationArgs
        {
            L2Networks = new[]
            {
                new AzureNative.NetworkCloud.Inputs.L2NetworkAttachmentConfigurationArgs
                {
                    NetworkId = "string",
                    PluginType = "string",
                },
            },
            L3Networks = new[]
            {
                new AzureNative.NetworkCloud.Inputs.L3NetworkAttachmentConfigurationArgs
                {
                    NetworkId = "string",
                    IpamEnabled = "string",
                    PluginType = "string",
                },
            },
            TrunkedNetworks = new[]
            {
                new AzureNative.NetworkCloud.Inputs.TrunkedNetworkAttachmentConfigurationArgs
                {
                    NetworkId = "string",
                    PluginType = "string",
                },
            },
        },
        AgentPoolName = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Taints = new[]
        {
            new AzureNative.NetworkCloud.Inputs.KubernetesLabelArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        UpgradeSettings = new AzureNative.NetworkCloud.Inputs.AgentPoolUpgradeSettingsArgs
        {
            MaxSurge = "string",
        },
        AgentOptions = new AzureNative.NetworkCloud.Inputs.AgentOptionsArgs
        {
            HugepagesCount = 0,
            HugepagesSize = "string",
        },
    });
    
    example, err := networkcloud.NewAgentPool(ctx, "exampleagentPoolResourceResourceFromNetworkcloud", &networkcloud.AgentPoolArgs{
    Count: pulumi.Float64(0),
    VmSkuName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Mode: pulumi.String("string"),
    KubernetesClusterName: pulumi.String("string"),
    Labels: networkcloud.KubernetesLabelArray{
    &networkcloud.KubernetesLabelArgs{
    Key: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    ExtendedLocation: &networkcloud.ExtendedLocationArgs{
    Name: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    AvailabilityZones: pulumi.StringArray{
    pulumi.String("string"),
    },
    AdministratorConfiguration: &networkcloud.AdministratorConfigurationArgs{
    AdminUsername: pulumi.String("string"),
    SshPublicKeys: networkcloud.SshPublicKeyArray{
    &networkcloud.SshPublicKeyArgs{
    KeyData: pulumi.String("string"),
    },
    },
    },
    Location: pulumi.String("string"),
    AttachedNetworkConfiguration: &networkcloud.AttachedNetworkConfigurationArgs{
    L2Networks: networkcloud.L2NetworkAttachmentConfigurationArray{
    &networkcloud.L2NetworkAttachmentConfigurationArgs{
    NetworkId: pulumi.String("string"),
    PluginType: pulumi.String("string"),
    },
    },
    L3Networks: networkcloud.L3NetworkAttachmentConfigurationArray{
    &networkcloud.L3NetworkAttachmentConfigurationArgs{
    NetworkId: pulumi.String("string"),
    IpamEnabled: pulumi.String("string"),
    PluginType: pulumi.String("string"),
    },
    },
    TrunkedNetworks: networkcloud.TrunkedNetworkAttachmentConfigurationArray{
    &networkcloud.TrunkedNetworkAttachmentConfigurationArgs{
    NetworkId: pulumi.String("string"),
    PluginType: pulumi.String("string"),
    },
    },
    },
    AgentPoolName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    Taints: networkcloud.KubernetesLabelArray{
    &networkcloud.KubernetesLabelArgs{
    Key: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    UpgradeSettings: &networkcloud.AgentPoolUpgradeSettingsArgs{
    MaxSurge: pulumi.String("string"),
    },
    AgentOptions: &networkcloud.AgentOptionsArgs{
    HugepagesCount: pulumi.Float64(0),
    HugepagesSize: pulumi.String("string"),
    },
    })
    
    var exampleagentPoolResourceResourceFromNetworkcloud = new AgentPool("exampleagentPoolResourceResourceFromNetworkcloud", AgentPoolArgs.builder()        
        .count(0)
        .vmSkuName("string")
        .resourceGroupName("string")
        .mode("string")
        .kubernetesClusterName("string")
        .labels(KubernetesLabelArgs.builder()
            .key("string")
            .value("string")
            .build())
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .availabilityZones("string")
        .administratorConfiguration(AdministratorConfigurationArgs.builder()
            .adminUsername("string")
            .sshPublicKeys(SshPublicKeyArgs.builder()
                .keyData("string")
                .build())
            .build())
        .location("string")
        .attachedNetworkConfiguration(AttachedNetworkConfigurationArgs.builder()
            .l2Networks(L2NetworkAttachmentConfigurationArgs.builder()
                .networkId("string")
                .pluginType("string")
                .build())
            .l3Networks(L3NetworkAttachmentConfigurationArgs.builder()
                .networkId("string")
                .ipamEnabled("string")
                .pluginType("string")
                .build())
            .trunkedNetworks(TrunkedNetworkAttachmentConfigurationArgs.builder()
                .networkId("string")
                .pluginType("string")
                .build())
            .build())
        .agentPoolName("string")
        .tags(Map.of("string", "string"))
        .taints(KubernetesLabelArgs.builder()
            .key("string")
            .value("string")
            .build())
        .upgradeSettings(AgentPoolUpgradeSettingsArgs.builder()
            .maxSurge("string")
            .build())
        .agentOptions(AgentOptionsArgs.builder()
            .hugepagesCount(0)
            .hugepagesSize("string")
            .build())
        .build());
    
    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=[azure_native.networkcloud.KubernetesLabelArgs(
            key="string",
            value="string",
        )],
        extended_location=azure_native.networkcloud.ExtendedLocationArgs(
            name="string",
            type="string",
        ),
        availability_zones=["string"],
        administrator_configuration=azure_native.networkcloud.AdministratorConfigurationArgs(
            admin_username="string",
            ssh_public_keys=[azure_native.networkcloud.SshPublicKeyArgs(
                key_data="string",
            )],
        ),
        location="string",
        attached_network_configuration=azure_native.networkcloud.AttachedNetworkConfigurationArgs(
            l2_networks=[azure_native.networkcloud.L2NetworkAttachmentConfigurationArgs(
                network_id="string",
                plugin_type="string",
            )],
            l3_networks=[azure_native.networkcloud.L3NetworkAttachmentConfigurationArgs(
                network_id="string",
                ipam_enabled="string",
                plugin_type="string",
            )],
            trunked_networks=[azure_native.networkcloud.TrunkedNetworkAttachmentConfigurationArgs(
                network_id="string",
                plugin_type="string",
            )],
        ),
        agent_pool_name="string",
        tags={
            "string": "string",
        },
        taints=[azure_native.networkcloud.KubernetesLabelArgs(
            key="string",
            value="string",
        )],
        upgrade_settings=azure_native.networkcloud.AgentPoolUpgradeSettingsArgs(
            max_surge="string",
        ),
        agent_options=azure_native.networkcloud.AgentOptionsArgs(
            hugepages_count=0,
            hugepages_size="string",
        ))
    
    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",
        },
    });
    
    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
    

    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

    The AgentPool resource accepts the following input properties:

    Count double
    The number of virtual machines that use this configuration.
    KubernetesClusterName string
    The name of the Kubernetes cluster.
    Mode 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 string
    The name of the resource group. The name is case insensitive.
    VmSkuName string
    The name of the VM SKU that determines the size of resources allocated for node VMs.
    AdministratorConfiguration Pulumi.AzureNative.NetworkCloud.Inputs.AdministratorConfiguration
    The administrator credentials to be used for the nodes in this agent pool.
    AgentOptions Pulumi.AzureNative.NetworkCloud.Inputs.AgentOptions
    The configurations that will be applied to each agent in this agent pool.
    AgentPoolName string
    The name of the Kubernetes cluster agent pool.
    AttachedNetworkConfiguration 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 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 List<Pulumi.AzureNative.NetworkCloud.Inputs.KubernetesLabel>
    The labels applied to the nodes in this agent pool.
    Location string
    The geo-location where the resource lives
    Tags Dictionary<string, string>
    Resource tags.
    Taints 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 float64
    The number of virtual machines that use this configuration.
    KubernetesClusterName string
    The name of the Kubernetes cluster.
    Mode 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 string
    The name of the resource group. The name is case insensitive.
    VmSkuName string
    The name of the VM SKU that determines the size of resources allocated for node VMs.
    AdministratorConfiguration AdministratorConfigurationArgs
    The administrator credentials to be used for the nodes in this agent pool.
    AgentOptions AgentOptionsArgs
    The configurations that will be applied to each agent in this agent pool.
    AgentPoolName string
    The name of the Kubernetes cluster agent pool.
    AttachedNetworkConfiguration AttachedNetworkConfigurationArgs
    The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
    AvailabilityZones []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 []KubernetesLabelArgs
    The labels applied to the nodes in this agent pool.
    Location string
    The geo-location where the resource lives
    Tags map[string]string
    Resource tags.
    Taints []KubernetesLabelArgs
    The taints applied to the nodes in this agent pool.
    UpgradeSettings AgentPoolUpgradeSettingsArgs
    The configuration of the agent pool.
    count Double
    The number of virtual machines that use this configuration.
    kubernetesClusterName String
    The name of the Kubernetes cluster.
    mode 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 String
    The name of the resource group. The name is case insensitive.
    vmSkuName String
    The name of the VM SKU that determines the size of resources allocated for node VMs.
    administratorConfiguration AdministratorConfiguration
    The administrator credentials to be used for the nodes in this agent pool.
    agentOptions AgentOptions
    The configurations that will be applied to each agent in this agent pool.
    agentPoolName String
    The name of the Kubernetes cluster agent pool.
    attachedNetworkConfiguration AttachedNetworkConfiguration
    The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
    availabilityZones 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 List<KubernetesLabel>
    The labels applied to the nodes in this agent pool.
    location String
    The geo-location where the resource lives
    tags Map<String,String>
    Resource tags.
    taints List<KubernetesLabel>
    The taints applied to the nodes in this agent pool.
    upgradeSettings AgentPoolUpgradeSettings
    The configuration of the agent pool.
    count number
    The number of virtual machines that use this configuration.
    kubernetesClusterName string
    The name of the Kubernetes cluster.
    mode 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 string
    The name of the resource group. The name is case insensitive.
    vmSkuName string
    The name of the VM SKU that determines the size of resources allocated for node VMs.
    administratorConfiguration AdministratorConfiguration
    The administrator credentials to be used for the nodes in this agent pool.
    agentOptions AgentOptions
    The configurations that will be applied to each agent in this agent pool.
    agentPoolName string
    The name of the Kubernetes cluster agent pool.
    attachedNetworkConfiguration AttachedNetworkConfiguration
    The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
    availabilityZones 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 KubernetesLabel[]
    The labels applied to the nodes in this agent pool.
    location string
    The geo-location where the resource lives
    tags {[key: string]: string}
    Resource tags.
    taints KubernetesLabel[]
    The taints applied to the nodes in this agent pool.
    upgradeSettings AgentPoolUpgradeSettings
    The configuration of the agent pool.
    count float
    The number of virtual machines that use this configuration.
    kubernetes_cluster_name str
    The name of the Kubernetes cluster.
    mode 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 str
    The name of the resource group. The name is case insensitive.
    vm_sku_name str
    The name of the VM SKU that determines the size of resources allocated for node VMs.
    administrator_configuration AdministratorConfigurationArgs
    The administrator credentials to be used for the nodes in this agent pool.
    agent_options AgentOptionsArgs
    The configurations that will be applied to each agent in this agent pool.
    agent_pool_name str
    The name of the Kubernetes cluster agent pool.
    attached_network_configuration AttachedNetworkConfigurationArgs
    The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
    availability_zones 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 Sequence[KubernetesLabelArgs]
    The labels applied to the nodes in this agent pool.
    location str
    The geo-location where the resource lives
    tags Mapping[str, str]
    Resource tags.
    taints Sequence[KubernetesLabelArgs]
    The taints applied to the nodes in this agent pool.
    upgrade_settings AgentPoolUpgradeSettingsArgs
    The configuration of the agent pool.
    count Number
    The number of virtual machines that use this configuration.
    kubernetesClusterName String
    The name of the Kubernetes cluster.
    mode 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 String
    The name of the resource group. The name is case insensitive.
    vmSkuName String
    The name of the VM SKU that determines the size of resources allocated for node VMs.
    administratorConfiguration Property Map
    The administrator credentials to be used for the nodes in this agent pool.
    agentOptions Property Map
    The configurations that will be applied to each agent in this agent pool.
    agentPoolName String
    The name of the Kubernetes cluster agent pool.
    attachedNetworkConfiguration Property Map
    The configuration of networks being attached to the agent pool for use by the workloads that run on this Kubernetes cluster.
    availabilityZones 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 List<Property Map>
    The labels applied to the nodes in this agent pool.
    location String
    The geo-location where the resource lives
    tags Map<String>
    Resource tags.
    taints 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 double
    The number of hugepages to allocate.
    HugepagesSize string | Pulumi.AzureNative.NetworkCloud.HugepagesSize
    The size of the hugepages to allocate.
    HugepagesCount float64
    The number of hugepages to allocate.
    HugepagesSize string | HugepagesSize
    The size of the hugepages to allocate.
    hugepagesCount Double
    The number of hugepages to allocate.
    hugepagesSize String | HugepagesSize
    The size of the hugepages to allocate.
    hugepagesCount number
    The number of hugepages to allocate.
    hugepagesSize string | HugepagesSize
    The size of the hugepages to allocate.
    hugepages_count float
    The number of hugepages to allocate.
    hugepages_size str | HugepagesSize
    The size of the hugepages to allocate.
    hugepagesCount Number
    The number of hugepages to allocate.
    hugepagesSize String | "2M" | "1G"
    The size of the hugepages to allocate.

    AgentOptionsResponse, AgentOptionsResponseArgs

    HugepagesCount double
    The number of hugepages to allocate.
    HugepagesSize string
    The size of the hugepages to allocate.
    HugepagesCount float64
    The number of hugepages to allocate.
    HugepagesSize string
    The size of the hugepages to allocate.
    hugepagesCount Double
    The number of hugepages to allocate.
    hugepagesSize String
    The size of the hugepages to allocate.
    hugepagesCount number
    The number of hugepages to allocate.
    hugepagesSize string
    The size of the hugepages to allocate.
    hugepages_count float
    The number of hugepages to allocate.
    hugepages_size str
    The size of the hugepages to allocate.
    hugepagesCount 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 string
    The resource ID of the extended location on which the resource will be created.
    Type string
    The extended location type, for example, CustomLocation.
    Name string
    The resource ID of the extended location on which the resource will be created.
    Type string
    The extended location type, for example, CustomLocation.
    name String
    The resource ID of the extended location on which the resource will be created.
    type String
    The extended location type, for example, CustomLocation.
    name string
    The resource ID of the extended location on which the resource will be created.
    type string
    The extended location type, for example, CustomLocation.
    name str
    The resource ID of the extended location on which the resource will be created.
    type str
    The extended location type, for example, CustomLocation.
    name String
    The resource ID of the extended location on which the resource will be created.
    type String
    The extended location type, for example, CustomLocation.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string
    The resource ID of the extended location on which the resource will be created.
    Type string
    The extended location type, for example, CustomLocation.
    Name string
    The resource ID of the extended location on which the resource will be created.
    Type string
    The extended location type, for example, CustomLocation.
    name String
    The resource ID of the extended location on which the resource will be created.
    type String
    The extended location type, for example, CustomLocation.
    name string
    The resource ID of the extended location on which the resource will be created.
    type string
    The extended location type, for example, CustomLocation.
    name str
    The resource ID of the extended location on which the resource will be created.
    type str
    The extended location type, for example, CustomLocation.
    name String
    The resource ID of the extended location on which the resource will be created.
    type 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 string
    The name of the label or taint.
    Value string
    The value of the label or taint.
    Key string
    The name of the label or taint.
    Value string
    The value of the label or taint.
    key String
    The name of the label or taint.
    value String
    The value of the label or taint.
    key string
    The name of the label or taint.
    value string
    The value of the label or taint.
    key str
    The name of the label or taint.
    value str
    The value of the label or taint.
    key String
    The name of the label or taint.
    value String
    The value of the label or taint.

    KubernetesLabelResponse, KubernetesLabelResponseArgs

    Key string
    The name of the label or taint.
    Value string
    The value of the label or taint.
    Key string
    The name of the label or taint.
    Value string
    The value of the label or taint.
    key String
    The name of the label or taint.
    value String
    The value of the label or taint.
    key string
    The name of the label or taint.
    value string
    The value of the label or taint.
    key str
    The name of the label or taint.
    value str
    The value of the label or taint.
    key String
    The name of the label or taint.
    value 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 string
    The SSH public key data.
    KeyData string
    The SSH public key data.
    keyData String
    The SSH public key data.
    keyData string
    The SSH public key data.
    key_data str
    The SSH public key data.
    keyData String
    The SSH public key data.

    SshPublicKeyResponse, SshPublicKeyResponseArgs

    KeyData string
    The SSH public key data.
    KeyData string
    The SSH public key data.
    keyData String
    The SSH public key data.
    keyData string
    The SSH public key data.
    key_data str
    The SSH public key data.
    keyData 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 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 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 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 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 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 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 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 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 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 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 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 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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi