1. Packages
  2. Azure Native
  3. API Docs
  4. azurestackhci
  5. UpdateRun
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.azurestackhci.UpdateRun

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 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.

    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",
        });
    
    });
    
    package main
    
    import (
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    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=[azure_native.azurestackhci.StepArgs(
            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")
    
    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",
    });
    
    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
    

    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 string
    The unique name of the resource.
    args UpdateRunArgs
    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 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 string
    The unique name of the resource.
    args UpdateRunArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UpdateRunArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UpdateRunArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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[]
        {
            new AzureNative.AzureStackHCI.Inputs.StepArgs
            {
                Description = "string",
                EndTimeUtc = "string",
                ErrorMessage = "string",
                LastUpdatedTimeUtc = "string",
                Name = "string",
                StartTimeUtc = "string",
                Status = "string",
                Steps = new[]
                {
                    step,
                },
            },
        },
        TimeStarted = "string",
        Description = "string",
        UpdateRunName = "string",
    });
    
    example, err := azurestackhci.NewUpdateRun(ctx, "updateRunResource", &azurestackhci.UpdateRunArgs{
    ClusterName: pulumi.String("string"),
    UpdateName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Name: pulumi.String("string"),
    StartTimeUtc: pulumi.String("string"),
    LastUpdatedTime: pulumi.String("string"),
    LastUpdatedTimeUtc: pulumi.String("string"),
    Location: pulumi.String("string"),
    EndTimeUtc: pulumi.String("string"),
    Duration: pulumi.String("string"),
    ErrorMessage: pulumi.String("string"),
    State: pulumi.String("string"),
    Status: pulumi.String("string"),
    Steps: azurestackhci.StepArray{
    &azurestackhci.StepArgs{
    Description: pulumi.String("string"),
    EndTimeUtc: pulumi.String("string"),
    ErrorMessage: pulumi.String("string"),
    LastUpdatedTimeUtc: pulumi.String("string"),
    Name: pulumi.String("string"),
    StartTimeUtc: pulumi.String("string"),
    Status: pulumi.String("string"),
    Steps: azurestackhci.StepArray{
    step,
    },
    },
    },
    TimeStarted: pulumi.String("string"),
    Description: pulumi.String("string"),
    UpdateRunName: pulumi.String("string"),
    })
    
    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(StepArgs.builder()
            .description("string")
            .endTimeUtc("string")
            .errorMessage("string")
            .lastUpdatedTimeUtc("string")
            .name("string")
            .startTimeUtc("string")
            .status("string")
            .steps(step)
            .build())
        .timeStarted("string")
        .description("string")
        .updateRunName("string")
        .build());
    
    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=[azure_native.azurestackhci.StepArgs(
            description="string",
            end_time_utc="string",
            error_message="string",
            last_updated_time_utc="string",
            name="string",
            start_time_utc="string",
            status="string",
            steps=[step],
        )],
        time_started="string",
        description="string",
        update_run_name="string")
    
    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",
    });
    
    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
    

    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

    The UpdateRun resource accepts the following input properties:

    ClusterName string
    The name of the cluster.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    UpdateName 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 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 string
    The name of the Update Run
    ClusterName string
    The name of the cluster.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    UpdateName 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 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 string
    The name of the Update Run
    clusterName String
    The name of the cluster.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    updateName 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 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 String
    The name of the Update Run
    clusterName string
    The name of the cluster.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    updateName 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 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 string
    The name of the Update Run
    cluster_name str
    The name of the cluster.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    update_name 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 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 str
    The name of the Update Run
    clusterName String
    The name of the cluster.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    updateName 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 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 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} 
    

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

    Package Details

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