fortios.system.Federatedupgrade
Explore with Pulumi AI
Coordinate federated upgrades within the Security Fabric. Applies to FortiOS Version >= 7.0.0
.
Create Federatedupgrade Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Federatedupgrade(name: string, args?: FederatedupgradeArgs, opts?: CustomResourceOptions);
@overload
def Federatedupgrade(resource_name: str,
args: Optional[FederatedupgradeArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Federatedupgrade(resource_name: str,
opts: Optional[ResourceOptions] = None,
dynamic_sort_subtable: Optional[str] = None,
failure_device: Optional[str] = None,
failure_reason: Optional[str] = None,
get_all_tables: Optional[str] = None,
ha_reboot_controller: Optional[str] = None,
known_ha_members: Optional[Sequence[FederatedupgradeKnownHaMemberArgs]] = None,
next_path_index: Optional[int] = None,
node_lists: Optional[Sequence[FederatedupgradeNodeListArgs]] = None,
status: Optional[str] = None,
upgrade_id: Optional[int] = None,
vdomparam: Optional[str] = None)
func NewFederatedupgrade(ctx *Context, name string, args *FederatedupgradeArgs, opts ...ResourceOption) (*Federatedupgrade, error)
public Federatedupgrade(string name, FederatedupgradeArgs? args = null, CustomResourceOptions? opts = null)
public Federatedupgrade(String name, FederatedupgradeArgs args)
public Federatedupgrade(String name, FederatedupgradeArgs args, CustomResourceOptions options)
type: fortios:system:Federatedupgrade
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 FederatedupgradeArgs
- 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 FederatedupgradeArgs
- 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 FederatedupgradeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FederatedupgradeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FederatedupgradeArgs
- 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 federatedupgradeResource = new Fortios.System.Federatedupgrade("federatedupgradeResource", new()
{
DynamicSortSubtable = "string",
FailureDevice = "string",
FailureReason = "string",
GetAllTables = "string",
HaRebootController = "string",
KnownHaMembers = new[]
{
new Fortios.System.Inputs.FederatedupgradeKnownHaMemberArgs
{
Serial = "string",
},
},
NextPathIndex = 0,
NodeLists = new[]
{
new Fortios.System.Inputs.FederatedupgradeNodeListArgs
{
CoordinatingFortigate = "string",
DeviceType = "string",
MaximumMinutes = 0,
Serial = "string",
SetupTime = "string",
Time = "string",
Timing = "string",
UpgradePath = "string",
},
},
Status = "string",
UpgradeId = 0,
Vdomparam = "string",
});
example, err := system.NewFederatedupgrade(ctx, "federatedupgradeResource", &system.FederatedupgradeArgs{
DynamicSortSubtable: pulumi.String("string"),
FailureDevice: pulumi.String("string"),
FailureReason: pulumi.String("string"),
GetAllTables: pulumi.String("string"),
HaRebootController: pulumi.String("string"),
KnownHaMembers: system.FederatedupgradeKnownHaMemberArray{
&system.FederatedupgradeKnownHaMemberArgs{
Serial: pulumi.String("string"),
},
},
NextPathIndex: pulumi.Int(0),
NodeLists: system.FederatedupgradeNodeListArray{
&system.FederatedupgradeNodeListArgs{
CoordinatingFortigate: pulumi.String("string"),
DeviceType: pulumi.String("string"),
MaximumMinutes: pulumi.Int(0),
Serial: pulumi.String("string"),
SetupTime: pulumi.String("string"),
Time: pulumi.String("string"),
Timing: pulumi.String("string"),
UpgradePath: pulumi.String("string"),
},
},
Status: pulumi.String("string"),
UpgradeId: pulumi.Int(0),
Vdomparam: pulumi.String("string"),
})
var federatedupgradeResource = new Federatedupgrade("federatedupgradeResource", FederatedupgradeArgs.builder()
.dynamicSortSubtable("string")
.failureDevice("string")
.failureReason("string")
.getAllTables("string")
.haRebootController("string")
.knownHaMembers(FederatedupgradeKnownHaMemberArgs.builder()
.serial("string")
.build())
.nextPathIndex(0)
.nodeLists(FederatedupgradeNodeListArgs.builder()
.coordinatingFortigate("string")
.deviceType("string")
.maximumMinutes(0)
.serial("string")
.setupTime("string")
.time("string")
.timing("string")
.upgradePath("string")
.build())
.status("string")
.upgradeId(0)
.vdomparam("string")
.build());
federatedupgrade_resource = fortios.system.Federatedupgrade("federatedupgradeResource",
dynamic_sort_subtable="string",
failure_device="string",
failure_reason="string",
get_all_tables="string",
ha_reboot_controller="string",
known_ha_members=[fortios.system.FederatedupgradeKnownHaMemberArgs(
serial="string",
)],
next_path_index=0,
node_lists=[fortios.system.FederatedupgradeNodeListArgs(
coordinating_fortigate="string",
device_type="string",
maximum_minutes=0,
serial="string",
setup_time="string",
time="string",
timing="string",
upgrade_path="string",
)],
status="string",
upgrade_id=0,
vdomparam="string")
const federatedupgradeResource = new fortios.system.Federatedupgrade("federatedupgradeResource", {
dynamicSortSubtable: "string",
failureDevice: "string",
failureReason: "string",
getAllTables: "string",
haRebootController: "string",
knownHaMembers: [{
serial: "string",
}],
nextPathIndex: 0,
nodeLists: [{
coordinatingFortigate: "string",
deviceType: "string",
maximumMinutes: 0,
serial: "string",
setupTime: "string",
time: "string",
timing: "string",
upgradePath: "string",
}],
status: "string",
upgradeId: 0,
vdomparam: "string",
});
type: fortios:system:Federatedupgrade
properties:
dynamicSortSubtable: string
failureDevice: string
failureReason: string
getAllTables: string
haRebootController: string
knownHaMembers:
- serial: string
nextPathIndex: 0
nodeLists:
- coordinatingFortigate: string
deviceType: string
maximumMinutes: 0
serial: string
setupTime: string
time: string
timing: string
upgradePath: string
status: string
upgradeId: 0
vdomparam: string
Federatedupgrade 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 Federatedupgrade resource accepts the following input properties:
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Failure
Device string - Serial number of the node to include.
- Failure
Reason string - Reason for upgrade failure.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Ha
Reboot stringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- Known
Ha List<Pulumiverse.Members Fortios. System. Inputs. Federatedupgrade Known Ha Member> - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - Next
Path intIndex - The index of the next image to upgrade to.
- Node
Lists List<Pulumiverse.Fortios. System. Inputs. Federatedupgrade Node List> - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - Status string
- Current status of the upgrade.
- Upgrade
Id int - Unique identifier for this upgrade.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Failure
Device string - Serial number of the node to include.
- Failure
Reason string - Reason for upgrade failure.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Ha
Reboot stringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- Known
Ha []FederatedupgradeMembers Known Ha Member Args - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - Next
Path intIndex - The index of the next image to upgrade to.
- Node
Lists []FederatedupgradeNode List Args - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - Status string
- Current status of the upgrade.
- Upgrade
Id int - Unique identifier for this upgrade.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- failure
Device String - Serial number of the node to include.
- failure
Reason String - Reason for upgrade failure.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ha
Reboot StringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- known
Ha List<FederatedupgradeMembers Known Ha Member> - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - next
Path IntegerIndex - The index of the next image to upgrade to.
- node
Lists List<FederatedupgradeNode List> - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - status String
- Current status of the upgrade.
- upgrade
Id Integer - Unique identifier for this upgrade.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- failure
Device string - Serial number of the node to include.
- failure
Reason string - Reason for upgrade failure.
- get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ha
Reboot stringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- known
Ha FederatedupgradeMembers Known Ha Member[] - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - next
Path numberIndex - The index of the next image to upgrade to.
- node
Lists FederatedupgradeNode List[] - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - status string
- Current status of the upgrade.
- upgrade
Id number - Unique identifier for this upgrade.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- failure_
device str - Serial number of the node to include.
- failure_
reason str - Reason for upgrade failure.
- get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ha_
reboot_ strcontroller - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- known_
ha_ Sequence[Federatedupgrademembers Known Ha Member Args] - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - next_
path_ intindex - The index of the next image to upgrade to.
- node_
lists Sequence[FederatedupgradeNode List Args] - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - status str
- Current status of the upgrade.
- upgrade_
id int - Unique identifier for this upgrade.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- failure
Device String - Serial number of the node to include.
- failure
Reason String - Reason for upgrade failure.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ha
Reboot StringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- known
Ha List<Property Map>Members - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - next
Path NumberIndex - The index of the next image to upgrade to.
- node
Lists List<Property Map> - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - status String
- Current status of the upgrade.
- upgrade
Id Number - Unique identifier for this upgrade.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Federatedupgrade resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Federatedupgrade Resource
Get an existing Federatedupgrade 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?: FederatedupgradeState, opts?: CustomResourceOptions): Federatedupgrade
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dynamic_sort_subtable: Optional[str] = None,
failure_device: Optional[str] = None,
failure_reason: Optional[str] = None,
get_all_tables: Optional[str] = None,
ha_reboot_controller: Optional[str] = None,
known_ha_members: Optional[Sequence[FederatedupgradeKnownHaMemberArgs]] = None,
next_path_index: Optional[int] = None,
node_lists: Optional[Sequence[FederatedupgradeNodeListArgs]] = None,
status: Optional[str] = None,
upgrade_id: Optional[int] = None,
vdomparam: Optional[str] = None) -> Federatedupgrade
func GetFederatedupgrade(ctx *Context, name string, id IDInput, state *FederatedupgradeState, opts ...ResourceOption) (*Federatedupgrade, error)
public static Federatedupgrade Get(string name, Input<string> id, FederatedupgradeState? state, CustomResourceOptions? opts = null)
public static Federatedupgrade get(String name, Output<String> id, FederatedupgradeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Failure
Device string - Serial number of the node to include.
- Failure
Reason string - Reason for upgrade failure.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Ha
Reboot stringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- Known
Ha List<Pulumiverse.Members Fortios. System. Inputs. Federatedupgrade Known Ha Member> - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - Next
Path intIndex - The index of the next image to upgrade to.
- Node
Lists List<Pulumiverse.Fortios. System. Inputs. Federatedupgrade Node List> - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - Status string
- Current status of the upgrade.
- Upgrade
Id int - Unique identifier for this upgrade.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Failure
Device string - Serial number of the node to include.
- Failure
Reason string - Reason for upgrade failure.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Ha
Reboot stringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- Known
Ha []FederatedupgradeMembers Known Ha Member Args - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - Next
Path intIndex - The index of the next image to upgrade to.
- Node
Lists []FederatedupgradeNode List Args - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - Status string
- Current status of the upgrade.
- Upgrade
Id int - Unique identifier for this upgrade.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- failure
Device String - Serial number of the node to include.
- failure
Reason String - Reason for upgrade failure.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ha
Reboot StringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- known
Ha List<FederatedupgradeMembers Known Ha Member> - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - next
Path IntegerIndex - The index of the next image to upgrade to.
- node
Lists List<FederatedupgradeNode List> - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - status String
- Current status of the upgrade.
- upgrade
Id Integer - Unique identifier for this upgrade.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- failure
Device string - Serial number of the node to include.
- failure
Reason string - Reason for upgrade failure.
- get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ha
Reboot stringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- known
Ha FederatedupgradeMembers Known Ha Member[] - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - next
Path numberIndex - The index of the next image to upgrade to.
- node
Lists FederatedupgradeNode List[] - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - status string
- Current status of the upgrade.
- upgrade
Id number - Unique identifier for this upgrade.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- failure_
device str - Serial number of the node to include.
- failure_
reason str - Reason for upgrade failure.
- get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ha_
reboot_ strcontroller - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- known_
ha_ Sequence[Federatedupgrademembers Known Ha Member Args] - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - next_
path_ intindex - The index of the next image to upgrade to.
- node_
lists Sequence[FederatedupgradeNode List Args] - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - status str
- Current status of the upgrade.
- upgrade_
id int - Unique identifier for this upgrade.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- failure
Device String - Serial number of the node to include.
- failure
Reason String - Reason for upgrade failure.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ha
Reboot StringController - Serial number of the FortiGate unit that will control the reboot process for the federated upgrade of the HA cluster.
- known
Ha List<Property Map>Members - Known members of the HA cluster. If a member is missing at upgrade time, the upgrade will be cancelled. The structure of
known_ha_members
block is documented below. - next
Path NumberIndex - The index of the next image to upgrade to.
- node
Lists List<Property Map> - Nodes which will be included in the upgrade. The structure of
node_list
block is documented below. - status String
- Current status of the upgrade.
- upgrade
Id Number - Unique identifier for this upgrade.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Supporting Types
FederatedupgradeKnownHaMember, FederatedupgradeKnownHaMemberArgs
- Serial string
- Serial number of HA member
- Serial string
- Serial number of HA member
- serial String
- Serial number of HA member
- serial string
- Serial number of HA member
- serial str
- Serial number of HA member
- serial String
- Serial number of HA member
FederatedupgradeNodeList, FederatedupgradeNodeListArgs
- Coordinating
Fortigate string - The serial of the FortiGate that controls this device
- Device
Type string - What type of device this node represents.
- Maximum
Minutes int - Maximum number of minutes to allow for immediate upgrade preparation.
- Serial string
- Serial number of the node to include.
- Setup
Time string - Upgrade preparation start time in UTC (hh:mm yyyy/mm/dd UTC).
- Time string
- Scheduled upgrade execution time in UTC (hh:mm yyyy/mm/dd UTC).
- Timing string
- Whether the upgrade should be run immediately, or at a scheduled time. Valid values:
immediate
,scheduled
. - Upgrade
Path string - Image IDs to upgrade through.
- Coordinating
Fortigate string - The serial of the FortiGate that controls this device
- Device
Type string - What type of device this node represents.
- Maximum
Minutes int - Maximum number of minutes to allow for immediate upgrade preparation.
- Serial string
- Serial number of the node to include.
- Setup
Time string - Upgrade preparation start time in UTC (hh:mm yyyy/mm/dd UTC).
- Time string
- Scheduled upgrade execution time in UTC (hh:mm yyyy/mm/dd UTC).
- Timing string
- Whether the upgrade should be run immediately, or at a scheduled time. Valid values:
immediate
,scheduled
. - Upgrade
Path string - Image IDs to upgrade through.
- coordinating
Fortigate String - The serial of the FortiGate that controls this device
- device
Type String - What type of device this node represents.
- maximum
Minutes Integer - Maximum number of minutes to allow for immediate upgrade preparation.
- serial String
- Serial number of the node to include.
- setup
Time String - Upgrade preparation start time in UTC (hh:mm yyyy/mm/dd UTC).
- time String
- Scheduled upgrade execution time in UTC (hh:mm yyyy/mm/dd UTC).
- timing String
- Whether the upgrade should be run immediately, or at a scheduled time. Valid values:
immediate
,scheduled
. - upgrade
Path String - Image IDs to upgrade through.
- coordinating
Fortigate string - The serial of the FortiGate that controls this device
- device
Type string - What type of device this node represents.
- maximum
Minutes number - Maximum number of minutes to allow for immediate upgrade preparation.
- serial string
- Serial number of the node to include.
- setup
Time string - Upgrade preparation start time in UTC (hh:mm yyyy/mm/dd UTC).
- time string
- Scheduled upgrade execution time in UTC (hh:mm yyyy/mm/dd UTC).
- timing string
- Whether the upgrade should be run immediately, or at a scheduled time. Valid values:
immediate
,scheduled
. - upgrade
Path string - Image IDs to upgrade through.
- coordinating_
fortigate str - The serial of the FortiGate that controls this device
- device_
type str - What type of device this node represents.
- maximum_
minutes int - Maximum number of minutes to allow for immediate upgrade preparation.
- serial str
- Serial number of the node to include.
- setup_
time str - Upgrade preparation start time in UTC (hh:mm yyyy/mm/dd UTC).
- time str
- Scheduled upgrade execution time in UTC (hh:mm yyyy/mm/dd UTC).
- timing str
- Whether the upgrade should be run immediately, or at a scheduled time. Valid values:
immediate
,scheduled
. - upgrade_
path str - Image IDs to upgrade through.
- coordinating
Fortigate String - The serial of the FortiGate that controls this device
- device
Type String - What type of device this node represents.
- maximum
Minutes Number - Maximum number of minutes to allow for immediate upgrade preparation.
- serial String
- Serial number of the node to include.
- setup
Time String - Upgrade preparation start time in UTC (hh:mm yyyy/mm/dd UTC).
- time String
- Scheduled upgrade execution time in UTC (hh:mm yyyy/mm/dd UTC).
- timing String
- Whether the upgrade should be run immediately, or at a scheduled time. Valid values:
immediate
,scheduled
. - upgrade
Path String - Image IDs to upgrade through.
Import
System FederatedUpgrade can be imported using any of these accepted formats:
$ pulumi import fortios:system/federatedupgrade:Federatedupgrade labelname SystemFederatedUpgrade
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:system/federatedupgrade:Federatedupgrade labelname SystemFederatedUpgrade
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.