azure-native.networkcloud.ClusterManager
Explore with Pulumi AI
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: 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" },
},
});
});
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
})
}
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());
}
}
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",
},
});
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",
})
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
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 string
- The unique name of the resource.
- args ClusterManagerArgs
- 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 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 string
- The unique name of the resource.
- args ClusterManagerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterManagerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- Fabric
Controller stringId - The resource ID of the fabric controller that has one to one mapping with the cluster manager.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Analytics
Workspace stringId - The resource ID of the Log Analytics workspace that is used for the logs collection.
- Availability
Zones 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.
- Cluster
Manager stringName - The name of the cluster manager.
- Identity
Pulumi.
Azure Native. Network Cloud. Inputs. Managed Service Identity - The identity of the cluster manager.
- Location string
- The geo-location where the resource lives
- Managed
Resource Pulumi.Group Configuration Azure Native. Network Cloud. Inputs. Managed Resource Group Configuration - The configuration of the managed resource group associated with the resource.
- Dictionary<string, string>
- Resource tags.
- Vm
Size 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 stringId - The resource ID of the fabric controller that has one to one mapping with the cluster manager.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Analytics
Workspace stringId - The resource ID of the Log Analytics workspace that is used for the logs collection.
- Availability
Zones []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.
- Cluster
Manager stringName - The name of the cluster manager.
- Identity
Managed
Service Identity Args - The identity of the cluster manager.
- Location string
- The geo-location where the resource lives
- Managed
Resource ManagedGroup Configuration Resource Group Configuration Args - The configuration of the managed resource group associated with the resource.
- map[string]string
- Resource tags.
- Vm
Size 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 StringId - The resource ID of the fabric controller that has one to one mapping with the cluster manager.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- analytics
Workspace StringId - The resource ID of the Log Analytics workspace that is used for the logs collection.
- availability
Zones 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.
- cluster
Manager StringName - The name of the cluster manager.
- identity
Managed
Service Identity - The identity of the cluster manager.
- location String
- The geo-location where the resource lives
- managed
Resource ManagedGroup Configuration Resource Group Configuration - The configuration of the managed resource group associated with the resource.
- Map<String,String>
- Resource tags.
- vm
Size 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 stringId - The resource ID of the fabric controller that has one to one mapping with the cluster manager.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- analytics
Workspace stringId - The resource ID of the Log Analytics workspace that is used for the logs collection.
- availability
Zones 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.
- cluster
Manager stringName - The name of the cluster manager.
- identity
Managed
Service Identity - The identity of the cluster manager.
- location string
- The geo-location where the resource lives
- managed
Resource ManagedGroup Configuration Resource Group Configuration - The configuration of the managed resource group associated with the resource.
- {[key: string]: string}
- Resource tags.
- vm
Size 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_ strid - The resource ID of the fabric controller that has one to one mapping with the cluster manager.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- analytics_
workspace_ strid - The resource ID of the Log Analytics workspace that is used for the logs collection.
- availability_
zones 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_ strname - The name of the cluster manager.
- identity
Managed
Service Identity Args - The identity of the cluster manager.
- location str
- The geo-location where the resource lives
- managed_
resource_ Managedgroup_ configuration Resource Group Configuration Args - The configuration of the managed resource group associated with the resource.
- Mapping[str, str]
- Resource tags.
- vm_
size 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.
- fabric
Controller StringId - The resource ID of the fabric controller that has one to one mapping with the cluster manager.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- analytics
Workspace StringId - The resource ID of the Log Analytics workspace that is used for the logs collection.
- availability
Zones 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.
- cluster
Manager StringName - The name of the cluster manager.
- identity Property Map
- The identity of the cluster manager.
- location String
- The geo-location where the resource lives
- managed
Resource Property MapGroup Configuration - The configuration of the managed resource group associated with the resource.
- Map<String>
- Resource tags.
- vm
Size 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:
- Azure
Api stringVersion - The Azure API version of the resource.
- Cluster
Versions List<Pulumi.Azure Native. Network Cloud. Outputs. Cluster Available Version Response> - The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
- Detailed
Status string - The detailed status that provides additional information about the cluster manager.
- Detailed
Status stringMessage - The descriptive message about the current detailed status.
- Etag string
- Resource ETag.
- Id string
- The provider-assigned unique ID for this managed resource.
- Manager
Extended Pulumi.Location Azure Native. Network Cloud. Outputs. Extended Location Response - 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
- Provisioning
State string - The provisioning state of the cluster manager.
- System
Data Pulumi.Azure Native. Network Cloud. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Cluster
Versions []ClusterAvailable Version Response - The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
- Detailed
Status string - The detailed status that provides additional information about the cluster manager.
- Detailed
Status stringMessage - The descriptive message about the current detailed status.
- Etag string
- Resource ETag.
- Id string
- The provider-assigned unique ID for this managed resource.
- Manager
Extended ExtendedLocation Location Response - 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
- Provisioning
State string - The provisioning state of the cluster manager.
- 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.
- cluster
Versions List<ClusterAvailable Version Response> - The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
- detailed
Status String - The detailed status that provides additional information about the cluster manager.
- detailed
Status StringMessage - The descriptive message about the current detailed status.
- etag String
- Resource ETag.
- id String
- The provider-assigned unique ID for this managed resource.
- manager
Extended ExtendedLocation Location Response - 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
- provisioning
State String - The provisioning state of the cluster manager.
- 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.
- cluster
Versions ClusterAvailable Version Response[] - The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
- detailed
Status string - The detailed status that provides additional information about the cluster manager.
- detailed
Status stringMessage - The descriptive message about the current detailed status.
- etag string
- Resource ETag.
- id string
- The provider-assigned unique ID for this managed resource.
- manager
Extended ExtendedLocation Location Response - 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
- provisioning
State string - The provisioning state of the cluster manager.
- 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.
- cluster_
versions Sequence[ClusterAvailable Version Response] - 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_ strmessage - 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_ Extendedlocation Location Response - 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 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.
- cluster
Versions List<Property Map> - The list of the cluster versions the manager supports. It is used as input in clusterVersion property of a cluster resource.
- detailed
Status String - The detailed status that provides additional information about the cluster manager.
- detailed
Status StringMessage - The descriptive message about the current detailed status.
- etag String
- Resource ETag.
- id String
- The provider-assigned unique ID for this managed resource.
- manager
Extended Property MapLocation - 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
- provisioning
State String - The provisioning state of the cluster manager.
- 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
ClusterAvailableVersionResponse, ClusterAvailableVersionResponseArgs
- Support
Expiry stringDate - The last date the version of the platform is supported.
- Target
Cluster stringVersion - The version of the cluster to be deployed.
- Support
Expiry stringDate - The last date the version of the platform is supported.
- Target
Cluster stringVersion - The version of the cluster to be deployed.
- support
Expiry StringDate - The last date the version of the platform is supported.
- target
Cluster StringVersion - The version of the cluster to be deployed.
- support
Expiry stringDate - The last date the version of the platform is supported.
- target
Cluster stringVersion - The version of the cluster to be deployed.
- support_
expiry_ strdate - The last date the version of the platform is supported.
- target_
cluster_ strversion - The version of the cluster to be deployed.
- support
Expiry StringDate - The last date the version of the platform is supported.
- target
Cluster StringVersion - The version of the cluster to be deployed.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ManagedResourceGroupConfiguration, ManagedResourceGroupConfigurationArgs
ManagedResourceGroupConfigurationResponse, ManagedResourceGroupConfigurationResponseArgs
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Network Cloud. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - 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
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - 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
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - 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
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - 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
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Network Cloud. Inputs. User Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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 str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- 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.
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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0