junipermist.UpgradeDevice
Explore with Pulumi AI
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:
- Device
Id string - Site
Id string - Target
Version 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
- Reboot
At int - For Switches and Gateways only and if
reboot
==true
. Reboot start time in epoch seconds, default isstart_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 istrue
- Sync
Upgrade intRefresh Interval - 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 intStart Timeout - 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 intTimeout - 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 string - Site
Id string - Target
Version 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
- Reboot
At int - For Switches and Gateways only and if
reboot
==true
. Reboot start time in epoch seconds, default isstart_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 istrue
- Sync
Upgrade intRefresh Interval - 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 intStart Timeout - 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 intTimeout - 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 String - site
Id String - target
Version 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
- reboot
At Integer - For Switches and Gateways only and if
reboot
==true
. Reboot start time in epoch seconds, default isstart_time
- snapshot Boolean
- For Junos devices only. Perform recovery snapshot after device is rebooted
- start
Time Integer - Firmware download start time in epoch
- sync
Upgrade Boolean - if set to
false
, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default istrue
- sync
Upgrade IntegerRefresh Interval - 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 IntegerStart Timeout - 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 IntegerTimeout - 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 string - site
Id string - target
Version 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
- reboot
At number - For Switches and Gateways only and if
reboot
==true
. Reboot start time in epoch seconds, default isstart_time
- snapshot boolean
- For Junos devices only. Perform recovery snapshot after device is rebooted
- start
Time number - Firmware download start time in epoch
- sync
Upgrade boolean - if set to
false
, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default istrue
- sync
Upgrade numberRefresh Interval - 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 numberStart Timeout - 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 numberTimeout - 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 isstart_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 istrue
- sync_
upgrade_ intrefresh_ interval - 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_ intstart_ timeout - 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_ inttimeout - 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 String - site
Id String - target
Version 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
- reboot
At Number - For Switches and Gateways only and if
reboot
==true
. Reboot start time in epoch seconds, default isstart_time
- snapshot Boolean
- For Junos devices only. Perform recovery snapshot after device is rebooted
- start
Time Number - Firmware download start time in epoch
- sync
Upgrade Boolean - if set to
false
, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default istrue
- sync
Upgrade NumberRefresh Interval - 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 NumberStart Timeout - 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 NumberTimeout - 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:
- Device
Version string - current device firmware version
- Fwupdate
Pulumi.
Juniper Mist. Outputs. Upgrade Device Fwupdate - Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- enum:
error
,inprogress
,scheduled
,starting
,success
- Timestamp double
- Timestamp
- Device
Version string - current device firmware version
- Fwupdate
Upgrade
Device Fwupdate - Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- enum:
error
,inprogress
,scheduled
,starting
,success
- Timestamp float64
- Timestamp
- device
Version String - current device firmware version
- fwupdate
Upgrade
Device Fwupdate - id String
- The provider-assigned unique ID for this managed resource.
- status String
- enum:
error
,inprogress
,scheduled
,starting
,success
- timestamp Double
- Timestamp
- device
Version string - current device firmware version
- fwupdate
Upgrade
Device Fwupdate - 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
Upgrade
Device Fwupdate - id str
- The provider-assigned unique ID for this managed resource.
- status str
- enum:
error
,inprogress
,scheduled
,starting
,success
- timestamp float
- Timestamp
- device
Version 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.
- Device
Id string - Device
Version string - current device firmware version
- Fwupdate
Pulumi.
Juniper Mist. Inputs. Upgrade Device Fwupdate - 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 isstart_time
- Site
Id string - Snapshot bool
- For Junos devices only. Perform recovery snapshot after device is rebooted
- Start
Time int - Firmware download start time in epoch
- Status string
- 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 istrue
- Sync
Upgrade intRefresh Interval - 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 intStart Timeout - 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 intTimeout - 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 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
- Device
Id string - Device
Version string - current device firmware version
- Fwupdate
Upgrade
Device Fwupdate Args - 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 isstart_time
- Site
Id string - Snapshot bool
- For Junos devices only. Perform recovery snapshot after device is rebooted
- Start
Time int - Firmware download start time in epoch
- Status string
- 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 istrue
- Sync
Upgrade intRefresh Interval - 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 intStart Timeout - 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 intTimeout - 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 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
- device
Id String - device
Version String - current device firmware version
- fwupdate
Upgrade
Device Fwupdate - reboot Boolean
- For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
- reboot
At Integer - For Switches and Gateways only and if
reboot
==true
. Reboot start time in epoch seconds, default isstart_time
- site
Id String - snapshot Boolean
- For Junos devices only. Perform recovery snapshot after device is rebooted
- start
Time Integer - Firmware download start time in epoch
- status String
- enum:
error
,inprogress
,scheduled
,starting
,success
- sync
Upgrade Boolean - if set to
false
, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default istrue
- sync
Upgrade IntegerRefresh Interval - 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 IntegerStart Timeout - 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 IntegerTimeout - 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 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
- device
Id string - device
Version string - current device firmware version
- fwupdate
Upgrade
Device Fwupdate - reboot boolean
- For Switches and Gateways only (APs are automatically rebooted). Reboot device immediately after upgrade is completed
- reboot
At number - For Switches and Gateways only and if
reboot
==true
. Reboot start time in epoch seconds, default isstart_time
- site
Id string - snapshot boolean
- For Junos devices only. Perform recovery snapshot after device is rebooted
- start
Time number - Firmware download start time in epoch
- status string
- enum:
error
,inprogress
,scheduled
,starting
,success
- sync
Upgrade boolean - if set to
false
, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default istrue
- sync
Upgrade numberRefresh Interval - 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 numberStart Timeout - 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 numberTimeout - 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 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
Upgrade
Device Fwupdate Args - 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 isstart_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 istrue
- sync_
upgrade_ intrefresh_ interval - 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_ intstart_ timeout - 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_ inttimeout - 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
- device
Id String - device
Version 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
- reboot
At Number - For Switches and Gateways only and if
reboot
==true
. Reboot start time in epoch seconds, default isstart_time
- site
Id String - snapshot Boolean
- For Junos devices only. Perform recovery snapshot after device is rebooted
- start
Time Number - Firmware download start time in epoch
- status String
- enum:
error
,inprogress
,scheduled
,starting
,success
- sync
Upgrade Boolean - if set to
false
, the provider will just trigger the upgrade and not wait for the end of the upgrade process. Default istrue
- sync
Upgrade NumberRefresh Interval - 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 NumberStart Timeout - 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 NumberTimeout - 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 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 str
- enum:
inprogress
,failed
,upgraded
- status_
id int - timestamp float
- will_
retry bool
Package Details
- Repository
- junipermist pulumi/pulumi-junipermist
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mist
Terraform Provider.