1. Packages
  2. Azure Native
  3. API Docs
  4. networkcloud
  5. ClusterManager
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.networkcloud.ClusterManager

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.

Other available API versions: 2023-10-01-preview, 2024-06-01-preview, 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native networkcloud [ApiVersion]. See the version guide for details.

Example Usage

Create or update cluster manager

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

return await Deployment.RunAsync(() => 
{
    var clusterManager = new AzureNative.NetworkCloud.ClusterManager("clusterManager", new()
    {
        AnalyticsWorkspaceId = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/microsoft.operationalInsights/workspaces/logAnalyticsWorkspaceName",
        ClusterManagerName = "clusterManagerName",
        FabricControllerId = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName",
        Identity = new AzureNative.NetworkCloud.Inputs.ManagedServiceIdentityArgs
        {
            Type = AzureNative.NetworkCloud.ManagedServiceIdentityType.SystemAssigned,
        },
        Location = "location",
        ManagedResourceGroupConfiguration = new AzureNative.NetworkCloud.Inputs.ManagedResourceGroupConfigurationArgs
        {
            Location = "East US",
            Name = "my-managed-rg",
        },
        ResourceGroupName = "resourceGroupName",
        Tags = 
        {
            { "key1", "myvalue1" },
            { "key2", "myvalue2" },
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkcloud.NewClusterManager(ctx, "clusterManager", &networkcloud.ClusterManagerArgs{
			AnalyticsWorkspaceId: pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/microsoft.operationalInsights/workspaces/logAnalyticsWorkspaceName"),
			ClusterManagerName:   pulumi.String("clusterManagerName"),
			FabricControllerId:   pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName"),
			Identity: &networkcloud.ManagedServiceIdentityArgs{
				Type: pulumi.String(networkcloud.ManagedServiceIdentityTypeSystemAssigned),
			},
			Location: pulumi.String("location"),
			ManagedResourceGroupConfiguration: &networkcloud.ManagedResourceGroupConfigurationArgs{
				Location: pulumi.String("East US"),
				Name:     pulumi.String("my-managed-rg"),
			},
			ResourceGroupName: pulumi.String("resourceGroupName"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("myvalue1"),
				"key2": pulumi.String("myvalue2"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.networkcloud.ClusterManager;
import com.pulumi.azurenative.networkcloud.ClusterManagerArgs;
import com.pulumi.azurenative.networkcloud.inputs.ManagedServiceIdentityArgs;
import com.pulumi.azurenative.networkcloud.inputs.ManagedResourceGroupConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var clusterManager = new ClusterManager("clusterManager", ClusterManagerArgs.builder()
            .analyticsWorkspaceId("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/microsoft.operationalInsights/workspaces/logAnalyticsWorkspaceName")
            .clusterManagerName("clusterManagerName")
            .fabricControllerId("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName")
            .identity(ManagedServiceIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .location("location")
            .managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
                .location("East US")
                .name("my-managed-rg")
                .build())
            .resourceGroupName("resourceGroupName")
            .tags(Map.ofEntries(
                Map.entry("key1", "myvalue1"),
                Map.entry("key2", "myvalue2")
            ))
            .build());

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

const clusterManager = new azure_native.networkcloud.ClusterManager("clusterManager", {
    analyticsWorkspaceId: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/microsoft.operationalInsights/workspaces/logAnalyticsWorkspaceName",
    clusterManagerName: "clusterManagerName",
    fabricControllerId: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName",
    identity: {
        type: azure_native.networkcloud.ManagedServiceIdentityType.SystemAssigned,
    },
    location: "location",
    managedResourceGroupConfiguration: {
        location: "East US",
        name: "my-managed-rg",
    },
    resourceGroupName: "resourceGroupName",
    tags: {
        key1: "myvalue1",
        key2: "myvalue2",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

cluster_manager = azure_native.networkcloud.ClusterManager("clusterManager",
    analytics_workspace_id="/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/microsoft.operationalInsights/workspaces/logAnalyticsWorkspaceName",
    cluster_manager_name="clusterManagerName",
    fabric_controller_id="/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName",
    identity={
        "type": azure_native.networkcloud.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
    },
    location="location",
    managed_resource_group_configuration={
        "location": "East US",
        "name": "my-managed-rg",
    },
    resource_group_name="resourceGroupName",
    tags={
        "key1": "myvalue1",
        "key2": "myvalue2",
    })
Copy
resources:
  clusterManager:
    type: azure-native:networkcloud:ClusterManager
    properties:
      analyticsWorkspaceId: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/microsoft.operationalInsights/workspaces/logAnalyticsWorkspaceName
      clusterManagerName: clusterManagerName
      fabricControllerId: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ManagedNetworkFabric/networkFabricControllers/fabricControllerName
      identity:
        type: SystemAssigned
      location: location
      managedResourceGroupConfiguration:
        location: East US
        name: my-managed-rg
      resourceGroupName: resourceGroupName
      tags:
        key1: myvalue1
        key2: myvalue2
Copy

Create ClusterManager Resource

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

Constructor syntax

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

@overload
def ClusterManager(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   fabric_controller_id: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   analytics_workspace_id: Optional[str] = None,
                   availability_zones: Optional[Sequence[str]] = None,
                   cluster_manager_name: Optional[str] = None,
                   identity: Optional[ManagedServiceIdentityArgs] = None,
                   location: Optional[str] = None,
                   managed_resource_group_configuration: Optional[ManagedResourceGroupConfigurationArgs] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   vm_size: Optional[str] = None)
func NewClusterManager(ctx *Context, name string, args ClusterManagerArgs, opts ...ResourceOption) (*ClusterManager, error)
public ClusterManager(string name, ClusterManagerArgs args, CustomResourceOptions? opts = null)
public ClusterManager(String name, ClusterManagerArgs args)
public ClusterManager(String name, ClusterManagerArgs args, CustomResourceOptions options)
type: azure-native:networkcloud:ClusterManager
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ClusterManagerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ClusterManagerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ClusterManagerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ClusterManagerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ClusterManagerArgs
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 clusterManagerResource = new AzureNative.NetworkCloud.ClusterManager("clusterManagerResource", new()
{
    FabricControllerId = "string",
    ResourceGroupName = "string",
    AnalyticsWorkspaceId = "string",
    AvailabilityZones = new[]
    {
        "string",
    },
    ClusterManagerName = "string",
    Identity = new AzureNative.NetworkCloud.Inputs.ManagedServiceIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    ManagedResourceGroupConfiguration = new AzureNative.NetworkCloud.Inputs.ManagedResourceGroupConfigurationArgs
    {
        Location = "string",
        Name = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    VmSize = "string",
});
Copy
example, err := networkcloud.NewClusterManager(ctx, "clusterManagerResource", &networkcloud.ClusterManagerArgs{
	FabricControllerId:   pulumi.String("string"),
	ResourceGroupName:    pulumi.String("string"),
	AnalyticsWorkspaceId: pulumi.String("string"),
	AvailabilityZones: pulumi.StringArray{
		pulumi.String("string"),
	},
	ClusterManagerName: pulumi.String("string"),
	Identity: &networkcloud.ManagedServiceIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	ManagedResourceGroupConfiguration: &networkcloud.ManagedResourceGroupConfigurationArgs{
		Location: pulumi.String("string"),
		Name:     pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	VmSize: pulumi.String("string"),
})
Copy
var clusterManagerResource = new ClusterManager("clusterManagerResource", ClusterManagerArgs.builder()
    .fabricControllerId("string")
    .resourceGroupName("string")
    .analyticsWorkspaceId("string")
    .availabilityZones("string")
    .clusterManagerName("string")
    .identity(ManagedServiceIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
        .location("string")
        .name("string")
        .build())
    .tags(Map.of("string", "string"))
    .vmSize("string")
    .build());
Copy
cluster_manager_resource = azure_native.networkcloud.ClusterManager("clusterManagerResource",
    fabric_controller_id="string",
    resource_group_name="string",
    analytics_workspace_id="string",
    availability_zones=["string"],
    cluster_manager_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    managed_resource_group_configuration={
        "location": "string",
        "name": "string",
    },
    tags={
        "string": "string",
    },
    vm_size="string")
Copy
const clusterManagerResource = new azure_native.networkcloud.ClusterManager("clusterManagerResource", {
    fabricControllerId: "string",
    resourceGroupName: "string",
    analyticsWorkspaceId: "string",
    availabilityZones: ["string"],
    clusterManagerName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    location: "string",
    managedResourceGroupConfiguration: {
        location: "string",
        name: "string",
    },
    tags: {
        string: "string",
    },
    vmSize: "string",
});
Copy
type: azure-native:networkcloud:ClusterManager
properties:
    analyticsWorkspaceId: string
    availabilityZones:
        - string
    clusterManagerName: string
    fabricControllerId: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    managedResourceGroupConfiguration:
        location: string
        name: string
    resourceGroupName: string
    tags:
        string: string
    vmSize: string
Copy

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

FabricControllerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the fabric controller that has one to one mapping with the cluster manager.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AnalyticsWorkspaceId Changes to this property will trigger replacement. string
The resource ID of the Log Analytics workspace that is used for the logs collection.
AvailabilityZones Changes to this property will trigger replacement. List<string>
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The Azure availability zones within the region that will be used to support the cluster manager resource.
ClusterManagerName Changes to this property will trigger replacement. string
The name of the cluster manager.
Identity Pulumi.AzureNative.NetworkCloud.Inputs.ManagedServiceIdentity
The identity of the cluster manager.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
ManagedResourceGroupConfiguration Pulumi.AzureNative.NetworkCloud.Inputs.ManagedResourceGroupConfiguration
The configuration of the managed resource group associated with the resource.
Tags Dictionary<string, string>
Resource tags.
VmSize Changes to this property will trigger replacement. string
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The size of the Azure virtual machines to use for hosting the cluster manager resource.
FabricControllerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the fabric controller that has one to one mapping with the cluster manager.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AnalyticsWorkspaceId Changes to this property will trigger replacement. string
The resource ID of the Log Analytics workspace that is used for the logs collection.
AvailabilityZones Changes to this property will trigger replacement. []string
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The Azure availability zones within the region that will be used to support the cluster manager resource.
ClusterManagerName Changes to this property will trigger replacement. string
The name of the cluster manager.
Identity ManagedServiceIdentityArgs
The identity of the cluster manager.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
ManagedResourceGroupConfiguration ManagedResourceGroupConfigurationArgs
The configuration of the managed resource group associated with the resource.
Tags map[string]string
Resource tags.
VmSize Changes to this property will trigger replacement. string
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The size of the Azure virtual machines to use for hosting the cluster manager resource.
fabricControllerId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the fabric controller that has one to one mapping with the cluster manager.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
analyticsWorkspaceId Changes to this property will trigger replacement. String
The resource ID of the Log Analytics workspace that is used for the logs collection.
availabilityZones Changes to this property will trigger replacement. List<String>
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The Azure availability zones within the region that will be used to support the cluster manager resource.
clusterManagerName Changes to this property will trigger replacement. String
The name of the cluster manager.
identity ManagedServiceIdentity
The identity of the cluster manager.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
managedResourceGroupConfiguration ManagedResourceGroupConfiguration
The configuration of the managed resource group associated with the resource.
tags Map<String,String>
Resource tags.
vmSize Changes to this property will trigger replacement. String
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The size of the Azure virtual machines to use for hosting the cluster manager resource.
fabricControllerId
This property is required.
Changes to this property will trigger replacement.
string
The resource ID of the fabric controller that has one to one mapping with the cluster manager.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
analyticsWorkspaceId Changes to this property will trigger replacement. string
The resource ID of the Log Analytics workspace that is used for the logs collection.
availabilityZones Changes to this property will trigger replacement. string[]
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The Azure availability zones within the region that will be used to support the cluster manager resource.
clusterManagerName Changes to this property will trigger replacement. string
The name of the cluster manager.
identity ManagedServiceIdentity
The identity of the cluster manager.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
managedResourceGroupConfiguration ManagedResourceGroupConfiguration
The configuration of the managed resource group associated with the resource.
tags {[key: string]: string}
Resource tags.
vmSize Changes to this property will trigger replacement. string
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The size of the Azure virtual machines to use for hosting the cluster manager resource.
fabric_controller_id
This property is required.
Changes to this property will trigger replacement.
str
The resource ID of the fabric controller that has one to one mapping with the cluster manager.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
analytics_workspace_id Changes to this property will trigger replacement. str
The resource ID of the Log Analytics workspace that is used for the logs collection.
availability_zones Changes to this property will trigger replacement. Sequence[str]
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The Azure availability zones within the region that will be used to support the cluster manager resource.
cluster_manager_name Changes to this property will trigger replacement. str
The name of the cluster manager.
identity ManagedServiceIdentityArgs
The identity of the cluster manager.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
managed_resource_group_configuration ManagedResourceGroupConfigurationArgs
The configuration of the managed resource group associated with the resource.
tags Mapping[str, str]
Resource tags.
vm_size Changes to this property will trigger replacement. str
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The size of the Azure virtual machines to use for hosting the cluster manager resource.
fabricControllerId
This property is required.
Changes to this property will trigger replacement.
String
The resource ID of the fabric controller that has one to one mapping with the cluster manager.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
analyticsWorkspaceId Changes to this property will trigger replacement. String
The resource ID of the Log Analytics workspace that is used for the logs collection.
availabilityZones Changes to this property will trigger replacement. List<String>
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The Azure availability zones within the region that will be used to support the cluster manager resource.
clusterManagerName Changes to this property will trigger replacement. String
The name of the cluster manager.
identity Property Map
The identity of the cluster manager.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
managedResourceGroupConfiguration Property Map
The configuration of the managed resource group associated with the resource.
tags Map<String>
Resource tags.
vmSize Changes to this property will trigger replacement. String
Field deprecated, this value will no longer influence the cluster manager allocation process and will be removed in a future version. The size of the Azure virtual machines to use for hosting the cluster manager resource.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
ClusterVersions List<Pulumi.AzureNative.NetworkCloud.Outputs.ClusterAvailableVersionResponse>
The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
DetailedStatus string
The detailed status that provides additional information about the cluster manager.
DetailedStatusMessage string
The descriptive message about the current detailed status.
Etag string
Resource ETag.
Id string
The provider-assigned unique ID for this managed resource.
ManagerExtendedLocation Pulumi.AzureNative.NetworkCloud.Outputs.ExtendedLocationResponse
The extended location (custom location) that represents the cluster manager's control plane location. This extended location is used when creating cluster and rack manifest resources.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the cluster manager.
SystemData Pulumi.AzureNative.NetworkCloud.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
ClusterVersions []ClusterAvailableVersionResponse
The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
DetailedStatus string
The detailed status that provides additional information about the cluster manager.
DetailedStatusMessage string
The descriptive message about the current detailed status.
Etag string
Resource ETag.
Id string
The provider-assigned unique ID for this managed resource.
ManagerExtendedLocation ExtendedLocationResponse
The extended location (custom location) that represents the cluster manager's control plane location. This extended location is used when creating cluster and rack manifest resources.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the cluster manager.
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.
clusterVersions List<ClusterAvailableVersionResponse>
The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
detailedStatus String
The detailed status that provides additional information about the cluster manager.
detailedStatusMessage String
The descriptive message about the current detailed status.
etag String
Resource ETag.
id String
The provider-assigned unique ID for this managed resource.
managerExtendedLocation ExtendedLocationResponse
The extended location (custom location) that represents the cluster manager's control plane location. This extended location is used when creating cluster and rack manifest resources.
name String
The name of the resource
provisioningState String
The provisioning state of the cluster manager.
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.
clusterVersions ClusterAvailableVersionResponse[]
The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
detailedStatus string
The detailed status that provides additional information about the cluster manager.
detailedStatusMessage string
The descriptive message about the current detailed status.
etag string
Resource ETag.
id string
The provider-assigned unique ID for this managed resource.
managerExtendedLocation ExtendedLocationResponse
The extended location (custom location) that represents the cluster manager's control plane location. This extended location is used when creating cluster and rack manifest resources.
name string
The name of the resource
provisioningState string
The provisioning state of the cluster manager.
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.
cluster_versions Sequence[ClusterAvailableVersionResponse]
The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
detailed_status str
The detailed status that provides additional information about the cluster manager.
detailed_status_message str
The descriptive message about the current detailed status.
etag str
Resource ETag.
id str
The provider-assigned unique ID for this managed resource.
manager_extended_location ExtendedLocationResponse
The extended location (custom location) that represents the cluster manager's control plane location. This extended location is used when creating cluster and rack manifest resources.
name str
The name of the resource
provisioning_state str
The provisioning state of the cluster manager.
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.
clusterVersions List<Property Map>
The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
detailedStatus String
The detailed status that provides additional information about the cluster manager.
detailedStatusMessage String
The descriptive message about the current detailed status.
etag String
Resource ETag.
id String
The provider-assigned unique ID for this managed resource.
managerExtendedLocation Property Map
The extended location (custom location) that represents the cluster manager's control plane location. This extended location is used when creating cluster and rack manifest resources.
name String
The name of the resource
provisioningState String
The provisioning state of the cluster manager.
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

ClusterAvailableVersionResponse
, ClusterAvailableVersionResponseArgs

SupportExpiryDate This property is required. string
The last date the version of the platform is supported.
TargetClusterVersion This property is required. string
The version of the cluster to be deployed.
SupportExpiryDate This property is required. string
The last date the version of the platform is supported.
TargetClusterVersion This property is required. string
The version of the cluster to be deployed.
supportExpiryDate This property is required. String
The last date the version of the platform is supported.
targetClusterVersion This property is required. String
The version of the cluster to be deployed.
supportExpiryDate This property is required. string
The last date the version of the platform is supported.
targetClusterVersion This property is required. string
The version of the cluster to be deployed.
support_expiry_date This property is required. str
The last date the version of the platform is supported.
target_cluster_version This property is required. str
The version of the cluster to be deployed.
supportExpiryDate This property is required. String
The last date the version of the platform is supported.
targetClusterVersion This property is required. String
The version of the cluster to be deployed.

ExtendedLocationResponse
, ExtendedLocationResponseArgs

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

ManagedResourceGroupConfiguration
, ManagedResourceGroupConfigurationArgs

Location string
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
Name string
The name for the managed resource group. If not specified, the unique name is automatically generated.
Location string
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
Name string
The name for the managed resource group. If not specified, the unique name is automatically generated.
location String
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
name String
The name for the managed resource group. If not specified, the unique name is automatically generated.
location string
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
name string
The name for the managed resource group. If not specified, the unique name is automatically generated.
location str
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
name str
The name for the managed resource group. If not specified, the unique name is automatically generated.
location String
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
name String
The name for the managed resource group. If not specified, the unique name is automatically generated.

ManagedResourceGroupConfigurationResponse
, ManagedResourceGroupConfigurationResponseArgs

Location string
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
Name string
The name for the managed resource group. If not specified, the unique name is automatically generated.
Location string
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
Name string
The name for the managed resource group. If not specified, the unique name is automatically generated.
location String
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
name String
The name for the managed resource group. If not specified, the unique name is automatically generated.
location string
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
name string
The name for the managed resource group. If not specified, the unique name is automatically generated.
location str
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
name str
The name for the managed resource group. If not specified, the unique name is automatically generated.
location String
The location of the managed resource group. If not specified, the location of the parent resource is chosen.
name String
The name for the managed resource group. If not specified, the unique name is automatically generated.

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.NetworkCloud.ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities List<string>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
Type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities []string
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities string[]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. str | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Sequence[str]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.NetworkCloud.Inputs.UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<Property Map>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityType
, ManagedServiceIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ManagedServiceIdentityTypeNone
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

SystemDataResponse
, SystemDataResponseArgs

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

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.

Import

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

$ pulumi import azure-native:networkcloud:ClusterManager clusterManagerName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetworkCloud/clusterManagers/{clusterManagerName} 
Copy

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

Package Details

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