1. Packages
  2. Azure Native
  3. API Docs
  4. azurestackhci
  5. Update
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.Update

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

    Update details 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

    Put a specific update

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var update = new AzureNative.AzureStackHCI.Update("update", new()
        {
            AdditionalProperties = "additional properties",
            AvailabilityType = AzureNative.AzureStackHCI.AvailabilityType.Local,
            ClusterName = "testcluster",
            Description = "AzS Update 4.2203.2.32",
            DisplayName = "AzS Update - 4.2203.2.32",
            InstalledDate = "2022-04-06T14:08:18.254Z",
            NotifyMessage = "Brief message with instructions for updates of AvailabilityType Notify",
            PackagePath = "\\\\SU1FileServer\\SU1_Infrastructure_2\\Updates\\Packages\\Microsoft4.2203.2.32",
            PackageSizeInMb = 18858,
            PackageType = "Infrastructure",
            Prerequisites = new[]
            {
                new AzureNative.AzureStackHCI.Inputs.UpdatePrerequisiteArgs
                {
                    PackageName = "update package name",
                    UpdateType = "update type",
                    Version = "prerequisite version",
                },
            },
            ProgressPercentage = 0,
            Publisher = "Microsoft",
            ReleaseLink = "https://docs.microsoft.com/azure-stack/operator/release-notes?view=azs-2203",
            ResourceGroupName = "testrg",
            State = AzureNative.AzureStackHCI.State.Installed,
            UpdateName = "Microsoft4.2203.2.32",
            Version = "4.2203.2.32",
        });
    
    });
    
    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.NewUpdate(ctx, "update", &azurestackhci.UpdateArgs{
    			AdditionalProperties: pulumi.String("additional properties"),
    			AvailabilityType:     pulumi.String(azurestackhci.AvailabilityTypeLocal),
    			ClusterName:          pulumi.String("testcluster"),
    			Description:          pulumi.String("AzS Update 4.2203.2.32"),
    			DisplayName:          pulumi.String("AzS Update - 4.2203.2.32"),
    			InstalledDate:        pulumi.String("2022-04-06T14:08:18.254Z"),
    			NotifyMessage:        pulumi.String("Brief message with instructions for updates of AvailabilityType Notify"),
    			PackagePath:          pulumi.String("\\\\SU1FileServer\\SU1_Infrastructure_2\\Updates\\Packages\\Microsoft4.2203.2.32"),
    			PackageSizeInMb:      pulumi.Float64(18858),
    			PackageType:          pulumi.String("Infrastructure"),
    			Prerequisites: azurestackhci.UpdatePrerequisiteArray{
    				&azurestackhci.UpdatePrerequisiteArgs{
    					PackageName: pulumi.String("update package name"),
    					UpdateType:  pulumi.String("update type"),
    					Version:     pulumi.String("prerequisite version"),
    				},
    			},
    			ProgressPercentage: pulumi.Float64(0),
    			Publisher:          pulumi.String("Microsoft"),
    			ReleaseLink:        pulumi.String("https://docs.microsoft.com/azure-stack/operator/release-notes?view=azs-2203"),
    			ResourceGroupName:  pulumi.String("testrg"),
    			State:              pulumi.String(azurestackhci.StateInstalled),
    			UpdateName:         pulumi.String("Microsoft4.2203.2.32"),
    			Version:            pulumi.String("4.2203.2.32"),
    		})
    		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.Update;
    import com.pulumi.azurenative.azurestackhci.UpdateArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.UpdatePrerequisiteArgs;
    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 update = new Update("update", UpdateArgs.builder()        
                .additionalProperties("additional properties")
                .availabilityType("Local")
                .clusterName("testcluster")
                .description("AzS Update 4.2203.2.32")
                .displayName("AzS Update - 4.2203.2.32")
                .installedDate("2022-04-06T14:08:18.254Z")
                .notifyMessage("Brief message with instructions for updates of AvailabilityType Notify")
                .packagePath("\\\\SU1FileServer\\SU1_Infrastructure_2\\Updates\\Packages\\Microsoft4.2203.2.32")
                .packageSizeInMb(18858)
                .packageType("Infrastructure")
                .prerequisites(UpdatePrerequisiteArgs.builder()
                    .packageName("update package name")
                    .updateType("update type")
                    .version("prerequisite version")
                    .build())
                .progressPercentage(0)
                .publisher("Microsoft")
                .releaseLink("https://docs.microsoft.com/azure-stack/operator/release-notes?view=azs-2203")
                .resourceGroupName("testrg")
                .state("Installed")
                .updateName("Microsoft4.2203.2.32")
                .version("4.2203.2.32")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    update = azure_native.azurestackhci.Update("update",
        additional_properties="additional properties",
        availability_type=azure_native.azurestackhci.AvailabilityType.LOCAL,
        cluster_name="testcluster",
        description="AzS Update 4.2203.2.32",
        display_name="AzS Update - 4.2203.2.32",
        installed_date="2022-04-06T14:08:18.254Z",
        notify_message="Brief message with instructions for updates of AvailabilityType Notify",
        package_path="\\\\SU1FileServer\\SU1_Infrastructure_2\\Updates\\Packages\\Microsoft4.2203.2.32",
        package_size_in_mb=18858,
        package_type="Infrastructure",
        prerequisites=[azure_native.azurestackhci.UpdatePrerequisiteArgs(
            package_name="update package name",
            update_type="update type",
            version="prerequisite version",
        )],
        progress_percentage=0,
        publisher="Microsoft",
        release_link="https://docs.microsoft.com/azure-stack/operator/release-notes?view=azs-2203",
        resource_group_name="testrg",
        state=azure_native.azurestackhci.State.INSTALLED,
        update_name="Microsoft4.2203.2.32",
        version="4.2203.2.32")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const update = new azure_native.azurestackhci.Update("update", {
        additionalProperties: "additional properties",
        availabilityType: azure_native.azurestackhci.AvailabilityType.Local,
        clusterName: "testcluster",
        description: "AzS Update 4.2203.2.32",
        displayName: "AzS Update - 4.2203.2.32",
        installedDate: "2022-04-06T14:08:18.254Z",
        notifyMessage: "Brief message with instructions for updates of AvailabilityType Notify",
        packagePath: "\\\\SU1FileServer\\SU1_Infrastructure_2\\Updates\\Packages\\Microsoft4.2203.2.32",
        packageSizeInMb: 18858,
        packageType: "Infrastructure",
        prerequisites: [{
            packageName: "update package name",
            updateType: "update type",
            version: "prerequisite version",
        }],
        progressPercentage: 0,
        publisher: "Microsoft",
        releaseLink: "https://docs.microsoft.com/azure-stack/operator/release-notes?view=azs-2203",
        resourceGroupName: "testrg",
        state: azure_native.azurestackhci.State.Installed,
        updateName: "Microsoft4.2203.2.32",
        version: "4.2203.2.32",
    });
    
    resources:
      update:
        type: azure-native:azurestackhci:Update
        properties:
          additionalProperties: additional properties
          availabilityType: Local
          clusterName: testcluster
          description: AzS Update 4.2203.2.32
          displayName: AzS Update - 4.2203.2.32
          installedDate: 2022-04-06T14:08:18.254Z
          notifyMessage: Brief message with instructions for updates of AvailabilityType Notify
          packagePath: \\SU1FileServer\SU1_Infrastructure_2\Updates\Packages\Microsoft4.2203.2.32
          packageSizeInMb: 18858
          packageType: Infrastructure
          prerequisites:
            - packageName: update package name
              updateType: update type
              version: prerequisite version
          progressPercentage: 0
          publisher: Microsoft
          releaseLink: https://docs.microsoft.com/azure-stack/operator/release-notes?view=azs-2203
          resourceGroupName: testrg
          state: Installed
          updateName: Microsoft4.2203.2.32
          version: 4.2203.2.32
    

    Create Update Resource

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

    Constructor syntax

    new Update(name: string, args: UpdateArgs, opts?: CustomResourceOptions);
    @overload
    def Update(resource_name: str,
               args: UpdateArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Update(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               cluster_name: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               package_size_in_mb: Optional[float] = None,
               package_type: Optional[str] = None,
               display_name: Optional[str] = None,
               health_check_date: Optional[str] = None,
               installed_date: Optional[str] = None,
               location: Optional[str] = None,
               notify_message: Optional[str] = None,
               package_path: Optional[str] = None,
               additional_properties: Optional[str] = None,
               description: Optional[str] = None,
               prerequisites: Optional[Sequence[UpdatePrerequisiteArgs]] = None,
               progress_percentage: Optional[float] = None,
               publisher: Optional[str] = None,
               release_link: Optional[str] = None,
               availability_type: Optional[Union[str, AvailabilityType]] = None,
               state: Optional[Union[str, State]] = None,
               update_name: Optional[str] = None,
               version: Optional[str] = None)
    func NewUpdate(ctx *Context, name string, args UpdateArgs, opts ...ResourceOption) (*Update, error)
    public Update(string name, UpdateArgs args, CustomResourceOptions? opts = null)
    public Update(String name, UpdateArgs args)
    public Update(String name, UpdateArgs args, CustomResourceOptions options)
    
    type: azure-native:azurestackhci:Update
    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 UpdateArgs
    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 UpdateArgs
    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 UpdateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UpdateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UpdateArgs
    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 updateResource = new AzureNative.AzureStackHCI.Update("updateResource", new()
    {
        ClusterName = "string",
        ResourceGroupName = "string",
        PackageSizeInMb = 0,
        PackageType = "string",
        DisplayName = "string",
        HealthCheckDate = "string",
        InstalledDate = "string",
        Location = "string",
        NotifyMessage = "string",
        PackagePath = "string",
        AdditionalProperties = "string",
        Description = "string",
        Prerequisites = new[]
        {
            new AzureNative.AzureStackHCI.Inputs.UpdatePrerequisiteArgs
            {
                PackageName = "string",
                UpdateType = "string",
                Version = "string",
            },
        },
        ProgressPercentage = 0,
        Publisher = "string",
        ReleaseLink = "string",
        AvailabilityType = "string",
        State = "string",
        UpdateName = "string",
        Version = "string",
    });
    
    example, err := azurestackhci.NewUpdate(ctx, "updateResource", &azurestackhci.UpdateArgs{
    ClusterName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    PackageSizeInMb: pulumi.Float64(0),
    PackageType: pulumi.String("string"),
    DisplayName: pulumi.String("string"),
    HealthCheckDate: pulumi.String("string"),
    InstalledDate: pulumi.String("string"),
    Location: pulumi.String("string"),
    NotifyMessage: pulumi.String("string"),
    PackagePath: pulumi.String("string"),
    AdditionalProperties: pulumi.String("string"),
    Description: pulumi.String("string"),
    Prerequisites: azurestackhci.UpdatePrerequisiteArray{
    &azurestackhci.UpdatePrerequisiteArgs{
    PackageName: pulumi.String("string"),
    UpdateType: pulumi.String("string"),
    Version: pulumi.String("string"),
    },
    },
    ProgressPercentage: pulumi.Float64(0),
    Publisher: pulumi.String("string"),
    ReleaseLink: pulumi.String("string"),
    AvailabilityType: pulumi.String("string"),
    State: pulumi.String("string"),
    UpdateName: pulumi.String("string"),
    Version: pulumi.String("string"),
    })
    
    var updateResource = new Update("updateResource", UpdateArgs.builder()        
        .clusterName("string")
        .resourceGroupName("string")
        .packageSizeInMb(0)
        .packageType("string")
        .displayName("string")
        .healthCheckDate("string")
        .installedDate("string")
        .location("string")
        .notifyMessage("string")
        .packagePath("string")
        .additionalProperties("string")
        .description("string")
        .prerequisites(UpdatePrerequisiteArgs.builder()
            .packageName("string")
            .updateType("string")
            .version("string")
            .build())
        .progressPercentage(0)
        .publisher("string")
        .releaseLink("string")
        .availabilityType("string")
        .state("string")
        .updateName("string")
        .version("string")
        .build());
    
    update_resource = azure_native.azurestackhci.Update("updateResource",
        cluster_name="string",
        resource_group_name="string",
        package_size_in_mb=0,
        package_type="string",
        display_name="string",
        health_check_date="string",
        installed_date="string",
        location="string",
        notify_message="string",
        package_path="string",
        additional_properties="string",
        description="string",
        prerequisites=[azure_native.azurestackhci.UpdatePrerequisiteArgs(
            package_name="string",
            update_type="string",
            version="string",
        )],
        progress_percentage=0,
        publisher="string",
        release_link="string",
        availability_type="string",
        state="string",
        update_name="string",
        version="string")
    
    const updateResource = new azure_native.azurestackhci.Update("updateResource", {
        clusterName: "string",
        resourceGroupName: "string",
        packageSizeInMb: 0,
        packageType: "string",
        displayName: "string",
        healthCheckDate: "string",
        installedDate: "string",
        location: "string",
        notifyMessage: "string",
        packagePath: "string",
        additionalProperties: "string",
        description: "string",
        prerequisites: [{
            packageName: "string",
            updateType: "string",
            version: "string",
        }],
        progressPercentage: 0,
        publisher: "string",
        releaseLink: "string",
        availabilityType: "string",
        state: "string",
        updateName: "string",
        version: "string",
    });
    
    type: azure-native:azurestackhci:Update
    properties:
        additionalProperties: string
        availabilityType: string
        clusterName: string
        description: string
        displayName: string
        healthCheckDate: string
        installedDate: string
        location: string
        notifyMessage: string
        packagePath: string
        packageSizeInMb: 0
        packageType: string
        prerequisites:
            - packageName: string
              updateType: string
              version: string
        progressPercentage: 0
        publisher: string
        releaseLink: string
        resourceGroupName: string
        state: string
        updateName: string
        version: string
    

    Update 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 Update 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.
    AdditionalProperties string
    Extensible KV pairs serialized as a string. This is currently used to report the stamp OEM family and hardware model information when an update is flagged as Invalid for the stamp based on OEM type.
    AvailabilityType string | Pulumi.AzureNative.AzureStackHCI.AvailabilityType
    Indicates the way the update content can be downloaded.
    Description string
    Description of the update.
    DisplayName string
    Display name of the Update
    HealthCheckDate string
    Last time the package-specific checks were run.
    InstalledDate string
    Date that the update was installed.
    Location string
    The geo-location where the resource lives
    NotifyMessage string
    Brief message with instructions for updates of AvailabilityType Notify.
    PackagePath string
    Path where the update package is available.
    PackageSizeInMb double
    Size of the package. This value is a combination of the size from update metadata and size of the payload that results from the live scan operation for OS update content.
    PackageType string
    Customer-visible type of the update.
    Prerequisites List<Pulumi.AzureNative.AzureStackHCI.Inputs.UpdatePrerequisite>
    If update State is HasPrerequisite, this property contains an array of objects describing prerequisite updates before installing this update. Otherwise, it is empty.
    ProgressPercentage double
    Progress percentage of ongoing operation. Currently this property is only valid when the update is in the Downloading state, where it maps to how much of the update content has been downloaded.
    Publisher string
    Publisher of the update package.
    ReleaseLink string
    Link to release notes for the update.
    State string | Pulumi.AzureNative.AzureStackHCI.State
    State of the update as it relates to this stamp.
    UpdateName string
    The name of the Update
    Version string
    Version of the update.
    ClusterName string
    The name of the cluster.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AdditionalProperties string
    Extensible KV pairs serialized as a string. This is currently used to report the stamp OEM family and hardware model information when an update is flagged as Invalid for the stamp based on OEM type.
    AvailabilityType string | AvailabilityType
    Indicates the way the update content can be downloaded.
    Description string
    Description of the update.
    DisplayName string
    Display name of the Update
    HealthCheckDate string
    Last time the package-specific checks were run.
    InstalledDate string
    Date that the update was installed.
    Location string
    The geo-location where the resource lives
    NotifyMessage string
    Brief message with instructions for updates of AvailabilityType Notify.
    PackagePath string
    Path where the update package is available.
    PackageSizeInMb float64
    Size of the package. This value is a combination of the size from update metadata and size of the payload that results from the live scan operation for OS update content.
    PackageType string
    Customer-visible type of the update.
    Prerequisites []UpdatePrerequisiteArgs
    If update State is HasPrerequisite, this property contains an array of objects describing prerequisite updates before installing this update. Otherwise, it is empty.
    ProgressPercentage float64
    Progress percentage of ongoing operation. Currently this property is only valid when the update is in the Downloading state, where it maps to how much of the update content has been downloaded.
    Publisher string
    Publisher of the update package.
    ReleaseLink string
    Link to release notes for the update.
    State string | State
    State of the update as it relates to this stamp.
    UpdateName string
    The name of the Update
    Version string
    Version of the update.
    clusterName String
    The name of the cluster.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    additionalProperties String
    Extensible KV pairs serialized as a string. This is currently used to report the stamp OEM family and hardware model information when an update is flagged as Invalid for the stamp based on OEM type.
    availabilityType String | AvailabilityType
    Indicates the way the update content can be downloaded.
    description String
    Description of the update.
    displayName String
    Display name of the Update
    healthCheckDate String
    Last time the package-specific checks were run.
    installedDate String
    Date that the update was installed.
    location String
    The geo-location where the resource lives
    notifyMessage String
    Brief message with instructions for updates of AvailabilityType Notify.
    packagePath String
    Path where the update package is available.
    packageSizeInMb Double
    Size of the package. This value is a combination of the size from update metadata and size of the payload that results from the live scan operation for OS update content.
    packageType String
    Customer-visible type of the update.
    prerequisites List<UpdatePrerequisite>
    If update State is HasPrerequisite, this property contains an array of objects describing prerequisite updates before installing this update. Otherwise, it is empty.
    progressPercentage Double
    Progress percentage of ongoing operation. Currently this property is only valid when the update is in the Downloading state, where it maps to how much of the update content has been downloaded.
    publisher String
    Publisher of the update package.
    releaseLink String
    Link to release notes for the update.
    state String | State
    State of the update as it relates to this stamp.
    updateName String
    The name of the Update
    version String
    Version of the update.
    clusterName string
    The name of the cluster.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    additionalProperties string
    Extensible KV pairs serialized as a string. This is currently used to report the stamp OEM family and hardware model information when an update is flagged as Invalid for the stamp based on OEM type.
    availabilityType string | AvailabilityType
    Indicates the way the update content can be downloaded.
    description string
    Description of the update.
    displayName string
    Display name of the Update
    healthCheckDate string
    Last time the package-specific checks were run.
    installedDate string
    Date that the update was installed.
    location string
    The geo-location where the resource lives
    notifyMessage string
    Brief message with instructions for updates of AvailabilityType Notify.
    packagePath string
    Path where the update package is available.
    packageSizeInMb number
    Size of the package. This value is a combination of the size from update metadata and size of the payload that results from the live scan operation for OS update content.
    packageType string
    Customer-visible type of the update.
    prerequisites UpdatePrerequisite[]
    If update State is HasPrerequisite, this property contains an array of objects describing prerequisite updates before installing this update. Otherwise, it is empty.
    progressPercentage number
    Progress percentage of ongoing operation. Currently this property is only valid when the update is in the Downloading state, where it maps to how much of the update content has been downloaded.
    publisher string
    Publisher of the update package.
    releaseLink string
    Link to release notes for the update.
    state string | State
    State of the update as it relates to this stamp.
    updateName string
    The name of the Update
    version string
    Version of the update.
    cluster_name str
    The name of the cluster.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    additional_properties str
    Extensible KV pairs serialized as a string. This is currently used to report the stamp OEM family and hardware model information when an update is flagged as Invalid for the stamp based on OEM type.
    availability_type str | AvailabilityType
    Indicates the way the update content can be downloaded.
    description str
    Description of the update.
    display_name str
    Display name of the Update
    health_check_date str
    Last time the package-specific checks were run.
    installed_date str
    Date that the update was installed.
    location str
    The geo-location where the resource lives
    notify_message str
    Brief message with instructions for updates of AvailabilityType Notify.
    package_path str
    Path where the update package is available.
    package_size_in_mb float
    Size of the package. This value is a combination of the size from update metadata and size of the payload that results from the live scan operation for OS update content.
    package_type str
    Customer-visible type of the update.
    prerequisites Sequence[UpdatePrerequisiteArgs]
    If update State is HasPrerequisite, this property contains an array of objects describing prerequisite updates before installing this update. Otherwise, it is empty.
    progress_percentage float
    Progress percentage of ongoing operation. Currently this property is only valid when the update is in the Downloading state, where it maps to how much of the update content has been downloaded.
    publisher str
    Publisher of the update package.
    release_link str
    Link to release notes for the update.
    state str | State
    State of the update as it relates to this stamp.
    update_name str
    The name of the Update
    version str
    Version of the update.
    clusterName String
    The name of the cluster.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    additionalProperties String
    Extensible KV pairs serialized as a string. This is currently used to report the stamp OEM family and hardware model information when an update is flagged as Invalid for the stamp based on OEM type.
    availabilityType String | "Local" | "Online" | "Notify"
    Indicates the way the update content can be downloaded.
    description String
    Description of the update.
    displayName String
    Display name of the Update
    healthCheckDate String
    Last time the package-specific checks were run.
    installedDate String
    Date that the update was installed.
    location String
    The geo-location where the resource lives
    notifyMessage String
    Brief message with instructions for updates of AvailabilityType Notify.
    packagePath String
    Path where the update package is available.
    packageSizeInMb Number
    Size of the package. This value is a combination of the size from update metadata and size of the payload that results from the live scan operation for OS update content.
    packageType String
    Customer-visible type of the update.
    prerequisites List<Property Map>
    If update State is HasPrerequisite, this property contains an array of objects describing prerequisite updates before installing this update. Otherwise, it is empty.
    progressPercentage Number
    Progress percentage of ongoing operation. Currently this property is only valid when the update is in the Downloading state, where it maps to how much of the update content has been downloaded.
    publisher String
    Publisher of the update package.
    releaseLink String
    Link to release notes for the update.
    state String | "HasPrerequisite" | "Obsolete" | "Ready" | "NotApplicableBecauseAnotherUpdateIsInProgress" | "Preparing" | "Installing" | "Installed" | "PreparationFailed" | "InstallationFailed" | "Invalid" | "Recalled" | "Downloading" | "DownloadFailed" | "HealthChecking" | "HealthCheckFailed" | "ReadyToInstall" | "ScanInProgress" | "ScanFailed"
    State of the update as it relates to this stamp.
    updateName String
    The name of the Update
    version String
    Version of the update.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the Updates 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.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the Updates 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.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the Updates 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.
    name string
    The name of the resource
    provisioningState string
    Provisioning state of the Updates 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.
    name str
    The name of the resource
    provisioning_state str
    Provisioning state of the Updates 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.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the Updates 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

    AvailabilityType, AvailabilityTypeArgs

    Local
    Local
    Online
    Online
    Notify
    Notify
    AvailabilityTypeLocal
    Local
    AvailabilityTypeOnline
    Online
    AvailabilityTypeNotify
    Notify
    Local
    Local
    Online
    Online
    Notify
    Notify
    Local
    Local
    Online
    Online
    Notify
    Notify
    LOCAL
    Local
    ONLINE
    Online
    NOTIFY
    Notify
    "Local"
    Local
    "Online"
    Online
    "Notify"
    Notify

    State, StateArgs

    HasPrerequisite
    HasPrerequisite
    Obsolete
    Obsolete
    Ready
    Ready
    NotApplicableBecauseAnotherUpdateIsInProgress
    NotApplicableBecauseAnotherUpdateIsInProgress
    Preparing
    Preparing
    Installing
    Installing
    Installed
    Installed
    PreparationFailed
    PreparationFailed
    InstallationFailed
    InstallationFailed
    Invalid
    Invalid
    Recalled
    Recalled
    Downloading
    Downloading
    DownloadFailed
    DownloadFailed
    HealthChecking
    HealthChecking
    HealthCheckFailed
    HealthCheckFailed
    ReadyToInstall
    ReadyToInstall
    ScanInProgress
    ScanInProgress
    ScanFailed
    ScanFailed
    StateHasPrerequisite
    HasPrerequisite
    StateObsolete
    Obsolete
    StateReady
    Ready
    StateNotApplicableBecauseAnotherUpdateIsInProgress
    NotApplicableBecauseAnotherUpdateIsInProgress
    StatePreparing
    Preparing
    StateInstalling
    Installing
    StateInstalled
    Installed
    StatePreparationFailed
    PreparationFailed
    StateInstallationFailed
    InstallationFailed
    StateInvalid
    Invalid
    StateRecalled
    Recalled
    StateDownloading
    Downloading
    StateDownloadFailed
    DownloadFailed
    StateHealthChecking
    HealthChecking
    StateHealthCheckFailed
    HealthCheckFailed
    StateReadyToInstall
    ReadyToInstall
    StateScanInProgress
    ScanInProgress
    StateScanFailed
    ScanFailed
    HasPrerequisite
    HasPrerequisite
    Obsolete
    Obsolete
    Ready
    Ready
    NotApplicableBecauseAnotherUpdateIsInProgress
    NotApplicableBecauseAnotherUpdateIsInProgress
    Preparing
    Preparing
    Installing
    Installing
    Installed
    Installed
    PreparationFailed
    PreparationFailed
    InstallationFailed
    InstallationFailed
    Invalid
    Invalid
    Recalled
    Recalled
    Downloading
    Downloading
    DownloadFailed
    DownloadFailed
    HealthChecking
    HealthChecking
    HealthCheckFailed
    HealthCheckFailed
    ReadyToInstall
    ReadyToInstall
    ScanInProgress
    ScanInProgress
    ScanFailed
    ScanFailed
    HasPrerequisite
    HasPrerequisite
    Obsolete
    Obsolete
    Ready
    Ready
    NotApplicableBecauseAnotherUpdateIsInProgress
    NotApplicableBecauseAnotherUpdateIsInProgress
    Preparing
    Preparing
    Installing
    Installing
    Installed
    Installed
    PreparationFailed
    PreparationFailed
    InstallationFailed
    InstallationFailed
    Invalid
    Invalid
    Recalled
    Recalled
    Downloading
    Downloading
    DownloadFailed
    DownloadFailed
    HealthChecking
    HealthChecking
    HealthCheckFailed
    HealthCheckFailed
    ReadyToInstall
    ReadyToInstall
    ScanInProgress
    ScanInProgress
    ScanFailed
    ScanFailed
    HAS_PREREQUISITE
    HasPrerequisite
    OBSOLETE
    Obsolete
    READY
    Ready
    NOT_APPLICABLE_BECAUSE_ANOTHER_UPDATE_IS_IN_PROGRESS
    NotApplicableBecauseAnotherUpdateIsInProgress
    PREPARING
    Preparing
    INSTALLING
    Installing
    INSTALLED
    Installed
    PREPARATION_FAILED
    PreparationFailed
    INSTALLATION_FAILED
    InstallationFailed
    INVALID
    Invalid
    RECALLED
    Recalled
    DOWNLOADING
    Downloading
    DOWNLOAD_FAILED
    DownloadFailed
    HEALTH_CHECKING
    HealthChecking
    HEALTH_CHECK_FAILED
    HealthCheckFailed
    READY_TO_INSTALL
    ReadyToInstall
    SCAN_IN_PROGRESS
    ScanInProgress
    SCAN_FAILED
    ScanFailed
    "HasPrerequisite"
    HasPrerequisite
    "Obsolete"
    Obsolete
    "Ready"
    Ready
    "NotApplicableBecauseAnotherUpdateIsInProgress"
    NotApplicableBecauseAnotherUpdateIsInProgress
    "Preparing"
    Preparing
    "Installing"
    Installing
    "Installed"
    Installed
    "PreparationFailed"
    PreparationFailed
    "InstallationFailed"
    InstallationFailed
    "Invalid"
    Invalid
    "Recalled"
    Recalled
    "Downloading"
    Downloading
    "DownloadFailed"
    DownloadFailed
    "HealthChecking"
    HealthChecking
    "HealthCheckFailed"
    HealthCheckFailed
    "ReadyToInstall"
    ReadyToInstall
    "ScanInProgress"
    ScanInProgress
    "ScanFailed"
    ScanFailed

    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.

    UpdatePrerequisite, UpdatePrerequisiteArgs

    PackageName string
    Friendly name of the prerequisite.
    UpdateType string
    Updatable component type.
    Version string
    Version of the prerequisite.
    PackageName string
    Friendly name of the prerequisite.
    UpdateType string
    Updatable component type.
    Version string
    Version of the prerequisite.
    packageName String
    Friendly name of the prerequisite.
    updateType String
    Updatable component type.
    version String
    Version of the prerequisite.
    packageName string
    Friendly name of the prerequisite.
    updateType string
    Updatable component type.
    version string
    Version of the prerequisite.
    package_name str
    Friendly name of the prerequisite.
    update_type str
    Updatable component type.
    version str
    Version of the prerequisite.
    packageName String
    Friendly name of the prerequisite.
    updateType String
    Updatable component type.
    version String
    Version of the prerequisite.

    UpdatePrerequisiteResponse, UpdatePrerequisiteResponseArgs

    PackageName string
    Friendly name of the prerequisite.
    UpdateType string
    Updatable component type.
    Version string
    Version of the prerequisite.
    PackageName string
    Friendly name of the prerequisite.
    UpdateType string
    Updatable component type.
    Version string
    Version of the prerequisite.
    packageName String
    Friendly name of the prerequisite.
    updateType String
    Updatable component type.
    version String
    Version of the prerequisite.
    packageName string
    Friendly name of the prerequisite.
    updateType string
    Updatable component type.
    version string
    Version of the prerequisite.
    package_name str
    Friendly name of the prerequisite.
    update_type str
    Updatable component type.
    version str
    Version of the prerequisite.
    packageName String
    Friendly name of the prerequisite.
    updateType String
    Updatable component type.
    version String
    Version of the prerequisite.

    Import

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

    $ pulumi import azure-native:azurestackhci:Update Microsoft4.2203.2.32 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}/updates/{updateName} 
    

    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