published on Friday, Mar 20, 2026 by Pulumi
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Discovery. Inputs. Supercomputer Properties - The resource-specific properties for this resource.
- Supercomputer
Name string - The name of the Supercomputer
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Properties
Supercomputer
Properties Args - The resource-specific properties for this resource.
- Supercomputer
Name string - The name of the Supercomputer
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- properties
Supercomputer
Properties - The resource-specific properties for this resource.
- supercomputer
Name String - The name of the Supercomputer
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- properties
Supercomputer
Properties - The resource-specific properties for this resource.
- supercomputer
Name string - The name of the Supercomputer
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- properties
Supercomputer
Properties Args - The resource-specific properties for this resource.
- supercomputer_
name str - The name of the Supercomputer
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - 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.
- supercomputer
Name String - The name of the Supercomputer
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Supercomputer resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Discovery. 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"
- Azure
Api stringVersion - 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
- 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"
- azure
Api StringVersion - 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
- 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"
- azure
Api stringVersion - 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
- 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"
- azure_
api_ strversion - 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 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"
- azure
Api StringVersion - 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
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CustomerManagedKeys, CustomerManagedKeysArgs
- Enabled
EnabledCustomer managed keys are enabled.- Disabled
DisabledCustomer managed keys are disabled.
- Customer
Managed Keys Enabled EnabledCustomer managed keys are enabled.- Customer
Managed Keys Disabled DisabledCustomer managed keys are disabled.
- Enabled
EnabledCustomer managed keys are enabled.- Disabled
DisabledCustomer managed keys are disabled.
- Enabled
EnabledCustomer managed keys are enabled.- Disabled
DisabledCustomer managed keys are disabled.
- ENABLED
EnabledCustomer managed keys are enabled.- DISABLED
DisabledCustomer managed keys are disabled.
- "Enabled"
EnabledCustomer managed keys are enabled.- "Disabled"
DisabledCustomer 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.- Client
Id string - The client ID of the assigned identity.
- Id string
- The resource ID of the user assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Id string
- The resource ID of the user assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- id String
- The resource ID of the user assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- id string
- The resource ID of the user assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- id String
- The resource ID of the user assigned identity.
- principal
Id 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
- Load
Balancer LoadBalancerPublic outbound network via load balancer (Default)- None
NoneNo default outbound
- Network
Egress Type Load Balancer LoadBalancerPublic outbound network via load balancer (Default)- Network
Egress Type None NoneNo default outbound
- Load
Balancer LoadBalancerPublic outbound network via load balancer (Default)- None
NoneNo default outbound
- Load
Balancer LoadBalancerPublic outbound network via load balancer (Default)- None
NoneNo default outbound
- LOAD_BALANCER
LoadBalancerPublic outbound network via load balancer (Default)- NONE
NoneNo default outbound
- "Load
Balancer" LoadBalancerPublic outbound network via load balancer (Default)- "None"
NoneNo default outbound
SupercomputerIdentities, SupercomputerIdentitiesArgs
Dictionary of identity properties for the Supercomputer.- Cluster
Identity Pulumi.Azure Native. Discovery. Inputs. Identity - Cluster identity ID.
- Kubelet
Identity Pulumi.Azure Native. 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.
- Workload
Identities 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.
- 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 []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 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.
- 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 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.
- cluster
Identity Property Map - Cluster identity ID.
- kubelet
Identity 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.
- workload
Identities 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.- Cluster
Identity Pulumi.Azure Native. Discovery. Inputs. Identity Response - Cluster identity ID.
- Kubelet
Identity Pulumi.Azure Native. Discovery. Inputs. Identity Response - 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 Dictionary<string, Pulumi.Azure Native. Discovery. Inputs. User Assigned Identity Response> - 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 map[string]UserAssigned Identity Response - 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 Map<String,UserAssigned Identity Response> - 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 {[key: string]: UserAssigned Identity Response} - 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, UserAssigned Identity Response] - 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 Property Map - Cluster identity ID.
- kubelet
Identity 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.
- workload
Identities 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.
Azure Native. Discovery. Inputs. Supercomputer Identities - Dictionary of identity properties.
- Subnet
Id string - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- Customer
Managed string | Pulumi.Keys Azure Native. Discovery. Customer Managed Keys - Whether or not to use a customer managed key when encrypting data at rest
- Disk
Encryption stringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- Log
Analytics stringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- Management
Subnet stringId - 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 string | Pulumi.Azure Native. Discovery. Network Egress Type - 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 string | Pulumi.Azure Native. Discovery. System Sku - The SKU to use for the system node pool.
- Identities
Supercomputer
Identities - Dictionary of identity properties.
- Subnet
Id string - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- Customer
Managed string | CustomerKeys Managed Keys - Whether or not to use a customer managed key when encrypting data at rest
- Disk
Encryption stringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- Log
Analytics stringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- Management
Subnet stringId - 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 string | NetworkEgress Type - 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 string | SystemSku - The SKU to use for the system node pool.
- identities
Supercomputer
Identities - Dictionary of identity properties.
- subnet
Id String - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- customer
Managed String | CustomerKeys Managed Keys - Whether or not to use a customer managed key when encrypting data at rest
- disk
Encryption StringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- log
Analytics StringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- management
Subnet StringId - 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 String | NetworkEgress Type - 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 String | SystemSku - The SKU to use for the system node pool.
- identities
Supercomputer
Identities - Dictionary of identity properties.
- subnet
Id string - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- customer
Managed string | CustomerKeys Managed Keys - Whether or not to use a customer managed key when encrypting data at rest
- disk
Encryption stringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- log
Analytics stringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- management
Subnet stringId - 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 string | NetworkEgress Type - 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 string | SystemSku - The SKU to use for the system node pool.
- identities
Supercomputer
Identities - 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_ str | Customerkeys Managed Keys - Whether or not to use a customer managed key when encrypting data at rest
- disk_
encryption_ strset_ id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- log_
analytics_ strcluster_ id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- management_
subnet_ strid - 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 | NetworkEgress Type - 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.
- subnet
Id String - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- customer
Managed String | "Enabled" | "Disabled"Keys - Whether or not to use a customer managed key when encrypting data at rest
- disk
Encryption StringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- log
Analytics StringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- management
Subnet StringId - 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 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.
- system
Sku 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.
Azure Native. Discovery. Inputs. Supercomputer Identities Response - Dictionary of identity properties.
- Managed
On Pulumi.Behalf Of Configuration Azure Native. Discovery. Inputs. With Mobo Broker Resources Response - 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 stringGroup - The resource group for resources managed on behalf of customer.
- Provisioning
State string - The status of the last operation.
- Subnet
Id string - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- Customer
Managed stringKeys - Whether or not to use a customer managed key when encrypting data at rest
- Disk
Encryption stringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- Log
Analytics stringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- Management
Subnet stringId - 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 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.
- System
Sku string - The SKU to use for the system node pool.
- Identities
Supercomputer
Identities Response - Dictionary of identity properties.
- Managed
On WithBehalf Of Configuration Mobo Broker Resources Response - 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 stringGroup - The resource group for resources managed on behalf of customer.
- Provisioning
State string - The status of the last operation.
- Subnet
Id string - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- Customer
Managed stringKeys - Whether or not to use a customer managed key when encrypting data at rest
- Disk
Encryption stringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- Log
Analytics stringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- Management
Subnet stringId - 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 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.
- System
Sku string - The SKU to use for the system node pool.
- identities
Supercomputer
Identities Response - Dictionary of identity properties.
- managed
On WithBehalf Of Configuration Mobo Broker Resources Response - 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 StringGroup - The resource group for resources managed on behalf of customer.
- provisioning
State String - The status of the last operation.
- subnet
Id String - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- customer
Managed StringKeys - Whether or not to use a customer managed key when encrypting data at rest
- disk
Encryption StringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- log
Analytics StringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- management
Subnet StringId - 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 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.
- system
Sku String - The SKU to use for the system node pool.
- identities
Supercomputer
Identities Response - Dictionary of identity properties.
- managed
On WithBehalf Of Configuration Mobo Broker Resources Response - 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 stringGroup - The resource group for resources managed on behalf of customer.
- provisioning
State string - The status of the last operation.
- subnet
Id string - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- customer
Managed stringKeys - Whether or not to use a customer managed key when encrypting data at rest
- disk
Encryption stringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- log
Analytics stringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- management
Subnet stringId - 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 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.
- system
Sku string - The SKU to use for the system node pool.
- identities
Supercomputer
Identities Response - Dictionary of identity properties.
- managed_
on_ Withbehalf_ of_ configuration Mobo Broker Resources Response - 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_ strgroup - 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_ strkeys - Whether or not to use a customer managed key when encrypting data at rest
- disk_
encryption_ strset_ id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- log_
analytics_ strcluster_ id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- management_
subnet_ strid - 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.
- managed
On Property MapBehalf Of Configuration - 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 StringGroup - The resource group for resources managed on behalf of customer.
- provisioning
State String - The status of the last operation.
- subnet
Id String - System Subnet ID associated with managed NodePool for system resources. It should have connectivity to the child NodePool subnets.
- customer
Managed StringKeys - Whether or not to use a customer managed key when encrypting data at rest
- disk
Encryption StringSet Id - Disk Encryption Set ID to use for Customer Managed Keys encryption. Required if Customer Managed Keys is enabled.
- log
Analytics StringCluster Id - The Log Analytics Cluster to use for debug logs. This is required when Customer Managed Keys are enabled.
- management
Subnet StringId - 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 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.
- system
Sku String - The SKU to use for the system node pool.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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.
SystemSku, SystemSkuArgs
- Standard_D4s_
v6 Standard_D4s_v6Standard_D4s_v6 basic compute VM (default)- Standard_D4s_
v5 Standard_D4s_v5Standard_D4s_v5 SKU- Standard_D4s_
v4 Standard_D4s_v4Standard_D4s_v4 SKU
- System
Sku_Standard_D4s_ v6 Standard_D4s_v6Standard_D4s_v6 basic compute VM (default)- System
Sku_Standard_D4s_ v5 Standard_D4s_v5Standard_D4s_v5 SKU- System
Sku_Standard_D4s_ v4 Standard_D4s_v4Standard_D4s_v4 SKU
- Standard_D4s_
v6 Standard_D4s_v6Standard_D4s_v6 basic compute VM (default)- Standard_D4s_
v5 Standard_D4s_v5Standard_D4s_v5 SKU- Standard_D4s_
v4 Standard_D4s_v4Standard_D4s_v4 SKU
- Standard_D4s_
v6 Standard_D4s_v6Standard_D4s_v6 basic compute VM (default)- Standard_D4s_
v5 Standard_D4s_v5Standard_D4s_v5 SKU- Standard_D4s_
v4 Standard_D4s_v4Standard_D4s_v4 SKU
- STANDARD_D4S_V6
Standard_D4s_v6Standard_D4s_v6 basic compute VM (default)- STANDARD_D4S_V5
Standard_D4s_v5Standard_D4s_v5 SKU- STANDARD_D4S_V4
Standard_D4s_v4Standard_D4s_v4 SKU
- "Standard_D4s_
v6" Standard_D4s_v6Standard_D4s_v6 basic compute VM (default)- "Standard_D4s_
v5" Standard_D4s_v5Standard_D4s_v5 SKU- "Standard_D4s_
v4" Standard_D4s_v4Standard_D4s_v4 SKU
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
User assigned identity properties- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
WithMoboBrokerResourcesResponse, WithMoboBrokerResourcesResponseArgs
For tracking mobo resources- Mobo
Broker List<Pulumi.Resources Azure Native. Discovery. Inputs. Mobo Broker Resource Response> - Managed-On-Behalf-Of broker resources
- Mobo
Broker []MoboResources Broker Resource Response - Managed-On-Behalf-Of broker resources
- mobo
Broker List<MoboResources Broker Resource Response> - Managed-On-Behalf-Of broker resources
- mobo
Broker MoboResources Broker Resource Response[] - Managed-On-Behalf-Of broker resources
- mobo_
broker_ Sequence[Moboresources Broker Resource Response] - Managed-On-Behalf-Of broker resources
- mobo
Broker List<Property Map>Resources - Managed-On-Behalf-Of broker resources
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Friday, Mar 20, 2026 by Pulumi
