1. Packages
  2. Azure Native
  3. API Docs
  4. discovery
  5. Supercomputer
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi

    Supercomputer tracked resource

    Uses Azure REST API version 2026-02-01-preview.

    Import

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

    $ pulumi import azure-native:discovery:Supercomputer 85fd61f68e7207bbd3 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Discovery/supercomputers/{supercomputerName} 
    

    Create Supercomputer Resource

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

    Constructor syntax

    new Supercomputer(name: string, args: SupercomputerArgs, opts?: CustomResourceOptions);
    @overload
    def Supercomputer(resource_name: str,
                      args: SupercomputerArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def Supercomputer(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      resource_group_name: Optional[str] = None,
                      location: Optional[str] = None,
                      properties: Optional[SupercomputerPropertiesArgs] = None,
                      supercomputer_name: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None)
    func NewSupercomputer(ctx *Context, name string, args SupercomputerArgs, opts ...ResourceOption) (*Supercomputer, error)
    public Supercomputer(string name, SupercomputerArgs args, CustomResourceOptions? opts = null)
    public Supercomputer(String name, SupercomputerArgs args)
    public Supercomputer(String name, SupercomputerArgs args, CustomResourceOptions options)
    
    type: azure-native:discovery:Supercomputer
    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 SupercomputerArgs
    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 SupercomputerArgs
    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 SupercomputerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SupercomputerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SupercomputerArgs
    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 supercomputerResource = new AzureNative.Discovery.Supercomputer("supercomputerResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        Properties = new AzureNative.Discovery.Inputs.SupercomputerPropertiesArgs
        {
            Identities = new AzureNative.Discovery.Inputs.SupercomputerIdentitiesArgs
            {
                ClusterIdentity = new AzureNative.Discovery.Inputs.IdentityArgs
                {
                    Id = "string",
                },
                KubeletIdentity = new AzureNative.Discovery.Inputs.IdentityArgs
                {
                    Id = "string",
                },
                WorkloadIdentities = new[]
                {
                    "string",
                },
            },
            SubnetId = "string",
            CustomerManagedKeys = "string",
            DiskEncryptionSetId = "string",
            LogAnalyticsClusterId = "string",
            ManagementSubnetId = "string",
            OutboundType = "string",
            SystemSku = "string",
        },
        SupercomputerName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := discovery.NewSupercomputer(ctx, "supercomputerResource", &discovery.SupercomputerArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &discovery.SupercomputerPropertiesArgs{
    		Identities: &discovery.SupercomputerIdentitiesArgs{
    			ClusterIdentity: &discovery.IdentityArgs{
    				Id: pulumi.String("string"),
    			},
    			KubeletIdentity: &discovery.IdentityArgs{
    				Id: pulumi.String("string"),
    			},
    			WorkloadIdentities: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		SubnetId:              pulumi.String("string"),
    		CustomerManagedKeys:   pulumi.String("string"),
    		DiskEncryptionSetId:   pulumi.String("string"),
    		LogAnalyticsClusterId: pulumi.String("string"),
    		ManagementSubnetId:    pulumi.String("string"),
    		OutboundType:          pulumi.String("string"),
    		SystemSku:             pulumi.String("string"),
    	},
    	SupercomputerName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var supercomputerResource = new Supercomputer("supercomputerResource", SupercomputerArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .properties(SupercomputerPropertiesArgs.builder()
            .identities(SupercomputerIdentitiesArgs.builder()
                .clusterIdentity(IdentityArgs.builder()
                    .id("string")
                    .build())
                .kubeletIdentity(IdentityArgs.builder()
                    .id("string")
                    .build())
                .workloadIdentities("string")
                .build())
            .subnetId("string")
            .customerManagedKeys("string")
            .diskEncryptionSetId("string")
            .logAnalyticsClusterId("string")
            .managementSubnetId("string")
            .outboundType("string")
            .systemSku("string")
            .build())
        .supercomputerName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    supercomputer_resource = azure_native.discovery.Supercomputer("supercomputerResource",
        resource_group_name="string",
        location="string",
        properties={
            "identities": {
                "cluster_identity": {
                    "id": "string",
                },
                "kubelet_identity": {
                    "id": "string",
                },
                "workload_identities": ["string"],
            },
            "subnet_id": "string",
            "customer_managed_keys": "string",
            "disk_encryption_set_id": "string",
            "log_analytics_cluster_id": "string",
            "management_subnet_id": "string",
            "outbound_type": "string",
            "system_sku": "string",
        },
        supercomputer_name="string",
        tags={
            "string": "string",
        })
    
    const supercomputerResource = new azure_native.discovery.Supercomputer("supercomputerResource", {
        resourceGroupName: "string",
        location: "string",
        properties: {
            identities: {
                clusterIdentity: {
                    id: "string",
                },
                kubeletIdentity: {
                    id: "string",
                },
                workloadIdentities: ["string"],
            },
            subnetId: "string",
            customerManagedKeys: "string",
            diskEncryptionSetId: "string",
            logAnalyticsClusterId: "string",
            managementSubnetId: "string",
            outboundType: "string",
            systemSku: "string",
        },
        supercomputerName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:discovery:Supercomputer
    properties:
        location: string
        properties:
            customerManagedKeys: string
            diskEncryptionSetId: string
            identities:
                clusterIdentity:
                    id: string
                kubeletIdentity:
                    id: string
                workloadIdentities:
                    - string
            logAnalyticsClusterId: string
            managementSubnetId: string
            outboundType: string
            subnetId: string
            systemSku: string
        resourceGroupName: string
        supercomputerName: string
        tags:
            string: string
    

    Supercomputer Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Supercomputer resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.Discovery.Inputs.SupercomputerProperties
    The resource-specific properties for this resource.
    SupercomputerName string
    The name of the Supercomputer
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties SupercomputerPropertiesArgs
    The resource-specific properties for this resource.
    SupercomputerName string
    The name of the Supercomputer
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties SupercomputerProperties
    The resource-specific properties for this resource.
    supercomputerName String
    The name of the Supercomputer
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    properties SupercomputerProperties
    The resource-specific properties for this resource.
    supercomputerName string
    The name of the Supercomputer
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    properties SupercomputerPropertiesArgs
    The resource-specific properties for this resource.
    supercomputer_name str
    The name of the Supercomputer
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    supercomputerName String
    The name of the Supercomputer
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Discovery.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"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    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"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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

    CustomerManagedKeys, CustomerManagedKeysArgs

    Enabled
    Enabled Customer managed keys are enabled.
    Disabled
    Disabled Customer managed keys are disabled.
    CustomerManagedKeysEnabled
    Enabled Customer managed keys are enabled.
    CustomerManagedKeysDisabled
    Disabled Customer managed keys are disabled.
    Enabled
    Enabled Customer managed keys are enabled.
    Disabled
    Disabled Customer managed keys are disabled.
    Enabled
    Enabled Customer managed keys are enabled.
    Disabled
    Disabled Customer managed keys are disabled.
    ENABLED
    Enabled Customer managed keys are enabled.
    DISABLED
    Disabled Customer managed keys are disabled.
    "Enabled"
    Enabled Customer managed keys are enabled.
    "Disabled"
    Disabled Customer managed keys are disabled.

    Identity, IdentityArgs

    For user assigned identity resource property.
    Id string
    The resource ID of the user assigned identity.
    Id string
    The resource ID of the user assigned identity.
    id String
    The resource ID of the user assigned identity.
    id string
    The resource ID of the user assigned identity.
    id str
    The resource ID of the user assigned identity.
    id String
    The resource ID of the user assigned identity.

    IdentityResponse, IdentityResponseArgs

    For user assigned identity resource property.
    ClientId string
    The client ID of the assigned identity.
    Id string
    The resource ID of the user assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    Id string
    The resource ID of the user assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    id String
    The resource ID of the user assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    id string
    The resource ID of the user assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    id str
    The resource ID of the user assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    id String
    The resource ID of the user assigned identity.
    principalId String
    The principal ID of the assigned identity.

    MoboBrokerResourceResponse, MoboBrokerResourceResponseArgs

    Managed-On-Behalf-Of broker resource. This resource is created by the Resource Provider to manage some resources on behalf of the user.
    Id string
    Resource identifier of a Managed-On-Behalf-Of broker resource
    Id string
    Resource identifier of a Managed-On-Behalf-Of broker resource
    id String
    Resource identifier of a Managed-On-Behalf-Of broker resource
    id string
    Resource identifier of a Managed-On-Behalf-Of broker resource
    id str
    Resource identifier of a Managed-On-Behalf-Of broker resource
    id String
    Resource identifier of a Managed-On-Behalf-Of broker resource

    NetworkEgressType, NetworkEgressTypeArgs

    LoadBalancer
    LoadBalancer Public outbound network via load balancer (Default)
    None
    None No default outbound
    NetworkEgressTypeLoadBalancer
    LoadBalancer Public outbound network via load balancer (Default)
    NetworkEgressTypeNone
    None No default outbound
    LoadBalancer
    LoadBalancer Public outbound network via load balancer (Default)
    None
    None No default outbound
    LoadBalancer
    LoadBalancer Public outbound network via load balancer (Default)
    None
    None No default outbound
    LOAD_BALANCER
    LoadBalancer Public outbound network via load balancer (Default)
    NONE
    None No default outbound
    "LoadBalancer"
    LoadBalancer Public outbound network via load balancer (Default)
    "None"
    None No default outbound

    SupercomputerIdentities, SupercomputerIdentitiesArgs

    Dictionary of identity properties for the Supercomputer.
    ClusterIdentity Pulumi.AzureNative.Discovery.Inputs.Identity
    Cluster identity ID.
    KubeletIdentity Pulumi.AzureNative.Discovery.Inputs.Identity
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    WorkloadIdentities List<string>
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    ClusterIdentity Identity
    Cluster identity ID.
    KubeletIdentity Identity
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    WorkloadIdentities []string
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    clusterIdentity Identity
    Cluster identity ID.
    kubeletIdentity Identity
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    workloadIdentities List<String>
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    clusterIdentity Identity
    Cluster identity ID.
    kubeletIdentity Identity
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    workloadIdentities string[]
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    cluster_identity Identity
    Cluster identity ID.
    kubelet_identity Identity
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    workload_identities Sequence[str]
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    clusterIdentity Property Map
    Cluster identity ID.
    kubeletIdentity Property Map
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    workloadIdentities List<String>
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.

    SupercomputerIdentitiesResponse, SupercomputerIdentitiesResponseArgs

    Dictionary of identity properties for the Supercomputer.
    ClusterIdentity Pulumi.AzureNative.Discovery.Inputs.IdentityResponse
    Cluster identity ID.
    KubeletIdentity Pulumi.AzureNative.Discovery.Inputs.IdentityResponse
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    WorkloadIdentities Dictionary<string, Pulumi.AzureNative.Discovery.Inputs.UserAssignedIdentityResponse>
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    ClusterIdentity IdentityResponse
    Cluster identity ID.
    KubeletIdentity IdentityResponse
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    WorkloadIdentities map[string]UserAssignedIdentityResponse
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    clusterIdentity IdentityResponse
    Cluster identity ID.
    kubeletIdentity IdentityResponse
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    workloadIdentities Map<String,UserAssignedIdentityResponse>
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    clusterIdentity IdentityResponse
    Cluster identity ID.
    kubeletIdentity IdentityResponse
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    workloadIdentities {[key: string]: UserAssignedIdentityResponse}
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    cluster_identity IdentityResponse
    Cluster identity ID.
    kubelet_identity IdentityResponse
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    workload_identities Mapping[str, UserAssignedIdentityResponse]
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.
    clusterIdentity Property Map
    Cluster identity ID.
    kubeletIdentity Property Map
    Kubelet identity ID used by the supercomputer. This identity is used by the supercomputer at node level to access Azure resources. This identity must have ManagedIdentityOperator role on the clusterIdentity.
    workloadIdentities Map<Property Map>
    User assigned identity IDs to be used by workloads as federated credentials running on supercomputer. The key value must be the resource ID of the identity resource.

    SupercomputerProperties, SupercomputerPropertiesArgs

    Supercomputer properties
    Identities Pulumi.AzureNative.Discovery.Inputs.SupercomputerIdentities
    Dictionary of identity properties.
    SubnetId string
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    CustomerManagedKeys string | Pulumi.AzureNative.Discovery.CustomerManagedKeys
    Whether or not to use a customer managed key when encrypting data at rest
    DiskEncryptionSetId string
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    LogAnalyticsClusterId string
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    ManagementSubnetId string
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    OutboundType string | Pulumi.AzureNative.Discovery.NetworkEgressType
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    SystemSku string | Pulumi.AzureNative.Discovery.SystemSku
    The SKU to use for the system node pool.
    Identities SupercomputerIdentities
    Dictionary of identity properties.
    SubnetId string
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    CustomerManagedKeys string | CustomerManagedKeys
    Whether or not to use a customer managed key when encrypting data at rest
    DiskEncryptionSetId string
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    LogAnalyticsClusterId string
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    ManagementSubnetId string
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    OutboundType string | NetworkEgressType
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    SystemSku string | SystemSku
    The SKU to use for the system node pool.
    identities SupercomputerIdentities
    Dictionary of identity properties.
    subnetId String
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    customerManagedKeys String | CustomerManagedKeys
    Whether or not to use a customer managed key when encrypting data at rest
    diskEncryptionSetId String
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    logAnalyticsClusterId String
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    managementSubnetId String
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    outboundType String | NetworkEgressType
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    systemSku String | SystemSku
    The SKU to use for the system node pool.
    identities SupercomputerIdentities
    Dictionary of identity properties.
    subnetId string
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    customerManagedKeys string | CustomerManagedKeys
    Whether or not to use a customer managed key when encrypting data at rest
    diskEncryptionSetId string
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    logAnalyticsClusterId string
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    managementSubnetId string
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    outboundType string | NetworkEgressType
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    systemSku string | SystemSku
    The SKU to use for the system node pool.
    identities SupercomputerIdentities
    Dictionary of identity properties.
    subnet_id str
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    customer_managed_keys str | CustomerManagedKeys
    Whether or not to use a customer managed key when encrypting data at rest
    disk_encryption_set_id str
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    log_analytics_cluster_id str
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    management_subnet_id str
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    outbound_type str | NetworkEgressType
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    system_sku str | SystemSku
    The SKU to use for the system node pool.
    identities Property Map
    Dictionary of identity properties.
    subnetId String
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    customerManagedKeys String | "Enabled" | "Disabled"
    Whether or not to use a customer managed key when encrypting data at rest
    diskEncryptionSetId String
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    logAnalyticsClusterId String
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    managementSubnetId String
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    outboundType String | "LoadBalancer" | "None"
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    systemSku String | "Standard_D4s_v6" | "Standard_D4s_v5" | "Standard_D4s_v4"
    The SKU to use for the system node pool.

    SupercomputerPropertiesResponse, SupercomputerPropertiesResponseArgs

    Supercomputer properties
    Identities Pulumi.AzureNative.Discovery.Inputs.SupercomputerIdentitiesResponse
    Dictionary of identity properties.
    ManagedOnBehalfOfConfiguration Pulumi.AzureNative.Discovery.Inputs.WithMoboBrokerResourcesResponse
    Managed-On-Behalf-Of configuration properties. This configuration exists for the resources where a resource provider manages those resources on behalf of the resource owner.
    ManagedResourceGroup string
    The resource group for resources managed on behalf of customer.
    ProvisioningState string
    The status of the last operation.
    SubnetId string
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    CustomerManagedKeys string
    Whether or not to use a customer managed key when encrypting data at rest
    DiskEncryptionSetId string
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    LogAnalyticsClusterId string
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    ManagementSubnetId string
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    OutboundType string
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    SystemSku string
    The SKU to use for the system node pool.
    Identities SupercomputerIdentitiesResponse
    Dictionary of identity properties.
    ManagedOnBehalfOfConfiguration WithMoboBrokerResourcesResponse
    Managed-On-Behalf-Of configuration properties. This configuration exists for the resources where a resource provider manages those resources on behalf of the resource owner.
    ManagedResourceGroup string
    The resource group for resources managed on behalf of customer.
    ProvisioningState string
    The status of the last operation.
    SubnetId string
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    CustomerManagedKeys string
    Whether or not to use a customer managed key when encrypting data at rest
    DiskEncryptionSetId string
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    LogAnalyticsClusterId string
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    ManagementSubnetId string
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    OutboundType string
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    SystemSku string
    The SKU to use for the system node pool.
    identities SupercomputerIdentitiesResponse
    Dictionary of identity properties.
    managedOnBehalfOfConfiguration WithMoboBrokerResourcesResponse
    Managed-On-Behalf-Of configuration properties. This configuration exists for the resources where a resource provider manages those resources on behalf of the resource owner.
    managedResourceGroup String
    The resource group for resources managed on behalf of customer.
    provisioningState String
    The status of the last operation.
    subnetId String
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    customerManagedKeys String
    Whether or not to use a customer managed key when encrypting data at rest
    diskEncryptionSetId String
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    logAnalyticsClusterId String
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    managementSubnetId String
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    outboundType String
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    systemSku String
    The SKU to use for the system node pool.
    identities SupercomputerIdentitiesResponse
    Dictionary of identity properties.
    managedOnBehalfOfConfiguration WithMoboBrokerResourcesResponse
    Managed-On-Behalf-Of configuration properties. This configuration exists for the resources where a resource provider manages those resources on behalf of the resource owner.
    managedResourceGroup string
    The resource group for resources managed on behalf of customer.
    provisioningState string
    The status of the last operation.
    subnetId string
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    customerManagedKeys string
    Whether or not to use a customer managed key when encrypting data at rest
    diskEncryptionSetId string
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    logAnalyticsClusterId string
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    managementSubnetId string
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    outboundType string
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    systemSku string
    The SKU to use for the system node pool.
    identities SupercomputerIdentitiesResponse
    Dictionary of identity properties.
    managed_on_behalf_of_configuration WithMoboBrokerResourcesResponse
    Managed-On-Behalf-Of configuration properties. This configuration exists for the resources where a resource provider manages those resources on behalf of the resource owner.
    managed_resource_group str
    The resource group for resources managed on behalf of customer.
    provisioning_state str
    The status of the last operation.
    subnet_id str
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    customer_managed_keys str
    Whether or not to use a customer managed key when encrypting data at rest
    disk_encryption_set_id str
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    log_analytics_cluster_id str
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    management_subnet_id str
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    outbound_type str
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    system_sku str
    The SKU to use for the system node pool.
    identities Property Map
    Dictionary of identity properties.
    managedOnBehalfOfConfiguration Property Map
    Managed-On-Behalf-Of configuration properties. This configuration exists for the resources where a resource provider manages those resources on behalf of the resource owner.
    managedResourceGroup String
    The resource group for resources managed on behalf of customer.
    provisioningState String
    The status of the last operation.
    subnetId String
    System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
    customerManagedKeys String
    Whether or not to use a customer managed key when encrypting data at rest
    diskEncryptionSetId String
    Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
    logAnalyticsClusterId String
    The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
    managementSubnetId String
    System Subnet ID associated with AKS apiserver. Must be delegated to Microsoft.ContainerService/managedClusters. It should have connectivity to the system subnet and nodepool subnets.
    outboundType String
    Network egress type provisioned for the supercomputer workloads. Defaults to LoadBalancer if not specified. If None is specified, the customer is responsible for providing outbound connectivity for Supercomputer functionality.
    systemSku String
    The SKU to use for the system node pool.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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.
    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.

    SystemSku, SystemSkuArgs

    Standard_D4s_v6
    Standard_D4s_v6 Standard_D4s_v6 basic compute VM (default)
    Standard_D4s_v5
    Standard_D4s_v5 Standard_D4s_v5 SKU
    Standard_D4s_v4
    Standard_D4s_v4 Standard_D4s_v4 SKU
    SystemSku_Standard_D4s_v6
    Standard_D4s_v6 Standard_D4s_v6 basic compute VM (default)
    SystemSku_Standard_D4s_v5
    Standard_D4s_v5 Standard_D4s_v5 SKU
    SystemSku_Standard_D4s_v4
    Standard_D4s_v4 Standard_D4s_v4 SKU
    Standard_D4s_v6
    Standard_D4s_v6 Standard_D4s_v6 basic compute VM (default)
    Standard_D4s_v5
    Standard_D4s_v5 Standard_D4s_v5 SKU
    Standard_D4s_v4
    Standard_D4s_v4 Standard_D4s_v4 SKU
    Standard_D4s_v6
    Standard_D4s_v6 Standard_D4s_v6 basic compute VM (default)
    Standard_D4s_v5
    Standard_D4s_v5 Standard_D4s_v5 SKU
    Standard_D4s_v4
    Standard_D4s_v4 Standard_D4s_v4 SKU
    STANDARD_D4S_V6
    Standard_D4s_v6 Standard_D4s_v6 basic compute VM (default)
    STANDARD_D4S_V5
    Standard_D4s_v5 Standard_D4s_v5 SKU
    STANDARD_D4S_V4
    Standard_D4s_v4 Standard_D4s_v4 SKU
    "Standard_D4s_v6"
    Standard_D4s_v6 Standard_D4s_v6 basic compute VM (default)
    "Standard_D4s_v5"
    Standard_D4s_v5 Standard_D4s_v5 SKU
    "Standard_D4s_v4"
    Standard_D4s_v4 Standard_D4s_v4 SKU

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    User assigned identity properties
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    WithMoboBrokerResourcesResponse, WithMoboBrokerResourcesResponseArgs

    For tracking mobo resources
    MoboBrokerResources []MoboBrokerResourceResponse
    Managed-On-Behalf-Of broker resources
    moboBrokerResources List<MoboBrokerResourceResponse>
    Managed-On-Behalf-Of broker resources
    moboBrokerResources MoboBrokerResourceResponse[]
    Managed-On-Behalf-Of broker resources
    mobo_broker_resources Sequence[MoboBrokerResourceResponse]
    Managed-On-Behalf-Of broker resources
    moboBrokerResources List<Property Map>
    Managed-On-Behalf-Of broker 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 v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.16.0
    published on Friday, Mar 20, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.