azure-native.azurestackhci.Cluster
Explore with Pulumi AI
Cluster details.
Uses Azure REST API version 2024-04-01. In version 2.x of the Azure Native provider, it used API version 2023-03-01.
Other available API versions: 2022-12-15-preview, 2023-02-01, 2023-03-01, 2023-06-01, 2023-08-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01, 2024-02-15-preview, 2024-09-01-preview, 2024-12-01-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native azurestackhci [ApiVersion]
. See the version guide for details.
Example Usage
Create cluster
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var cluster = new AzureNative.AzureStackHCI.Cluster("cluster", new()
{
AadClientId = "24a6e53d-04e5-44d2-b7cc-1b732a847dfc",
AadTenantId = "7e589cc1-a8b6-4dff-91bd-5ec0fa18db94",
CloudManagementEndpoint = "https://98294836-31be-4668-aeae-698667faf99b.waconazure.com",
ClusterName = "myCluster",
Location = "East US",
ResourceGroupName = "test-rg",
Type = AzureNative.AzureStackHCI.ManagedServiceIdentityType.SystemAssigned,
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewCluster(ctx, "cluster", &azurestackhci.ClusterArgs{
AadClientId: pulumi.String("24a6e53d-04e5-44d2-b7cc-1b732a847dfc"),
AadTenantId: pulumi.String("7e589cc1-a8b6-4dff-91bd-5ec0fa18db94"),
CloudManagementEndpoint: pulumi.String("https://98294836-31be-4668-aeae-698667faf99b.waconazure.com"),
ClusterName: pulumi.String("myCluster"),
Location: pulumi.String("East US"),
ResourceGroupName: pulumi.String("test-rg"),
Type: pulumi.String(azurestackhci.ManagedServiceIdentityTypeSystemAssigned),
})
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.azurestackhci.Cluster;
import com.pulumi.azurenative.azurestackhci.ClusterArgs;
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 cluster = new Cluster("cluster", ClusterArgs.builder()
.aadClientId("24a6e53d-04e5-44d2-b7cc-1b732a847dfc")
.aadTenantId("7e589cc1-a8b6-4dff-91bd-5ec0fa18db94")
.cloudManagementEndpoint("https://98294836-31be-4668-aeae-698667faf99b.waconazure.com")
.clusterName("myCluster")
.location("East US")
.resourceGroupName("test-rg")
.type("SystemAssigned")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const cluster = new azure_native.azurestackhci.Cluster("cluster", {
aadClientId: "24a6e53d-04e5-44d2-b7cc-1b732a847dfc",
aadTenantId: "7e589cc1-a8b6-4dff-91bd-5ec0fa18db94",
cloudManagementEndpoint: "https://98294836-31be-4668-aeae-698667faf99b.waconazure.com",
clusterName: "myCluster",
location: "East US",
resourceGroupName: "test-rg",
type: azure_native.azurestackhci.ManagedServiceIdentityType.SystemAssigned,
});
import pulumi
import pulumi_azure_native as azure_native
cluster = azure_native.azurestackhci.Cluster("cluster",
aad_client_id="24a6e53d-04e5-44d2-b7cc-1b732a847dfc",
aad_tenant_id="7e589cc1-a8b6-4dff-91bd-5ec0fa18db94",
cloud_management_endpoint="https://98294836-31be-4668-aeae-698667faf99b.waconazure.com",
cluster_name="myCluster",
location="East US",
resource_group_name="test-rg",
type=azure_native.azurestackhci.ManagedServiceIdentityType.SYSTEM_ASSIGNED)
resources:
cluster:
type: azure-native:azurestackhci:Cluster
properties:
aadClientId: 24a6e53d-04e5-44d2-b7cc-1b732a847dfc
aadTenantId: 7e589cc1-a8b6-4dff-91bd-5ec0fa18db94
cloudManagementEndpoint: https://98294836-31be-4668-aeae-698667faf99b.waconazure.com
clusterName: myCluster
location: East US
resourceGroupName: test-rg
type: SystemAssigned
Create Cluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Cluster(name: string, args: ClusterArgs, opts?: CustomResourceOptions);
@overload
def Cluster(resource_name: str,
args: ClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Cluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
type: Optional[Union[str, ManagedServiceIdentityType]] = None,
desired_properties: Optional[ClusterDesiredPropertiesArgs] = None,
aad_tenant_id: Optional[str] = None,
cloud_management_endpoint: Optional[str] = None,
cluster_name: Optional[str] = None,
aad_application_object_id: Optional[str] = None,
location: Optional[str] = None,
aad_service_principal_object_id: Optional[str] = None,
software_assurance_properties: Optional[SoftwareAssurancePropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None,
aad_client_id: Optional[str] = None,
user_assigned_identities: Optional[Sequence[str]] = None)
func NewCluster(ctx *Context, name string, args ClusterArgs, opts ...ResourceOption) (*Cluster, error)
public Cluster(string name, ClusterArgs args, CustomResourceOptions? opts = null)
public Cluster(String name, ClusterArgs args)
public Cluster(String name, ClusterArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:Cluster
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 ClusterArgs
- 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 ClusterArgs
- 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 ClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterArgs
- 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 azure_nativeClusterResource = new AzureNative.AzureStackHCI.Cluster("azure-nativeClusterResource", new()
{
ResourceGroupName = "string",
Type = "string",
DesiredProperties = new AzureNative.AzureStackHCI.Inputs.ClusterDesiredPropertiesArgs
{
DiagnosticLevel = "string",
WindowsServerSubscription = "string",
},
AadTenantId = "string",
CloudManagementEndpoint = "string",
ClusterName = "string",
AadApplicationObjectId = "string",
Location = "string",
AadServicePrincipalObjectId = "string",
SoftwareAssuranceProperties = new AzureNative.AzureStackHCI.Inputs.SoftwareAssurancePropertiesArgs
{
SoftwareAssuranceIntent = "string",
},
Tags =
{
{ "string", "string" },
},
AadClientId = "string",
UserAssignedIdentities = new[]
{
"string",
},
});
example, err := azurestackhci.NewCluster(ctx, "azure-nativeClusterResource", &azurestackhci.ClusterArgs{
ResourceGroupName: pulumi.String("string"),
Type: pulumi.String("string"),
DesiredProperties: &azurestackhci.ClusterDesiredPropertiesArgs{
DiagnosticLevel: pulumi.String("string"),
WindowsServerSubscription: pulumi.String("string"),
},
AadTenantId: pulumi.String("string"),
CloudManagementEndpoint: pulumi.String("string"),
ClusterName: pulumi.String("string"),
AadApplicationObjectId: pulumi.String("string"),
Location: pulumi.String("string"),
AadServicePrincipalObjectId: pulumi.String("string"),
SoftwareAssuranceProperties: &azurestackhci.SoftwareAssurancePropertiesArgs{
SoftwareAssuranceIntent: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
AadClientId: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
})
var azure_nativeClusterResource = new com.pulumi.azurenative.azurestackhci.Cluster("azure-nativeClusterResource", com.pulumi.azurenative.azurestackhci.ClusterArgs.builder()
.resourceGroupName("string")
.type("string")
.desiredProperties(ClusterDesiredPropertiesArgs.builder()
.diagnosticLevel("string")
.windowsServerSubscription("string")
.build())
.aadTenantId("string")
.cloudManagementEndpoint("string")
.clusterName("string")
.aadApplicationObjectId("string")
.location("string")
.aadServicePrincipalObjectId("string")
.softwareAssuranceProperties(SoftwareAssurancePropertiesArgs.builder()
.softwareAssuranceIntent("string")
.build())
.tags(Map.of("string", "string"))
.aadClientId("string")
.userAssignedIdentities("string")
.build());
azure_native_cluster_resource = azure_native.azurestackhci.Cluster("azure-nativeClusterResource",
resource_group_name="string",
type="string",
desired_properties={
"diagnostic_level": "string",
"windows_server_subscription": "string",
},
aad_tenant_id="string",
cloud_management_endpoint="string",
cluster_name="string",
aad_application_object_id="string",
location="string",
aad_service_principal_object_id="string",
software_assurance_properties={
"software_assurance_intent": "string",
},
tags={
"string": "string",
},
aad_client_id="string",
user_assigned_identities=["string"])
const azure_nativeClusterResource = new azure_native.azurestackhci.Cluster("azure-nativeClusterResource", {
resourceGroupName: "string",
type: "string",
desiredProperties: {
diagnosticLevel: "string",
windowsServerSubscription: "string",
},
aadTenantId: "string",
cloudManagementEndpoint: "string",
clusterName: "string",
aadApplicationObjectId: "string",
location: "string",
aadServicePrincipalObjectId: "string",
softwareAssuranceProperties: {
softwareAssuranceIntent: "string",
},
tags: {
string: "string",
},
aadClientId: "string",
userAssignedIdentities: ["string"],
});
type: azure-native:azurestackhci:Cluster
properties:
aadApplicationObjectId: string
aadClientId: string
aadServicePrincipalObjectId: string
aadTenantId: string
cloudManagementEndpoint: string
clusterName: string
desiredProperties:
diagnosticLevel: string
windowsServerSubscription: string
location: string
resourceGroupName: string
softwareAssuranceProperties:
softwareAssuranceIntent: string
tags:
string: string
type: string
userAssignedIdentities:
- string
Cluster 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 Cluster resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Type
string | Pulumi.
Azure Native. Azure Stack HCI. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- Aad
Application stringObject Id - Object id of cluster AAD identity.
- Aad
Client stringId - App id of cluster AAD identity.
- Aad
Service stringPrincipal Object Id - Id of cluster identity service principal.
- Aad
Tenant stringId - Tenant id of cluster AAD identity.
- Cloud
Management stringEndpoint - Endpoint configured for management from the Azure portal.
- Cluster
Name string - The name of the cluster.
- Desired
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Cluster Desired Properties - Desired properties of the cluster.
- Location string
- The geo-location where the resource lives
- Software
Assurance Pulumi.Properties Azure Native. Azure Stack HCI. Inputs. Software Assurance Properties - Software Assurance properties of the cluster.
- Dictionary<string, string>
- Resource tags.
- 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- Aad
Application stringObject Id - Object id of cluster AAD identity.
- Aad
Client stringId - App id of cluster AAD identity.
- Aad
Service stringPrincipal Object Id - Id of cluster identity service principal.
- Aad
Tenant stringId - Tenant id of cluster AAD identity.
- Cloud
Management stringEndpoint - Endpoint configured for management from the Azure portal.
- Cluster
Name string - The name of the cluster.
- Desired
Properties ClusterDesired Properties Args - Desired properties of the cluster.
- Location string
- The geo-location where the resource lives
- Software
Assurance SoftwareProperties Assurance Properties Args - Software Assurance properties of the cluster.
- map[string]string
- Resource tags.
- 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.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- type
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- aad
Application StringObject Id - Object id of cluster AAD identity.
- aad
Client StringId - App id of cluster AAD identity.
- aad
Service StringPrincipal Object Id - Id of cluster identity service principal.
- aad
Tenant StringId - Tenant id of cluster AAD identity.
- cloud
Management StringEndpoint - Endpoint configured for management from the Azure portal.
- cluster
Name String - The name of the cluster.
- desired
Properties ClusterDesired Properties - Desired properties of the cluster.
- location String
- The geo-location where the resource lives
- software
Assurance SoftwareProperties Assurance Properties - Software Assurance properties of the cluster.
- Map<String,String>
- Resource tags.
- 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.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- aad
Application stringObject Id - Object id of cluster AAD identity.
- aad
Client stringId - App id of cluster AAD identity.
- aad
Service stringPrincipal Object Id - Id of cluster identity service principal.
- aad
Tenant stringId - Tenant id of cluster AAD identity.
- cloud
Management stringEndpoint - Endpoint configured for management from the Azure portal.
- cluster
Name string - The name of the cluster.
- desired
Properties ClusterDesired Properties - Desired properties of the cluster.
- location string
- The geo-location where the resource lives
- software
Assurance SoftwareProperties Assurance Properties - Software Assurance properties of the cluster.
- {[key: string]: string}
- Resource tags.
- 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.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- type
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- aad_
application_ strobject_ id - Object id of cluster AAD identity.
- aad_
client_ strid - App id of cluster AAD identity.
- aad_
service_ strprincipal_ object_ id - Id of cluster identity service principal.
- aad_
tenant_ strid - Tenant id of cluster AAD identity.
- cloud_
management_ strendpoint - Endpoint configured for management from the Azure portal.
- cluster_
name str - The name of the cluster.
- desired_
properties ClusterDesired Properties Args - Desired properties of the cluster.
- location str
- The geo-location where the resource lives
- software_
assurance_ Softwareproperties Assurance Properties Args - Software Assurance properties of the cluster.
- Mapping[str, str]
- Resource tags.
- 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.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- aad
Application StringObject Id - Object id of cluster AAD identity.
- aad
Client StringId - App id of cluster AAD identity.
- aad
Service StringPrincipal Object Id - Id of cluster identity service principal.
- aad
Tenant StringId - Tenant id of cluster AAD identity.
- cloud
Management StringEndpoint - Endpoint configured for management from the Azure portal.
- cluster
Name String - The name of the cluster.
- desired
Properties Property Map - Desired properties of the cluster.
- location String
- The geo-location where the resource lives
- software
Assurance Property MapProperties - Software Assurance properties of the cluster.
- Map<String>
- Resource tags.
- 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the Cluster resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Billing
Model string - Type of billing applied to the resource.
- Cloud
Id string - Unique, immutable resource id.
- Connectivity
Status string - Overall connectivity status for the cluster resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Isolated
Vm Pulumi.Attestation Configuration Azure Native. Azure Stack HCI. Outputs. Isolated Vm Attestation Configuration Response - Attestation configurations for isolated VM (e.g. TVM, CVM) of the cluster.
- Last
Billing stringTimestamp - Most recent billing meter timestamp.
- Last
Sync stringTimestamp - Most recent cluster sync timestamp.
- Name string
- The name of the resource
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Provisioning
State string - Provisioning state.
- Registration
Timestamp string - First cluster sync timestamp.
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Outputs. Cluster Reported Properties Response - Properties reported by cluster agent.
- Resource
Provider stringObject Id - Object id of RP Service Principal
- Service
Endpoint string - Region specific DataPath Endpoint of the cluster.
- Status string
- Status of the cluster agent.
- System
Data Pulumi.Azure Native. Azure Stack HCI. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Trial
Days doubleRemaining - Number of days remaining in the trial period.
- Log
Collection Pulumi.Properties Azure Native. Azure Stack HCI. Outputs. Log Collection Properties Response - Log Collection properties of the cluster.
- Remote
Support Pulumi.Properties Azure Native. Azure Stack HCI. Outputs. Remote Support Properties Response - RemoteSupport properties of the cluster.
- Azure
Api stringVersion - The Azure API version of the resource.
- Billing
Model string - Type of billing applied to the resource.
- Cloud
Id string - Unique, immutable resource id.
- Connectivity
Status string - Overall connectivity status for the cluster resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Isolated
Vm IsolatedAttestation Configuration Vm Attestation Configuration Response - Attestation configurations for isolated VM (e.g. TVM, CVM) of the cluster.
- Last
Billing stringTimestamp - Most recent billing meter timestamp.
- Last
Sync stringTimestamp - Most recent cluster sync timestamp.
- Name string
- The name of the resource
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Provisioning
State string - Provisioning state.
- Registration
Timestamp string - First cluster sync timestamp.
- Reported
Properties ClusterReported Properties Response - Properties reported by cluster agent.
- Resource
Provider stringObject Id - Object id of RP Service Principal
- Service
Endpoint string - Region specific DataPath Endpoint of the cluster.
- Status string
- Status of the cluster agent.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Trial
Days float64Remaining - Number of days remaining in the trial period.
- Log
Collection LogProperties Collection Properties Response - Log Collection properties of the cluster.
- Remote
Support RemoteProperties Support Properties Response - RemoteSupport properties of the cluster.
- azure
Api StringVersion - The Azure API version of the resource.
- billing
Model String - Type of billing applied to the resource.
- cloud
Id String - Unique, immutable resource id.
- connectivity
Status String - Overall connectivity status for the cluster resource.
- id String
- The provider-assigned unique ID for this managed resource.
- isolated
Vm IsolatedAttestation Configuration Vm Attestation Configuration Response - Attestation configurations for isolated VM (e.g. TVM, CVM) of the cluster.
- last
Billing StringTimestamp - Most recent billing meter timestamp.
- last
Sync StringTimestamp - Most recent cluster sync timestamp.
- name String
- The name of the resource
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- provisioning
State String - Provisioning state.
- registration
Timestamp String - First cluster sync timestamp.
- reported
Properties ClusterReported Properties Response - Properties reported by cluster agent.
- resource
Provider StringObject Id - Object id of RP Service Principal
- service
Endpoint String - Region specific DataPath Endpoint of the cluster.
- status String
- Status of the cluster agent.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- trial
Days DoubleRemaining - Number of days remaining in the trial period.
- log
Collection LogProperties Collection Properties Response - Log Collection properties of the cluster.
- remote
Support RemoteProperties Support Properties Response - RemoteSupport properties of the cluster.
- azure
Api stringVersion - The Azure API version of the resource.
- billing
Model string - Type of billing applied to the resource.
- cloud
Id string - Unique, immutable resource id.
- connectivity
Status string - Overall connectivity status for the cluster resource.
- id string
- The provider-assigned unique ID for this managed resource.
- isolated
Vm IsolatedAttestation Configuration Vm Attestation Configuration Response - Attestation configurations for isolated VM (e.g. TVM, CVM) of the cluster.
- last
Billing stringTimestamp - Most recent billing meter timestamp.
- last
Sync stringTimestamp - Most recent cluster sync timestamp.
- name string
- The name of the resource
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- provisioning
State string - Provisioning state.
- registration
Timestamp string - First cluster sync timestamp.
- reported
Properties ClusterReported Properties Response - Properties reported by cluster agent.
- resource
Provider stringObject Id - Object id of RP Service Principal
- service
Endpoint string - Region specific DataPath Endpoint of the cluster.
- status string
- Status of the cluster agent.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- trial
Days numberRemaining - Number of days remaining in the trial period.
- log
Collection LogProperties Collection Properties Response - Log Collection properties of the cluster.
- remote
Support RemoteProperties Support Properties Response - RemoteSupport properties of the cluster.
- azure_
api_ strversion - The Azure API version of the resource.
- billing_
model str - Type of billing applied to the resource.
- cloud_
id str - Unique, immutable resource id.
- connectivity_
status str - Overall connectivity status for the cluster resource.
- id str
- The provider-assigned unique ID for this managed resource.
- isolated_
vm_ Isolatedattestation_ configuration Vm Attestation Configuration Response - Attestation configurations for isolated VM (e.g. TVM, CVM) of the cluster.
- last_
billing_ strtimestamp - Most recent billing meter timestamp.
- last_
sync_ strtimestamp - Most recent cluster sync timestamp.
- name str
- The name of the resource
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- provisioning_
state str - Provisioning state.
- registration_
timestamp str - First cluster sync timestamp.
- reported_
properties ClusterReported Properties Response - Properties reported by cluster agent.
- resource_
provider_ strobject_ id - Object id of RP Service Principal
- service_
endpoint str - Region specific DataPath Endpoint of the cluster.
- status str
- Status of the cluster agent.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- trial_
days_ floatremaining - Number of days remaining in the trial period.
- log_
collection_ Logproperties Collection Properties Response - Log Collection properties of the cluster.
- remote_
support_ Remoteproperties Support Properties Response - RemoteSupport properties of the cluster.
- azure
Api StringVersion - The Azure API version of the resource.
- billing
Model String - Type of billing applied to the resource.
- cloud
Id String - Unique, immutable resource id.
- connectivity
Status String - Overall connectivity status for the cluster resource.
- id String
- The provider-assigned unique ID for this managed resource.
- isolated
Vm Property MapAttestation Configuration - Attestation configurations for isolated VM (e.g. TVM, CVM) of the cluster.
- last
Billing StringTimestamp - Most recent billing meter timestamp.
- last
Sync StringTimestamp - Most recent cluster sync timestamp.
- name String
- The name of the resource
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- provisioning
State String - Provisioning state.
- registration
Timestamp String - First cluster sync timestamp.
- reported
Properties Property Map - Properties reported by cluster agent.
- resource
Provider StringObject Id - Object id of RP Service Principal
- service
Endpoint String - Region specific DataPath Endpoint of the cluster.
- status String
- Status of the cluster agent.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- trial
Days NumberRemaining - Number of days remaining in the trial period.
- log
Collection Property MapProperties - Log Collection properties of the cluster.
- remote
Support Property MapProperties - RemoteSupport properties of the cluster.
Supporting Types
ClusterDesiredProperties, ClusterDesiredPropertiesArgs
- Diagnostic
Level string | Pulumi.Azure Native. Azure Stack HCI. Diagnostic Level - Desired level of diagnostic data emitted by the cluster.
- Windows
Server string | Pulumi.Subscription Azure Native. Azure Stack HCI. Windows Server Subscription - Desired state of Windows Server Subscription.
- Diagnostic
Level string | DiagnosticLevel - Desired level of diagnostic data emitted by the cluster.
- Windows
Server string | WindowsSubscription Server Subscription - Desired state of Windows Server Subscription.
- diagnostic
Level String | DiagnosticLevel - Desired level of diagnostic data emitted by the cluster.
- windows
Server String | WindowsSubscription Server Subscription - Desired state of Windows Server Subscription.
- diagnostic
Level string | DiagnosticLevel - Desired level of diagnostic data emitted by the cluster.
- windows
Server string | WindowsSubscription Server Subscription - Desired state of Windows Server Subscription.
- diagnostic_
level str | DiagnosticLevel - Desired level of diagnostic data emitted by the cluster.
- windows_
server_ str | Windowssubscription Server Subscription - Desired state of Windows Server Subscription.
- diagnostic
Level String | "Off" | "Basic" | "Enhanced" - Desired level of diagnostic data emitted by the cluster.
- windows
Server String | "Disabled" | "Enabled"Subscription - Desired state of Windows Server Subscription.
ClusterDesiredPropertiesResponse, ClusterDesiredPropertiesResponseArgs
- Diagnostic
Level string - Desired level of diagnostic data emitted by the cluster.
- Windows
Server stringSubscription - Desired state of Windows Server Subscription.
- Diagnostic
Level string - Desired level of diagnostic data emitted by the cluster.
- Windows
Server stringSubscription - Desired state of Windows Server Subscription.
- diagnostic
Level String - Desired level of diagnostic data emitted by the cluster.
- windows
Server StringSubscription - Desired state of Windows Server Subscription.
- diagnostic
Level string - Desired level of diagnostic data emitted by the cluster.
- windows
Server stringSubscription - Desired state of Windows Server Subscription.
- diagnostic_
level str - Desired level of diagnostic data emitted by the cluster.
- windows_
server_ strsubscription - Desired state of Windows Server Subscription.
- diagnostic
Level String - Desired level of diagnostic data emitted by the cluster.
- windows
Server StringSubscription - Desired state of Windows Server Subscription.
ClusterNodeResponse, ClusterNodeResponseArgs
- Core
Count double - Number of physical cores on the cluster node.
- Ehc
Resource stringId - Edge Hardware Center Resource Id
- Id double
- Id of the node in the cluster.
- Last
Licensing stringTimestamp - Most recent licensing timestamp.
- Manufacturer string
- Manufacturer of the cluster node hardware.
- Memory
In doubleGi B - Total available memory on the cluster node (in GiB).
- Model string
- Model name of the cluster node hardware.
- Name string
- Name of the cluster node.
- Node
Type string - Type of the cluster node hardware.
- Oem
Activation string - OEM activation status of the node.
- Os
Display stringVersion - Display version of the operating system running on the cluster node.
- Os
Name string - Operating system running on the cluster node.
- Os
Version string - Version of the operating system running on the cluster node.
- Serial
Number string - Immutable id of the cluster node.
- Windows
Server stringSubscription - State of Windows Server Subscription.
- Core
Count float64 - Number of physical cores on the cluster node.
- Ehc
Resource stringId - Edge Hardware Center Resource Id
- Id float64
- Id of the node in the cluster.
- Last
Licensing stringTimestamp - Most recent licensing timestamp.
- Manufacturer string
- Manufacturer of the cluster node hardware.
- Memory
In float64Gi B - Total available memory on the cluster node (in GiB).
- Model string
- Model name of the cluster node hardware.
- Name string
- Name of the cluster node.
- Node
Type string - Type of the cluster node hardware.
- Oem
Activation string - OEM activation status of the node.
- Os
Display stringVersion - Display version of the operating system running on the cluster node.
- Os
Name string - Operating system running on the cluster node.
- Os
Version string - Version of the operating system running on the cluster node.
- Serial
Number string - Immutable id of the cluster node.
- Windows
Server stringSubscription - State of Windows Server Subscription.
- core
Count Double - Number of physical cores on the cluster node.
- ehc
Resource StringId - Edge Hardware Center Resource Id
- id Double
- Id of the node in the cluster.
- last
Licensing StringTimestamp - Most recent licensing timestamp.
- manufacturer String
- Manufacturer of the cluster node hardware.
- memory
In DoubleGi B - Total available memory on the cluster node (in GiB).
- model String
- Model name of the cluster node hardware.
- name String
- Name of the cluster node.
- node
Type String - Type of the cluster node hardware.
- oem
Activation String - OEM activation status of the node.
- os
Display StringVersion - Display version of the operating system running on the cluster node.
- os
Name String - Operating system running on the cluster node.
- os
Version String - Version of the operating system running on the cluster node.
- serial
Number String - Immutable id of the cluster node.
- windows
Server StringSubscription - State of Windows Server Subscription.
- core
Count number - Number of physical cores on the cluster node.
- ehc
Resource stringId - Edge Hardware Center Resource Id
- id number
- Id of the node in the cluster.
- last
Licensing stringTimestamp - Most recent licensing timestamp.
- manufacturer string
- Manufacturer of the cluster node hardware.
- memory
In numberGi B - Total available memory on the cluster node (in GiB).
- model string
- Model name of the cluster node hardware.
- name string
- Name of the cluster node.
- node
Type string - Type of the cluster node hardware.
- oem
Activation string - OEM activation status of the node.
- os
Display stringVersion - Display version of the operating system running on the cluster node.
- os
Name string - Operating system running on the cluster node.
- os
Version string - Version of the operating system running on the cluster node.
- serial
Number string - Immutable id of the cluster node.
- windows
Server stringSubscription - State of Windows Server Subscription.
- core_
count float - Number of physical cores on the cluster node.
- ehc_
resource_ strid - Edge Hardware Center Resource Id
- id float
- Id of the node in the cluster.
- last_
licensing_ strtimestamp - Most recent licensing timestamp.
- manufacturer str
- Manufacturer of the cluster node hardware.
- memory_
in_ floatgi_ b - Total available memory on the cluster node (in GiB).
- model str
- Model name of the cluster node hardware.
- name str
- Name of the cluster node.
- node_
type str - Type of the cluster node hardware.
- oem_
activation str - OEM activation status of the node.
- os_
display_ strversion - Display version of the operating system running on the cluster node.
- os_
name str - Operating system running on the cluster node.
- os_
version str - Version of the operating system running on the cluster node.
- serial_
number str - Immutable id of the cluster node.
- windows_
server_ strsubscription - State of Windows Server Subscription.
- core
Count Number - Number of physical cores on the cluster node.
- ehc
Resource StringId - Edge Hardware Center Resource Id
- id Number
- Id of the node in the cluster.
- last
Licensing StringTimestamp - Most recent licensing timestamp.
- manufacturer String
- Manufacturer of the cluster node hardware.
- memory
In NumberGi B - Total available memory on the cluster node (in GiB).
- model String
- Model name of the cluster node hardware.
- name String
- Name of the cluster node.
- node
Type String - Type of the cluster node hardware.
- oem
Activation String - OEM activation status of the node.
- os
Display StringVersion - Display version of the operating system running on the cluster node.
- os
Name String - Operating system running on the cluster node.
- os
Version String - Version of the operating system running on the cluster node.
- serial
Number String - Immutable id of the cluster node.
- windows
Server StringSubscription - State of Windows Server Subscription.
ClusterReportedPropertiesResponse, ClusterReportedPropertiesResponseArgs
- Cluster
Id string - Unique id generated by the on-prem cluster.
- Cluster
Name string - Name of the on-prem cluster connected to this resource.
- Cluster
Type string - The node type of all the nodes of the cluster.
- Cluster
Version string - Version of the cluster software.
- Imds
Attestation string - IMDS attestation status of the cluster.
- Last
Updated string - Last time the cluster reported the data.
- Manufacturer string
- The manufacturer of all the nodes of the cluster.
- Nodes
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Cluster Node Response> - List of nodes reported by the cluster.
- Oem
Activation string - OEM activation status of the cluster.
- Supported
Capabilities List<string> - Capabilities supported by the cluster.
- Diagnostic
Level string - Level of diagnostic data emitted by the cluster.
- Cluster
Id string - Unique id generated by the on-prem cluster.
- Cluster
Name string - Name of the on-prem cluster connected to this resource.
- Cluster
Type string - The node type of all the nodes of the cluster.
- Cluster
Version string - Version of the cluster software.
- Imds
Attestation string - IMDS attestation status of the cluster.
- Last
Updated string - Last time the cluster reported the data.
- Manufacturer string
- The manufacturer of all the nodes of the cluster.
- Nodes
[]Cluster
Node Response - List of nodes reported by the cluster.
- Oem
Activation string - OEM activation status of the cluster.
- Supported
Capabilities []string - Capabilities supported by the cluster.
- Diagnostic
Level string - Level of diagnostic data emitted by the cluster.
- cluster
Id String - Unique id generated by the on-prem cluster.
- cluster
Name String - Name of the on-prem cluster connected to this resource.
- cluster
Type String - The node type of all the nodes of the cluster.
- cluster
Version String - Version of the cluster software.
- imds
Attestation String - IMDS attestation status of the cluster.
- last
Updated String - Last time the cluster reported the data.
- manufacturer String
- The manufacturer of all the nodes of the cluster.
- nodes
List<Cluster
Node Response> - List of nodes reported by the cluster.
- oem
Activation String - OEM activation status of the cluster.
- supported
Capabilities List<String> - Capabilities supported by the cluster.
- diagnostic
Level String - Level of diagnostic data emitted by the cluster.
- cluster
Id string - Unique id generated by the on-prem cluster.
- cluster
Name string - Name of the on-prem cluster connected to this resource.
- cluster
Type string - The node type of all the nodes of the cluster.
- cluster
Version string - Version of the cluster software.
- imds
Attestation string - IMDS attestation status of the cluster.
- last
Updated string - Last time the cluster reported the data.
- manufacturer string
- The manufacturer of all the nodes of the cluster.
- nodes
Cluster
Node Response[] - List of nodes reported by the cluster.
- oem
Activation string - OEM activation status of the cluster.
- supported
Capabilities string[] - Capabilities supported by the cluster.
- diagnostic
Level string - Level of diagnostic data emitted by the cluster.
- cluster_
id str - Unique id generated by the on-prem cluster.
- cluster_
name str - Name of the on-prem cluster connected to this resource.
- cluster_
type str - The node type of all the nodes of the cluster.
- cluster_
version str - Version of the cluster software.
- imds_
attestation str - IMDS attestation status of the cluster.
- last_
updated str - Last time the cluster reported the data.
- manufacturer str
- The manufacturer of all the nodes of the cluster.
- nodes
Sequence[Cluster
Node Response] - List of nodes reported by the cluster.
- oem_
activation str - OEM activation status of the cluster.
- supported_
capabilities Sequence[str] - Capabilities supported by the cluster.
- diagnostic_
level str - Level of diagnostic data emitted by the cluster.
- cluster
Id String - Unique id generated by the on-prem cluster.
- cluster
Name String - Name of the on-prem cluster connected to this resource.
- cluster
Type String - The node type of all the nodes of the cluster.
- cluster
Version String - Version of the cluster software.
- imds
Attestation String - IMDS attestation status of the cluster.
- last
Updated String - Last time the cluster reported the data.
- manufacturer String
- The manufacturer of all the nodes of the cluster.
- nodes List<Property Map>
- List of nodes reported by the cluster.
- oem
Activation String - OEM activation status of the cluster.
- supported
Capabilities List<String> - Capabilities supported by the cluster.
- diagnostic
Level String - Level of diagnostic data emitted by the cluster.
DiagnosticLevel, DiagnosticLevelArgs
- Off
- Off
- Basic
- Basic
- Enhanced
- Enhanced
- Diagnostic
Level Off - Off
- Diagnostic
Level Basic - Basic
- Diagnostic
Level Enhanced - Enhanced
- Off
- Off
- Basic
- Basic
- Enhanced
- Enhanced
- Off
- Off
- Basic
- Basic
- Enhanced
- Enhanced
- OFF
- Off
- BASIC
- Basic
- ENHANCED
- Enhanced
- "Off"
- Off
- "Basic"
- Basic
- "Enhanced"
- Enhanced
IsolatedVmAttestationConfigurationResponse, IsolatedVmAttestationConfigurationResponseArgs
- Attestation
Resource stringId - Fully qualified Azure resource id of the Microsoft Azure attestation resource associated with this cluster.
- Attestation
Service stringEndpoint - Region specific endpoint for Microsoft Azure Attestation service for the cluster
- Relying
Party stringService Endpoint - Region specific endpoint for relying party service.
- Attestation
Resource stringId - Fully qualified Azure resource id of the Microsoft Azure attestation resource associated with this cluster.
- Attestation
Service stringEndpoint - Region specific endpoint for Microsoft Azure Attestation service for the cluster
- Relying
Party stringService Endpoint - Region specific endpoint for relying party service.
- attestation
Resource StringId - Fully qualified Azure resource id of the Microsoft Azure attestation resource associated with this cluster.
- attestation
Service StringEndpoint - Region specific endpoint for Microsoft Azure Attestation service for the cluster
- relying
Party StringService Endpoint - Region specific endpoint for relying party service.
- attestation
Resource stringId - Fully qualified Azure resource id of the Microsoft Azure attestation resource associated with this cluster.
- attestation
Service stringEndpoint - Region specific endpoint for Microsoft Azure Attestation service for the cluster
- relying
Party stringService Endpoint - Region specific endpoint for relying party service.
- attestation_
resource_ strid - Fully qualified Azure resource id of the Microsoft Azure attestation resource associated with this cluster.
- attestation_
service_ strendpoint - Region specific endpoint for Microsoft Azure Attestation service for the cluster
- relying_
party_ strservice_ endpoint - Region specific endpoint for relying party service.
- attestation
Resource StringId - Fully qualified Azure resource id of the Microsoft Azure attestation resource associated with this cluster.
- attestation
Service StringEndpoint - Region specific endpoint for Microsoft Azure Attestation service for the cluster
- relying
Party StringService Endpoint - Region specific endpoint for relying party service.
LogCollectionErrorResponse, LogCollectionErrorResponseArgs
- Error
Code string - Error Code of the log collection
- Error
Message string - Error Message of the log collection
- Error
Code string - Error Code of the log collection
- Error
Message string - Error Message of the log collection
- error
Code String - Error Code of the log collection
- error
Message String - Error Message of the log collection
- error
Code string - Error Code of the log collection
- error
Message string - Error Message of the log collection
- error_
code str - Error Code of the log collection
- error_
message str - Error Message of the log collection
- error
Code String - Error Code of the log collection
- error
Message String - Error Message of the log collection
LogCollectionPropertiesResponse, LogCollectionPropertiesResponseArgs
- From
Date string - From DateTimeStamp from when logs need to be connected
- Last
Log stringGenerated - Recent DateTimeStamp where logs are successfully generated
- Log
Collection List<Pulumi.Session Details Azure Native. Azure Stack HCI. Inputs. Log Collection Session Response> - To
Date string - To DateTimeStamp till when logs need to be connected
- From
Date string - From DateTimeStamp from when logs need to be connected
- Last
Log stringGenerated - Recent DateTimeStamp where logs are successfully generated
- Log
Collection []LogSession Details Collection Session Response - To
Date string - To DateTimeStamp till when logs need to be connected
- from
Date String - From DateTimeStamp from when logs need to be connected
- last
Log StringGenerated - Recent DateTimeStamp where logs are successfully generated
- log
Collection List<LogSession Details Collection Session Response> - to
Date String - To DateTimeStamp till when logs need to be connected
- from
Date string - From DateTimeStamp from when logs need to be connected
- last
Log stringGenerated - Recent DateTimeStamp where logs are successfully generated
- log
Collection LogSession Details Collection Session Response[] - to
Date string - To DateTimeStamp till when logs need to be connected
- from_
date str - From DateTimeStamp from when logs need to be connected
- last_
log_ strgenerated - Recent DateTimeStamp where logs are successfully generated
- log_
collection_ Sequence[Logsession_ details Collection Session Response] - to_
date str - To DateTimeStamp till when logs need to be connected
- from
Date String - From DateTimeStamp from when logs need to be connected
- last
Log StringGenerated - Recent DateTimeStamp where logs are successfully generated
- log
Collection List<Property Map>Session Details - to
Date String - To DateTimeStamp till when logs need to be connected
LogCollectionSessionResponse, LogCollectionSessionResponseArgs
- Correlation
Id string - CorrelationId of the log collection
- End
Time stringCollected - End Time of the logs when it was collected
- Log
Collection Pulumi.Error Azure Native. Azure Stack HCI. Inputs. Log Collection Error Response - Log Collection Error details of the cluster.
- Log
Collection stringJob Type - LogCollection job type
- Log
Collection stringStatus - LogCollection status
- Log
End stringTime - End Time of the logs when it was collected
- Log
Size double - Size of the logs collected
- Log
Start stringTime - Start Time of the logs when it was collected
- Time
Collected string - Duration of logs collected
- Correlation
Id string - CorrelationId of the log collection
- End
Time stringCollected - End Time of the logs when it was collected
- Log
Collection LogError Collection Error Response - Log Collection Error details of the cluster.
- Log
Collection stringJob Type - LogCollection job type
- Log
Collection stringStatus - LogCollection status
- Log
End stringTime - End Time of the logs when it was collected
- Log
Size float64 - Size of the logs collected
- Log
Start stringTime - Start Time of the logs when it was collected
- Time
Collected string - Duration of logs collected
- correlation
Id String - CorrelationId of the log collection
- end
Time StringCollected - End Time of the logs when it was collected
- log
Collection LogError Collection Error Response - Log Collection Error details of the cluster.
- log
Collection StringJob Type - LogCollection job type
- log
Collection StringStatus - LogCollection status
- log
End StringTime - End Time of the logs when it was collected
- log
Size Double - Size of the logs collected
- log
Start StringTime - Start Time of the logs when it was collected
- time
Collected String - Duration of logs collected
- correlation
Id string - CorrelationId of the log collection
- end
Time stringCollected - End Time of the logs when it was collected
- log
Collection LogError Collection Error Response - Log Collection Error details of the cluster.
- log
Collection stringJob Type - LogCollection job type
- log
Collection stringStatus - LogCollection status
- log
End stringTime - End Time of the logs when it was collected
- log
Size number - Size of the logs collected
- log
Start stringTime - Start Time of the logs when it was collected
- time
Collected string - Duration of logs collected
- correlation_
id str - CorrelationId of the log collection
- end_
time_ strcollected - End Time of the logs when it was collected
- log_
collection_ Logerror Collection Error Response - Log Collection Error details of the cluster.
- log_
collection_ strjob_ type - LogCollection job type
- log_
collection_ strstatus - LogCollection status
- log_
end_ strtime - End Time of the logs when it was collected
- log_
size float - Size of the logs collected
- log_
start_ strtime - Start Time of the logs when it was collected
- time_
collected str - Duration of logs collected
- correlation
Id String - CorrelationId of the log collection
- end
Time StringCollected - End Time of the logs when it was collected
- log
Collection Property MapError - Log Collection Error details of the cluster.
- log
Collection StringJob Type - LogCollection job type
- log
Collection StringStatus - LogCollection status
- log
End StringTime - End Time of the logs when it was collected
- log
Size Number - Size of the logs collected
- log
Start StringTime - Start Time of the logs when it was collected
- time
Collected String - Duration of logs collected
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
PerNodeRemoteSupportSessionResponse, PerNodeRemoteSupportSessionResponseArgs
- Access
Level string - Remote Support Access Level
- Duration double
- Duration of Remote Support Enablement
- Node
Name string - Name of the node
- Session
End stringTime - Remote Support Session EndTime on the Node
- Session
Start stringTime - Remote Support Session StartTime on the Node
- Access
Level string - Remote Support Access Level
- Duration float64
- Duration of Remote Support Enablement
- Node
Name string - Name of the node
- Session
End stringTime - Remote Support Session EndTime on the Node
- Session
Start stringTime - Remote Support Session StartTime on the Node
- access
Level String - Remote Support Access Level
- duration Double
- Duration of Remote Support Enablement
- node
Name String - Name of the node
- session
End StringTime - Remote Support Session EndTime on the Node
- session
Start StringTime - Remote Support Session StartTime on the Node
- access
Level string - Remote Support Access Level
- duration number
- Duration of Remote Support Enablement
- node
Name string - Name of the node
- session
End stringTime - Remote Support Session EndTime on the Node
- session
Start stringTime - Remote Support Session StartTime on the Node
- access_
level str - Remote Support Access Level
- duration float
- Duration of Remote Support Enablement
- node_
name str - Name of the node
- session_
end_ strtime - Remote Support Session EndTime on the Node
- session_
start_ strtime - Remote Support Session StartTime on the Node
- access
Level String - Remote Support Access Level
- duration Number
- Duration of Remote Support Enablement
- node
Name String - Name of the node
- session
End StringTime - Remote Support Session EndTime on the Node
- session
Start StringTime - Remote Support Session StartTime on the Node
RemoteSupportNodeSettingsResponse, RemoteSupportNodeSettingsResponseArgs
- Arc
Resource stringId - Arc ResourceId of the Node
- Connection
Error stringMessage - Remote Support Access Connection Error Message on the Node
- Connection
Status string - Remote Support Access Connection Status on the Node
- Created
At string - Remote Support Enablement Request Created TimeStamp on the Node
- State string
- Remote Support Access Connection State on the Node
- Transcript
Location string - Remote Support Transcript location on the node
- Updated
At string - Remote Support Enablement Request Updated TimeStamp on the Node
- Arc
Resource stringId - Arc ResourceId of the Node
- Connection
Error stringMessage - Remote Support Access Connection Error Message on the Node
- Connection
Status string - Remote Support Access Connection Status on the Node
- Created
At string - Remote Support Enablement Request Created TimeStamp on the Node
- State string
- Remote Support Access Connection State on the Node
- Transcript
Location string - Remote Support Transcript location on the node
- Updated
At string - Remote Support Enablement Request Updated TimeStamp on the Node
- arc
Resource StringId - Arc ResourceId of the Node
- connection
Error StringMessage - Remote Support Access Connection Error Message on the Node
- connection
Status String - Remote Support Access Connection Status on the Node
- created
At String - Remote Support Enablement Request Created TimeStamp on the Node
- state String
- Remote Support Access Connection State on the Node
- transcript
Location String - Remote Support Transcript location on the node
- updated
At String - Remote Support Enablement Request Updated TimeStamp on the Node
- arc
Resource stringId - Arc ResourceId of the Node
- connection
Error stringMessage - Remote Support Access Connection Error Message on the Node
- connection
Status string - Remote Support Access Connection Status on the Node
- created
At string - Remote Support Enablement Request Created TimeStamp on the Node
- state string
- Remote Support Access Connection State on the Node
- transcript
Location string - Remote Support Transcript location on the node
- updated
At string - Remote Support Enablement Request Updated TimeStamp on the Node
- arc_
resource_ strid - Arc ResourceId of the Node
- connection_
error_ strmessage - Remote Support Access Connection Error Message on the Node
- connection_
status str - Remote Support Access Connection Status on the Node
- created_
at str - Remote Support Enablement Request Created TimeStamp on the Node
- state str
- Remote Support Access Connection State on the Node
- transcript_
location str - Remote Support Transcript location on the node
- updated_
at str - Remote Support Enablement Request Updated TimeStamp on the Node
- arc
Resource StringId - Arc ResourceId of the Node
- connection
Error StringMessage - Remote Support Access Connection Error Message on the Node
- connection
Status String - Remote Support Access Connection Status on the Node
- created
At String - Remote Support Enablement Request Created TimeStamp on the Node
- state String
- Remote Support Access Connection State on the Node
- transcript
Location String - Remote Support Transcript location on the node
- updated
At String - Remote Support Enablement Request Updated TimeStamp on the Node
RemoteSupportPropertiesResponse, RemoteSupportPropertiesResponseArgs
- Access
Level string - Remote Support Access Level
- Expiration
Time stringStamp - Expiration DateTimeStamp when Remote Support Access will be expired
- Remote
Support List<Pulumi.Node Settings Azure Native. Azure Stack HCI. Inputs. Remote Support Node Settings Response> - Remote
Support List<Pulumi.Session Details Azure Native. Azure Stack HCI. Inputs. Per Node Remote Support Session Response> - Remote
Support stringType - Remote Support Type for cluster
- Access
Level string - Remote Support Access Level
- Expiration
Time stringStamp - Expiration DateTimeStamp when Remote Support Access will be expired
- Remote
Support []RemoteNode Settings Support Node Settings Response - Remote
Support []PerSession Details Node Remote Support Session Response - Remote
Support stringType - Remote Support Type for cluster
- access
Level String - Remote Support Access Level
- expiration
Time StringStamp - Expiration DateTimeStamp when Remote Support Access will be expired
- remote
Support List<RemoteNode Settings Support Node Settings Response> - remote
Support List<PerSession Details Node Remote Support Session Response> - remote
Support StringType - Remote Support Type for cluster
- access
Level string - Remote Support Access Level
- expiration
Time stringStamp - Expiration DateTimeStamp when Remote Support Access will be expired
- remote
Support RemoteNode Settings Support Node Settings Response[] - remote
Support PerSession Details Node Remote Support Session Response[] - remote
Support stringType - Remote Support Type for cluster
- access_
level str - Remote Support Access Level
- expiration_
time_ strstamp - Expiration DateTimeStamp when Remote Support Access will be expired
- remote_
support_ Sequence[Remotenode_ settings Support Node Settings Response] - remote_
support_ Sequence[Persession_ details Node Remote Support Session Response] - remote_
support_ strtype - Remote Support Type for cluster
- access
Level String - Remote Support Access Level
- expiration
Time StringStamp - Expiration DateTimeStamp when Remote Support Access will be expired
- remote
Support List<Property Map>Node Settings - remote
Support List<Property Map>Session Details - remote
Support StringType - Remote Support Type for cluster
SoftwareAssuranceIntent, SoftwareAssuranceIntentArgs
- Enable
- Enable
- Disable
- Disable
- Software
Assurance Intent Enable - Enable
- Software
Assurance Intent Disable - Disable
- Enable
- Enable
- Disable
- Disable
- Enable
- Enable
- Disable
- Disable
- ENABLE
- Enable
- DISABLE
- Disable
- "Enable"
- Enable
- "Disable"
- Disable
SoftwareAssuranceProperties, SoftwareAssurancePropertiesArgs
- Software
Assurance string | Pulumi.Intent Azure Native. Azure Stack HCI. Software Assurance Intent - Customer Intent for Software Assurance Benefit.
- Software
Assurance string | SoftwareIntent Assurance Intent - Customer Intent for Software Assurance Benefit.
- software
Assurance String | SoftwareIntent Assurance Intent - Customer Intent for Software Assurance Benefit.
- software
Assurance string | SoftwareIntent Assurance Intent - Customer Intent for Software Assurance Benefit.
- software_
assurance_ str | Softwareintent Assurance Intent - Customer Intent for Software Assurance Benefit.
- software
Assurance String | "Enable" | "Disable"Intent - Customer Intent for Software Assurance Benefit.
SoftwareAssurancePropertiesResponse, SoftwareAssurancePropertiesResponseArgs
- Last
Updated string - TimeStamp denoting the latest SA benefit applicability is validated.
- Software
Assurance stringStatus - Status of the Software Assurance for the cluster.
- Software
Assurance stringIntent - Customer Intent for Software Assurance Benefit.
- Last
Updated string - TimeStamp denoting the latest SA benefit applicability is validated.
- Software
Assurance stringStatus - Status of the Software Assurance for the cluster.
- Software
Assurance stringIntent - Customer Intent for Software Assurance Benefit.
- last
Updated String - TimeStamp denoting the latest SA benefit applicability is validated.
- software
Assurance StringStatus - Status of the Software Assurance for the cluster.
- software
Assurance StringIntent - Customer Intent for Software Assurance Benefit.
- last
Updated string - TimeStamp denoting the latest SA benefit applicability is validated.
- software
Assurance stringStatus - Status of the Software Assurance for the cluster.
- software
Assurance stringIntent - Customer Intent for Software Assurance Benefit.
- last_
updated str - TimeStamp denoting the latest SA benefit applicability is validated.
- software_
assurance_ strstatus - Status of the Software Assurance for the cluster.
- software_
assurance_ strintent - Customer Intent for Software Assurance Benefit.
- last
Updated String - TimeStamp denoting the latest SA benefit applicability is validated.
- software
Assurance StringStatus - Status of the Software Assurance for the cluster.
- software
Assurance StringIntent - Customer Intent for Software Assurance Benefit.
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.
WindowsServerSubscription, WindowsServerSubscriptionArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Windows
Server Subscription Disabled - Disabled
- Windows
Server Subscription Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurestackhci:Cluster myCluster /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0