azure-native.azurestackhci.UpdateRun
Explore with Pulumi AI
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.
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 (
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
})
}
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.
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[]
{
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:
- Cluster
Name string - The name of the cluster.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Update
Name string - The name of the Update
- Description string
- More detailed description of the step.
- Duration string
- Duration of the update run.
- End
Time stringUtc - When the step reached a terminal state.
- Error
Message string - Error message, specified if the step is in a failed state.
- Last
Updated stringTime - Timestamp of the most recently completed step in the update run.
- Last
Updated stringTime Utc - 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.
- Start
Time stringUtc - When the step started, or empty if it has not started executing.
- State
string | Pulumi.
Azure Native. Azure Stack HCI. Update Run Properties State - 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.
Azure Native. Azure Stack HCI. Inputs. Step> - Recursive model for child steps of this step.
- Time
Started string - Timestamp of the update run was started.
- Update
Run stringName - The name of the Update Run
- Cluster
Name string - The name of the cluster.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Update
Name string - The name of the Update
- Description string
- More detailed description of the step.
- Duration string
- Duration of the update run.
- End
Time stringUtc - When the step reached a terminal state.
- Error
Message string - Error message, specified if the step is in a failed state.
- Last
Updated stringTime - Timestamp of the most recently completed step in the update run.
- Last
Updated stringTime Utc - 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.
- Start
Time stringUtc - When the step started, or empty if it has not started executing.
- State
string | Update
Run Properties State - 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
Args - Recursive model for child steps of this step.
- Time
Started string - Timestamp of the update run was started.
- Update
Run stringName - The name of the Update Run
- cluster
Name String - The name of the cluster.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- update
Name String - The name of the Update
- description String
- More detailed description of the step.
- duration String
- Duration of the update run.
- end
Time StringUtc - When the step reached a terminal state.
- error
Message String - Error message, specified if the step is in a failed state.
- last
Updated StringTime - Timestamp of the most recently completed step in the update run.
- last
Updated StringTime Utc - 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.
- start
Time StringUtc - When the step started, or empty if it has not started executing.
- state
String | Update
Run Properties State - 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.
- time
Started String - Timestamp of the update run was started.
- update
Run StringName - The name of the Update Run
- cluster
Name string - The name of the cluster.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- update
Name string - The name of the Update
- description string
- More detailed description of the step.
- duration string
- Duration of the update run.
- end
Time stringUtc - When the step reached a terminal state.
- error
Message string - Error message, specified if the step is in a failed state.
- last
Updated stringTime - Timestamp of the most recently completed step in the update run.
- last
Updated stringTime Utc - 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.
- start
Time stringUtc - When the step started, or empty if it has not started executing.
- state
string | Update
Run Properties State - 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.
- time
Started string - Timestamp of the update run was started.
- update
Run stringName - The name of the Update Run
- cluster_
name str - The name of the cluster.
- resource_
group_ strname - 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_ strutc - When the step reached a terminal state.
- error_
message str - Error message, specified if the step is in a failed state.
- last_
updated_ strtime - Timestamp of the most recently completed step in the update run.
- last_
updated_ strtime_ utc - 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_ strutc - When the step started, or empty if it has not started executing.
- state
str | Update
Run Properties State - 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[Step
Args] - Recursive model for child steps of this step.
- time_
started str - Timestamp of the update run was started.
- update_
run_ strname - The name of the Update Run
- cluster
Name String - The name of the cluster.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- update
Name String - The name of the Update
- description String
- More detailed description of the step.
- duration String
- Duration of the update run.
- end
Time StringUtc - When the step reached a terminal state.
- error
Message String - Error message, specified if the step is in a failed state.
- last
Updated StringTime - Timestamp of the most recently completed step in the update run.
- last
Updated StringTime Utc - 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.
- start
Time StringUtc - When the step started, or empty if it has not started executing.
- state
String | "Unknown" | "Succeeded" | "In
Progress" | "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.
- time
Started String - Timestamp of the update run was started.
- update
Run StringName - 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.
- Provisioning
State string - Provisioning state of the UpdateRuns proxy resource.
- System
Data Pulumi.Azure Native. Azure Stack HCI. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Provisioning
State string - Provisioning state of the UpdateRuns proxy resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
State String - Provisioning state of the UpdateRuns proxy resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- provisioning
State string - Provisioning state of the UpdateRuns proxy resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- provisioning_
state str - Provisioning state of the UpdateRuns proxy resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
State String - Provisioning state of the UpdateRuns proxy resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
Step, StepArgs
- Description string
- More detailed description of the step.
- End
Time stringUtc - When the step reached a terminal state.
- Error
Message string - Error message, specified if the step is in a failed state.
- Last
Updated stringTime Utc - Completion time of this step or the last completed sub-step.
- Name string
- Name of the step.
- Start
Time stringUtc - 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.
Azure Native. Azure Stack HCI. Inputs. Step> - Recursive model for child steps of this step.
- Description string
- More detailed description of the step.
- End
Time stringUtc - When the step reached a terminal state.
- Error
Message string - Error message, specified if the step is in a failed state.
- Last
Updated stringTime Utc - Completion time of this step or the last completed sub-step.
- Name string
- Name of the step.
- Start
Time stringUtc - 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.
- end
Time StringUtc - When the step reached a terminal state.
- error
Message String - Error message, specified if the step is in a failed state.
- last
Updated StringTime Utc - Completion time of this step or the last completed sub-step.
- name String
- Name of the step.
- start
Time StringUtc - 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.
- end
Time stringUtc - When the step reached a terminal state.
- error
Message string - Error message, specified if the step is in a failed state.
- last
Updated stringTime Utc - Completion time of this step or the last completed sub-step.
- name string
- Name of the step.
- start
Time stringUtc - 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_ strutc - When the step reached a terminal state.
- error_
message str - Error message, specified if the step is in a failed state.
- last_
updated_ strtime_ utc - Completion time of this step or the last completed sub-step.
- name str
- Name of the step.
- start_
time_ strutc - 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.
- end
Time StringUtc - When the step reached a terminal state.
- error
Message String - Error message, specified if the step is in a failed state.
- last
Updated StringTime Utc - Completion time of this step or the last completed sub-step.
- name String
- Name of the step.
- start
Time StringUtc - 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.
- End
Time stringUtc - When the step reached a terminal state.
- Error
Message string - Error message, specified if the step is in a failed state.
- Exception List<string>
- List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step stringIndex - FullStepIndex of step.
- Last
Updated stringTime Utc - Completion time of this step or the last completed sub-step.
- Name string
- Name of the step.
- Start
Time stringUtc - 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.
Azure Native. Azure Stack HCI. Inputs. Step Response> - Recursive model for child steps of this step.
- Description string
- More detailed description of the step.
- End
Time stringUtc - When the step reached a terminal state.
- Error
Message string - Error message, specified if the step is in a failed state.
- Exception []string
- List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step stringIndex - FullStepIndex of step.
- Last
Updated stringTime Utc - Completion time of this step or the last completed sub-step.
- Name string
- Name of the step.
- Start
Time stringUtc - 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
Response - Recursive model for child steps of this step.
- description String
- More detailed description of the step.
- end
Time StringUtc - When the step reached a terminal state.
- error
Message String - Error message, specified if the step is in a failed state.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step StringIndex - FullStepIndex of step.
- last
Updated StringTime Utc - Completion time of this step or the last completed sub-step.
- name String
- Name of the step.
- start
Time StringUtc - 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
Response> - Recursive model for child steps of this step.
- description string
- More detailed description of the step.
- end
Time stringUtc - When the step reached a terminal state.
- error
Message string - Error message, specified if the step is in a failed state.
- exception string[]
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step stringIndex - FullStepIndex of step.
- last
Updated stringTime Utc - Completion time of this step or the last completed sub-step.
- name string
- Name of the step.
- start
Time stringUtc - 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
Response[] - Recursive model for child steps of this step.
- description str
- More detailed description of the step.
- end_
time_ strutc - 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_ strindex - FullStepIndex of step.
- last_
updated_ strtime_ utc - Completion time of this step or the last completed sub-step.
- name str
- Name of the step.
- start_
time_ strutc - 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
Response] - Recursive model for child steps of this step.
- description String
- More detailed description of the step.
- end
Time StringUtc - When the step reached a terminal state.
- error
Message String - Error message, specified if the step is in a failed state.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step StringIndex - FullStepIndex of step.
- last
Updated StringTime Utc - Completion time of this step or the last completed sub-step.
- name String
- Name of the step.
- start
Time StringUtc - 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
- 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.
UpdateRunPropertiesState, UpdateRunPropertiesStateArgs
- Unknown
- Unknown
- Succeeded
- Succeeded
- In
Progress - InProgress
- Failed
- Failed
- Update
Run Properties State Unknown - Unknown
- Update
Run Properties State Succeeded - Succeeded
- Update
Run Properties State In Progress - InProgress
- Update
Run Properties State Failed - Failed
- Unknown
- Unknown
- Succeeded
- Succeeded
- In
Progress - InProgress
- Failed
- Failed
- Unknown
- Unknown
- Succeeded
- Succeeded
- In
Progress - InProgress
- Failed
- Failed
- UNKNOWN
- Unknown
- SUCCEEDED
- Succeeded
- IN_PROGRESS
- InProgress
- FAILED
- Failed
- "Unknown"
- Unknown
- "Succeeded"
- Succeeded
- "In
Progress" - 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