1. Packages
  2. Juniper Mist Provider
  3. API Docs
  4. UpgradeDevice
Juniper Mist v0.2.4 published on Saturday, Mar 1, 2025 by Pulumi

junipermist.UpgradeDevice

Explore with Pulumi AI

junipermist logo
Juniper Mist v0.2.4 published on Saturday, Mar 1, 2025 by Pulumi

    This resource can be used to upgrade the frimware of a single device (Wi-Fi Access Points, Switches and SRX/SSR Gateways).

    The resource will send the upgrade command to Mist, which will take care of deploying the new firmware version to the device, and reboot it if required.

    The time required to upgrade a device depends on the type of device and its hardware. By default, the resource will track the upgrade process and only return the result once the device is upgraded and rebooted (unless reboot==false or reboot_at is set).
    If required it is possible to run the upgrade in async mode (attribute sync=false). In this case, the resource will only trigger the upgrade and return the Mist response, but will not track the upgrade progress.

    The list of available firmware versions can be retrieved with the junipermist.device.getVersions data source.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as junipermist from "@pulumi/juniper-mist";
    
    const apUpgrade = new junipermist.UpgradeDevice("ap_upgrade", {
        siteId: terraformTest.id,
        deviceId: apOne.id,
        targetVersion: "0.14.29543",
    });
    const switchUpgrade = new junipermist.UpgradeDevice("switch_upgrade", {
        siteId: terraformTest.id,
        deviceId: switchOne.id,
        targetVersion: "24.2R1-S1.10",
        reboot: true,
        syncUpgradeTimeout: 3600,
    });
    
    import pulumi
    import pulumi_juniper_mist as junipermist
    
    ap_upgrade = junipermist.UpgradeDevice("ap_upgrade",
        site_id=terraform_test["id"],
        device_id=ap_one["id"],
        target_version="0.14.29543")
    switch_upgrade = junipermist.UpgradeDevice("switch_upgrade",
        site_id=terraform_test["id"],
        device_id=switch_one["id"],
        target_version="24.2R1-S1.10",
        reboot=True,
        sync_upgrade_timeout=3600)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-junipermist/sdk/go/junipermist"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := junipermist.NewUpgradeDevice(ctx, "ap_upgrade", &junipermist.UpgradeDeviceArgs{
    			SiteId:        pulumi.Any(terraformTest.Id),
    			DeviceId:      pulumi.Any(apOne.Id),
    			TargetVersion: pulumi.String("0.14.29543"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = junipermist.NewUpgradeDevice(ctx, "switch_upgrade", &junipermist.UpgradeDeviceArgs{
    			SiteId:             pulumi.Any(terraformTest.Id),
    			DeviceId:           pulumi.Any(switchOne.Id),
    			TargetVersion:      pulumi.String("24.2R1-S1.10"),
    			Reboot:             pulumi.Bool(true),
    			SyncUpgradeTimeout: pulumi.Int(3600),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using JuniperMist = Pulumi.JuniperMist;
    
    return await Deployment.RunAsync(() => 
    {
        var apUpgrade = new JuniperMist.UpgradeDevice("ap_upgrade", new()
        {
            SiteId = terraformTest.Id,
            DeviceId = apOne.Id,
            TargetVersion = "0.14.29543",
        });
    
        var switchUpgrade = new JuniperMist.UpgradeDevice("switch_upgrade", new()
        {
            SiteId = terraformTest.Id,
            DeviceId = switchOne.Id,
            TargetVersion = "24.2R1-S1.10",
            Reboot = true,
            SyncUpgradeTimeout = 3600,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.junipermist.UpgradeDevice;
    import com.pulumi.junipermist.UpgradeDeviceArgs;
    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 apUpgrade = new UpgradeDevice("apUpgrade", UpgradeDeviceArgs.builder()
                .siteId(terraformTest.id())
                .deviceId(apOne.id())
                .targetVersion("0.14.29543")
                .build());
    
            var switchUpgrade = new UpgradeDevice("switchUpgrade", UpgradeDeviceArgs.builder()
                .siteId(terraformTest.id())
                .deviceId(switchOne.id())
                .targetVersion("24.2R1-S1.10")
                .reboot(true)
                .syncUpgradeTimeout(3600)
                .build());
    
        }
    }
    
    resources:
      apUpgrade:
        type: junipermist:UpgradeDevice
        name: ap_upgrade
        properties:
          siteId: ${terraformTest.id}
          deviceId: ${apOne.id}
          targetVersion: 0.14.29543
      switchUpgrade:
        type: junipermist:UpgradeDevice
        name: switch_upgrade
        properties:
          siteId: ${terraformTest.id}
          deviceId: ${switchOne.id}
          targetVersion: 24.2R1-S1.10
          reboot: true
          syncUpgradeTimeout: 3600
    

    Create UpgradeDevice Resource

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

    Constructor syntax

    new UpgradeDevice(name: string, args: UpgradeDeviceArgs, opts?: CustomResourceOptions);
    @overload
    def UpgradeDevice(resource_name: str,
                      args: UpgradeDeviceArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def UpgradeDevice(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      device_id: Optional[str] = None,
                      site_id: Optional[str] = None,
                      target_version: Optional[str] = None,
                      reboot: Optional[bool] = None,
                      reboot_at: Optional[int] = None,
                      snapshot: Optional[bool] = None,
                      start_time: Optional[int] = None,
                      sync_upgrade: Optional[bool] = None,
                      sync_upgrade_refresh_interval: Optional[int] = None,
                      sync_upgrade_start_timeout: Optional[int] = None,
                      sync_upgrade_timeout: Optional[int] = None)
    func NewUpgradeDevice(ctx *Context, name string, args UpgradeDeviceArgs, opts ...ResourceOption) (*UpgradeDevice, error)
    public UpgradeDevice(string name, UpgradeDeviceArgs args, CustomResourceOptions? opts = null)
    public UpgradeDevice(String name, UpgradeDeviceArgs args)
    public UpgradeDevice(String name, UpgradeDeviceArgs args, CustomResourceOptions options)
    
    type: junipermist:UpgradeDevice
    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 UpgradeDeviceArgs
    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 UpgradeDeviceArgs
    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 UpgradeDeviceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UpgradeDeviceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UpgradeDeviceArgs
    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 upgradeDeviceResource = new JuniperMist.UpgradeDevice("upgradeDeviceResource", new()
    {
        DeviceId = "string",
        SiteId = "string",
        TargetVersion = "string",
        Reboot = false,
        RebootAt = 0,
        Snapshot = false,
        StartTime = 0,
        SyncUpgrade = false,
        SyncUpgradeRefreshInterval = 0,
        SyncUpgradeStartTimeout = 0,
        SyncUpgradeTimeout = 0,
    });
    
    example, err := junipermist.NewUpgradeDevice(ctx, "upgradeDeviceResource", &junipermist.UpgradeDeviceArgs{
    	DeviceId:                   pulumi.String("string"),
    	SiteId:                     pulumi.String("string"),
    	TargetVersion:              pulumi.String("string"),
    	Reboot:                     pulumi.Bool(false),
    	RebootAt:                   pulumi.Int(0),
    	Snapshot:                   pulumi.Bool(false),
    	StartTime:                  pulumi.Int(0),
    	SyncUpgrade:                pulumi.Bool(false),
    	SyncUpgradeRefreshInterval: pulumi.Int(0),
    	SyncUpgradeStartTimeout:    pulumi.Int(0),
    	SyncUpgradeTimeout:         pulumi.Int(0),
    })
    
    var upgradeDeviceResource = new UpgradeDevice("upgradeDeviceResource", UpgradeDeviceArgs.builder()
        .deviceId("string")
        .siteId("string")
        .targetVersion("string")
        .reboot(false)
        .rebootAt(0)
        .snapshot(false)
        .startTime(0)
        .syncUpgrade(false)
        .syncUpgradeRefreshInterval(0)
        .syncUpgradeStartTimeout(0)
        .syncUpgradeTimeout(0)
        .build());
    
    upgrade_device_resource = junipermist.UpgradeDevice("upgradeDeviceResource",
        device_id="string",
        site_id="string",
        target_version="string",
        reboot=False,
        reboot_at=0,
        snapshot=False,
        start_time=0,
        sync_upgrade=False,
        sync_upgrade_refresh_interval=0,
        sync_upgrade_start_timeout=0,
        sync_upgrade_timeout=0)
    
    const upgradeDeviceResource = new junipermist.UpgradeDevice("upgradeDeviceResource", {
        deviceId: "string",
        siteId: "string",
        targetVersion: "string",
        reboot: false,
        rebootAt: 0,
        snapshot: false,
        startTime: 0,
        syncUpgrade: false,
        syncUpgradeRefreshInterval: 0,
        syncUpgradeStartTimeout: 0,
        syncUpgradeTimeout: 0,
    });
    
    type: junipermist:UpgradeDevice
    properties:
        deviceId: string
        reboot: false
        rebootAt: 0
        siteId: string
        snapshot: false
        startTime: 0
        syncUpgrade: false
        syncUpgradeRefreshInterval: 0
        syncUpgradeStartTimeout: 0
        syncUpgradeTimeout: 0
        targetVersion: string
    

    UpgradeDevice Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The UpgradeDevice resource accepts the following input properties:

    DeviceId string
    SiteId string
    TargetVersion string
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    Reboot bool
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    RebootAt int
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    Snapshot bool
    For Junos devices only. Perform recovery snapshot after device is rebooted
    StartTime int
    Firmware download start time in epoch
    SyncUpgrade bool
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    SyncUpgradeRefreshInterval int
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    SyncUpgradeStartTimeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    SyncUpgradeTimeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    DeviceId string
    SiteId string
    TargetVersion string
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    Reboot bool
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    RebootAt int
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    Snapshot bool
    For Junos devices only. Perform recovery snapshot after device is rebooted
    StartTime int
    Firmware download start time in epoch
    SyncUpgrade bool
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    SyncUpgradeRefreshInterval int
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    SyncUpgradeStartTimeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    SyncUpgradeTimeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    deviceId String
    siteId String
    targetVersion String
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    reboot Boolean
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    rebootAt Integer
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    snapshot Boolean
    For Junos devices only. Perform recovery snapshot after device is rebooted
    startTime Integer
    Firmware download start time in epoch
    syncUpgrade Boolean
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    syncUpgradeRefreshInterval Integer
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    syncUpgradeStartTimeout Integer
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    syncUpgradeTimeout Integer
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    deviceId string
    siteId string
    targetVersion string
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    reboot boolean
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    rebootAt number
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    snapshot boolean
    For Junos devices only. Perform recovery snapshot after device is rebooted
    startTime number
    Firmware download start time in epoch
    syncUpgrade boolean
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    syncUpgradeRefreshInterval number
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    syncUpgradeStartTimeout number
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    syncUpgradeTimeout number
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    device_id str
    site_id str
    target_version str
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    reboot bool
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    reboot_at int
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    snapshot bool
    For Junos devices only. Perform recovery snapshot after device is rebooted
    start_time int
    Firmware download start time in epoch
    sync_upgrade bool
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    sync_upgrade_refresh_interval int
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    sync_upgrade_start_timeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    sync_upgrade_timeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    deviceId String
    siteId String
    targetVersion String
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    reboot Boolean
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    rebootAt Number
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    snapshot Boolean
    For Junos devices only. Perform recovery snapshot after device is rebooted
    startTime Number
    Firmware download start time in epoch
    syncUpgrade Boolean
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    syncUpgradeRefreshInterval Number
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    syncUpgradeStartTimeout Number
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    syncUpgradeTimeout Number
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800

    Outputs

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

    DeviceVersion string
    current device firmware version
    Fwupdate Pulumi.JuniperMist.Outputs.UpgradeDeviceFwupdate
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    enum: error, inprogress, scheduled, starting, success
    Timestamp double
    Timestamp
    DeviceVersion string
    current device firmware version
    Fwupdate UpgradeDeviceFwupdate
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    enum: error, inprogress, scheduled, starting, success
    Timestamp float64
    Timestamp
    deviceVersion String
    current device firmware version
    fwupdate UpgradeDeviceFwupdate
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    enum: error, inprogress, scheduled, starting, success
    timestamp Double
    Timestamp
    deviceVersion string
    current device firmware version
    fwupdate UpgradeDeviceFwupdate
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    enum: error, inprogress, scheduled, starting, success
    timestamp number
    Timestamp
    device_version str
    current device firmware version
    fwupdate UpgradeDeviceFwupdate
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    enum: error, inprogress, scheduled, starting, success
    timestamp float
    Timestamp
    deviceVersion String
    current device firmware version
    fwupdate Property Map
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    enum: error, inprogress, scheduled, starting, success
    timestamp Number
    Timestamp

    Look up Existing UpgradeDevice Resource

    Get an existing UpgradeDevice resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: UpgradeDeviceState, opts?: CustomResourceOptions): UpgradeDevice
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device_id: Optional[str] = None,
            device_version: Optional[str] = None,
            fwupdate: Optional[UpgradeDeviceFwupdateArgs] = None,
            reboot: Optional[bool] = None,
            reboot_at: Optional[int] = None,
            site_id: Optional[str] = None,
            snapshot: Optional[bool] = None,
            start_time: Optional[int] = None,
            status: Optional[str] = None,
            sync_upgrade: Optional[bool] = None,
            sync_upgrade_refresh_interval: Optional[int] = None,
            sync_upgrade_start_timeout: Optional[int] = None,
            sync_upgrade_timeout: Optional[int] = None,
            target_version: Optional[str] = None,
            timestamp: Optional[float] = None) -> UpgradeDevice
    func GetUpgradeDevice(ctx *Context, name string, id IDInput, state *UpgradeDeviceState, opts ...ResourceOption) (*UpgradeDevice, error)
    public static UpgradeDevice Get(string name, Input<string> id, UpgradeDeviceState? state, CustomResourceOptions? opts = null)
    public static UpgradeDevice get(String name, Output<String> id, UpgradeDeviceState state, CustomResourceOptions options)
    resources:  _:    type: junipermist:UpgradeDevice    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DeviceId string
    DeviceVersion string
    current device firmware version
    Fwupdate Pulumi.JuniperMist.Inputs.UpgradeDeviceFwupdate
    Reboot bool
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    RebootAt int
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    SiteId string
    Snapshot bool
    For Junos devices only. Perform recovery snapshot after device is rebooted
    StartTime int
    Firmware download start time in epoch
    Status string
    enum: error, inprogress, scheduled, starting, success
    SyncUpgrade bool
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    SyncUpgradeRefreshInterval int
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    SyncUpgradeStartTimeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    SyncUpgradeTimeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    TargetVersion string
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    Timestamp double
    Timestamp
    DeviceId string
    DeviceVersion string
    current device firmware version
    Fwupdate UpgradeDeviceFwupdateArgs
    Reboot bool
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    RebootAt int
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    SiteId string
    Snapshot bool
    For Junos devices only. Perform recovery snapshot after device is rebooted
    StartTime int
    Firmware download start time in epoch
    Status string
    enum: error, inprogress, scheduled, starting, success
    SyncUpgrade bool
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    SyncUpgradeRefreshInterval int
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    SyncUpgradeStartTimeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    SyncUpgradeTimeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    TargetVersion string
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    Timestamp float64
    Timestamp
    deviceId String
    deviceVersion String
    current device firmware version
    fwupdate UpgradeDeviceFwupdate
    reboot Boolean
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    rebootAt Integer
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    siteId String
    snapshot Boolean
    For Junos devices only. Perform recovery snapshot after device is rebooted
    startTime Integer
    Firmware download start time in epoch
    status String
    enum: error, inprogress, scheduled, starting, success
    syncUpgrade Boolean
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    syncUpgradeRefreshInterval Integer
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    syncUpgradeStartTimeout Integer
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    syncUpgradeTimeout Integer
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    targetVersion String
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    timestamp Double
    Timestamp
    deviceId string
    deviceVersion string
    current device firmware version
    fwupdate UpgradeDeviceFwupdate
    reboot boolean
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    rebootAt number
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    siteId string
    snapshot boolean
    For Junos devices only. Perform recovery snapshot after device is rebooted
    startTime number
    Firmware download start time in epoch
    status string
    enum: error, inprogress, scheduled, starting, success
    syncUpgrade boolean
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    syncUpgradeRefreshInterval number
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    syncUpgradeStartTimeout number
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    syncUpgradeTimeout number
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    targetVersion string
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    timestamp number
    Timestamp
    device_id str
    device_version str
    current device firmware version
    fwupdate UpgradeDeviceFwupdateArgs
    reboot bool
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    reboot_at int
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    site_id str
    snapshot bool
    For Junos devices only. Perform recovery snapshot after device is rebooted
    start_time int
    Firmware download start time in epoch
    status str
    enum: error, inprogress, scheduled, starting, success
    sync_upgrade bool
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    sync_upgrade_refresh_interval int
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    sync_upgrade_start_timeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    sync_upgrade_timeout int
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    target_version str
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    timestamp float
    Timestamp
    deviceId String
    deviceVersion String
    current device firmware version
    fwupdate Property Map
    reboot Boolean
    For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
    rebootAt Number
    For Switches and Gateways only and if reboot==true. Reboot start time in epoch seconds, default is start_time
    siteId String
    snapshot Boolean
    For Junos devices only. Perform recovery snapshot after device is rebooted
    startTime Number
    Firmware download start time in epoch
    status String
    enum: error, inprogress, scheduled, starting, success
    syncUpgrade Boolean
    if set to false, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default is true
    syncUpgradeRefreshInterval Number
    if set to sync_upgrade==true, how long to wait between each refresh of the upgrade status, in seconds. Default is 30, minimum is 15
    syncUpgradeStartTimeout Number
    if set to sync_upgrade==true, how long to wait for the upgrade to start before raising an error, in seconds. Default is 60, minimum is 60
    syncUpgradeTimeout Number
    if set to sync_upgrade==true, how long to wait for the upgrade to end before raising an error, in seconds. Default is 1800
    targetVersion String
    firmware version to deploy to the device. Use the junipermist.device.getVersions datasource to get the list of available firmware versions
    timestamp Number
    Timestamp

    Supporting Types

    UpgradeDeviceFwupdate, UpgradeDeviceFwupdateArgs

    Progress int
    Status string
    enum: inprogress, failed, upgraded
    StatusId int
    Timestamp double
    WillRetry bool
    Progress int
    Status string
    enum: inprogress, failed, upgraded
    StatusId int
    Timestamp float64
    WillRetry bool
    progress Integer
    status String
    enum: inprogress, failed, upgraded
    statusId Integer
    timestamp Double
    willRetry Boolean
    progress number
    status string
    enum: inprogress, failed, upgraded
    statusId number
    timestamp number
    willRetry boolean
    progress int
    status str
    enum: inprogress, failed, upgraded
    status_id int
    timestamp float
    will_retry bool
    progress Number
    status String
    enum: inprogress, failed, upgraded
    statusId Number
    timestamp Number
    willRetry Boolean

    Package Details

    Repository
    junipermist pulumi/pulumi-junipermist
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the mist Terraform Provider.
    junipermist logo
    Juniper Mist v0.2.4 published on Saturday, Mar 1, 2025 by Pulumi