azure-native.networkcloud.HybridAksCluster
Explore with Pulumi AI
The details are specific to the Network Cloud use of the Hybrid AKS cluster. API Version: 2022-12-12-preview.
Example Usage
Create or update Hybrid AKS provisioned cluster data
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var hybridAksCluster = new AzureNative.NetworkCloud.HybridAksCluster("hybridAksCluster", new()
{
AssociatedNetworkIds = new[]
{
"/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName",
},
ControlPlaneCount = 4,
ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
Type = "CustomLocation",
},
HybridAksClusterName = "hybridAksClusterName",
HybridAksProvisionedClusterId = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.HybridContainerService/provisionedClusters/hybridAksClusterName",
Location = "location",
ResourceGroupName = "resourceGroupName",
Tags =
{
{ "key1", "myvalue1" },
{ "key2", "myvalue2" },
},
WorkerCount = 8,
});
});
package main
import (
networkcloud "github.com/pulumi/pulumi-azure-native-sdk/networkcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkcloud.NewHybridAksCluster(ctx, "hybridAksCluster", &networkcloud.HybridAksClusterArgs{
AssociatedNetworkIds: pulumi.StringArray{
pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName"),
},
ControlPlaneCount: pulumi.Float64(4),
ExtendedLocation: &networkcloud.ExtendedLocationArgs{
Name: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
Type: pulumi.String("CustomLocation"),
},
HybridAksClusterName: pulumi.String("hybridAksClusterName"),
HybridAksProvisionedClusterId: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.HybridContainerService/provisionedClusters/hybridAksClusterName"),
Location: pulumi.String("location"),
ResourceGroupName: pulumi.String("resourceGroupName"),
Tags: pulumi.StringMap{
"key1": pulumi.String("myvalue1"),
"key2": pulumi.String("myvalue2"),
},
WorkerCount: pulumi.Float64(8),
})
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.HybridAksCluster;
import com.pulumi.azurenative.networkcloud.HybridAksClusterArgs;
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 hybridAksCluster = new HybridAksCluster("hybridAksCluster", HybridAksClusterArgs.builder()
.associatedNetworkIds("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName")
.controlPlaneCount(4)
.extendedLocation(Map.ofEntries(
Map.entry("name", "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
Map.entry("type", "CustomLocation")
))
.hybridAksClusterName("hybridAksClusterName")
.hybridAksProvisionedClusterId("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.HybridContainerService/provisionedClusters/hybridAksClusterName")
.location("location")
.resourceGroupName("resourceGroupName")
.tags(Map.ofEntries(
Map.entry("key1", "myvalue1"),
Map.entry("key2", "myvalue2")
))
.workerCount(8)
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
hybrid_aks_cluster = azure_native.networkcloud.HybridAksCluster("hybridAksCluster",
associated_network_ids=["/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName"],
control_plane_count=4,
extended_location=azure_native.networkcloud.ExtendedLocationArgs(
name="/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
type="CustomLocation",
),
hybrid_aks_cluster_name="hybridAksClusterName",
hybrid_aks_provisioned_cluster_id="/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.HybridContainerService/provisionedClusters/hybridAksClusterName",
location="location",
resource_group_name="resourceGroupName",
tags={
"key1": "myvalue1",
"key2": "myvalue2",
},
worker_count=8)
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const hybridAksCluster = new azure_native.networkcloud.HybridAksCluster("hybridAksCluster", {
associatedNetworkIds: ["/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName"],
controlPlaneCount: 4,
extendedLocation: {
name: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
type: "CustomLocation",
},
hybridAksClusterName: "hybridAksClusterName",
hybridAksProvisionedClusterId: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.HybridContainerService/provisionedClusters/hybridAksClusterName",
location: "location",
resourceGroupName: "resourceGroupName",
tags: {
key1: "myvalue1",
key2: "myvalue2",
},
workerCount: 8,
});
resources:
hybridAksCluster:
type: azure-native:networkcloud:HybridAksCluster
properties:
associatedNetworkIds:
- /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/l3Networks/l3NetworkName
controlPlaneCount: 4
extendedLocation:
name: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName
type: CustomLocation
hybridAksClusterName: hybridAksClusterName
hybridAksProvisionedClusterId: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.HybridContainerService/provisionedClusters/hybridAksClusterName
location: location
resourceGroupName: resourceGroupName
tags:
key1: myvalue1
key2: myvalue2
workerCount: 8
Create HybridAksCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HybridAksCluster(name: string, args: HybridAksClusterArgs, opts?: CustomResourceOptions);
@overload
def HybridAksCluster(resource_name: str,
args: HybridAksClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HybridAksCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
associated_network_ids: Optional[Sequence[str]] = None,
control_plane_count: Optional[float] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
hybrid_aks_provisioned_cluster_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
worker_count: Optional[float] = None,
hybrid_aks_cluster_name: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewHybridAksCluster(ctx *Context, name string, args HybridAksClusterArgs, opts ...ResourceOption) (*HybridAksCluster, error)
public HybridAksCluster(string name, HybridAksClusterArgs args, CustomResourceOptions? opts = null)
public HybridAksCluster(String name, HybridAksClusterArgs args)
public HybridAksCluster(String name, HybridAksClusterArgs args, CustomResourceOptions options)
type: azure-native:networkcloud:HybridAksCluster
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 HybridAksClusterArgs
- 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 HybridAksClusterArgs
- 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 HybridAksClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HybridAksClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HybridAksClusterArgs
- 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 hybridAksClusterResource = new AzureNative.Networkcloud.HybridAksCluster("hybridAksClusterResource", new()
{
AssociatedNetworkIds = new[]
{
"string",
},
ControlPlaneCount = 0,
ExtendedLocation =
{
{ "name", "string" },
{ "type", "string" },
},
HybridAksProvisionedClusterId = "string",
ResourceGroupName = "string",
WorkerCount = 0,
HybridAksClusterName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := networkcloud.NewHybridAksCluster(ctx, "hybridAksClusterResource", &networkcloud.HybridAksClusterArgs{
AssociatedNetworkIds: []string{
"string",
},
ControlPlaneCount: 0,
ExtendedLocation: map[string]interface{}{
"name": "string",
"type": "string",
},
HybridAksProvisionedClusterId: "string",
ResourceGroupName: "string",
WorkerCount: 0,
HybridAksClusterName: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var hybridAksClusterResource = new HybridAksCluster("hybridAksClusterResource", HybridAksClusterArgs.builder()
.associatedNetworkIds("string")
.controlPlaneCount(0)
.extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.hybridAksProvisionedClusterId("string")
.resourceGroupName("string")
.workerCount(0)
.hybridAksClusterName("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
hybrid_aks_cluster_resource = azure_native.networkcloud.HybridAksCluster("hybridAksClusterResource",
associated_network_ids=[string],
control_plane_count=0,
extended_location={
name: string,
type: string,
},
hybrid_aks_provisioned_cluster_id=string,
resource_group_name=string,
worker_count=0,
hybrid_aks_cluster_name=string,
location=string,
tags={
string: string,
})
const hybridAksClusterResource = new azure_native.networkcloud.HybridAksCluster("hybridAksClusterResource", {
associatedNetworkIds: ["string"],
controlPlaneCount: 0,
extendedLocation: {
name: "string",
type: "string",
},
hybridAksProvisionedClusterId: "string",
resourceGroupName: "string",
workerCount: 0,
hybridAksClusterName: "string",
location: "string",
tags: {
string: "string",
},
});
type: azure-native:networkcloud:HybridAksCluster
properties:
associatedNetworkIds:
- string
controlPlaneCount: 0
extendedLocation:
name: string
type: string
hybridAksClusterName: string
hybridAksProvisionedClusterId: string
location: string
resourceGroupName: string
tags:
string: string
workerCount: 0
HybridAksCluster 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 HybridAksCluster resource accepts the following input properties:
- Associated
Network List<string>Ids - The list of resource IDs for the workload networks associated with the Hybrid AKS cluster. It can be any of l2Networks, l3Networks, or trunkedNetworks resources. This field will also contain one cloudServicesNetwork and one defaultCniNetwork.
- Control
Plane doubleCount - The number of control plane node VMs.
- Extended
Location Pulumi.Azure Native. Network Cloud. Inputs. Extended Location - The extended location of the cluster associated with the resource.
- Hybrid
Aks stringProvisioned Cluster Id - The resource ID of the Hybrid AKS cluster that this additional information is for.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Worker
Count double - The number of worker node VMs.
- Hybrid
Aks stringCluster Name - The name of the Hybrid AKS cluster.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Associated
Network []stringIds - The list of resource IDs for the workload networks associated with the Hybrid AKS cluster. It can be any of l2Networks, l3Networks, or trunkedNetworks resources. This field will also contain one cloudServicesNetwork and one defaultCniNetwork.
- Control
Plane float64Count - The number of control plane node VMs.
- Extended
Location ExtendedLocation Args - The extended location of the cluster associated with the resource.
- Hybrid
Aks stringProvisioned Cluster Id - The resource ID of the Hybrid AKS cluster that this additional information is for.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Worker
Count float64 - The number of worker node VMs.
- Hybrid
Aks stringCluster Name - The name of the Hybrid AKS cluster.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- associated
Network List<String>Ids - The list of resource IDs for the workload networks associated with the Hybrid AKS cluster. It can be any of l2Networks, l3Networks, or trunkedNetworks resources. This field will also contain one cloudServicesNetwork and one defaultCniNetwork.
- control
Plane DoubleCount - The number of control plane node VMs.
- extended
Location ExtendedLocation - The extended location of the cluster associated with the resource.
- hybrid
Aks StringProvisioned Cluster Id - The resource ID of the Hybrid AKS cluster that this additional information is for.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- worker
Count Double - The number of worker node VMs.
- hybrid
Aks StringCluster Name - The name of the Hybrid AKS cluster.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- associated
Network string[]Ids - The list of resource IDs for the workload networks associated with the Hybrid AKS cluster. It can be any of l2Networks, l3Networks, or trunkedNetworks resources. This field will also contain one cloudServicesNetwork and one defaultCniNetwork.
- control
Plane numberCount - The number of control plane node VMs.
- extended
Location ExtendedLocation - The extended location of the cluster associated with the resource.
- hybrid
Aks stringProvisioned Cluster Id - The resource ID of the Hybrid AKS cluster that this additional information is for.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- worker
Count number - The number of worker node VMs.
- hybrid
Aks stringCluster Name - The name of the Hybrid AKS cluster.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- associated_
network_ Sequence[str]ids - The list of resource IDs for the workload networks associated with the Hybrid AKS cluster. It can be any of l2Networks, l3Networks, or trunkedNetworks resources. This field will also contain one cloudServicesNetwork and one defaultCniNetwork.
- control_
plane_ floatcount - The number of control plane node VMs.
- extended_
location ExtendedLocation Args - The extended location of the cluster associated with the resource.
- hybrid_
aks_ strprovisioned_ cluster_ id - The resource ID of the Hybrid AKS cluster that this additional information is for.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- worker_
count float - The number of worker node VMs.
- hybrid_
aks_ strcluster_ name - The name of the Hybrid AKS cluster.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- associated
Network List<String>Ids - The list of resource IDs for the workload networks associated with the Hybrid AKS cluster. It can be any of l2Networks, l3Networks, or trunkedNetworks resources. This field will also contain one cloudServicesNetwork and one defaultCniNetwork.
- control
Plane NumberCount - The number of control plane node VMs.
- extended
Location Property Map - The extended location of the cluster associated with the resource.
- hybrid
Aks StringProvisioned Cluster Id - The resource ID of the Hybrid AKS cluster that this additional information is for.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- worker
Count Number - The number of worker node VMs.
- hybrid
Aks StringCluster Name - The name of the Hybrid AKS cluster.
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the HybridAksCluster resource produces the following output properties:
- Cloud
Services stringNetwork Id - The resource ID of the associated cloud services network.
- Cluster
Id string - The resource ID of the Network Cloud cluster hosting the Hybrid AKS cluster.
- Control
Plane List<Pulumi.Nodes Azure Native. Network Cloud. Outputs. Node Configuration Response> - The list of node configurations detailing associated VMs that are part of the control plane nodes of this Hybrid AKS cluster.
- Default
Cni stringNetwork Id - The resource ID of the associated default CNI network.
- Detailed
Status string - The more detailed status of this Hybrid AKS cluster.
- Detailed
Status stringMessage - The descriptive message about the current detailed status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the Hybrid AKS cluster resource.
- System
Data Pulumi.Azure Native. Network Cloud. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Volumes List<string>
- The resource IDs of volumes that are attached to the Hybrid AKS cluster.
- Worker
Nodes List<Pulumi.Azure Native. Network Cloud. Outputs. Node Configuration Response> - The list of node configurations detailing associated VMs that are part of the worker nodes of this Hybrid AKS cluster.
- Cloud
Services stringNetwork Id - The resource ID of the associated cloud services network.
- Cluster
Id string - The resource ID of the Network Cloud cluster hosting the Hybrid AKS cluster.
- Control
Plane []NodeNodes Configuration Response - The list of node configurations detailing associated VMs that are part of the control plane nodes of this Hybrid AKS cluster.
- Default
Cni stringNetwork Id - The resource ID of the associated default CNI network.
- Detailed
Status string - The more detailed status of this Hybrid AKS cluster.
- Detailed
Status stringMessage - The descriptive message about the current detailed status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the Hybrid AKS cluster resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Volumes []string
- The resource IDs of volumes that are attached to the Hybrid AKS cluster.
- Worker
Nodes []NodeConfiguration Response - The list of node configurations detailing associated VMs that are part of the worker nodes of this Hybrid AKS cluster.
- cloud
Services StringNetwork Id - The resource ID of the associated cloud services network.
- cluster
Id String - The resource ID of the Network Cloud cluster hosting the Hybrid AKS cluster.
- control
Plane List<NodeNodes Configuration Response> - The list of node configurations detailing associated VMs that are part of the control plane nodes of this Hybrid AKS cluster.
- default
Cni StringNetwork Id - The resource ID of the associated default CNI network.
- detailed
Status String - The more detailed status of this Hybrid AKS cluster.
- detailed
Status StringMessage - The descriptive message about the current detailed status.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the Hybrid AKS cluster resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volumes List<String>
- The resource IDs of volumes that are attached to the Hybrid AKS cluster.
- worker
Nodes List<NodeConfiguration Response> - The list of node configurations detailing associated VMs that are part of the worker nodes of this Hybrid AKS cluster.
- cloud
Services stringNetwork Id - The resource ID of the associated cloud services network.
- cluster
Id string - The resource ID of the Network Cloud cluster hosting the Hybrid AKS cluster.
- control
Plane NodeNodes Configuration Response[] - The list of node configurations detailing associated VMs that are part of the control plane nodes of this Hybrid AKS cluster.
- default
Cni stringNetwork Id - The resource ID of the associated default CNI network.
- detailed
Status string - The more detailed status of this Hybrid AKS cluster.
- detailed
Status stringMessage - The descriptive message about the current detailed status.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - The provisioning state of the Hybrid AKS cluster resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volumes string[]
- The resource IDs of volumes that are attached to the Hybrid AKS cluster.
- worker
Nodes NodeConfiguration Response[] - The list of node configurations detailing associated VMs that are part of the worker nodes of this Hybrid AKS cluster.
- cloud_
services_ strnetwork_ id - The resource ID of the associated cloud services network.
- cluster_
id str - The resource ID of the Network Cloud cluster hosting the Hybrid AKS cluster.
- control_
plane_ Sequence[Nodenodes Configuration Response] - The list of node configurations detailing associated VMs that are part of the control plane nodes of this Hybrid AKS cluster.
- default_
cni_ strnetwork_ id - The resource ID of the associated default CNI network.
- detailed_
status str - The more detailed status of this Hybrid AKS cluster.
- detailed_
status_ strmessage - The descriptive message about the current detailed status.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - The provisioning state of the Hybrid AKS cluster resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volumes Sequence[str]
- The resource IDs of volumes that are attached to the Hybrid AKS cluster.
- worker_
nodes Sequence[NodeConfiguration Response] - The list of node configurations detailing associated VMs that are part of the worker nodes of this Hybrid AKS cluster.
- cloud
Services StringNetwork Id - The resource ID of the associated cloud services network.
- cluster
Id String - The resource ID of the Network Cloud cluster hosting the Hybrid AKS cluster.
- control
Plane List<Property Map>Nodes - The list of node configurations detailing associated VMs that are part of the control plane nodes of this Hybrid AKS cluster.
- default
Cni StringNetwork Id - The resource ID of the associated default CNI network.
- detailed
Status String - The more detailed status of this Hybrid AKS cluster.
- detailed
Status StringMessage - The descriptive message about the current detailed status.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the Hybrid AKS cluster resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volumes List<String>
- The resource IDs of volumes that are attached to the Hybrid AKS cluster.
- worker
Nodes List<Property Map> - The list of node configurations detailing associated VMs that are part of the worker nodes of this Hybrid AKS cluster.
Supporting Types
ExtendedLocation, ExtendedLocationArgs
ExtendedLocationResponse, ExtendedLocationResponseArgs
NetworkAttachmentResponse, NetworkAttachmentResponseArgs
- Attached
Network stringId - The resource ID of the associated network attached to the virtual machine. It can be one of cloudServicesNetwork, l3Network, l2Network or trunkedNetwork resources.
- Ip
Allocation stringMethod - The IP allocation mechanism for the virtual machine. Dynamic and Static are only valid for l3Network which may also specify Disabled. Otherwise, Disabled is the only permitted value.
- Mac
Address string - The MAC address of the interface for the virtual machine that corresponds to this network attachment.
- Default
Gateway string - The indicator of whether this is the default gateway. Only one of the attached networks (including the CloudServicesNetwork attachment) for a single machine may be specified as True.
- Ipv4Address string
The IPv4 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV4 or DualStack.
If IPAllocationMethod is: Static - this field must contain a user specified IPv4 address from within the subnet specified in the attached network. Dynamic - this field is read-only, but will be populated with an address from within the subnet specified in the attached network. Disabled - this field will be empty.
- Ipv6Address string
The IPv6 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV6 or DualStack.
If IPAllocationMethod is: Static - this field must contain an IPv6 address range from within the range specified in the attached network. Dynamic - this field is read-only, but will be populated with an range from within the subnet specified in the attached network. Disabled - this field will be empty.
- Network
Attachment stringName - The associated network's interface name. If specified, the network attachment name has a maximum length of 15 characters and must be unique to this virtual machine. If the user doesn’t specify this value, the default interface name of the network resource will be used. For a CloudServicesNetwork resource, this name will be ignored.
- Attached
Network stringId - The resource ID of the associated network attached to the virtual machine. It can be one of cloudServicesNetwork, l3Network, l2Network or trunkedNetwork resources.
- Ip
Allocation stringMethod - The IP allocation mechanism for the virtual machine. Dynamic and Static are only valid for l3Network which may also specify Disabled. Otherwise, Disabled is the only permitted value.
- Mac
Address string - The MAC address of the interface for the virtual machine that corresponds to this network attachment.
- Default
Gateway string - The indicator of whether this is the default gateway. Only one of the attached networks (including the CloudServicesNetwork attachment) for a single machine may be specified as True.
- Ipv4Address string
The IPv4 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV4 or DualStack.
If IPAllocationMethod is: Static - this field must contain a user specified IPv4 address from within the subnet specified in the attached network. Dynamic - this field is read-only, but will be populated with an address from within the subnet specified in the attached network. Disabled - this field will be empty.
- Ipv6Address string
The IPv6 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV6 or DualStack.
If IPAllocationMethod is: Static - this field must contain an IPv6 address range from within the range specified in the attached network. Dynamic - this field is read-only, but will be populated with an range from within the subnet specified in the attached network. Disabled - this field will be empty.
- Network
Attachment stringName - The associated network's interface name. If specified, the network attachment name has a maximum length of 15 characters and must be unique to this virtual machine. If the user doesn’t specify this value, the default interface name of the network resource will be used. For a CloudServicesNetwork resource, this name will be ignored.
- attached
Network StringId - The resource ID of the associated network attached to the virtual machine. It can be one of cloudServicesNetwork, l3Network, l2Network or trunkedNetwork resources.
- ip
Allocation StringMethod - The IP allocation mechanism for the virtual machine. Dynamic and Static are only valid for l3Network which may also specify Disabled. Otherwise, Disabled is the only permitted value.
- mac
Address String - The MAC address of the interface for the virtual machine that corresponds to this network attachment.
- default
Gateway String - The indicator of whether this is the default gateway. Only one of the attached networks (including the CloudServicesNetwork attachment) for a single machine may be specified as True.
- ipv4Address String
The IPv4 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV4 or DualStack.
If IPAllocationMethod is: Static - this field must contain a user specified IPv4 address from within the subnet specified in the attached network. Dynamic - this field is read-only, but will be populated with an address from within the subnet specified in the attached network. Disabled - this field will be empty.
- ipv6Address String
The IPv6 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV6 or DualStack.
If IPAllocationMethod is: Static - this field must contain an IPv6 address range from within the range specified in the attached network. Dynamic - this field is read-only, but will be populated with an range from within the subnet specified in the attached network. Disabled - this field will be empty.
- network
Attachment StringName - The associated network's interface name. If specified, the network attachment name has a maximum length of 15 characters and must be unique to this virtual machine. If the user doesn’t specify this value, the default interface name of the network resource will be used. For a CloudServicesNetwork resource, this name will be ignored.
- attached
Network stringId - The resource ID of the associated network attached to the virtual machine. It can be one of cloudServicesNetwork, l3Network, l2Network or trunkedNetwork resources.
- ip
Allocation stringMethod - The IP allocation mechanism for the virtual machine. Dynamic and Static are only valid for l3Network which may also specify Disabled. Otherwise, Disabled is the only permitted value.
- mac
Address string - The MAC address of the interface for the virtual machine that corresponds to this network attachment.
- default
Gateway string - The indicator of whether this is the default gateway. Only one of the attached networks (including the CloudServicesNetwork attachment) for a single machine may be specified as True.
- ipv4Address string
The IPv4 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV4 or DualStack.
If IPAllocationMethod is: Static - this field must contain a user specified IPv4 address from within the subnet specified in the attached network. Dynamic - this field is read-only, but will be populated with an address from within the subnet specified in the attached network. Disabled - this field will be empty.
- ipv6Address string
The IPv6 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV6 or DualStack.
If IPAllocationMethod is: Static - this field must contain an IPv6 address range from within the range specified in the attached network. Dynamic - this field is read-only, but will be populated with an range from within the subnet specified in the attached network. Disabled - this field will be empty.
- network
Attachment stringName - The associated network's interface name. If specified, the network attachment name has a maximum length of 15 characters and must be unique to this virtual machine. If the user doesn’t specify this value, the default interface name of the network resource will be used. For a CloudServicesNetwork resource, this name will be ignored.
- attached_
network_ strid - The resource ID of the associated network attached to the virtual machine. It can be one of cloudServicesNetwork, l3Network, l2Network or trunkedNetwork resources.
- ip_
allocation_ strmethod - The IP allocation mechanism for the virtual machine. Dynamic and Static are only valid for l3Network which may also specify Disabled. Otherwise, Disabled is the only permitted value.
- mac_
address str - The MAC address of the interface for the virtual machine that corresponds to this network attachment.
- default_
gateway str - The indicator of whether this is the default gateway. Only one of the attached networks (including the CloudServicesNetwork attachment) for a single machine may be specified as True.
- ipv4_
address str The IPv4 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV4 or DualStack.
If IPAllocationMethod is: Static - this field must contain a user specified IPv4 address from within the subnet specified in the attached network. Dynamic - this field is read-only, but will be populated with an address from within the subnet specified in the attached network. Disabled - this field will be empty.
- ipv6_
address str The IPv6 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV6 or DualStack.
If IPAllocationMethod is: Static - this field must contain an IPv6 address range from within the range specified in the attached network. Dynamic - this field is read-only, but will be populated with an range from within the subnet specified in the attached network. Disabled - this field will be empty.
- network_
attachment_ strname - The associated network's interface name. If specified, the network attachment name has a maximum length of 15 characters and must be unique to this virtual machine. If the user doesn’t specify this value, the default interface name of the network resource will be used. For a CloudServicesNetwork resource, this name will be ignored.
- attached
Network StringId - The resource ID of the associated network attached to the virtual machine. It can be one of cloudServicesNetwork, l3Network, l2Network or trunkedNetwork resources.
- ip
Allocation StringMethod - The IP allocation mechanism for the virtual machine. Dynamic and Static are only valid for l3Network which may also specify Disabled. Otherwise, Disabled is the only permitted value.
- mac
Address String - The MAC address of the interface for the virtual machine that corresponds to this network attachment.
- default
Gateway String - The indicator of whether this is the default gateway. Only one of the attached networks (including the CloudServicesNetwork attachment) for a single machine may be specified as True.
- ipv4Address String
The IPv4 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV4 or DualStack.
If IPAllocationMethod is: Static - this field must contain a user specified IPv4 address from within the subnet specified in the attached network. Dynamic - this field is read-only, but will be populated with an address from within the subnet specified in the attached network. Disabled - this field will be empty.
- ipv6Address String
The IPv6 address of the virtual machine.
This field is used only if the attached network has IPAllocationType of IPV6 or DualStack.
If IPAllocationMethod is: Static - this field must contain an IPv6 address range from within the range specified in the attached network. Dynamic - this field is read-only, but will be populated with an range from within the subnet specified in the attached network. Disabled - this field will be empty.
- network
Attachment StringName - The associated network's interface name. If specified, the network attachment name has a maximum length of 15 characters and must be unique to this virtual machine. If the user doesn’t specify this value, the default interface name of the network resource will be used. For a CloudServicesNetwork resource, this name will be ignored.
NodeConfigurationResponse, NodeConfigurationResponseArgs
- Agent
Pool stringId - The resource ID of the agent pool that contains the nodes in this configuration.
- Agent
Pool stringName - The name of the agent pool that contains the nodes in this configuration.
- Cpu
Cores double - The number of CPU cores in the virtual machine.
- Disk
Size doubleGB - The root disk size of the virtual machine in GB.
- Memory
Size doubleGB - The memory size of the virtual machine in GB.
- Node
Pool stringName - Field deprecated, use agentPoolName instead. This field will be removed in a future version but will reflect the name of the agent pool that contains the nodes in this configuration.
- Nodes
List<Pulumi.
Azure Native. Network Cloud. Inputs. Node Response> - The list of nodes that utilize this configuration.
- Vm
Count double - The number of virtual machines that use this configuration.
- Vm
Size string - The name of the VM size supplied during the creation of the cluster.
- Agent
Pool stringId - The resource ID of the agent pool that contains the nodes in this configuration.
- Agent
Pool stringName - The name of the agent pool that contains the nodes in this configuration.
- Cpu
Cores float64 - The number of CPU cores in the virtual machine.
- Disk
Size float64GB - The root disk size of the virtual machine in GB.
- Memory
Size float64GB - The memory size of the virtual machine in GB.
- Node
Pool stringName - Field deprecated, use agentPoolName instead. This field will be removed in a future version but will reflect the name of the agent pool that contains the nodes in this configuration.
- Nodes
[]Node
Response - The list of nodes that utilize this configuration.
- Vm
Count float64 - The number of virtual machines that use this configuration.
- Vm
Size string - The name of the VM size supplied during the creation of the cluster.
- agent
Pool StringId - The resource ID of the agent pool that contains the nodes in this configuration.
- agent
Pool StringName - The name of the agent pool that contains the nodes in this configuration.
- cpu
Cores Double - The number of CPU cores in the virtual machine.
- disk
Size DoubleGB - The root disk size of the virtual machine in GB.
- memory
Size DoubleGB - The memory size of the virtual machine in GB.
- node
Pool StringName - Field deprecated, use agentPoolName instead. This field will be removed in a future version but will reflect the name of the agent pool that contains the nodes in this configuration.
- nodes
List<Node
Response> - The list of nodes that utilize this configuration.
- vm
Count Double - The number of virtual machines that use this configuration.
- vm
Size String - The name of the VM size supplied during the creation of the cluster.
- agent
Pool stringId - The resource ID of the agent pool that contains the nodes in this configuration.
- agent
Pool stringName - The name of the agent pool that contains the nodes in this configuration.
- cpu
Cores number - The number of CPU cores in the virtual machine.
- disk
Size numberGB - The root disk size of the virtual machine in GB.
- memory
Size numberGB - The memory size of the virtual machine in GB.
- node
Pool stringName - Field deprecated, use agentPoolName instead. This field will be removed in a future version but will reflect the name of the agent pool that contains the nodes in this configuration.
- nodes
Node
Response[] - The list of nodes that utilize this configuration.
- vm
Count number - The number of virtual machines that use this configuration.
- vm
Size string - The name of the VM size supplied during the creation of the cluster.
- agent_
pool_ strid - The resource ID of the agent pool that contains the nodes in this configuration.
- agent_
pool_ strname - The name of the agent pool that contains the nodes in this configuration.
- cpu_
cores float - The number of CPU cores in the virtual machine.
- disk_
size_ floatgb - The root disk size of the virtual machine in GB.
- memory_
size_ floatgb - The memory size of the virtual machine in GB.
- node_
pool_ strname - Field deprecated, use agentPoolName instead. This field will be removed in a future version but will reflect the name of the agent pool that contains the nodes in this configuration.
- nodes
Sequence[Node
Response] - The list of nodes that utilize this configuration.
- vm_
count float - The number of virtual machines that use this configuration.
- vm_
size str - The name of the VM size supplied during the creation of the cluster.
- agent
Pool StringId - The resource ID of the agent pool that contains the nodes in this configuration.
- agent
Pool StringName - The name of the agent pool that contains the nodes in this configuration.
- cpu
Cores Number - The number of CPU cores in the virtual machine.
- disk
Size NumberGB - The root disk size of the virtual machine in GB.
- memory
Size NumberGB - The memory size of the virtual machine in GB.
- node
Pool StringName - Field deprecated, use agentPoolName instead. This field will be removed in a future version but will reflect the name of the agent pool that contains the nodes in this configuration.
- nodes List<Property Map>
- The list of nodes that utilize this configuration.
- vm
Count Number - The number of virtual machines that use this configuration.
- vm
Size String - The name of the VM size supplied during the creation of the cluster.
NodeResponse, NodeResponseArgs
- Bare
Metal stringMachine Id - The resource ID of the bare metal machine that hosts this node.
- Image
Id string - The machine image last used to deploy this node.
- Network
Attachments List<Pulumi.Azure Native. Network Cloud. Inputs. Network Attachment Response> - The list of network attachments to the virtual machine.
- Node
Name string - The name of this node, as realized in the Hybrid AKS cluster.
- Power
State string - The power state (On | Off) of the node.
- Bare
Metal stringMachine Id - The resource ID of the bare metal machine that hosts this node.
- Image
Id string - The machine image last used to deploy this node.
- Network
Attachments []NetworkAttachment Response - The list of network attachments to the virtual machine.
- Node
Name string - The name of this node, as realized in the Hybrid AKS cluster.
- Power
State string - The power state (On | Off) of the node.
- bare
Metal StringMachine Id - The resource ID of the bare metal machine that hosts this node.
- image
Id String - The machine image last used to deploy this node.
- network
Attachments List<NetworkAttachment Response> - The list of network attachments to the virtual machine.
- node
Name String - The name of this node, as realized in the Hybrid AKS cluster.
- power
State String - The power state (On | Off) of the node.
- bare
Metal stringMachine Id - The resource ID of the bare metal machine that hosts this node.
- image
Id string - The machine image last used to deploy this node.
- network
Attachments NetworkAttachment Response[] - The list of network attachments to the virtual machine.
- node
Name string - The name of this node, as realized in the Hybrid AKS cluster.
- power
State string - The power state (On | Off) of the node.
- bare_
metal_ strmachine_ id - The resource ID of the bare metal machine that hosts this node.
- image_
id str - The machine image last used to deploy this node.
- network_
attachments Sequence[NetworkAttachment Response] - The list of network attachments to the virtual machine.
- node_
name str - The name of this node, as realized in the Hybrid AKS cluster.
- power_
state str - The power state (On | Off) of the node.
- bare
Metal StringMachine Id - The resource ID of the bare metal machine that hosts this node.
- image
Id String - The machine image last used to deploy this node.
- network
Attachments List<Property Map> - The list of network attachments to the virtual machine.
- node
Name String - The name of this node, as realized in the Hybrid AKS cluster.
- power
State String - The power state (On | Off) of the node.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:networkcloud:HybridAksCluster HybridAksClusterName /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/hybridAksClusters/hybridAksClusterName
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0