1. Packages
  2. Azure Native v2
  3. API Docs
  4. azurestackhci
  5. UpdateRun
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.azurestackhci.UpdateRun

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Details of an Update run Azure REST API version: 2023-03-01.

Other available API versions: 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview, 2023-11-01-preview, 2024-01-01, 2024-02-15-preview, 2024-04-01, 2024-09-01-preview, 2024-12-01-preview.

Example Usage

Get Update runs under cluster resource

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

return await Deployment.RunAsync(() => 
{
    var updateRun = new AzureNative.AzureStackHCI.UpdateRun("updateRun", new()
    {
        ClusterName = "testcluster",
        Description = "Update Azure Stack.",
        EndTimeUtc = "2022-04-06T13:58:42.969006+00:00",
        ErrorMessage = "",
        LastUpdatedTimeUtc = "2022-04-06T13:58:42.969006+00:00",
        Name = "Unnamed step",
        ResourceGroupName = "testrg",
        StartTimeUtc = "2022-04-06T01:36:33.3876751+00:00",
        Status = "Success",
        Steps = new[]
        {
            new AzureNative.AzureStackHCI.Inputs.StepArgs
            {
                Description = "Prepare for SSU update",
                EndTimeUtc = "2022-04-06T01:37:16.8728314+00:00",
                ErrorMessage = "",
                LastUpdatedTimeUtc = "2022-04-06T01:37:16.8728314+00:00",
                Name = "PreUpdate Cloud",
                StartTimeUtc = "2022-04-06T01:36:33.3876751+00:00",
                Status = "Success",
                Steps = new() { },
            },
        },
        UpdateName = "Microsoft4.2203.2.32",
        UpdateRunName = "23b779ba-0d52-4a80-8571-45ca74664ec3",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azurestackhci.NewUpdateRun(ctx, "updateRun", &azurestackhci.UpdateRunArgs{
			ClusterName:        pulumi.String("testcluster"),
			Description:        pulumi.String("Update Azure Stack."),
			EndTimeUtc:         pulumi.String("2022-04-06T13:58:42.969006+00:00"),
			ErrorMessage:       pulumi.String(""),
			LastUpdatedTimeUtc: pulumi.String("2022-04-06T13:58:42.969006+00:00"),
			Name:               pulumi.String("Unnamed step"),
			ResourceGroupName:  pulumi.String("testrg"),
			StartTimeUtc:       pulumi.String("2022-04-06T01:36:33.3876751+00:00"),
			Status:             pulumi.String("Success"),
			Steps: azurestackhci.StepArray{
				&azurestackhci.StepArgs{
					Description:        pulumi.String("Prepare for SSU update"),
					EndTimeUtc:         pulumi.String("2022-04-06T01:37:16.8728314+00:00"),
					ErrorMessage:       pulumi.String(""),
					LastUpdatedTimeUtc: pulumi.String("2022-04-06T01:37:16.8728314+00:00"),
					Name:               pulumi.String("PreUpdate Cloud"),
					StartTimeUtc:       pulumi.String("2022-04-06T01:36:33.3876751+00:00"),
					Status:             pulumi.String("Success"),
					Steps:              azurestackhci.StepArray{},
				},
			},
			UpdateName:    pulumi.String("Microsoft4.2203.2.32"),
			UpdateRunName: pulumi.String("23b779ba-0d52-4a80-8571-45ca74664ec3"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.azurestackhci.UpdateRun;
import com.pulumi.azurenative.azurestackhci.UpdateRunArgs;
import com.pulumi.azurenative.azurestackhci.inputs.StepArgs;
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 updateRun = new UpdateRun("updateRun", UpdateRunArgs.builder()
            .clusterName("testcluster")
            .description("Update Azure Stack.")
            .endTimeUtc("2022-04-06T13:58:42.969006+00:00")
            .errorMessage("")
            .lastUpdatedTimeUtc("2022-04-06T13:58:42.969006+00:00")
            .name("Unnamed step")
            .resourceGroupName("testrg")
            .startTimeUtc("2022-04-06T01:36:33.3876751+00:00")
            .status("Success")
            .steps(StepArgs.builder()
                .description("Prepare for SSU update")
                .endTimeUtc("2022-04-06T01:37:16.8728314+00:00")
                .errorMessage("")
                .lastUpdatedTimeUtc("2022-04-06T01:37:16.8728314+00:00")
                .name("PreUpdate Cloud")
                .startTimeUtc("2022-04-06T01:36:33.3876751+00:00")
                .status("Success")
                .steps()
                .build())
            .updateName("Microsoft4.2203.2.32")
            .updateRunName("23b779ba-0d52-4a80-8571-45ca74664ec3")
            .build());

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

const updateRun = new azure_native.azurestackhci.UpdateRun("updateRun", {
    clusterName: "testcluster",
    description: "Update Azure Stack.",
    endTimeUtc: "2022-04-06T13:58:42.969006+00:00",
    errorMessage: "",
    lastUpdatedTimeUtc: "2022-04-06T13:58:42.969006+00:00",
    name: "Unnamed step",
    resourceGroupName: "testrg",
    startTimeUtc: "2022-04-06T01:36:33.3876751+00:00",
    status: "Success",
    steps: [{
        description: "Prepare for SSU update",
        endTimeUtc: "2022-04-06T01:37:16.8728314+00:00",
        errorMessage: "",
        lastUpdatedTimeUtc: "2022-04-06T01:37:16.8728314+00:00",
        name: "PreUpdate Cloud",
        startTimeUtc: "2022-04-06T01:36:33.3876751+00:00",
        status: "Success",
        steps: [],
    }],
    updateName: "Microsoft4.2203.2.32",
    updateRunName: "23b779ba-0d52-4a80-8571-45ca74664ec3",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

update_run = azure_native.azurestackhci.UpdateRun("updateRun",
    cluster_name="testcluster",
    description="Update Azure Stack.",
    end_time_utc="2022-04-06T13:58:42.969006+00:00",
    error_message="",
    last_updated_time_utc="2022-04-06T13:58:42.969006+00:00",
    name="Unnamed step",
    resource_group_name="testrg",
    start_time_utc="2022-04-06T01:36:33.3876751+00:00",
    status="Success",
    steps=[{
        "description": "Prepare for SSU update",
        "end_time_utc": "2022-04-06T01:37:16.8728314+00:00",
        "error_message": "",
        "last_updated_time_utc": "2022-04-06T01:37:16.8728314+00:00",
        "name": "PreUpdate Cloud",
        "start_time_utc": "2022-04-06T01:36:33.3876751+00:00",
        "status": "Success",
        "steps": [],
    }],
    update_name="Microsoft4.2203.2.32",
    update_run_name="23b779ba-0d52-4a80-8571-45ca74664ec3")
Copy
resources:
  updateRun:
    type: azure-native:azurestackhci:UpdateRun
    properties:
      clusterName: testcluster
      description: Update Azure Stack.
      endTimeUtc: 2022-04-06T13:58:42.969006+00:00
      errorMessage: ""
      lastUpdatedTimeUtc: 2022-04-06T13:58:42.969006+00:00
      name: Unnamed step
      resourceGroupName: testrg
      startTimeUtc: 2022-04-06T01:36:33.3876751+00:00
      status: Success
      steps:
        - description: Prepare for SSU update
          endTimeUtc: 2022-04-06T01:37:16.8728314+00:00
          errorMessage: ""
          lastUpdatedTimeUtc: 2022-04-06T01:37:16.8728314+00:00
          name: PreUpdate Cloud
          startTimeUtc: 2022-04-06T01:36:33.3876751+00:00
          status: Success
          steps: []
      updateName: Microsoft4.2203.2.32
      updateRunName: 23b779ba-0d52-4a80-8571-45ca74664ec3
Copy

Create UpdateRun Resource

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

Constructor syntax

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

@overload
def UpdateRun(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              cluster_name: Optional[str] = None,
              update_name: Optional[str] = None,
              resource_group_name: Optional[str] = None,
              name: Optional[str] = None,
              start_time_utc: Optional[str] = None,
              last_updated_time: Optional[str] = None,
              last_updated_time_utc: Optional[str] = None,
              location: Optional[str] = None,
              end_time_utc: Optional[str] = None,
              duration: Optional[str] = None,
              error_message: Optional[str] = None,
              state: Optional[Union[str, UpdateRunPropertiesState]] = None,
              status: Optional[str] = None,
              steps: Optional[Sequence[StepArgs]] = None,
              time_started: Optional[str] = None,
              description: Optional[str] = None,
              update_run_name: Optional[str] = None)
func NewUpdateRun(ctx *Context, name string, args UpdateRunArgs, opts ...ResourceOption) (*UpdateRun, error)
public UpdateRun(string name, UpdateRunArgs args, CustomResourceOptions? opts = null)
public UpdateRun(String name, UpdateRunArgs args)
public UpdateRun(String name, UpdateRunArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:UpdateRun
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. UpdateRunArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. UpdateRunArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. UpdateRunArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. UpdateRunArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. UpdateRunArgs
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 updateRunResource = new AzureNative.Azurestackhci.UpdateRun("updateRunResource", new()
{
    ClusterName = "string",
    UpdateName = "string",
    ResourceGroupName = "string",
    Name = "string",
    StartTimeUtc = "string",
    LastUpdatedTime = "string",
    LastUpdatedTimeUtc = "string",
    Location = "string",
    EndTimeUtc = "string",
    Duration = "string",
    ErrorMessage = "string",
    State = "string",
    Status = "string",
    Steps = new[]
    {
        
        {
            { "description", "string" },
            { "endTimeUtc", "string" },
            { "errorMessage", "string" },
            { "lastUpdatedTimeUtc", "string" },
            { "name", "string" },
            { "startTimeUtc", "string" },
            { "status", "string" },
            { "steps", new[]
            {
                step,
            } },
        },
    },
    TimeStarted = "string",
    Description = "string",
    UpdateRunName = "string",
});
Copy
example, err := azurestackhci.NewUpdateRun(ctx, "updateRunResource", &azurestackhci.UpdateRunArgs{
	ClusterName:        "string",
	UpdateName:         "string",
	ResourceGroupName:  "string",
	Name:               "string",
	StartTimeUtc:       "string",
	LastUpdatedTime:    "string",
	LastUpdatedTimeUtc: "string",
	Location:           "string",
	EndTimeUtc:         "string",
	Duration:           "string",
	ErrorMessage:       "string",
	State:              "string",
	Status:             "string",
	Steps: []map[string]interface{}{
		map[string]interface{}{
			"description":        "string",
			"endTimeUtc":         "string",
			"errorMessage":       "string",
			"lastUpdatedTimeUtc": "string",
			"name":               "string",
			"startTimeUtc":       "string",
			"status":             "string",
			"steps": []interface{}{
				step,
			},
		},
	},
	TimeStarted:   "string",
	Description:   "string",
	UpdateRunName: "string",
})
Copy
var updateRunResource = new UpdateRun("updateRunResource", UpdateRunArgs.builder()
    .clusterName("string")
    .updateName("string")
    .resourceGroupName("string")
    .name("string")
    .startTimeUtc("string")
    .lastUpdatedTime("string")
    .lastUpdatedTimeUtc("string")
    .location("string")
    .endTimeUtc("string")
    .duration("string")
    .errorMessage("string")
    .state("string")
    .status("string")
    .steps(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .timeStarted("string")
    .description("string")
    .updateRunName("string")
    .build());
Copy
update_run_resource = azure_native.azurestackhci.UpdateRun("updateRunResource",
    cluster_name=string,
    update_name=string,
    resource_group_name=string,
    name=string,
    start_time_utc=string,
    last_updated_time=string,
    last_updated_time_utc=string,
    location=string,
    end_time_utc=string,
    duration=string,
    error_message=string,
    state=string,
    status=string,
    steps=[{
        description: string,
        endTimeUtc: string,
        errorMessage: string,
        lastUpdatedTimeUtc: string,
        name: string,
        startTimeUtc: string,
        status: string,
        steps: [step],
    }],
    time_started=string,
    description=string,
    update_run_name=string)
Copy
const updateRunResource = new azure_native.azurestackhci.UpdateRun("updateRunResource", {
    clusterName: "string",
    updateName: "string",
    resourceGroupName: "string",
    name: "string",
    startTimeUtc: "string",
    lastUpdatedTime: "string",
    lastUpdatedTimeUtc: "string",
    location: "string",
    endTimeUtc: "string",
    duration: "string",
    errorMessage: "string",
    state: "string",
    status: "string",
    steps: [{
        description: "string",
        endTimeUtc: "string",
        errorMessage: "string",
        lastUpdatedTimeUtc: "string",
        name: "string",
        startTimeUtc: "string",
        status: "string",
        steps: [step],
    }],
    timeStarted: "string",
    description: "string",
    updateRunName: "string",
});
Copy
type: azure-native:azurestackhci:UpdateRun
properties:
    clusterName: string
    description: string
    duration: string
    endTimeUtc: string
    errorMessage: string
    lastUpdatedTime: string
    lastUpdatedTimeUtc: string
    location: string
    name: string
    resourceGroupName: string
    startTimeUtc: string
    state: string
    status: string
    steps:
        - description: string
          endTimeUtc: string
          errorMessage: string
          lastUpdatedTimeUtc: string
          name: string
          startTimeUtc: string
          status: string
          steps:
            - ${step}
    timeStarted: string
    updateName: string
    updateRunName: string
Copy

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

ClusterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the cluster.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
UpdateName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Update
Description string
More detailed description of the step.
Duration string
Duration of the update run.
EndTimeUtc string
When the step reached a terminal state.
ErrorMessage string
Error message, specified if the step is in a failed state.
LastUpdatedTime string
Timestamp of the most recently completed step in the update run.
LastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Name string
Name of the step.
StartTimeUtc string
When the step started, or empty if it has not started executing.
State string | Pulumi.AzureNative.AzureStackHCI.UpdateRunPropertiesState
State of the update run.
Status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
Steps List<Pulumi.AzureNative.AzureStackHCI.Inputs.Step>
Recursive model for child steps of this step.
TimeStarted string
Timestamp of the update run was started.
UpdateRunName Changes to this property will trigger replacement. string
The name of the Update Run
ClusterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the cluster.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
UpdateName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Update
Description string
More detailed description of the step.
Duration string
Duration of the update run.
EndTimeUtc string
When the step reached a terminal state.
ErrorMessage string
Error message, specified if the step is in a failed state.
LastUpdatedTime string
Timestamp of the most recently completed step in the update run.
LastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Name string
Name of the step.
StartTimeUtc string
When the step started, or empty if it has not started executing.
State string | UpdateRunPropertiesState
State of the update run.
Status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
Steps []StepArgs
Recursive model for child steps of this step.
TimeStarted string
Timestamp of the update run was started.
UpdateRunName Changes to this property will trigger replacement. string
The name of the Update Run
clusterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
updateName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Update
description String
More detailed description of the step.
duration String
Duration of the update run.
endTimeUtc String
When the step reached a terminal state.
errorMessage String
Error message, specified if the step is in a failed state.
lastUpdatedTime String
Timestamp of the most recently completed step in the update run.
lastUpdatedTimeUtc String
Completion time of this step or the last completed sub-step.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
name String
Name of the step.
startTimeUtc String
When the step started, or empty if it has not started executing.
state String | UpdateRunPropertiesState
State of the update run.
status String
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps List<Step>
Recursive model for child steps of this step.
timeStarted String
Timestamp of the update run was started.
updateRunName Changes to this property will trigger replacement. String
The name of the Update Run
clusterName
This property is required.
Changes to this property will trigger replacement.
string
The name of the cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
updateName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Update
description string
More detailed description of the step.
duration string
Duration of the update run.
endTimeUtc string
When the step reached a terminal state.
errorMessage string
Error message, specified if the step is in a failed state.
lastUpdatedTime string
Timestamp of the most recently completed step in the update run.
lastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
name string
Name of the step.
startTimeUtc string
When the step started, or empty if it has not started executing.
state string | UpdateRunPropertiesState
State of the update run.
status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps Step[]
Recursive model for child steps of this step.
timeStarted string
Timestamp of the update run was started.
updateRunName Changes to this property will trigger replacement. string
The name of the Update Run
cluster_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the cluster.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
update_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Update
description str
More detailed description of the step.
duration str
Duration of the update run.
end_time_utc str
When the step reached a terminal state.
error_message str
Error message, specified if the step is in a failed state.
last_updated_time str
Timestamp of the most recently completed step in the update run.
last_updated_time_utc str
Completion time of this step or the last completed sub-step.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
name str
Name of the step.
start_time_utc str
When the step started, or empty if it has not started executing.
state str | UpdateRunPropertiesState
State of the update run.
status str
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps Sequence[StepArgs]
Recursive model for child steps of this step.
time_started str
Timestamp of the update run was started.
update_run_name Changes to this property will trigger replacement. str
The name of the Update Run
clusterName
This property is required.
Changes to this property will trigger replacement.
String
The name of the cluster.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
updateName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Update
description String
More detailed description of the step.
duration String
Duration of the update run.
endTimeUtc String
When the step reached a terminal state.
errorMessage String
Error message, specified if the step is in a failed state.
lastUpdatedTime String
Timestamp of the most recently completed step in the update run.
lastUpdatedTimeUtc String
Completion time of this step or the last completed sub-step.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
name String
Name of the step.
startTimeUtc String
When the step started, or empty if it has not started executing.
state String | "Unknown" | "Succeeded" | "InProgress" | "Failed"
State of the update run.
status String
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps List<Property Map>
Recursive model for child steps of this step.
timeStarted String
Timestamp of the update run was started.
updateRunName Changes to this property will trigger replacement. String
The name of the Update Run

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Provisioning state of the UpdateRuns proxy resource.
SystemData Pulumi.AzureNative.AzureStackHCI.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Provisioning state of the UpdateRuns proxy resource.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Provisioning state of the UpdateRuns proxy resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
provisioningState string
Provisioning state of the UpdateRuns proxy resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
provisioning_state str
Provisioning state of the UpdateRuns proxy resource.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Provisioning state of the UpdateRuns proxy resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

Step
, StepArgs

Description string
More detailed description of the step.
EndTimeUtc string
When the step reached a terminal state.
ErrorMessage string
Error message, specified if the step is in a failed state.
LastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
Name string
Name of the step.
StartTimeUtc string
When the step started, or empty if it has not started executing.
Status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
Steps List<Pulumi.AzureNative.AzureStackHCI.Inputs.Step>
Recursive model for child steps of this step.
Description string
More detailed description of the step.
EndTimeUtc string
When the step reached a terminal state.
ErrorMessage string
Error message, specified if the step is in a failed state.
LastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
Name string
Name of the step.
StartTimeUtc string
When the step started, or empty if it has not started executing.
Status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
Steps []Step
Recursive model for child steps of this step.
description String
More detailed description of the step.
endTimeUtc String
When the step reached a terminal state.
errorMessage String
Error message, specified if the step is in a failed state.
lastUpdatedTimeUtc String
Completion time of this step or the last completed sub-step.
name String
Name of the step.
startTimeUtc String
When the step started, or empty if it has not started executing.
status String
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps List<Step>
Recursive model for child steps of this step.
description string
More detailed description of the step.
endTimeUtc string
When the step reached a terminal state.
errorMessage string
Error message, specified if the step is in a failed state.
lastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
name string
Name of the step.
startTimeUtc string
When the step started, or empty if it has not started executing.
status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps Step[]
Recursive model for child steps of this step.
description str
More detailed description of the step.
end_time_utc str
When the step reached a terminal state.
error_message str
Error message, specified if the step is in a failed state.
last_updated_time_utc str
Completion time of this step or the last completed sub-step.
name str
Name of the step.
start_time_utc str
When the step started, or empty if it has not started executing.
status str
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps Sequence[Step]
Recursive model for child steps of this step.
description String
More detailed description of the step.
endTimeUtc String
When the step reached a terminal state.
errorMessage String
Error message, specified if the step is in a failed state.
lastUpdatedTimeUtc String
Completion time of this step or the last completed sub-step.
name String
Name of the step.
startTimeUtc String
When the step started, or empty if it has not started executing.
status String
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps List<Property Map>
Recursive model for child steps of this step.

StepResponse
, StepResponseArgs

Description string
More detailed description of the step.
EndTimeUtc string
When the step reached a terminal state.
ErrorMessage string
Error message, specified if the step is in a failed state.
Exception List<string>
List of exceptions in AzureStackHCI Cluster Deployment.
FullStepIndex string
FullStepIndex of step.
LastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
Name string
Name of the step.
StartTimeUtc string
When the step started, or empty if it has not started executing.
Status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
Steps List<Pulumi.AzureNative.AzureStackHCI.Inputs.StepResponse>
Recursive model for child steps of this step.
Description string
More detailed description of the step.
EndTimeUtc string
When the step reached a terminal state.
ErrorMessage string
Error message, specified if the step is in a failed state.
Exception []string
List of exceptions in AzureStackHCI Cluster Deployment.
FullStepIndex string
FullStepIndex of step.
LastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
Name string
Name of the step.
StartTimeUtc string
When the step started, or empty if it has not started executing.
Status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
Steps []StepResponse
Recursive model for child steps of this step.
description String
More detailed description of the step.
endTimeUtc String
When the step reached a terminal state.
errorMessage String
Error message, specified if the step is in a failed state.
exception List<String>
List of exceptions in AzureStackHCI Cluster Deployment.
fullStepIndex String
FullStepIndex of step.
lastUpdatedTimeUtc String
Completion time of this step or the last completed sub-step.
name String
Name of the step.
startTimeUtc String
When the step started, or empty if it has not started executing.
status String
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps List<StepResponse>
Recursive model for child steps of this step.
description string
More detailed description of the step.
endTimeUtc string
When the step reached a terminal state.
errorMessage string
Error message, specified if the step is in a failed state.
exception string[]
List of exceptions in AzureStackHCI Cluster Deployment.
fullStepIndex string
FullStepIndex of step.
lastUpdatedTimeUtc string
Completion time of this step or the last completed sub-step.
name string
Name of the step.
startTimeUtc string
When the step started, or empty if it has not started executing.
status string
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps StepResponse[]
Recursive model for child steps of this step.
description str
More detailed description of the step.
end_time_utc str
When the step reached a terminal state.
error_message str
Error message, specified if the step is in a failed state.
exception Sequence[str]
List of exceptions in AzureStackHCI Cluster Deployment.
full_step_index str
FullStepIndex of step.
last_updated_time_utc str
Completion time of this step or the last completed sub-step.
name str
Name of the step.
start_time_utc str
When the step started, or empty if it has not started executing.
status str
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps Sequence[StepResponse]
Recursive model for child steps of this step.
description String
More detailed description of the step.
endTimeUtc String
When the step reached a terminal state.
errorMessage String
Error message, specified if the step is in a failed state.
exception List<String>
List of exceptions in AzureStackHCI Cluster Deployment.
fullStepIndex String
FullStepIndex of step.
lastUpdatedTimeUtc String
Completion time of this step or the last completed sub-step.
name String
Name of the step.
startTimeUtc String
When the step started, or empty if it has not started executing.
status String
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
steps List<Property Map>
Recursive model for child steps of this step.

SystemDataResponse
, SystemDataResponseArgs

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

UpdateRunPropertiesState
, UpdateRunPropertiesStateArgs

Unknown
Unknown
Succeeded
Succeeded
InProgress
InProgress
Failed
Failed
UpdateRunPropertiesStateUnknown
Unknown
UpdateRunPropertiesStateSucceeded
Succeeded
UpdateRunPropertiesStateInProgress
InProgress
UpdateRunPropertiesStateFailed
Failed
Unknown
Unknown
Succeeded
Succeeded
InProgress
InProgress
Failed
Failed
Unknown
Unknown
Succeeded
Succeeded
InProgress
InProgress
Failed
Failed
UNKNOWN
Unknown
SUCCEEDED
Succeeded
IN_PROGRESS
InProgress
FAILED
Failed
"Unknown"
Unknown
"Succeeded"
Succeeded
"InProgress"
InProgress
"Failed"
Failed

Import

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

$ pulumi import azure-native:azurestackhci:UpdateRun Microsoft4.2203.2.32/23b779ba-0d52-4a80-8571-45ca74664ec3 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}/updates/{updateName}/updateRuns/{updateRunName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi