avi.Upgradestatusinfo
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Upgradestatusinfo” sidebar_current: “docs-avi-resource-upgradestatusinfo” description: |- Creates and manages Avi UpgradeStatusInfo.
avi.Upgradestatusinfo
The UpgradeStatusInfo resource allows the creation and management of Avi UpgradeStatusInfo
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Upgradestatusinfo("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Upgradestatusinfo("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewUpgradestatusinfo(ctx, "foo", &avi.UpgradestatusinfoArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Upgradestatusinfo("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Upgradestatusinfo;
import com.pulumi.avi.UpgradestatusinfoArgs;
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 foo = new Upgradestatusinfo("foo", UpgradestatusinfoArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Upgradestatusinfo
properties:
tenantRef: /api/tenant/?name=admin
Create Upgradestatusinfo Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Upgradestatusinfo(name: string, args?: UpgradestatusinfoArgs, opts?: CustomResourceOptions);
@overload
def Upgradestatusinfo(resource_name: str,
args: Optional[UpgradestatusinfoArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Upgradestatusinfo(resource_name: str,
opts: Optional[ResourceOptions] = None,
after_reboot_rollback_fnc: Optional[str] = None,
after_reboot_task_name: Optional[str] = None,
clean: Optional[str] = None,
dryrun_infos: Optional[Sequence[UpgradestatusinfoDryrunInfoArgs]] = None,
duration: Optional[str] = None,
enable_patch_rollback: Optional[str] = None,
enable_rollback: Optional[str] = None,
end_time: Optional[str] = None,
enqueue_time: Optional[str] = None,
fips_mode: Optional[str] = None,
histories: Optional[Sequence[UpgradestatusinfoHistoryArgs]] = None,
image_path: Optional[str] = None,
image_ref: Optional[str] = None,
name: Optional[str] = None,
node_type: Optional[str] = None,
obj_cloud_ref: Optional[str] = None,
params: Optional[Sequence[UpgradestatusinfoParamArgs]] = None,
patch_image_path: Optional[str] = None,
patch_image_ref: Optional[str] = None,
patch_lists: Optional[Sequence[UpgradestatusinfoPatchListArgs]] = None,
patch_reboot: Optional[str] = None,
patch_version: Optional[str] = None,
prev_image_path: Optional[str] = None,
prev_patch_image_path: Optional[str] = None,
prev_remote_image_ref: Optional[str] = None,
previous_image_ref: Optional[str] = None,
previous_patch_image_ref: Optional[str] = None,
previous_patch_lists: Optional[Sequence[UpgradestatusinfoPreviousPatchListArgs]] = None,
previous_patch_version: Optional[str] = None,
previous_version: Optional[str] = None,
progress: Optional[str] = None,
reason: Optional[str] = None,
remote_image_ref: Optional[str] = None,
se_patch_image_path: Optional[str] = None,
se_patch_image_ref: Optional[str] = None,
se_upgrade_events: Optional[Sequence[UpgradestatusinfoSeUpgradeEventArgs]] = None,
seg_params: Optional[Sequence[UpgradestatusinfoSegParamArgs]] = None,
seg_statuses: Optional[Sequence[UpgradestatusinfoSegStatusArgs]] = None,
start_time: Optional[str] = None,
statediff_ref: Optional[str] = None,
states: Optional[Sequence[UpgradestatusinfoStateArgs]] = None,
system: Optional[str] = None,
system_report_refs: Optional[Sequence[str]] = None,
tasks_completed: Optional[str] = None,
tenant_ref: Optional[str] = None,
total_tasks: Optional[str] = None,
upgrade_events: Optional[Sequence[UpgradestatusinfoUpgradeEventArgs]] = None,
upgrade_ops: Optional[str] = None,
upgrade_readinesses: Optional[Sequence[UpgradestatusinfoUpgradeReadinessArgs]] = None,
upgradestatusinfo_id: Optional[str] = None,
uuid: Optional[str] = None,
version: Optional[str] = None)
func NewUpgradestatusinfo(ctx *Context, name string, args *UpgradestatusinfoArgs, opts ...ResourceOption) (*Upgradestatusinfo, error)
public Upgradestatusinfo(string name, UpgradestatusinfoArgs? args = null, CustomResourceOptions? opts = null)
public Upgradestatusinfo(String name, UpgradestatusinfoArgs args)
public Upgradestatusinfo(String name, UpgradestatusinfoArgs args, CustomResourceOptions options)
type: avi:Upgradestatusinfo
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 UpgradestatusinfoArgs
- 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 UpgradestatusinfoArgs
- 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 UpgradestatusinfoArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UpgradestatusinfoArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UpgradestatusinfoArgs
- 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 upgradestatusinfoResource = new Avi.Upgradestatusinfo("upgradestatusinfoResource", new()
{
AfterRebootRollbackFnc = "string",
AfterRebootTaskName = "string",
Clean = "string",
DryrunInfos = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoArgs
{
Duration = "string",
EndTime = "string",
Operation = "string",
Params = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoParamArgs
{
ControllerPatchRef = "string",
Dryrun = "string",
ImageRef = "string",
PrechecksOnly = "string",
SeGroupOptions = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoParamSeGroupOptionArgs
{
ActionOnError = "string",
Disruptive = "string",
},
},
SeGroupRefs = new[]
{
"string",
},
SePatchRef = "string",
SkipWarnings = "string",
System = "string",
},
},
Progress = "string",
StartTime = "string",
States = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoStateArgs
{
LastChangedTimes = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoStateLastChangedTimeArgs
{
Secs = "string",
Usecs = "string",
},
},
Reason = "string",
Rebooted = "string",
State = "string",
},
},
TasksCompleted = "string",
TotalTasks = "string",
UpgradeEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoUpgradeEventArgs
{
NodesEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoUpgradeEventNodesEventArgs
{
Duration = "string",
EndTime = "string",
Ips = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoUpgradeEventNodesEventIpArgs
{
Addr = "string",
Type = "string",
},
},
Message = "string",
StartTime = "string",
Status = "string",
SubTasks = new[]
{
"string",
},
},
},
SubEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoUpgradeEventSubEventArgs
{
Duration = "string",
EndTime = "string",
Ips = new[]
{
new Avi.Inputs.UpgradestatusinfoDryrunInfoUpgradeEventSubEventIpArgs
{
Addr = "string",
Type = "string",
},
},
Message = "string",
StartTime = "string",
Status = "string",
SubTasks = new[]
{
"string",
},
},
},
Task = "string",
TaskName = "string",
},
},
Worker = "string",
},
},
Duration = "string",
EnablePatchRollback = "string",
EnableRollback = "string",
EndTime = "string",
EnqueueTime = "string",
FipsMode = "string",
Histories = new[]
{
new Avi.Inputs.UpgradestatusinfoHistoryArgs
{
Duration = "string",
EndTime = "string",
Ops = "string",
PatchVersion = "string",
SeUpgradeEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoHistorySeUpgradeEventArgs
{
FromSeRef = "string",
NumSe = "string",
NumSeGroup = "string",
NumVs = "string",
Reasons = new[]
{
"string",
},
SeGroupHaMode = "string",
SeGroupRef = "string",
SeRef = "string",
SubTasks = new[]
{
"string",
},
Task = "string",
ToSeRef = "string",
TrafficStatus = "string",
VsRef = "string",
},
},
SegStatuses = new[]
{
new Avi.Inputs.UpgradestatusinfoHistorySegStatusArgs
{
ControllerVersion = "string",
DisruptedVsReves = new[]
{
"string",
},
Duration = "string",
EndTime = "string",
EnqueueTime = "string",
HaMode = "string",
InProgress = "string",
Notes = new[]
{
"string",
},
NumSe = "string",
NumSeWithNoVs = "string",
NumSeWithVsNotScaledout = "string",
NumSeWithVsScaledout = "string",
NumVs = "string",
NumVsDisrupted = "string",
Progress = "string",
Reasons = new[]
{
"string",
},
RequestTime = "string",
SeAlreadyUpgradedAtStarts = new[]
{
"string",
},
SeDisconnectedAtStarts = new[]
{
"string",
},
SeGroupName = "string",
SeGroupUuid = "string",
SeIpMissingAtStarts = new[]
{
"string",
},
SePoweredoffAtStarts = new[]
{
"string",
},
SeRebootInProgressRef = "string",
SeUpgradeCompleteds = new[]
{
"string",
},
SeUpgradeErrors = new[]
{
new Avi.Inputs.UpgradestatusinfoHistorySegStatusSeUpgradeErrorArgs
{
FromSeRef = "string",
NumSe = "string",
NumSeGroup = "string",
NumVs = "string",
Reasons = new[]
{
"string",
},
SeGroupHaMode = "string",
SeGroupRef = "string",
SeRef = "string",
SubTasks = new[]
{
"string",
},
Task = "string",
ToSeRef = "string",
TrafficStatus = "string",
VsRef = "string",
},
},
SeUpgradeFaileds = new[]
{
"string",
},
SeUpgradeInProgresses = new[]
{
"string",
},
SeUpgradeNotStarteds = new[]
{
"string",
},
SeUpgradeSkipSuspendeds = new[]
{
"string",
},
SeUpgradeSuspendeds = new[]
{
"string",
},
SeWithNoVs = new[]
{
"string",
},
SeWithVsNotScaledouts = new[]
{
"string",
},
SeWithVsScaledouts = new[]
{
"string",
},
StartTime = "string",
State = "string",
TenantRef = "string",
Thread = "string",
TrafficStatus = "string",
VsErrors = new[]
{
new Avi.Inputs.UpgradestatusinfoHistorySegStatusVsErrorArgs
{
EventTimestamps = new[]
{
new Avi.Inputs.UpgradestatusinfoHistorySegStatusVsErrorEventTimestampArgs
{
Secs = "string",
Usecs = "string",
},
},
Reasons = new[]
{
"string",
},
SeGroupHaMode = "string",
SeGroupRef = "string",
SeRef = "string",
TenantRef = "string",
TrafficStatus = "string",
VipId = "string",
VsRef = "string",
},
},
VsMigrateInProgressReves = new[]
{
"string",
},
VsScaleinInProgressReves = new[]
{
"string",
},
VsScaleoutInProgressReves = new[]
{
"string",
},
Worker = "string",
},
},
StartTime = "string",
StatediffRef = "string",
States = new[]
{
new Avi.Inputs.UpgradestatusinfoHistoryStateArgs
{
LastChangedTimes = new[]
{
new Avi.Inputs.UpgradestatusinfoHistoryStateLastChangedTimeArgs
{
Secs = "string",
Usecs = "string",
},
},
Reason = "string",
Rebooted = "string",
State = "string",
},
},
UpgradeEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoHistoryUpgradeEventArgs
{
NodesEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoHistoryUpgradeEventNodesEventArgs
{
Duration = "string",
EndTime = "string",
Ips = new[]
{
new Avi.Inputs.UpgradestatusinfoHistoryUpgradeEventNodesEventIpArgs
{
Addr = "string",
Type = "string",
},
},
Message = "string",
StartTime = "string",
Status = "string",
SubTasks = new[]
{
"string",
},
},
},
SubEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoHistoryUpgradeEventSubEventArgs
{
Duration = "string",
EndTime = "string",
Ips = new[]
{
new Avi.Inputs.UpgradestatusinfoHistoryUpgradeEventSubEventIpArgs
{
Addr = "string",
Type = "string",
},
},
Message = "string",
StartTime = "string",
Status = "string",
SubTasks = new[]
{
"string",
},
},
},
Task = "string",
TaskName = "string",
},
},
Version = "string",
},
},
ImagePath = "string",
ImageRef = "string",
Name = "string",
NodeType = "string",
ObjCloudRef = "string",
Params = new[]
{
new Avi.Inputs.UpgradestatusinfoParamArgs
{
Controllers = new[]
{
new Avi.Inputs.UpgradestatusinfoParamControllerArgs
{
TaskBaseTimeout = "string",
},
},
ImageRef = "string",
PatchRef = "string",
SeGroupOptions = new[]
{
new Avi.Inputs.UpgradestatusinfoParamSeGroupOptionArgs
{
ActionOnError = "string",
Disruptive = "string",
},
},
SeGroupResumeOptions = new[]
{
new Avi.Inputs.UpgradestatusinfoParamSeGroupResumeOptionArgs
{
ActionOnError = "string",
Disruptive = "string",
SkipSuspended = "string",
},
},
ServiceEngines = new[]
{
new Avi.Inputs.UpgradestatusinfoParamServiceEngineArgs
{
ConcurrentSegroupUpgrades = "string",
ImageDataTransferSize = "string",
LargeSeConnectTimeout = "string",
SeConnectTimeout = "string",
SimultaneousImageDownloads = "string",
TaskBaseTimeout = "string",
},
},
},
},
PatchImagePath = "string",
PatchImageRef = "string",
PatchLists = new[]
{
new Avi.Inputs.UpgradestatusinfoPatchListArgs
{
PatchImagePath = "string",
PatchImageRef = "string",
PatchVersion = "string",
},
},
PatchReboot = "string",
PatchVersion = "string",
PrevImagePath = "string",
PrevPatchImagePath = "string",
PrevRemoteImageRef = "string",
PreviousImageRef = "string",
PreviousPatchImageRef = "string",
PreviousPatchLists = new[]
{
new Avi.Inputs.UpgradestatusinfoPreviousPatchListArgs
{
PatchImagePath = "string",
PatchImageRef = "string",
PatchVersion = "string",
},
},
PreviousPatchVersion = "string",
PreviousVersion = "string",
Progress = "string",
Reason = "string",
RemoteImageRef = "string",
SePatchImagePath = "string",
SePatchImageRef = "string",
SeUpgradeEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoSeUpgradeEventArgs
{
FromSeRef = "string",
NumSe = "string",
NumSeGroup = "string",
NumVs = "string",
Reasons = new[]
{
"string",
},
SeGroupHaMode = "string",
SeGroupRef = "string",
SeRef = "string",
SubTasks = new[]
{
"string",
},
Task = "string",
ToSeRef = "string",
TrafficStatus = "string",
VsRef = "string",
},
},
SegParams = new[]
{
new Avi.Inputs.UpgradestatusinfoSegParamArgs
{
Controllers = new[]
{
new Avi.Inputs.UpgradestatusinfoSegParamControllerArgs
{
TaskBaseTimeout = "string",
},
},
ImageRef = "string",
PatchRef = "string",
SeGroupOptions = new[]
{
new Avi.Inputs.UpgradestatusinfoSegParamSeGroupOptionArgs
{
ActionOnError = "string",
Disruptive = "string",
},
},
SeGroupResumeOptions = new[]
{
new Avi.Inputs.UpgradestatusinfoSegParamSeGroupResumeOptionArgs
{
ActionOnError = "string",
Disruptive = "string",
SkipSuspended = "string",
},
},
ServiceEngines = new[]
{
new Avi.Inputs.UpgradestatusinfoSegParamServiceEngineArgs
{
ConcurrentSegroupUpgrades = "string",
ImageDataTransferSize = "string",
LargeSeConnectTimeout = "string",
SeConnectTimeout = "string",
SimultaneousImageDownloads = "string",
TaskBaseTimeout = "string",
},
},
},
},
SegStatuses = new[]
{
new Avi.Inputs.UpgradestatusinfoSegStatusArgs
{
ControllerVersion = "string",
DisruptedVsReves = new[]
{
"string",
},
Duration = "string",
EndTime = "string",
EnqueueTime = "string",
HaMode = "string",
InProgress = "string",
Notes = new[]
{
"string",
},
NumSe = "string",
NumSeWithNoVs = "string",
NumSeWithVsNotScaledout = "string",
NumSeWithVsScaledout = "string",
NumVs = "string",
NumVsDisrupted = "string",
Progress = "string",
Reasons = new[]
{
"string",
},
RequestTime = "string",
SeAlreadyUpgradedAtStarts = new[]
{
"string",
},
SeDisconnectedAtStarts = new[]
{
"string",
},
SeGroupName = "string",
SeGroupUuid = "string",
SeIpMissingAtStarts = new[]
{
"string",
},
SePoweredoffAtStarts = new[]
{
"string",
},
SeRebootInProgressRef = "string",
SeUpgradeCompleteds = new[]
{
"string",
},
SeUpgradeErrors = new[]
{
new Avi.Inputs.UpgradestatusinfoSegStatusSeUpgradeErrorArgs
{
FromSeRef = "string",
NumSe = "string",
NumSeGroup = "string",
NumVs = "string",
Reasons = new[]
{
"string",
},
SeGroupHaMode = "string",
SeGroupRef = "string",
SeRef = "string",
SubTasks = new[]
{
"string",
},
Task = "string",
ToSeRef = "string",
TrafficStatus = "string",
VsRef = "string",
},
},
SeUpgradeFaileds = new[]
{
"string",
},
SeUpgradeInProgresses = new[]
{
"string",
},
SeUpgradeNotStarteds = new[]
{
"string",
},
SeUpgradeSkipSuspendeds = new[]
{
"string",
},
SeUpgradeSuspendeds = new[]
{
"string",
},
SeWithNoVs = new[]
{
"string",
},
SeWithVsNotScaledouts = new[]
{
"string",
},
SeWithVsScaledouts = new[]
{
"string",
},
StartTime = "string",
State = "string",
TenantRef = "string",
Thread = "string",
TrafficStatus = "string",
VsErrors = new[]
{
new Avi.Inputs.UpgradestatusinfoSegStatusVsErrorArgs
{
EventTimestamps = new[]
{
new Avi.Inputs.UpgradestatusinfoSegStatusVsErrorEventTimestampArgs
{
Secs = "string",
Usecs = "string",
},
},
Reasons = new[]
{
"string",
},
SeGroupHaMode = "string",
SeGroupRef = "string",
SeRef = "string",
TenantRef = "string",
TrafficStatus = "string",
VipId = "string",
VsRef = "string",
},
},
VsMigrateInProgressReves = new[]
{
"string",
},
VsScaleinInProgressReves = new[]
{
"string",
},
VsScaleoutInProgressReves = new[]
{
"string",
},
Worker = "string",
},
},
StartTime = "string",
StatediffRef = "string",
States = new[]
{
new Avi.Inputs.UpgradestatusinfoStateArgs
{
LastChangedTimes = new[]
{
new Avi.Inputs.UpgradestatusinfoStateLastChangedTimeArgs
{
Secs = "string",
Usecs = "string",
},
},
Reason = "string",
Rebooted = "string",
State = "string",
},
},
System = "string",
SystemReportRefs = new[]
{
"string",
},
TasksCompleted = "string",
TenantRef = "string",
TotalTasks = "string",
UpgradeEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeEventArgs
{
NodesEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeEventNodesEventArgs
{
Duration = "string",
EndTime = "string",
Ips = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeEventNodesEventIpArgs
{
Addr = "string",
Type = "string",
},
},
Message = "string",
StartTime = "string",
Status = "string",
SubTasks = new[]
{
"string",
},
},
},
SubEvents = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeEventSubEventArgs
{
Duration = "string",
EndTime = "string",
Ips = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeEventSubEventIpArgs
{
Addr = "string",
Type = "string",
},
},
Message = "string",
StartTime = "string",
Status = "string",
SubTasks = new[]
{
"string",
},
},
},
Task = "string",
TaskName = "string",
},
},
UpgradeOps = "string",
UpgradeReadinesses = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeReadinessArgs
{
Checks = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeReadinessCheckArgs
{
CheckCode = "string",
Description = "string",
Details = new[]
{
"string",
},
Duration = "string",
EndTime = "string",
ErrorDetails = new[]
{
"string",
},
StartTime = "string",
State = "string",
},
},
ChecksCompleted = "string",
Duration = "string",
EndTime = "string",
ImageRef = "string",
PatchImageRef = "string",
Progress = "string",
StartTime = "string",
States = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeReadinessStateArgs
{
LastChangedTimes = new[]
{
new Avi.Inputs.UpgradestatusinfoUpgradeReadinessStateLastChangedTimeArgs
{
Secs = "string",
Usecs = "string",
},
},
Reason = "string",
Rebooted = "string",
State = "string",
},
},
TotalChecks = "string",
UpgradeOps = "string",
},
},
UpgradestatusinfoId = "string",
Uuid = "string",
Version = "string",
});
example, err := avi.NewUpgradestatusinfo(ctx, "upgradestatusinfoResource", &avi.UpgradestatusinfoArgs{
AfterRebootRollbackFnc: pulumi.String("string"),
AfterRebootTaskName: pulumi.String("string"),
Clean: pulumi.String("string"),
DryrunInfos: avi.UpgradestatusinfoDryrunInfoArray{
&avi.UpgradestatusinfoDryrunInfoArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Operation: pulumi.String("string"),
Params: avi.UpgradestatusinfoDryrunInfoParamArray{
&avi.UpgradestatusinfoDryrunInfoParamArgs{
ControllerPatchRef: pulumi.String("string"),
Dryrun: pulumi.String("string"),
ImageRef: pulumi.String("string"),
PrechecksOnly: pulumi.String("string"),
SeGroupOptions: avi.UpgradestatusinfoDryrunInfoParamSeGroupOptionArray{
&avi.UpgradestatusinfoDryrunInfoParamSeGroupOptionArgs{
ActionOnError: pulumi.String("string"),
Disruptive: pulumi.String("string"),
},
},
SeGroupRefs: pulumi.StringArray{
pulumi.String("string"),
},
SePatchRef: pulumi.String("string"),
SkipWarnings: pulumi.String("string"),
System: pulumi.String("string"),
},
},
Progress: pulumi.String("string"),
StartTime: pulumi.String("string"),
States: avi.UpgradestatusinfoDryrunInfoStateArray{
&avi.UpgradestatusinfoDryrunInfoStateArgs{
LastChangedTimes: avi.UpgradestatusinfoDryrunInfoStateLastChangedTimeArray{
&avi.UpgradestatusinfoDryrunInfoStateLastChangedTimeArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Reason: pulumi.String("string"),
Rebooted: pulumi.String("string"),
State: pulumi.String("string"),
},
},
TasksCompleted: pulumi.String("string"),
TotalTasks: pulumi.String("string"),
UpgradeEvents: avi.UpgradestatusinfoDryrunInfoUpgradeEventArray{
&avi.UpgradestatusinfoDryrunInfoUpgradeEventArgs{
NodesEvents: avi.UpgradestatusinfoDryrunInfoUpgradeEventNodesEventArray{
&avi.UpgradestatusinfoDryrunInfoUpgradeEventNodesEventArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ips: avi.UpgradestatusinfoDryrunInfoUpgradeEventNodesEventIpArray{
&avi.UpgradestatusinfoDryrunInfoUpgradeEventNodesEventIpArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Message: pulumi.String("string"),
StartTime: pulumi.String("string"),
Status: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
SubEvents: avi.UpgradestatusinfoDryrunInfoUpgradeEventSubEventArray{
&avi.UpgradestatusinfoDryrunInfoUpgradeEventSubEventArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ips: avi.UpgradestatusinfoDryrunInfoUpgradeEventSubEventIpArray{
&avi.UpgradestatusinfoDryrunInfoUpgradeEventSubEventIpArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Message: pulumi.String("string"),
StartTime: pulumi.String("string"),
Status: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Task: pulumi.String("string"),
TaskName: pulumi.String("string"),
},
},
Worker: pulumi.String("string"),
},
},
Duration: pulumi.String("string"),
EnablePatchRollback: pulumi.String("string"),
EnableRollback: pulumi.String("string"),
EndTime: pulumi.String("string"),
EnqueueTime: pulumi.String("string"),
FipsMode: pulumi.String("string"),
Histories: avi.UpgradestatusinfoHistoryArray{
&avi.UpgradestatusinfoHistoryArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ops: pulumi.String("string"),
PatchVersion: pulumi.String("string"),
SeUpgradeEvents: avi.UpgradestatusinfoHistorySeUpgradeEventArray{
&avi.UpgradestatusinfoHistorySeUpgradeEventArgs{
FromSeRef: pulumi.String("string"),
NumSe: pulumi.String("string"),
NumSeGroup: pulumi.String("string"),
NumVs: pulumi.String("string"),
Reasons: pulumi.StringArray{
pulumi.String("string"),
},
SeGroupHaMode: pulumi.String("string"),
SeGroupRef: pulumi.String("string"),
SeRef: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
Task: pulumi.String("string"),
ToSeRef: pulumi.String("string"),
TrafficStatus: pulumi.String("string"),
VsRef: pulumi.String("string"),
},
},
SegStatuses: avi.UpgradestatusinfoHistorySegStatusArray{
&avi.UpgradestatusinfoHistorySegStatusArgs{
ControllerVersion: pulumi.String("string"),
DisruptedVsReves: pulumi.StringArray{
pulumi.String("string"),
},
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
EnqueueTime: pulumi.String("string"),
HaMode: pulumi.String("string"),
InProgress: pulumi.String("string"),
Notes: pulumi.StringArray{
pulumi.String("string"),
},
NumSe: pulumi.String("string"),
NumSeWithNoVs: pulumi.String("string"),
NumSeWithVsNotScaledout: pulumi.String("string"),
NumSeWithVsScaledout: pulumi.String("string"),
NumVs: pulumi.String("string"),
NumVsDisrupted: pulumi.String("string"),
Progress: pulumi.String("string"),
Reasons: pulumi.StringArray{
pulumi.String("string"),
},
RequestTime: pulumi.String("string"),
SeAlreadyUpgradedAtStarts: pulumi.StringArray{
pulumi.String("string"),
},
SeDisconnectedAtStarts: pulumi.StringArray{
pulumi.String("string"),
},
SeGroupName: pulumi.String("string"),
SeGroupUuid: pulumi.String("string"),
SeIpMissingAtStarts: pulumi.StringArray{
pulumi.String("string"),
},
SePoweredoffAtStarts: pulumi.StringArray{
pulumi.String("string"),
},
SeRebootInProgressRef: pulumi.String("string"),
SeUpgradeCompleteds: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeErrors: avi.UpgradestatusinfoHistorySegStatusSeUpgradeErrorArray{
&avi.UpgradestatusinfoHistorySegStatusSeUpgradeErrorArgs{
FromSeRef: pulumi.String("string"),
NumSe: pulumi.String("string"),
NumSeGroup: pulumi.String("string"),
NumVs: pulumi.String("string"),
Reasons: pulumi.StringArray{
pulumi.String("string"),
},
SeGroupHaMode: pulumi.String("string"),
SeGroupRef: pulumi.String("string"),
SeRef: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
Task: pulumi.String("string"),
ToSeRef: pulumi.String("string"),
TrafficStatus: pulumi.String("string"),
VsRef: pulumi.String("string"),
},
},
SeUpgradeFaileds: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeInProgresses: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeNotStarteds: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeSkipSuspendeds: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeSuspendeds: pulumi.StringArray{
pulumi.String("string"),
},
SeWithNoVs: pulumi.StringArray{
pulumi.String("string"),
},
SeWithVsNotScaledouts: pulumi.StringArray{
pulumi.String("string"),
},
SeWithVsScaledouts: pulumi.StringArray{
pulumi.String("string"),
},
StartTime: pulumi.String("string"),
State: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Thread: pulumi.String("string"),
TrafficStatus: pulumi.String("string"),
VsErrors: avi.UpgradestatusinfoHistorySegStatusVsErrorArray{
&avi.UpgradestatusinfoHistorySegStatusVsErrorArgs{
EventTimestamps: avi.UpgradestatusinfoHistorySegStatusVsErrorEventTimestampArray{
&avi.UpgradestatusinfoHistorySegStatusVsErrorEventTimestampArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Reasons: pulumi.StringArray{
pulumi.String("string"),
},
SeGroupHaMode: pulumi.String("string"),
SeGroupRef: pulumi.String("string"),
SeRef: pulumi.String("string"),
TenantRef: pulumi.String("string"),
TrafficStatus: pulumi.String("string"),
VipId: pulumi.String("string"),
VsRef: pulumi.String("string"),
},
},
VsMigrateInProgressReves: pulumi.StringArray{
pulumi.String("string"),
},
VsScaleinInProgressReves: pulumi.StringArray{
pulumi.String("string"),
},
VsScaleoutInProgressReves: pulumi.StringArray{
pulumi.String("string"),
},
Worker: pulumi.String("string"),
},
},
StartTime: pulumi.String("string"),
StatediffRef: pulumi.String("string"),
States: avi.UpgradestatusinfoHistoryStateArray{
&avi.UpgradestatusinfoHistoryStateArgs{
LastChangedTimes: avi.UpgradestatusinfoHistoryStateLastChangedTimeArray{
&avi.UpgradestatusinfoHistoryStateLastChangedTimeArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Reason: pulumi.String("string"),
Rebooted: pulumi.String("string"),
State: pulumi.String("string"),
},
},
UpgradeEvents: avi.UpgradestatusinfoHistoryUpgradeEventArray{
&avi.UpgradestatusinfoHistoryUpgradeEventArgs{
NodesEvents: avi.UpgradestatusinfoHistoryUpgradeEventNodesEventArray{
&avi.UpgradestatusinfoHistoryUpgradeEventNodesEventArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ips: avi.UpgradestatusinfoHistoryUpgradeEventNodesEventIpArray{
&avi.UpgradestatusinfoHistoryUpgradeEventNodesEventIpArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Message: pulumi.String("string"),
StartTime: pulumi.String("string"),
Status: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
SubEvents: avi.UpgradestatusinfoHistoryUpgradeEventSubEventArray{
&avi.UpgradestatusinfoHistoryUpgradeEventSubEventArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ips: avi.UpgradestatusinfoHistoryUpgradeEventSubEventIpArray{
&avi.UpgradestatusinfoHistoryUpgradeEventSubEventIpArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Message: pulumi.String("string"),
StartTime: pulumi.String("string"),
Status: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Task: pulumi.String("string"),
TaskName: pulumi.String("string"),
},
},
Version: pulumi.String("string"),
},
},
ImagePath: pulumi.String("string"),
ImageRef: pulumi.String("string"),
Name: pulumi.String("string"),
NodeType: pulumi.String("string"),
ObjCloudRef: pulumi.String("string"),
Params: avi.UpgradestatusinfoParamArray{
&avi.UpgradestatusinfoParamArgs{
Controllers: avi.UpgradestatusinfoParamControllerArray{
&avi.UpgradestatusinfoParamControllerArgs{
TaskBaseTimeout: pulumi.String("string"),
},
},
ImageRef: pulumi.String("string"),
PatchRef: pulumi.String("string"),
SeGroupOptions: avi.UpgradestatusinfoParamSeGroupOptionArray{
&avi.UpgradestatusinfoParamSeGroupOptionArgs{
ActionOnError: pulumi.String("string"),
Disruptive: pulumi.String("string"),
},
},
SeGroupResumeOptions: avi.UpgradestatusinfoParamSeGroupResumeOptionArray{
&avi.UpgradestatusinfoParamSeGroupResumeOptionArgs{
ActionOnError: pulumi.String("string"),
Disruptive: pulumi.String("string"),
SkipSuspended: pulumi.String("string"),
},
},
ServiceEngines: avi.UpgradestatusinfoParamServiceEngineArray{
&avi.UpgradestatusinfoParamServiceEngineArgs{
ConcurrentSegroupUpgrades: pulumi.String("string"),
ImageDataTransferSize: pulumi.String("string"),
LargeSeConnectTimeout: pulumi.String("string"),
SeConnectTimeout: pulumi.String("string"),
SimultaneousImageDownloads: pulumi.String("string"),
TaskBaseTimeout: pulumi.String("string"),
},
},
},
},
PatchImagePath: pulumi.String("string"),
PatchImageRef: pulumi.String("string"),
PatchLists: avi.UpgradestatusinfoPatchListArray{
&avi.UpgradestatusinfoPatchListArgs{
PatchImagePath: pulumi.String("string"),
PatchImageRef: pulumi.String("string"),
PatchVersion: pulumi.String("string"),
},
},
PatchReboot: pulumi.String("string"),
PatchVersion: pulumi.String("string"),
PrevImagePath: pulumi.String("string"),
PrevPatchImagePath: pulumi.String("string"),
PrevRemoteImageRef: pulumi.String("string"),
PreviousImageRef: pulumi.String("string"),
PreviousPatchImageRef: pulumi.String("string"),
PreviousPatchLists: avi.UpgradestatusinfoPreviousPatchListArray{
&avi.UpgradestatusinfoPreviousPatchListArgs{
PatchImagePath: pulumi.String("string"),
PatchImageRef: pulumi.String("string"),
PatchVersion: pulumi.String("string"),
},
},
PreviousPatchVersion: pulumi.String("string"),
PreviousVersion: pulumi.String("string"),
Progress: pulumi.String("string"),
Reason: pulumi.String("string"),
RemoteImageRef: pulumi.String("string"),
SePatchImagePath: pulumi.String("string"),
SePatchImageRef: pulumi.String("string"),
SeUpgradeEvents: avi.UpgradestatusinfoSeUpgradeEventArray{
&avi.UpgradestatusinfoSeUpgradeEventArgs{
FromSeRef: pulumi.String("string"),
NumSe: pulumi.String("string"),
NumSeGroup: pulumi.String("string"),
NumVs: pulumi.String("string"),
Reasons: pulumi.StringArray{
pulumi.String("string"),
},
SeGroupHaMode: pulumi.String("string"),
SeGroupRef: pulumi.String("string"),
SeRef: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
Task: pulumi.String("string"),
ToSeRef: pulumi.String("string"),
TrafficStatus: pulumi.String("string"),
VsRef: pulumi.String("string"),
},
},
SegParams: avi.UpgradestatusinfoSegParamArray{
&avi.UpgradestatusinfoSegParamArgs{
Controllers: avi.UpgradestatusinfoSegParamControllerArray{
&avi.UpgradestatusinfoSegParamControllerArgs{
TaskBaseTimeout: pulumi.String("string"),
},
},
ImageRef: pulumi.String("string"),
PatchRef: pulumi.String("string"),
SeGroupOptions: avi.UpgradestatusinfoSegParamSeGroupOptionArray{
&avi.UpgradestatusinfoSegParamSeGroupOptionArgs{
ActionOnError: pulumi.String("string"),
Disruptive: pulumi.String("string"),
},
},
SeGroupResumeOptions: avi.UpgradestatusinfoSegParamSeGroupResumeOptionArray{
&avi.UpgradestatusinfoSegParamSeGroupResumeOptionArgs{
ActionOnError: pulumi.String("string"),
Disruptive: pulumi.String("string"),
SkipSuspended: pulumi.String("string"),
},
},
ServiceEngines: avi.UpgradestatusinfoSegParamServiceEngineArray{
&avi.UpgradestatusinfoSegParamServiceEngineArgs{
ConcurrentSegroupUpgrades: pulumi.String("string"),
ImageDataTransferSize: pulumi.String("string"),
LargeSeConnectTimeout: pulumi.String("string"),
SeConnectTimeout: pulumi.String("string"),
SimultaneousImageDownloads: pulumi.String("string"),
TaskBaseTimeout: pulumi.String("string"),
},
},
},
},
SegStatuses: avi.UpgradestatusinfoSegStatusArray{
&avi.UpgradestatusinfoSegStatusArgs{
ControllerVersion: pulumi.String("string"),
DisruptedVsReves: pulumi.StringArray{
pulumi.String("string"),
},
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
EnqueueTime: pulumi.String("string"),
HaMode: pulumi.String("string"),
InProgress: pulumi.String("string"),
Notes: pulumi.StringArray{
pulumi.String("string"),
},
NumSe: pulumi.String("string"),
NumSeWithNoVs: pulumi.String("string"),
NumSeWithVsNotScaledout: pulumi.String("string"),
NumSeWithVsScaledout: pulumi.String("string"),
NumVs: pulumi.String("string"),
NumVsDisrupted: pulumi.String("string"),
Progress: pulumi.String("string"),
Reasons: pulumi.StringArray{
pulumi.String("string"),
},
RequestTime: pulumi.String("string"),
SeAlreadyUpgradedAtStarts: pulumi.StringArray{
pulumi.String("string"),
},
SeDisconnectedAtStarts: pulumi.StringArray{
pulumi.String("string"),
},
SeGroupName: pulumi.String("string"),
SeGroupUuid: pulumi.String("string"),
SeIpMissingAtStarts: pulumi.StringArray{
pulumi.String("string"),
},
SePoweredoffAtStarts: pulumi.StringArray{
pulumi.String("string"),
},
SeRebootInProgressRef: pulumi.String("string"),
SeUpgradeCompleteds: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeErrors: avi.UpgradestatusinfoSegStatusSeUpgradeErrorArray{
&avi.UpgradestatusinfoSegStatusSeUpgradeErrorArgs{
FromSeRef: pulumi.String("string"),
NumSe: pulumi.String("string"),
NumSeGroup: pulumi.String("string"),
NumVs: pulumi.String("string"),
Reasons: pulumi.StringArray{
pulumi.String("string"),
},
SeGroupHaMode: pulumi.String("string"),
SeGroupRef: pulumi.String("string"),
SeRef: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
Task: pulumi.String("string"),
ToSeRef: pulumi.String("string"),
TrafficStatus: pulumi.String("string"),
VsRef: pulumi.String("string"),
},
},
SeUpgradeFaileds: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeInProgresses: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeNotStarteds: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeSkipSuspendeds: pulumi.StringArray{
pulumi.String("string"),
},
SeUpgradeSuspendeds: pulumi.StringArray{
pulumi.String("string"),
},
SeWithNoVs: pulumi.StringArray{
pulumi.String("string"),
},
SeWithVsNotScaledouts: pulumi.StringArray{
pulumi.String("string"),
},
SeWithVsScaledouts: pulumi.StringArray{
pulumi.String("string"),
},
StartTime: pulumi.String("string"),
State: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Thread: pulumi.String("string"),
TrafficStatus: pulumi.String("string"),
VsErrors: avi.UpgradestatusinfoSegStatusVsErrorArray{
&avi.UpgradestatusinfoSegStatusVsErrorArgs{
EventTimestamps: avi.UpgradestatusinfoSegStatusVsErrorEventTimestampArray{
&avi.UpgradestatusinfoSegStatusVsErrorEventTimestampArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Reasons: pulumi.StringArray{
pulumi.String("string"),
},
SeGroupHaMode: pulumi.String("string"),
SeGroupRef: pulumi.String("string"),
SeRef: pulumi.String("string"),
TenantRef: pulumi.String("string"),
TrafficStatus: pulumi.String("string"),
VipId: pulumi.String("string"),
VsRef: pulumi.String("string"),
},
},
VsMigrateInProgressReves: pulumi.StringArray{
pulumi.String("string"),
},
VsScaleinInProgressReves: pulumi.StringArray{
pulumi.String("string"),
},
VsScaleoutInProgressReves: pulumi.StringArray{
pulumi.String("string"),
},
Worker: pulumi.String("string"),
},
},
StartTime: pulumi.String("string"),
StatediffRef: pulumi.String("string"),
States: avi.UpgradestatusinfoStateTypeArray{
&avi.UpgradestatusinfoStateTypeArgs{
LastChangedTimes: avi.UpgradestatusinfoStateLastChangedTimeArray{
&avi.UpgradestatusinfoStateLastChangedTimeArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Reason: pulumi.String("string"),
Rebooted: pulumi.String("string"),
State: pulumi.String("string"),
},
},
System: pulumi.String("string"),
SystemReportRefs: pulumi.StringArray{
pulumi.String("string"),
},
TasksCompleted: pulumi.String("string"),
TenantRef: pulumi.String("string"),
TotalTasks: pulumi.String("string"),
UpgradeEvents: avi.UpgradestatusinfoUpgradeEventArray{
&avi.UpgradestatusinfoUpgradeEventArgs{
NodesEvents: avi.UpgradestatusinfoUpgradeEventNodesEventArray{
&avi.UpgradestatusinfoUpgradeEventNodesEventArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ips: avi.UpgradestatusinfoUpgradeEventNodesEventIpArray{
&avi.UpgradestatusinfoUpgradeEventNodesEventIpArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Message: pulumi.String("string"),
StartTime: pulumi.String("string"),
Status: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
SubEvents: avi.UpgradestatusinfoUpgradeEventSubEventArray{
&avi.UpgradestatusinfoUpgradeEventSubEventArgs{
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
Ips: avi.UpgradestatusinfoUpgradeEventSubEventIpArray{
&avi.UpgradestatusinfoUpgradeEventSubEventIpArgs{
Addr: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Message: pulumi.String("string"),
StartTime: pulumi.String("string"),
Status: pulumi.String("string"),
SubTasks: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Task: pulumi.String("string"),
TaskName: pulumi.String("string"),
},
},
UpgradeOps: pulumi.String("string"),
UpgradeReadinesses: avi.UpgradestatusinfoUpgradeReadinessArray{
&avi.UpgradestatusinfoUpgradeReadinessArgs{
Checks: avi.UpgradestatusinfoUpgradeReadinessCheckArray{
&avi.UpgradestatusinfoUpgradeReadinessCheckArgs{
CheckCode: pulumi.String("string"),
Description: pulumi.String("string"),
Details: pulumi.StringArray{
pulumi.String("string"),
},
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
ErrorDetails: pulumi.StringArray{
pulumi.String("string"),
},
StartTime: pulumi.String("string"),
State: pulumi.String("string"),
},
},
ChecksCompleted: pulumi.String("string"),
Duration: pulumi.String("string"),
EndTime: pulumi.String("string"),
ImageRef: pulumi.String("string"),
PatchImageRef: pulumi.String("string"),
Progress: pulumi.String("string"),
StartTime: pulumi.String("string"),
States: avi.UpgradestatusinfoUpgradeReadinessStateArray{
&avi.UpgradestatusinfoUpgradeReadinessStateArgs{
LastChangedTimes: avi.UpgradestatusinfoUpgradeReadinessStateLastChangedTimeArray{
&avi.UpgradestatusinfoUpgradeReadinessStateLastChangedTimeArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Reason: pulumi.String("string"),
Rebooted: pulumi.String("string"),
State: pulumi.String("string"),
},
},
TotalChecks: pulumi.String("string"),
UpgradeOps: pulumi.String("string"),
},
},
UpgradestatusinfoId: pulumi.String("string"),
Uuid: pulumi.String("string"),
Version: pulumi.String("string"),
})
var upgradestatusinfoResource = new Upgradestatusinfo("upgradestatusinfoResource", UpgradestatusinfoArgs.builder()
.afterRebootRollbackFnc("string")
.afterRebootTaskName("string")
.clean("string")
.dryrunInfos(UpgradestatusinfoDryrunInfoArgs.builder()
.duration("string")
.endTime("string")
.operation("string")
.params(UpgradestatusinfoDryrunInfoParamArgs.builder()
.controllerPatchRef("string")
.dryrun("string")
.imageRef("string")
.prechecksOnly("string")
.seGroupOptions(UpgradestatusinfoDryrunInfoParamSeGroupOptionArgs.builder()
.actionOnError("string")
.disruptive("string")
.build())
.seGroupRefs("string")
.sePatchRef("string")
.skipWarnings("string")
.system("string")
.build())
.progress("string")
.startTime("string")
.states(UpgradestatusinfoDryrunInfoStateArgs.builder()
.lastChangedTimes(UpgradestatusinfoDryrunInfoStateLastChangedTimeArgs.builder()
.secs("string")
.usecs("string")
.build())
.reason("string")
.rebooted("string")
.state("string")
.build())
.tasksCompleted("string")
.totalTasks("string")
.upgradeEvents(UpgradestatusinfoDryrunInfoUpgradeEventArgs.builder()
.nodesEvents(UpgradestatusinfoDryrunInfoUpgradeEventNodesEventArgs.builder()
.duration("string")
.endTime("string")
.ips(UpgradestatusinfoDryrunInfoUpgradeEventNodesEventIpArgs.builder()
.addr("string")
.type("string")
.build())
.message("string")
.startTime("string")
.status("string")
.subTasks("string")
.build())
.subEvents(UpgradestatusinfoDryrunInfoUpgradeEventSubEventArgs.builder()
.duration("string")
.endTime("string")
.ips(UpgradestatusinfoDryrunInfoUpgradeEventSubEventIpArgs.builder()
.addr("string")
.type("string")
.build())
.message("string")
.startTime("string")
.status("string")
.subTasks("string")
.build())
.task("string")
.taskName("string")
.build())
.worker("string")
.build())
.duration("string")
.enablePatchRollback("string")
.enableRollback("string")
.endTime("string")
.enqueueTime("string")
.fipsMode("string")
.histories(UpgradestatusinfoHistoryArgs.builder()
.duration("string")
.endTime("string")
.ops("string")
.patchVersion("string")
.seUpgradeEvents(UpgradestatusinfoHistorySeUpgradeEventArgs.builder()
.fromSeRef("string")
.numSe("string")
.numSeGroup("string")
.numVs("string")
.reasons("string")
.seGroupHaMode("string")
.seGroupRef("string")
.seRef("string")
.subTasks("string")
.task("string")
.toSeRef("string")
.trafficStatus("string")
.vsRef("string")
.build())
.segStatuses(UpgradestatusinfoHistorySegStatusArgs.builder()
.controllerVersion("string")
.disruptedVsReves("string")
.duration("string")
.endTime("string")
.enqueueTime("string")
.haMode("string")
.inProgress("string")
.notes("string")
.numSe("string")
.numSeWithNoVs("string")
.numSeWithVsNotScaledout("string")
.numSeWithVsScaledout("string")
.numVs("string")
.numVsDisrupted("string")
.progress("string")
.reasons("string")
.requestTime("string")
.seAlreadyUpgradedAtStarts("string")
.seDisconnectedAtStarts("string")
.seGroupName("string")
.seGroupUuid("string")
.seIpMissingAtStarts("string")
.sePoweredoffAtStarts("string")
.seRebootInProgressRef("string")
.seUpgradeCompleteds("string")
.seUpgradeErrors(UpgradestatusinfoHistorySegStatusSeUpgradeErrorArgs.builder()
.fromSeRef("string")
.numSe("string")
.numSeGroup("string")
.numVs("string")
.reasons("string")
.seGroupHaMode("string")
.seGroupRef("string")
.seRef("string")
.subTasks("string")
.task("string")
.toSeRef("string")
.trafficStatus("string")
.vsRef("string")
.build())
.seUpgradeFaileds("string")
.seUpgradeInProgresses("string")
.seUpgradeNotStarteds("string")
.seUpgradeSkipSuspendeds("string")
.seUpgradeSuspendeds("string")
.seWithNoVs("string")
.seWithVsNotScaledouts("string")
.seWithVsScaledouts("string")
.startTime("string")
.state("string")
.tenantRef("string")
.thread("string")
.trafficStatus("string")
.vsErrors(UpgradestatusinfoHistorySegStatusVsErrorArgs.builder()
.eventTimestamps(UpgradestatusinfoHistorySegStatusVsErrorEventTimestampArgs.builder()
.secs("string")
.usecs("string")
.build())
.reasons("string")
.seGroupHaMode("string")
.seGroupRef("string")
.seRef("string")
.tenantRef("string")
.trafficStatus("string")
.vipId("string")
.vsRef("string")
.build())
.vsMigrateInProgressReves("string")
.vsScaleinInProgressReves("string")
.vsScaleoutInProgressReves("string")
.worker("string")
.build())
.startTime("string")
.statediffRef("string")
.states(UpgradestatusinfoHistoryStateArgs.builder()
.lastChangedTimes(UpgradestatusinfoHistoryStateLastChangedTimeArgs.builder()
.secs("string")
.usecs("string")
.build())
.reason("string")
.rebooted("string")
.state("string")
.build())
.upgradeEvents(UpgradestatusinfoHistoryUpgradeEventArgs.builder()
.nodesEvents(UpgradestatusinfoHistoryUpgradeEventNodesEventArgs.builder()
.duration("string")
.endTime("string")
.ips(UpgradestatusinfoHistoryUpgradeEventNodesEventIpArgs.builder()
.addr("string")
.type("string")
.build())
.message("string")
.startTime("string")
.status("string")
.subTasks("string")
.build())
.subEvents(UpgradestatusinfoHistoryUpgradeEventSubEventArgs.builder()
.duration("string")
.endTime("string")
.ips(UpgradestatusinfoHistoryUpgradeEventSubEventIpArgs.builder()
.addr("string")
.type("string")
.build())
.message("string")
.startTime("string")
.status("string")
.subTasks("string")
.build())
.task("string")
.taskName("string")
.build())
.version("string")
.build())
.imagePath("string")
.imageRef("string")
.name("string")
.nodeType("string")
.objCloudRef("string")
.params(UpgradestatusinfoParamArgs.builder()
.controllers(UpgradestatusinfoParamControllerArgs.builder()
.taskBaseTimeout("string")
.build())
.imageRef("string")
.patchRef("string")
.seGroupOptions(UpgradestatusinfoParamSeGroupOptionArgs.builder()
.actionOnError("string")
.disruptive("string")
.build())
.seGroupResumeOptions(UpgradestatusinfoParamSeGroupResumeOptionArgs.builder()
.actionOnError("string")
.disruptive("string")
.skipSuspended("string")
.build())
.serviceEngines(UpgradestatusinfoParamServiceEngineArgs.builder()
.concurrentSegroupUpgrades("string")
.imageDataTransferSize("string")
.largeSeConnectTimeout("string")
.seConnectTimeout("string")
.simultaneousImageDownloads("string")
.taskBaseTimeout("string")
.build())
.build())
.patchImagePath("string")
.patchImageRef("string")
.patchLists(UpgradestatusinfoPatchListArgs.builder()
.patchImagePath("string")
.patchImageRef("string")
.patchVersion("string")
.build())
.patchReboot("string")
.patchVersion("string")
.prevImagePath("string")
.prevPatchImagePath("string")
.prevRemoteImageRef("string")
.previousImageRef("string")
.previousPatchImageRef("string")
.previousPatchLists(UpgradestatusinfoPreviousPatchListArgs.builder()
.patchImagePath("string")
.patchImageRef("string")
.patchVersion("string")
.build())
.previousPatchVersion("string")
.previousVersion("string")
.progress("string")
.reason("string")
.remoteImageRef("string")
.sePatchImagePath("string")
.sePatchImageRef("string")
.seUpgradeEvents(UpgradestatusinfoSeUpgradeEventArgs.builder()
.fromSeRef("string")
.numSe("string")
.numSeGroup("string")
.numVs("string")
.reasons("string")
.seGroupHaMode("string")
.seGroupRef("string")
.seRef("string")
.subTasks("string")
.task("string")
.toSeRef("string")
.trafficStatus("string")
.vsRef("string")
.build())
.segParams(UpgradestatusinfoSegParamArgs.builder()
.controllers(UpgradestatusinfoSegParamControllerArgs.builder()
.taskBaseTimeout("string")
.build())
.imageRef("string")
.patchRef("string")
.seGroupOptions(UpgradestatusinfoSegParamSeGroupOptionArgs.builder()
.actionOnError("string")
.disruptive("string")
.build())
.seGroupResumeOptions(UpgradestatusinfoSegParamSeGroupResumeOptionArgs.builder()
.actionOnError("string")
.disruptive("string")
.skipSuspended("string")
.build())
.serviceEngines(UpgradestatusinfoSegParamServiceEngineArgs.builder()
.concurrentSegroupUpgrades("string")
.imageDataTransferSize("string")
.largeSeConnectTimeout("string")
.seConnectTimeout("string")
.simultaneousImageDownloads("string")
.taskBaseTimeout("string")
.build())
.build())
.segStatuses(UpgradestatusinfoSegStatusArgs.builder()
.controllerVersion("string")
.disruptedVsReves("string")
.duration("string")
.endTime("string")
.enqueueTime("string")
.haMode("string")
.inProgress("string")
.notes("string")
.numSe("string")
.numSeWithNoVs("string")
.numSeWithVsNotScaledout("string")
.numSeWithVsScaledout("string")
.numVs("string")
.numVsDisrupted("string")
.progress("string")
.reasons("string")
.requestTime("string")
.seAlreadyUpgradedAtStarts("string")
.seDisconnectedAtStarts("string")
.seGroupName("string")
.seGroupUuid("string")
.seIpMissingAtStarts("string")
.sePoweredoffAtStarts("string")
.seRebootInProgressRef("string")
.seUpgradeCompleteds("string")
.seUpgradeErrors(UpgradestatusinfoSegStatusSeUpgradeErrorArgs.builder()
.fromSeRef("string")
.numSe("string")
.numSeGroup("string")
.numVs("string")
.reasons("string")
.seGroupHaMode("string")
.seGroupRef("string")
.seRef("string")
.subTasks("string")
.task("string")
.toSeRef("string")
.trafficStatus("string")
.vsRef("string")
.build())
.seUpgradeFaileds("string")
.seUpgradeInProgresses("string")
.seUpgradeNotStarteds("string")
.seUpgradeSkipSuspendeds("string")
.seUpgradeSuspendeds("string")
.seWithNoVs("string")
.seWithVsNotScaledouts("string")
.seWithVsScaledouts("string")
.startTime("string")
.state("string")
.tenantRef("string")
.thread("string")
.trafficStatus("string")
.vsErrors(UpgradestatusinfoSegStatusVsErrorArgs.builder()
.eventTimestamps(UpgradestatusinfoSegStatusVsErrorEventTimestampArgs.builder()
.secs("string")
.usecs("string")
.build())
.reasons("string")
.seGroupHaMode("string")
.seGroupRef("string")
.seRef("string")
.tenantRef("string")
.trafficStatus("string")
.vipId("string")
.vsRef("string")
.build())
.vsMigrateInProgressReves("string")
.vsScaleinInProgressReves("string")
.vsScaleoutInProgressReves("string")
.worker("string")
.build())
.startTime("string")
.statediffRef("string")
.states(UpgradestatusinfoStateArgs.builder()
.lastChangedTimes(UpgradestatusinfoStateLastChangedTimeArgs.builder()
.secs("string")
.usecs("string")
.build())
.reason("string")
.rebooted("string")
.state("string")
.build())
.system("string")
.systemReportRefs("string")
.tasksCompleted("string")
.tenantRef("string")
.totalTasks("string")
.upgradeEvents(UpgradestatusinfoUpgradeEventArgs.builder()
.nodesEvents(UpgradestatusinfoUpgradeEventNodesEventArgs.builder()
.duration("string")
.endTime("string")
.ips(UpgradestatusinfoUpgradeEventNodesEventIpArgs.builder()
.addr("string")
.type("string")
.build())
.message("string")
.startTime("string")
.status("string")
.subTasks("string")
.build())
.subEvents(UpgradestatusinfoUpgradeEventSubEventArgs.builder()
.duration("string")
.endTime("string")
.ips(UpgradestatusinfoUpgradeEventSubEventIpArgs.builder()
.addr("string")
.type("string")
.build())
.message("string")
.startTime("string")
.status("string")
.subTasks("string")
.build())
.task("string")
.taskName("string")
.build())
.upgradeOps("string")
.upgradeReadinesses(UpgradestatusinfoUpgradeReadinessArgs.builder()
.checks(UpgradestatusinfoUpgradeReadinessCheckArgs.builder()
.checkCode("string")
.description("string")
.details("string")
.duration("string")
.endTime("string")
.errorDetails("string")
.startTime("string")
.state("string")
.build())
.checksCompleted("string")
.duration("string")
.endTime("string")
.imageRef("string")
.patchImageRef("string")
.progress("string")
.startTime("string")
.states(UpgradestatusinfoUpgradeReadinessStateArgs.builder()
.lastChangedTimes(UpgradestatusinfoUpgradeReadinessStateLastChangedTimeArgs.builder()
.secs("string")
.usecs("string")
.build())
.reason("string")
.rebooted("string")
.state("string")
.build())
.totalChecks("string")
.upgradeOps("string")
.build())
.upgradestatusinfoId("string")
.uuid("string")
.version("string")
.build());
upgradestatusinfo_resource = avi.Upgradestatusinfo("upgradestatusinfoResource",
after_reboot_rollback_fnc="string",
after_reboot_task_name="string",
clean="string",
dryrun_infos=[{
"duration": "string",
"end_time": "string",
"operation": "string",
"params": [{
"controller_patch_ref": "string",
"dryrun": "string",
"image_ref": "string",
"prechecks_only": "string",
"se_group_options": [{
"action_on_error": "string",
"disruptive": "string",
}],
"se_group_refs": ["string"],
"se_patch_ref": "string",
"skip_warnings": "string",
"system": "string",
}],
"progress": "string",
"start_time": "string",
"states": [{
"last_changed_times": [{
"secs": "string",
"usecs": "string",
}],
"reason": "string",
"rebooted": "string",
"state": "string",
}],
"tasks_completed": "string",
"total_tasks": "string",
"upgrade_events": [{
"nodes_events": [{
"duration": "string",
"end_time": "string",
"ips": [{
"addr": "string",
"type": "string",
}],
"message": "string",
"start_time": "string",
"status": "string",
"sub_tasks": ["string"],
}],
"sub_events": [{
"duration": "string",
"end_time": "string",
"ips": [{
"addr": "string",
"type": "string",
}],
"message": "string",
"start_time": "string",
"status": "string",
"sub_tasks": ["string"],
}],
"task": "string",
"task_name": "string",
}],
"worker": "string",
}],
duration="string",
enable_patch_rollback="string",
enable_rollback="string",
end_time="string",
enqueue_time="string",
fips_mode="string",
histories=[{
"duration": "string",
"end_time": "string",
"ops": "string",
"patch_version": "string",
"se_upgrade_events": [{
"from_se_ref": "string",
"num_se": "string",
"num_se_group": "string",
"num_vs": "string",
"reasons": ["string"],
"se_group_ha_mode": "string",
"se_group_ref": "string",
"se_ref": "string",
"sub_tasks": ["string"],
"task": "string",
"to_se_ref": "string",
"traffic_status": "string",
"vs_ref": "string",
}],
"seg_statuses": [{
"controller_version": "string",
"disrupted_vs_reves": ["string"],
"duration": "string",
"end_time": "string",
"enqueue_time": "string",
"ha_mode": "string",
"in_progress": "string",
"notes": ["string"],
"num_se": "string",
"num_se_with_no_vs": "string",
"num_se_with_vs_not_scaledout": "string",
"num_se_with_vs_scaledout": "string",
"num_vs": "string",
"num_vs_disrupted": "string",
"progress": "string",
"reasons": ["string"],
"request_time": "string",
"se_already_upgraded_at_starts": ["string"],
"se_disconnected_at_starts": ["string"],
"se_group_name": "string",
"se_group_uuid": "string",
"se_ip_missing_at_starts": ["string"],
"se_poweredoff_at_starts": ["string"],
"se_reboot_in_progress_ref": "string",
"se_upgrade_completeds": ["string"],
"se_upgrade_errors": [{
"from_se_ref": "string",
"num_se": "string",
"num_se_group": "string",
"num_vs": "string",
"reasons": ["string"],
"se_group_ha_mode": "string",
"se_group_ref": "string",
"se_ref": "string",
"sub_tasks": ["string"],
"task": "string",
"to_se_ref": "string",
"traffic_status": "string",
"vs_ref": "string",
}],
"se_upgrade_faileds": ["string"],
"se_upgrade_in_progresses": ["string"],
"se_upgrade_not_starteds": ["string"],
"se_upgrade_skip_suspendeds": ["string"],
"se_upgrade_suspendeds": ["string"],
"se_with_no_vs": ["string"],
"se_with_vs_not_scaledouts": ["string"],
"se_with_vs_scaledouts": ["string"],
"start_time": "string",
"state": "string",
"tenant_ref": "string",
"thread": "string",
"traffic_status": "string",
"vs_errors": [{
"event_timestamps": [{
"secs": "string",
"usecs": "string",
}],
"reasons": ["string"],
"se_group_ha_mode": "string",
"se_group_ref": "string",
"se_ref": "string",
"tenant_ref": "string",
"traffic_status": "string",
"vip_id": "string",
"vs_ref": "string",
}],
"vs_migrate_in_progress_reves": ["string"],
"vs_scalein_in_progress_reves": ["string"],
"vs_scaleout_in_progress_reves": ["string"],
"worker": "string",
}],
"start_time": "string",
"statediff_ref": "string",
"states": [{
"last_changed_times": [{
"secs": "string",
"usecs": "string",
}],
"reason": "string",
"rebooted": "string",
"state": "string",
}],
"upgrade_events": [{
"nodes_events": [{
"duration": "string",
"end_time": "string",
"ips": [{
"addr": "string",
"type": "string",
}],
"message": "string",
"start_time": "string",
"status": "string",
"sub_tasks": ["string"],
}],
"sub_events": [{
"duration": "string",
"end_time": "string",
"ips": [{
"addr": "string",
"type": "string",
}],
"message": "string",
"start_time": "string",
"status": "string",
"sub_tasks": ["string"],
}],
"task": "string",
"task_name": "string",
}],
"version": "string",
}],
image_path="string",
image_ref="string",
name="string",
node_type="string",
obj_cloud_ref="string",
params=[{
"controllers": [{
"task_base_timeout": "string",
}],
"image_ref": "string",
"patch_ref": "string",
"se_group_options": [{
"action_on_error": "string",
"disruptive": "string",
}],
"se_group_resume_options": [{
"action_on_error": "string",
"disruptive": "string",
"skip_suspended": "string",
}],
"service_engines": [{
"concurrent_segroup_upgrades": "string",
"image_data_transfer_size": "string",
"large_se_connect_timeout": "string",
"se_connect_timeout": "string",
"simultaneous_image_downloads": "string",
"task_base_timeout": "string",
}],
}],
patch_image_path="string",
patch_image_ref="string",
patch_lists=[{
"patch_image_path": "string",
"patch_image_ref": "string",
"patch_version": "string",
}],
patch_reboot="string",
patch_version="string",
prev_image_path="string",
prev_patch_image_path="string",
prev_remote_image_ref="string",
previous_image_ref="string",
previous_patch_image_ref="string",
previous_patch_lists=[{
"patch_image_path": "string",
"patch_image_ref": "string",
"patch_version": "string",
}],
previous_patch_version="string",
previous_version="string",
progress="string",
reason="string",
remote_image_ref="string",
se_patch_image_path="string",
se_patch_image_ref="string",
se_upgrade_events=[{
"from_se_ref": "string",
"num_se": "string",
"num_se_group": "string",
"num_vs": "string",
"reasons": ["string"],
"se_group_ha_mode": "string",
"se_group_ref": "string",
"se_ref": "string",
"sub_tasks": ["string"],
"task": "string",
"to_se_ref": "string",
"traffic_status": "string",
"vs_ref": "string",
}],
seg_params=[{
"controllers": [{
"task_base_timeout": "string",
}],
"image_ref": "string",
"patch_ref": "string",
"se_group_options": [{
"action_on_error": "string",
"disruptive": "string",
}],
"se_group_resume_options": [{
"action_on_error": "string",
"disruptive": "string",
"skip_suspended": "string",
}],
"service_engines": [{
"concurrent_segroup_upgrades": "string",
"image_data_transfer_size": "string",
"large_se_connect_timeout": "string",
"se_connect_timeout": "string",
"simultaneous_image_downloads": "string",
"task_base_timeout": "string",
}],
}],
seg_statuses=[{
"controller_version": "string",
"disrupted_vs_reves": ["string"],
"duration": "string",
"end_time": "string",
"enqueue_time": "string",
"ha_mode": "string",
"in_progress": "string",
"notes": ["string"],
"num_se": "string",
"num_se_with_no_vs": "string",
"num_se_with_vs_not_scaledout": "string",
"num_se_with_vs_scaledout": "string",
"num_vs": "string",
"num_vs_disrupted": "string",
"progress": "string",
"reasons": ["string"],
"request_time": "string",
"se_already_upgraded_at_starts": ["string"],
"se_disconnected_at_starts": ["string"],
"se_group_name": "string",
"se_group_uuid": "string",
"se_ip_missing_at_starts": ["string"],
"se_poweredoff_at_starts": ["string"],
"se_reboot_in_progress_ref": "string",
"se_upgrade_completeds": ["string"],
"se_upgrade_errors": [{
"from_se_ref": "string",
"num_se": "string",
"num_se_group": "string",
"num_vs": "string",
"reasons": ["string"],
"se_group_ha_mode": "string",
"se_group_ref": "string",
"se_ref": "string",
"sub_tasks": ["string"],
"task": "string",
"to_se_ref": "string",
"traffic_status": "string",
"vs_ref": "string",
}],
"se_upgrade_faileds": ["string"],
"se_upgrade_in_progresses": ["string"],
"se_upgrade_not_starteds": ["string"],
"se_upgrade_skip_suspendeds": ["string"],
"se_upgrade_suspendeds": ["string"],
"se_with_no_vs": ["string"],
"se_with_vs_not_scaledouts": ["string"],
"se_with_vs_scaledouts": ["string"],
"start_time": "string",
"state": "string",
"tenant_ref": "string",
"thread": "string",
"traffic_status": "string",
"vs_errors": [{
"event_timestamps": [{
"secs": "string",
"usecs": "string",
}],
"reasons": ["string"],
"se_group_ha_mode": "string",
"se_group_ref": "string",
"se_ref": "string",
"tenant_ref": "string",
"traffic_status": "string",
"vip_id": "string",
"vs_ref": "string",
}],
"vs_migrate_in_progress_reves": ["string"],
"vs_scalein_in_progress_reves": ["string"],
"vs_scaleout_in_progress_reves": ["string"],
"worker": "string",
}],
start_time="string",
statediff_ref="string",
states=[{
"last_changed_times": [{
"secs": "string",
"usecs": "string",
}],
"reason": "string",
"rebooted": "string",
"state": "string",
}],
system="string",
system_report_refs=["string"],
tasks_completed="string",
tenant_ref="string",
total_tasks="string",
upgrade_events=[{
"nodes_events": [{
"duration": "string",
"end_time": "string",
"ips": [{
"addr": "string",
"type": "string",
}],
"message": "string",
"start_time": "string",
"status": "string",
"sub_tasks": ["string"],
}],
"sub_events": [{
"duration": "string",
"end_time": "string",
"ips": [{
"addr": "string",
"type": "string",
}],
"message": "string",
"start_time": "string",
"status": "string",
"sub_tasks": ["string"],
}],
"task": "string",
"task_name": "string",
}],
upgrade_ops="string",
upgrade_readinesses=[{
"checks": [{
"check_code": "string",
"description": "string",
"details": ["string"],
"duration": "string",
"end_time": "string",
"error_details": ["string"],
"start_time": "string",
"state": "string",
}],
"checks_completed": "string",
"duration": "string",
"end_time": "string",
"image_ref": "string",
"patch_image_ref": "string",
"progress": "string",
"start_time": "string",
"states": [{
"last_changed_times": [{
"secs": "string",
"usecs": "string",
}],
"reason": "string",
"rebooted": "string",
"state": "string",
}],
"total_checks": "string",
"upgrade_ops": "string",
}],
upgradestatusinfo_id="string",
uuid="string",
version="string")
const upgradestatusinfoResource = new avi.Upgradestatusinfo("upgradestatusinfoResource", {
afterRebootRollbackFnc: "string",
afterRebootTaskName: "string",
clean: "string",
dryrunInfos: [{
duration: "string",
endTime: "string",
operation: "string",
params: [{
controllerPatchRef: "string",
dryrun: "string",
imageRef: "string",
prechecksOnly: "string",
seGroupOptions: [{
actionOnError: "string",
disruptive: "string",
}],
seGroupRefs: ["string"],
sePatchRef: "string",
skipWarnings: "string",
system: "string",
}],
progress: "string",
startTime: "string",
states: [{
lastChangedTimes: [{
secs: "string",
usecs: "string",
}],
reason: "string",
rebooted: "string",
state: "string",
}],
tasksCompleted: "string",
totalTasks: "string",
upgradeEvents: [{
nodesEvents: [{
duration: "string",
endTime: "string",
ips: [{
addr: "string",
type: "string",
}],
message: "string",
startTime: "string",
status: "string",
subTasks: ["string"],
}],
subEvents: [{
duration: "string",
endTime: "string",
ips: [{
addr: "string",
type: "string",
}],
message: "string",
startTime: "string",
status: "string",
subTasks: ["string"],
}],
task: "string",
taskName: "string",
}],
worker: "string",
}],
duration: "string",
enablePatchRollback: "string",
enableRollback: "string",
endTime: "string",
enqueueTime: "string",
fipsMode: "string",
histories: [{
duration: "string",
endTime: "string",
ops: "string",
patchVersion: "string",
seUpgradeEvents: [{
fromSeRef: "string",
numSe: "string",
numSeGroup: "string",
numVs: "string",
reasons: ["string"],
seGroupHaMode: "string",
seGroupRef: "string",
seRef: "string",
subTasks: ["string"],
task: "string",
toSeRef: "string",
trafficStatus: "string",
vsRef: "string",
}],
segStatuses: [{
controllerVersion: "string",
disruptedVsReves: ["string"],
duration: "string",
endTime: "string",
enqueueTime: "string",
haMode: "string",
inProgress: "string",
notes: ["string"],
numSe: "string",
numSeWithNoVs: "string",
numSeWithVsNotScaledout: "string",
numSeWithVsScaledout: "string",
numVs: "string",
numVsDisrupted: "string",
progress: "string",
reasons: ["string"],
requestTime: "string",
seAlreadyUpgradedAtStarts: ["string"],
seDisconnectedAtStarts: ["string"],
seGroupName: "string",
seGroupUuid: "string",
seIpMissingAtStarts: ["string"],
sePoweredoffAtStarts: ["string"],
seRebootInProgressRef: "string",
seUpgradeCompleteds: ["string"],
seUpgradeErrors: [{
fromSeRef: "string",
numSe: "string",
numSeGroup: "string",
numVs: "string",
reasons: ["string"],
seGroupHaMode: "string",
seGroupRef: "string",
seRef: "string",
subTasks: ["string"],
task: "string",
toSeRef: "string",
trafficStatus: "string",
vsRef: "string",
}],
seUpgradeFaileds: ["string"],
seUpgradeInProgresses: ["string"],
seUpgradeNotStarteds: ["string"],
seUpgradeSkipSuspendeds: ["string"],
seUpgradeSuspendeds: ["string"],
seWithNoVs: ["string"],
seWithVsNotScaledouts: ["string"],
seWithVsScaledouts: ["string"],
startTime: "string",
state: "string",
tenantRef: "string",
thread: "string",
trafficStatus: "string",
vsErrors: [{
eventTimestamps: [{
secs: "string",
usecs: "string",
}],
reasons: ["string"],
seGroupHaMode: "string",
seGroupRef: "string",
seRef: "string",
tenantRef: "string",
trafficStatus: "string",
vipId: "string",
vsRef: "string",
}],
vsMigrateInProgressReves: ["string"],
vsScaleinInProgressReves: ["string"],
vsScaleoutInProgressReves: ["string"],
worker: "string",
}],
startTime: "string",
statediffRef: "string",
states: [{
lastChangedTimes: [{
secs: "string",
usecs: "string",
}],
reason: "string",
rebooted: "string",
state: "string",
}],
upgradeEvents: [{
nodesEvents: [{
duration: "string",
endTime: "string",
ips: [{
addr: "string",
type: "string",
}],
message: "string",
startTime: "string",
status: "string",
subTasks: ["string"],
}],
subEvents: [{
duration: "string",
endTime: "string",
ips: [{
addr: "string",
type: "string",
}],
message: "string",
startTime: "string",
status: "string",
subTasks: ["string"],
}],
task: "string",
taskName: "string",
}],
version: "string",
}],
imagePath: "string",
imageRef: "string",
name: "string",
nodeType: "string",
objCloudRef: "string",
params: [{
controllers: [{
taskBaseTimeout: "string",
}],
imageRef: "string",
patchRef: "string",
seGroupOptions: [{
actionOnError: "string",
disruptive: "string",
}],
seGroupResumeOptions: [{
actionOnError: "string",
disruptive: "string",
skipSuspended: "string",
}],
serviceEngines: [{
concurrentSegroupUpgrades: "string",
imageDataTransferSize: "string",
largeSeConnectTimeout: "string",
seConnectTimeout: "string",
simultaneousImageDownloads: "string",
taskBaseTimeout: "string",
}],
}],
patchImagePath: "string",
patchImageRef: "string",
patchLists: [{
patchImagePath: "string",
patchImageRef: "string",
patchVersion: "string",
}],
patchReboot: "string",
patchVersion: "string",
prevImagePath: "string",
prevPatchImagePath: "string",
prevRemoteImageRef: "string",
previousImageRef: "string",
previousPatchImageRef: "string",
previousPatchLists: [{
patchImagePath: "string",
patchImageRef: "string",
patchVersion: "string",
}],
previousPatchVersion: "string",
previousVersion: "string",
progress: "string",
reason: "string",
remoteImageRef: "string",
sePatchImagePath: "string",
sePatchImageRef: "string",
seUpgradeEvents: [{
fromSeRef: "string",
numSe: "string",
numSeGroup: "string",
numVs: "string",
reasons: ["string"],
seGroupHaMode: "string",
seGroupRef: "string",
seRef: "string",
subTasks: ["string"],
task: "string",
toSeRef: "string",
trafficStatus: "string",
vsRef: "string",
}],
segParams: [{
controllers: [{
taskBaseTimeout: "string",
}],
imageRef: "string",
patchRef: "string",
seGroupOptions: [{
actionOnError: "string",
disruptive: "string",
}],
seGroupResumeOptions: [{
actionOnError: "string",
disruptive: "string",
skipSuspended: "string",
}],
serviceEngines: [{
concurrentSegroupUpgrades: "string",
imageDataTransferSize: "string",
largeSeConnectTimeout: "string",
seConnectTimeout: "string",
simultaneousImageDownloads: "string",
taskBaseTimeout: "string",
}],
}],
segStatuses: [{
controllerVersion: "string",
disruptedVsReves: ["string"],
duration: "string",
endTime: "string",
enqueueTime: "string",
haMode: "string",
inProgress: "string",
notes: ["string"],
numSe: "string",
numSeWithNoVs: "string",
numSeWithVsNotScaledout: "string",
numSeWithVsScaledout: "string",
numVs: "string",
numVsDisrupted: "string",
progress: "string",
reasons: ["string"],
requestTime: "string",
seAlreadyUpgradedAtStarts: ["string"],
seDisconnectedAtStarts: ["string"],
seGroupName: "string",
seGroupUuid: "string",
seIpMissingAtStarts: ["string"],
sePoweredoffAtStarts: ["string"],
seRebootInProgressRef: "string",
seUpgradeCompleteds: ["string"],
seUpgradeErrors: [{
fromSeRef: "string",
numSe: "string",
numSeGroup: "string",
numVs: "string",
reasons: ["string"],
seGroupHaMode: "string",
seGroupRef: "string",
seRef: "string",
subTasks: ["string"],
task: "string",
toSeRef: "string",
trafficStatus: "string",
vsRef: "string",
}],
seUpgradeFaileds: ["string"],
seUpgradeInProgresses: ["string"],
seUpgradeNotStarteds: ["string"],
seUpgradeSkipSuspendeds: ["string"],
seUpgradeSuspendeds: ["string"],
seWithNoVs: ["string"],
seWithVsNotScaledouts: ["string"],
seWithVsScaledouts: ["string"],
startTime: "string",
state: "string",
tenantRef: "string",
thread: "string",
trafficStatus: "string",
vsErrors: [{
eventTimestamps: [{
secs: "string",
usecs: "string",
}],
reasons: ["string"],
seGroupHaMode: "string",
seGroupRef: "string",
seRef: "string",
tenantRef: "string",
trafficStatus: "string",
vipId: "string",
vsRef: "string",
}],
vsMigrateInProgressReves: ["string"],
vsScaleinInProgressReves: ["string"],
vsScaleoutInProgressReves: ["string"],
worker: "string",
}],
startTime: "string",
statediffRef: "string",
states: [{
lastChangedTimes: [{
secs: "string",
usecs: "string",
}],
reason: "string",
rebooted: "string",
state: "string",
}],
system: "string",
systemReportRefs: ["string"],
tasksCompleted: "string",
tenantRef: "string",
totalTasks: "string",
upgradeEvents: [{
nodesEvents: [{
duration: "string",
endTime: "string",
ips: [{
addr: "string",
type: "string",
}],
message: "string",
startTime: "string",
status: "string",
subTasks: ["string"],
}],
subEvents: [{
duration: "string",
endTime: "string",
ips: [{
addr: "string",
type: "string",
}],
message: "string",
startTime: "string",
status: "string",
subTasks: ["string"],
}],
task: "string",
taskName: "string",
}],
upgradeOps: "string",
upgradeReadinesses: [{
checks: [{
checkCode: "string",
description: "string",
details: ["string"],
duration: "string",
endTime: "string",
errorDetails: ["string"],
startTime: "string",
state: "string",
}],
checksCompleted: "string",
duration: "string",
endTime: "string",
imageRef: "string",
patchImageRef: "string",
progress: "string",
startTime: "string",
states: [{
lastChangedTimes: [{
secs: "string",
usecs: "string",
}],
reason: "string",
rebooted: "string",
state: "string",
}],
totalChecks: "string",
upgradeOps: "string",
}],
upgradestatusinfoId: "string",
uuid: "string",
version: "string",
});
type: avi:Upgradestatusinfo
properties:
afterRebootRollbackFnc: string
afterRebootTaskName: string
clean: string
dryrunInfos:
- duration: string
endTime: string
operation: string
params:
- controllerPatchRef: string
dryrun: string
imageRef: string
prechecksOnly: string
seGroupOptions:
- actionOnError: string
disruptive: string
seGroupRefs:
- string
sePatchRef: string
skipWarnings: string
system: string
progress: string
startTime: string
states:
- lastChangedTimes:
- secs: string
usecs: string
reason: string
rebooted: string
state: string
tasksCompleted: string
totalTasks: string
upgradeEvents:
- nodesEvents:
- duration: string
endTime: string
ips:
- addr: string
type: string
message: string
startTime: string
status: string
subTasks:
- string
subEvents:
- duration: string
endTime: string
ips:
- addr: string
type: string
message: string
startTime: string
status: string
subTasks:
- string
task: string
taskName: string
worker: string
duration: string
enablePatchRollback: string
enableRollback: string
endTime: string
enqueueTime: string
fipsMode: string
histories:
- duration: string
endTime: string
ops: string
patchVersion: string
seUpgradeEvents:
- fromSeRef: string
numSe: string
numSeGroup: string
numVs: string
reasons:
- string
seGroupHaMode: string
seGroupRef: string
seRef: string
subTasks:
- string
task: string
toSeRef: string
trafficStatus: string
vsRef: string
segStatuses:
- controllerVersion: string
disruptedVsReves:
- string
duration: string
endTime: string
enqueueTime: string
haMode: string
inProgress: string
notes:
- string
numSe: string
numSeWithNoVs: string
numSeWithVsNotScaledout: string
numSeWithVsScaledout: string
numVs: string
numVsDisrupted: string
progress: string
reasons:
- string
requestTime: string
seAlreadyUpgradedAtStarts:
- string
seDisconnectedAtStarts:
- string
seGroupName: string
seGroupUuid: string
seIpMissingAtStarts:
- string
sePoweredoffAtStarts:
- string
seRebootInProgressRef: string
seUpgradeCompleteds:
- string
seUpgradeErrors:
- fromSeRef: string
numSe: string
numSeGroup: string
numVs: string
reasons:
- string
seGroupHaMode: string
seGroupRef: string
seRef: string
subTasks:
- string
task: string
toSeRef: string
trafficStatus: string
vsRef: string
seUpgradeFaileds:
- string
seUpgradeInProgresses:
- string
seUpgradeNotStarteds:
- string
seUpgradeSkipSuspendeds:
- string
seUpgradeSuspendeds:
- string
seWithNoVs:
- string
seWithVsNotScaledouts:
- string
seWithVsScaledouts:
- string
startTime: string
state: string
tenantRef: string
thread: string
trafficStatus: string
vsErrors:
- eventTimestamps:
- secs: string
usecs: string
reasons:
- string
seGroupHaMode: string
seGroupRef: string
seRef: string
tenantRef: string
trafficStatus: string
vipId: string
vsRef: string
vsMigrateInProgressReves:
- string
vsScaleinInProgressReves:
- string
vsScaleoutInProgressReves:
- string
worker: string
startTime: string
statediffRef: string
states:
- lastChangedTimes:
- secs: string
usecs: string
reason: string
rebooted: string
state: string
upgradeEvents:
- nodesEvents:
- duration: string
endTime: string
ips:
- addr: string
type: string
message: string
startTime: string
status: string
subTasks:
- string
subEvents:
- duration: string
endTime: string
ips:
- addr: string
type: string
message: string
startTime: string
status: string
subTasks:
- string
task: string
taskName: string
version: string
imagePath: string
imageRef: string
name: string
nodeType: string
objCloudRef: string
params:
- controllers:
- taskBaseTimeout: string
imageRef: string
patchRef: string
seGroupOptions:
- actionOnError: string
disruptive: string
seGroupResumeOptions:
- actionOnError: string
disruptive: string
skipSuspended: string
serviceEngines:
- concurrentSegroupUpgrades: string
imageDataTransferSize: string
largeSeConnectTimeout: string
seConnectTimeout: string
simultaneousImageDownloads: string
taskBaseTimeout: string
patchImagePath: string
patchImageRef: string
patchLists:
- patchImagePath: string
patchImageRef: string
patchVersion: string
patchReboot: string
patchVersion: string
prevImagePath: string
prevPatchImagePath: string
prevRemoteImageRef: string
previousImageRef: string
previousPatchImageRef: string
previousPatchLists:
- patchImagePath: string
patchImageRef: string
patchVersion: string
previousPatchVersion: string
previousVersion: string
progress: string
reason: string
remoteImageRef: string
sePatchImagePath: string
sePatchImageRef: string
seUpgradeEvents:
- fromSeRef: string
numSe: string
numSeGroup: string
numVs: string
reasons:
- string
seGroupHaMode: string
seGroupRef: string
seRef: string
subTasks:
- string
task: string
toSeRef: string
trafficStatus: string
vsRef: string
segParams:
- controllers:
- taskBaseTimeout: string
imageRef: string
patchRef: string
seGroupOptions:
- actionOnError: string
disruptive: string
seGroupResumeOptions:
- actionOnError: string
disruptive: string
skipSuspended: string
serviceEngines:
- concurrentSegroupUpgrades: string
imageDataTransferSize: string
largeSeConnectTimeout: string
seConnectTimeout: string
simultaneousImageDownloads: string
taskBaseTimeout: string
segStatuses:
- controllerVersion: string
disruptedVsReves:
- string
duration: string
endTime: string
enqueueTime: string
haMode: string
inProgress: string
notes:
- string
numSe: string
numSeWithNoVs: string
numSeWithVsNotScaledout: string
numSeWithVsScaledout: string
numVs: string
numVsDisrupted: string
progress: string
reasons:
- string
requestTime: string
seAlreadyUpgradedAtStarts:
- string
seDisconnectedAtStarts:
- string
seGroupName: string
seGroupUuid: string
seIpMissingAtStarts:
- string
sePoweredoffAtStarts:
- string
seRebootInProgressRef: string
seUpgradeCompleteds:
- string
seUpgradeErrors:
- fromSeRef: string
numSe: string
numSeGroup: string
numVs: string
reasons:
- string
seGroupHaMode: string
seGroupRef: string
seRef: string
subTasks:
- string
task: string
toSeRef: string
trafficStatus: string
vsRef: string
seUpgradeFaileds:
- string
seUpgradeInProgresses:
- string
seUpgradeNotStarteds:
- string
seUpgradeSkipSuspendeds:
- string
seUpgradeSuspendeds:
- string
seWithNoVs:
- string
seWithVsNotScaledouts:
- string
seWithVsScaledouts:
- string
startTime: string
state: string
tenantRef: string
thread: string
trafficStatus: string
vsErrors:
- eventTimestamps:
- secs: string
usecs: string
reasons:
- string
seGroupHaMode: string
seGroupRef: string
seRef: string
tenantRef: string
trafficStatus: string
vipId: string
vsRef: string
vsMigrateInProgressReves:
- string
vsScaleinInProgressReves:
- string
vsScaleoutInProgressReves:
- string
worker: string
startTime: string
statediffRef: string
states:
- lastChangedTimes:
- secs: string
usecs: string
reason: string
rebooted: string
state: string
system: string
systemReportRefs:
- string
tasksCompleted: string
tenantRef: string
totalTasks: string
upgradeEvents:
- nodesEvents:
- duration: string
endTime: string
ips:
- addr: string
type: string
message: string
startTime: string
status: string
subTasks:
- string
subEvents:
- duration: string
endTime: string
ips:
- addr: string
type: string
message: string
startTime: string
status: string
subTasks:
- string
task: string
taskName: string
upgradeOps: string
upgradeReadinesses:
- checks:
- checkCode: string
description: string
details:
- string
duration: string
endTime: string
errorDetails:
- string
startTime: string
state: string
checksCompleted: string
duration: string
endTime: string
imageRef: string
patchImageRef: string
progress: string
startTime: string
states:
- lastChangedTimes:
- secs: string
usecs: string
reason: string
rebooted: string
state: string
totalChecks: string
upgradeOps: string
upgradestatusinfoId: string
uuid: string
version: string
Upgradestatusinfo 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 Upgradestatusinfo resource accepts the following input properties:
- After
Reboot stringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- After
Reboot stringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Clean string
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Dryrun
Infos List<UpgradestatusinfoDryrun Info> - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enable
Patch stringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enable
Rollback string - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Fips
Mode string - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- Histories
List<Upgradestatusinfo
History> - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- Image
Path string - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Node
Type string - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Obj
Cloud stringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Params
List<Upgradestatusinfo
Param> - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Lists List<UpgradestatusinfoPatch List> - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Reboot string - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Image stringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Patch stringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Remote stringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Previous
Image stringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch stringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch List<UpgradestatusinfoLists Previous Patch List> - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch stringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Version string - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Remote
Image stringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Patch stringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Upgrade List<UpgradestatusinfoEvents Se Upgrade Event> - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Params List<UpgradestatusinfoSeg Param> - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Statuses List<UpgradestatusinfoSeg Status> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- States
List<Upgradestatusinfo
State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- System string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- System
Report List<string>Refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Events List<UpgradestatusinfoUpgrade Event> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Readinesses List<UpgradestatusinfoUpgrade Readiness> - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Upgradestatusinfo
Id string - Uuid string
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- After
Reboot stringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- After
Reboot stringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Clean string
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Dryrun
Infos []UpgradestatusinfoDryrun Info Args - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enable
Patch stringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enable
Rollback string - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Fips
Mode string - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- Histories
[]Upgradestatusinfo
History Args - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- Image
Path string - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Node
Type string - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Obj
Cloud stringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Params
[]Upgradestatusinfo
Param Args - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Lists []UpgradestatusinfoPatch List Args - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Reboot string - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Image stringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Patch stringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Remote stringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Previous
Image stringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch stringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch []UpgradestatusinfoLists Previous Patch List Args - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch stringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Version string - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Remote
Image stringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Patch stringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Upgrade []UpgradestatusinfoEvents Se Upgrade Event Args - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Params []UpgradestatusinfoSeg Param Args - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Statuses []UpgradestatusinfoSeg Status Args - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- States
[]Upgradestatusinfo
State Type Args - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- System string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- System
Report []stringRefs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Events []UpgradestatusinfoUpgrade Event Args - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Readinesses []UpgradestatusinfoUpgrade Readiness Args - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Upgradestatusinfo
Id string - Uuid string
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot StringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot StringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- clean String
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- dryrun
Infos List<UpgradestatusinfoDryrun Info> - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Patch StringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Rollback String - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time String - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- fips
Mode String - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- histories
List<Upgradestatusinfo
History> - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Path String - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- node
Type String - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Cloud StringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- params
List<Upgradestatusinfo
Param> - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Lists List<UpgradestatusinfoPatch List> - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Reboot String - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Image StringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Patch StringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Remote StringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- previous
Image StringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch StringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch List<UpgradestatusinfoLists Previous Patch List> - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch StringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Version String - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- remote
Image StringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Patch StringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade List<UpgradestatusinfoEvents Se Upgrade Event> - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Params List<UpgradestatusinfoSeg Param> - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses List<UpgradestatusinfoSeg Status> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref String - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
List<Upgradestatusinfo
State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system String
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system
Report List<String>Refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events List<UpgradestatusinfoUpgrade Event> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Ops String - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Readinesses List<UpgradestatusinfoUpgrade Readiness> - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- upgradestatusinfo
Id String - uuid String
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version String
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot stringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot stringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- clean string
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- dryrun
Infos UpgradestatusinfoDryrun Info[] - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Patch stringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Rollback string - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- fips
Mode string - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- histories
Upgradestatusinfo
History[] - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Path string - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- node
Type string - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Cloud stringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- params
Upgradestatusinfo
Param[] - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Lists UpgradestatusinfoPatch List[] - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Reboot string - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Image stringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Patch stringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Remote stringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- previous
Image stringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch stringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch UpgradestatusinfoLists Previous Patch List[] - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch stringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Version string - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- remote
Image stringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Patch stringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch stringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade UpgradestatusinfoEvents Se Upgrade Event[] - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Params UpgradestatusinfoSeg Param[] - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses UpgradestatusinfoSeg Status[] - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
Upgradestatusinfo
State[] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system
Report string[]Refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events UpgradestatusinfoUpgrade Event[] - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Readinesses UpgradestatusinfoUpgrade Readiness[] - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- upgradestatusinfo
Id string - uuid string
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after_
reboot_ strrollback_ fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after_
reboot_ strtask_ name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- clean str
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- dryrun_
infos Sequence[UpgradestatusinfoDryrun Info Args] - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable_
patch_ strrollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable_
rollback str - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue_
time str - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- fips_
mode str - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- histories
Sequence[Upgradestatusinfo
History Args] - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- image_
path str - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image_
ref str - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- node_
type str - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj_
cloud_ strref - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- params
Sequence[Upgradestatusinfo
Param Args] - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strpath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strref - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
lists Sequence[UpgradestatusinfoPatch List Args] - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
reboot str - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
version str - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev_
image_ strpath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev_
patch_ strimage_ path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev_
remote_ strimage_ ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- previous_
image_ strref - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous_
patch_ strimage_ ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous_
patch_ Sequence[Upgradestatusinfolists Previous Patch List Args] - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous_
patch_ strversion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous_
version str - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress str
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reason str
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- remote_
image_ strref - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
patch_ strimage_ path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
patch_ strimage_ ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
upgrade_ Sequence[Upgradestatusinfoevents Se Upgrade Event Args] - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg_
params Sequence[UpgradestatusinfoSeg Param Args] - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg_
statuses Sequence[UpgradestatusinfoSeg Status Args] - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff_
ref str - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
Sequence[Upgradestatusinfo
State Args] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system str
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system_
report_ Sequence[str]refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks_
completed str - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total_
tasks str - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade_
events Sequence[UpgradestatusinfoUpgrade Event Args] - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade_
ops str - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade_
readinesses Sequence[UpgradestatusinfoUpgrade Readiness Args] - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- upgradestatusinfo_
id str - uuid str
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version str
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot StringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot StringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- clean String
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- dryrun
Infos List<Property Map> - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Patch StringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Rollback String - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time String - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- fips
Mode String - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- histories List<Property Map>
- Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Path String - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- node
Type String - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Cloud StringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- params List<Property Map>
- Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Lists List<Property Map> - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Reboot String - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Image StringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Patch StringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Remote StringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- previous
Image StringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch StringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch List<Property Map>Lists - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch StringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Version String - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- remote
Image StringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Patch StringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade List<Property Map>Events - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Params List<Property Map> - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses List<Property Map> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref String - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states List<Property Map>
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system String
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system
Report List<String>Refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events List<Property Map> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Ops String - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Readinesses List<Property Map> - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- upgradestatusinfo
Id String - uuid String
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version String
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Upgradestatusinfo 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 Upgradestatusinfo Resource
Get an existing Upgradestatusinfo 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?: UpgradestatusinfoState, opts?: CustomResourceOptions): Upgradestatusinfo
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
after_reboot_rollback_fnc: Optional[str] = None,
after_reboot_task_name: Optional[str] = None,
clean: Optional[str] = None,
dryrun_infos: Optional[Sequence[UpgradestatusinfoDryrunInfoArgs]] = None,
duration: Optional[str] = None,
enable_patch_rollback: Optional[str] = None,
enable_rollback: Optional[str] = None,
end_time: Optional[str] = None,
enqueue_time: Optional[str] = None,
fips_mode: Optional[str] = None,
histories: Optional[Sequence[UpgradestatusinfoHistoryArgs]] = None,
image_path: Optional[str] = None,
image_ref: Optional[str] = None,
name: Optional[str] = None,
node_type: Optional[str] = None,
obj_cloud_ref: Optional[str] = None,
params: Optional[Sequence[UpgradestatusinfoParamArgs]] = None,
patch_image_path: Optional[str] = None,
patch_image_ref: Optional[str] = None,
patch_lists: Optional[Sequence[UpgradestatusinfoPatchListArgs]] = None,
patch_reboot: Optional[str] = None,
patch_version: Optional[str] = None,
prev_image_path: Optional[str] = None,
prev_patch_image_path: Optional[str] = None,
prev_remote_image_ref: Optional[str] = None,
previous_image_ref: Optional[str] = None,
previous_patch_image_ref: Optional[str] = None,
previous_patch_lists: Optional[Sequence[UpgradestatusinfoPreviousPatchListArgs]] = None,
previous_patch_version: Optional[str] = None,
previous_version: Optional[str] = None,
progress: Optional[str] = None,
reason: Optional[str] = None,
remote_image_ref: Optional[str] = None,
se_patch_image_path: Optional[str] = None,
se_patch_image_ref: Optional[str] = None,
se_upgrade_events: Optional[Sequence[UpgradestatusinfoSeUpgradeEventArgs]] = None,
seg_params: Optional[Sequence[UpgradestatusinfoSegParamArgs]] = None,
seg_statuses: Optional[Sequence[UpgradestatusinfoSegStatusArgs]] = None,
start_time: Optional[str] = None,
statediff_ref: Optional[str] = None,
states: Optional[Sequence[UpgradestatusinfoStateArgs]] = None,
system: Optional[str] = None,
system_report_refs: Optional[Sequence[str]] = None,
tasks_completed: Optional[str] = None,
tenant_ref: Optional[str] = None,
total_tasks: Optional[str] = None,
upgrade_events: Optional[Sequence[UpgradestatusinfoUpgradeEventArgs]] = None,
upgrade_ops: Optional[str] = None,
upgrade_readinesses: Optional[Sequence[UpgradestatusinfoUpgradeReadinessArgs]] = None,
upgradestatusinfo_id: Optional[str] = None,
uuid: Optional[str] = None,
version: Optional[str] = None) -> Upgradestatusinfo
func GetUpgradestatusinfo(ctx *Context, name string, id IDInput, state *UpgradestatusinfoState, opts ...ResourceOption) (*Upgradestatusinfo, error)
public static Upgradestatusinfo Get(string name, Input<string> id, UpgradestatusinfoState? state, CustomResourceOptions? opts = null)
public static Upgradestatusinfo get(String name, Output<String> id, UpgradestatusinfoState state, CustomResourceOptions options)
resources: _: type: avi:Upgradestatusinfo 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.
- After
Reboot stringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- After
Reboot stringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Clean string
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Dryrun
Infos List<UpgradestatusinfoDryrun Info> - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enable
Patch stringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enable
Rollback string - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Fips
Mode string - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- Histories
List<Upgradestatusinfo
History> - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- Image
Path string - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Node
Type string - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Obj
Cloud stringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Params
List<Upgradestatusinfo
Param> - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Lists List<UpgradestatusinfoPatch List> - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Reboot string - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Image stringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Patch stringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Remote stringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Previous
Image stringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch stringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch List<UpgradestatusinfoLists Previous Patch List> - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch stringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Version string - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Remote
Image stringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Patch stringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Upgrade List<UpgradestatusinfoEvents Se Upgrade Event> - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Params List<UpgradestatusinfoSeg Param> - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Statuses List<UpgradestatusinfoSeg Status> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- States
List<Upgradestatusinfo
State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- System string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- System
Report List<string>Refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Events List<UpgradestatusinfoUpgrade Event> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Readinesses List<UpgradestatusinfoUpgrade Readiness> - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Upgradestatusinfo
Id string - Uuid string
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- After
Reboot stringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- After
Reboot stringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Clean string
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Dryrun
Infos []UpgradestatusinfoDryrun Info Args - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enable
Patch stringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enable
Rollback string - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Fips
Mode string - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- Histories
[]Upgradestatusinfo
History Args - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- Image
Path string - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Node
Type string - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Obj
Cloud stringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Params
[]Upgradestatusinfo
Param Args - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Lists []UpgradestatusinfoPatch List Args - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Reboot string - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Image stringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Patch stringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prev
Remote stringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Previous
Image stringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch stringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch []UpgradestatusinfoLists Previous Patch List Args - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Patch stringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Previous
Version string - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Remote
Image stringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Patch stringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Patch stringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Upgrade []UpgradestatusinfoEvents Se Upgrade Event Args - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Params []UpgradestatusinfoSeg Param Args - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Statuses []UpgradestatusinfoSeg Status Args - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- States
[]Upgradestatusinfo
State Type Args - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- System string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- System
Report []stringRefs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Events []UpgradestatusinfoUpgrade Event Args - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Readinesses []UpgradestatusinfoUpgrade Readiness Args - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Upgradestatusinfo
Id string - Uuid string
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot StringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot StringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- clean String
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- dryrun
Infos List<UpgradestatusinfoDryrun Info> - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Patch StringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Rollback String - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time String - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- fips
Mode String - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- histories
List<Upgradestatusinfo
History> - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Path String - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- node
Type String - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Cloud StringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- params
List<Upgradestatusinfo
Param> - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Lists List<UpgradestatusinfoPatch List> - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Reboot String - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Image StringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Patch StringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Remote StringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- previous
Image StringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch StringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch List<UpgradestatusinfoLists Previous Patch List> - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch StringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Version String - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- remote
Image StringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Patch StringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade List<UpgradestatusinfoEvents Se Upgrade Event> - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Params List<UpgradestatusinfoSeg Param> - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses List<UpgradestatusinfoSeg Status> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref String - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
List<Upgradestatusinfo
State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system String
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system
Report List<String>Refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events List<UpgradestatusinfoUpgrade Event> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Ops String - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Readinesses List<UpgradestatusinfoUpgrade Readiness> - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- upgradestatusinfo
Id String - uuid String
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version String
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot stringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot stringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- clean string
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- dryrun
Infos UpgradestatusinfoDryrun Info[] - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Patch stringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Rollback string - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- fips
Mode string - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- histories
Upgradestatusinfo
History[] - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Path string - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- node
Type string - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Cloud stringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- params
Upgradestatusinfo
Param[] - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Lists UpgradestatusinfoPatch List[] - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Reboot string - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Image stringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Patch stringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Remote stringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- previous
Image stringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch stringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch UpgradestatusinfoLists Previous Patch List[] - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch stringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Version string - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- remote
Image stringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Patch stringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch stringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade UpgradestatusinfoEvents Se Upgrade Event[] - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Params UpgradestatusinfoSeg Param[] - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses UpgradestatusinfoSeg Status[] - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
Upgradestatusinfo
State[] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system
Report string[]Refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events UpgradestatusinfoUpgrade Event[] - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Readinesses UpgradestatusinfoUpgrade Readiness[] - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- upgradestatusinfo
Id string - uuid string
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after_
reboot_ strrollback_ fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after_
reboot_ strtask_ name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- clean str
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- dryrun_
infos Sequence[UpgradestatusinfoDryrun Info Args] - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable_
patch_ strrollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable_
rollback str - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue_
time str - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- fips_
mode str - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- histories
Sequence[Upgradestatusinfo
History Args] - Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- image_
path str - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image_
ref str - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- node_
type str - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj_
cloud_ strref - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- params
Sequence[Upgradestatusinfo
Param Args] - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strpath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strref - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
lists Sequence[UpgradestatusinfoPatch List Args] - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
reboot str - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
version str - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev_
image_ strpath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev_
patch_ strimage_ path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev_
remote_ strimage_ ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- previous_
image_ strref - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous_
patch_ strimage_ ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous_
patch_ Sequence[Upgradestatusinfolists Previous Patch List Args] - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous_
patch_ strversion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous_
version str - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress str
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reason str
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- remote_
image_ strref - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
patch_ strimage_ path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
patch_ strimage_ ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
upgrade_ Sequence[Upgradestatusinfoevents Se Upgrade Event Args] - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg_
params Sequence[UpgradestatusinfoSeg Param Args] - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg_
statuses Sequence[UpgradestatusinfoSeg Status Args] - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff_
ref str - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
Sequence[Upgradestatusinfo
State Args] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system str
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system_
report_ Sequence[str]refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks_
completed str - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total_
tasks str - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade_
events Sequence[UpgradestatusinfoUpgrade Event Args] - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade_
ops str - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade_
readinesses Sequence[UpgradestatusinfoUpgrade Readiness Args] - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- upgradestatusinfo_
id str - uuid str
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version str
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot StringRollback Fnc - Backward compatible abort function name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- after
Reboot StringTask Name - Backward compatible task dict name. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- clean String
- Flag for clean installation. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- dryrun
Infos List<Property Map> - Upgrade dry-run operation details. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Patch StringRollback - Check if the patch rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enable
Rollback String - Check if the rollback is possible on this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time String - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- fips
Mode String - Fips mode for the entire system. Field introduced in 20.1.5. Allowed with any value in enterprise, enterprise with cloud services edition.
- histories List<Property Map>
- Record of past operations on this node. Field introduced in 20.1.4. Allowed with any value in enterprise, enterprise with cloud services edition.
- image
Path String - Image path of current base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the system such as cluster name, se group name and se name. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- node
Type String - Type of the system such as controller_cluster, se_group or se. Enum options - NODE_CONTROLLER_CLUSTER, NODE_SE_GROUP, NODE_SE_TYPE. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Cloud StringRef - Cloud that this object belongs to. It is a reference to an object of type cloud. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- params List<Property Map>
- Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Lists List<Property Map> - List of patches applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then a patch 6p5 applied. This field will indicate the [{'6p1', '6p1_image_uuid'}, {'6p5', '6p5_image_uuid'}] value. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Reboot String - Flag for patch op with reboot. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Image StringPath - Image path of previous base image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Patch StringImage Path - Image path of previous patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prev
Remote StringImage Ref - Remote image reference of previous base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- previous
Image StringRef - Image uuid for identifying previous base image.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch StringImage Ref - Image uuid for identifying previous patch.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch List<Property Map>Lists - List of patches applied to this node on previous major version. Field introduced in 18.2.8, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Patch StringVersion - Previous patch version applied to this node.example base-image was 18.2.6 with a patch 6p1. Upgrade was initiated to 18.2.8 with patch 8p1. The previous_image field will contain 18.2.6 and this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- previous
Version String - Previous version prior to upgrade.example base-image was 18.2.5 and an upgrade was done to 18.2.6, then this field will indicate the 18.2.5 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- remote
Image StringRef - Remote image reference of current base image. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Patch StringImage Path - Image path of se patch image.(required in case of reimage and upgrade + patch). Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Patch StringImage Ref - Image uuid for identifying the current se patch required in case of system upgrade(re-image) with se patch. It is a reference to an object of type image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade List<Property Map>Events - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Params List<Property Map> - Se_patch may be different from the controller_patch. It has to be saved in the journal for subsequent consumption. The segroup params will be saved in the controller entry as seg_params. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses List<Property Map> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref String - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states List<Property Map>
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system String
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- system
Report List<String>Refs - Tracks the list of reports created for node. It is a reference to an object of type systemreport. Field introduced in 22.1.6, 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events List<Property Map> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Ops String - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Readinesses List<Property Map> - Upgrade readiness check execution detail. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- upgradestatusinfo
Id String - uuid String
- Uuid identifier for the system such as cluster, se group and se. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version String
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
UpgradestatusinfoDryrunInfo, UpgradestatusinfoDryrunInfoArgs
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Operation string
- Params
List<Upgradestatusinfo
Dryrun Info Param> - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- States
List<Upgradestatusinfo
Dryrun Info State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Events List<UpgradestatusinfoDryrun Info Upgrade Event> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Worker string
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Operation string
- Params
[]Upgradestatusinfo
Dryrun Info Param - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- States
[]Upgradestatusinfo
Dryrun Info State - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Events []UpgradestatusinfoDryrun Info Upgrade Event - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Worker string
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- operation String
- params
List<Upgradestatusinfo
Dryrun Info Param> - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- states
List<Upgradestatusinfo
Dryrun Info State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events List<UpgradestatusinfoDryrun Info Upgrade Event> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- worker String
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- operation string
- params
Upgradestatusinfo
Dryrun Info Param[] - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- states
Upgradestatusinfo
Dryrun Info State[] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tasks
Completed string - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks string - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events UpgradestatusinfoDryrun Info Upgrade Event[] - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- worker string
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- operation str
- params
Sequence[Upgradestatusinfo
Dryrun Info Param] - Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress str
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- states
Sequence[Upgradestatusinfo
Dryrun Info State] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tasks_
completed str - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total_
tasks str - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade_
events Sequence[UpgradestatusinfoDryrun Info Upgrade Event] - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- worker str
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- operation String
- params List<Property Map>
- Parameters associated with the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- states List<Property Map>
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tasks
Completed String - Completed set of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Tasks String - Total number of tasks in the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events List<Property Map> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- worker String
UpgradestatusinfoDryrunInfoParam, UpgradestatusinfoDryrunInfoParamArgs
- Controller
Patch stringRef - Dryrun string
- Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prechecks
Only string - Se
Group List<UpgradestatusinfoOptions Dryrun Info Param Se Group Option> - Se
Group List<string>Refs - Se
Patch stringRef - Skip
Warnings string - System string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Controller
Patch stringRef - Dryrun string
- Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Prechecks
Only string - Se
Group []UpgradestatusinfoOptions Dryrun Info Param Se Group Option - Se
Group []stringRefs - Se
Patch stringRef - Skip
Warnings string - System string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringRef - dryrun String
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prechecks
Only String - se
Group List<UpgradestatusinfoOptions Dryrun Info Param Se Group Option> - se
Group List<String>Refs - se
Patch StringRef - skip
Warnings String - system String
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch stringRef - dryrun string
- image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prechecks
Only string - se
Group UpgradestatusinfoOptions Dryrun Info Param Se Group Option[] - se
Group string[]Refs - se
Patch stringRef - skip
Warnings string - system string
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller_
patch_ strref - dryrun str
- image_
ref str - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prechecks_
only str - se_
group_ Sequence[Upgradestatusinfooptions Dryrun Info Param Se Group Option] - se_
group_ Sequence[str]refs - se_
patch_ strref - skip_
warnings str - system str
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- controller
Patch StringRef - dryrun String
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- prechecks
Only String - se
Group List<Property Map>Options - se
Group List<String>Refs - se
Patch StringRef - skip
Warnings String - system String
- Flag is set only in the cluster if the upgrade is initiated as a system-upgrade. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoDryrunInfoParamSeGroupOption, UpgradestatusinfoDryrunInfoParamSeGroupOptionArgs
- Action
On stringError - Disruptive string
- Action
On stringError - Disruptive string
- action
On StringError - disruptive String
- action
On stringError - disruptive string
- action_
on_ strerror - disruptive str
- action
On StringError - disruptive String
UpgradestatusinfoDryrunInfoState, UpgradestatusinfoDryrunInfoStateArgs
- Last
Changed List<UpgradestatusinfoTimes Dryrun Info State Last Changed Time> - Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Rebooted string
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Last
Changed []UpgradestatusinfoTimes Dryrun Info State Last Changed Time - Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Rebooted string
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed List<UpgradestatusinfoTimes Dryrun Info State Last Changed Time> - reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted String
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed UpgradestatusinfoTimes Dryrun Info State Last Changed Time[] - reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted string
- state string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last_
changed_ Sequence[Upgradestatusinfotimes Dryrun Info State Last Changed Time] - reason str
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted str
- state str
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed List<Property Map>Times - reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted String
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoDryrunInfoStateLastChangedTime, UpgradestatusinfoDryrunInfoStateLastChangedTimeArgs
UpgradestatusinfoDryrunInfoUpgradeEvent, UpgradestatusinfoDryrunInfoUpgradeEventArgs
UpgradestatusinfoDryrunInfoUpgradeEventNodesEvent, UpgradestatusinfoDryrunInfoUpgradeEventNodesEventArgs
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
List<Upgradestatusinfo
Dryrun Info Upgrade Event Nodes Event Ip> - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks List<string>
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
[]Upgradestatusinfo
Dryrun Info Upgrade Event Nodes Event Ip - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks []string
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
List<Upgradestatusinfo
Dryrun Info Upgrade Event Nodes Event Ip> - message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Upgradestatusinfo
Dryrun Info Upgrade Event Nodes Event Ip[] - message string
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status string
- sub
Tasks string[]
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Sequence[Upgradestatusinfo
Dryrun Info Upgrade Event Nodes Event Ip] - message str
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status str
- sub_
tasks Sequence[str]
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips List<Property Map>
- message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
UpgradestatusinfoDryrunInfoUpgradeEventNodesEventIp, UpgradestatusinfoDryrunInfoUpgradeEventNodesEventIpArgs
UpgradestatusinfoDryrunInfoUpgradeEventSubEvent, UpgradestatusinfoDryrunInfoUpgradeEventSubEventArgs
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
List<Upgradestatusinfo
Dryrun Info Upgrade Event Sub Event Ip> - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks List<string>
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
[]Upgradestatusinfo
Dryrun Info Upgrade Event Sub Event Ip - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks []string
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
List<Upgradestatusinfo
Dryrun Info Upgrade Event Sub Event Ip> - message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Upgradestatusinfo
Dryrun Info Upgrade Event Sub Event Ip[] - message string
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status string
- sub
Tasks string[]
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Sequence[Upgradestatusinfo
Dryrun Info Upgrade Event Sub Event Ip] - message str
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status str
- sub_
tasks Sequence[str]
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips List<Property Map>
- message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
UpgradestatusinfoDryrunInfoUpgradeEventSubEventIp, UpgradestatusinfoDryrunInfoUpgradeEventSubEventIpArgs
UpgradestatusinfoHistory, UpgradestatusinfoHistoryArgs
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ops string
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Upgrade List<UpgradestatusinfoEvents History Se Upgrade Event> - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Statuses List<UpgradestatusinfoHistory Seg Status> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- States
List<Upgradestatusinfo
History State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Events List<UpgradestatusinfoHistory Upgrade Event> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ops string
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Se
Upgrade []UpgradestatusinfoEvents History Se Upgrade Event - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Seg
Statuses []UpgradestatusinfoHistory Seg Status - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- States
[]Upgradestatusinfo
History State - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Upgrade
Events []UpgradestatusinfoHistory Upgrade Event - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ops String
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade List<UpgradestatusinfoEvents History Se Upgrade Event> - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses List<UpgradestatusinfoHistory Seg Status> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref String - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
List<Upgradestatusinfo
History State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events List<UpgradestatusinfoHistory Upgrade Event> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version String
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ops string
- patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade UpgradestatusinfoEvents History Se Upgrade Event[] - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses UpgradestatusinfoHistory Seg Status[] - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref string - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
Upgradestatusinfo
History State[] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events UpgradestatusinfoHistory Upgrade Event[] - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version string
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ops str
- patch_
version str - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se_
upgrade_ Sequence[Upgradestatusinfoevents History Se Upgrade Event] - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg_
statuses Sequence[UpgradestatusinfoHistory Seg Status] - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff_
ref str - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states
Sequence[Upgradestatusinfo
History State] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade_
events Sequence[UpgradestatusinfoHistory Upgrade Event] - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version str
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ops String
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- se
Upgrade List<Property Map>Events - Serviceenginegroup upgrade errors. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- seg
Statuses List<Property Map> - Detailed segroup status. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- statediff
Ref String - Record of pre/post snapshot captured for current upgrade operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- states List<Property Map>
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- upgrade
Events List<Property Map> - Events performed for upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- version String
- Current base image applied to this node. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoHistorySeUpgradeEvent, UpgradestatusinfoHistorySeUpgradeEventArgs
- From
Se stringRef - Num
Se string - Num
Se stringGroup - Num
Vs string - Reasons List<string>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Sub
Tasks List<string> - Task string
- To
Se stringRef - Traffic
Status string - Vs
Ref string
- From
Se stringRef - Num
Se string - Num
Se stringGroup - Num
Vs string - Reasons []string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Sub
Tasks []string - Task string
- To
Se stringRef - Traffic
Status string - Vs
Ref string
- from
Se StringRef - num
Se String - num
Se StringGroup - num
Vs String - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - sub
Tasks List<String> - task String
- to
Se StringRef - traffic
Status String - vs
Ref String
- from
Se stringRef - num
Se string - num
Se stringGroup - num
Vs string - reasons string[]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group stringHa Mode - se
Group stringRef - se
Ref string - sub
Tasks string[] - task string
- to
Se stringRef - traffic
Status string - vs
Ref string
- from_
se_ strref - num_
se str - num_
se_ strgroup - num_
vs str - reasons Sequence[str]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
group_ strha_ mode - se_
group_ strref - se_
ref str - sub_
tasks Sequence[str] - task str
- to_
se_ strref - traffic_
status str - vs_
ref str
- from
Se StringRef - num
Se String - num
Se StringGroup - num
Vs String - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - sub
Tasks List<String> - task String
- to
Se StringRef - traffic
Status String - vs
Ref String
UpgradestatusinfoHistorySegStatus, UpgradestatusinfoHistorySegStatusArgs
- Controller
Version string - Disrupted
Vs List<string>Reves - Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ha
Mode string - In
Progress string - Notes List<string>
- Num
Se string - Num
Se stringWith No Vs - Num
Se stringWith Vs Not Scaledout - Num
Se stringWith Vs Scaledout - Num
Vs string - Num
Vs stringDisrupted - Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Reasons List<string>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Request
Time string - Se
Already List<string>Upgraded At Starts - Se
Disconnected List<string>At Starts - Se
Group stringName - Se
Group stringUuid - Se
Ip List<string>Missing At Starts - Se
Poweredoff List<string>At Starts - Se
Reboot stringIn Progress Ref - Se
Upgrade List<string>Completeds - Se
Upgrade List<UpgradestatusinfoErrors History Seg Status Se Upgrade Error> - Se
Upgrade List<string>Faileds - Se
Upgrade List<string>In Progresses - Se
Upgrade List<string>Not Starteds - Se
Upgrade List<string>Skip Suspendeds - Se
Upgrade List<string>Suspendeds - Se
With List<string>No Vs - Se
With List<string>Vs Not Scaledouts - Se
With List<string>Vs Scaledouts - Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Thread string
- Traffic
Status string - Vs
Errors List<UpgradestatusinfoHistory Seg Status Vs Error> - Vs
Migrate List<string>In Progress Reves - Vs
Scalein List<string>In Progress Reves - Vs
Scaleout List<string>In Progress Reves - Worker string
- Controller
Version string - Disrupted
Vs []stringReves - Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ha
Mode string - In
Progress string - Notes []string
- Num
Se string - Num
Se stringWith No Vs - Num
Se stringWith Vs Not Scaledout - Num
Se stringWith Vs Scaledout - Num
Vs string - Num
Vs stringDisrupted - Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Reasons []string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Request
Time string - Se
Already []stringUpgraded At Starts - Se
Disconnected []stringAt Starts - Se
Group stringName - Se
Group stringUuid - Se
Ip []stringMissing At Starts - Se
Poweredoff []stringAt Starts - Se
Reboot stringIn Progress Ref - Se
Upgrade []stringCompleteds - Se
Upgrade []UpgradestatusinfoErrors History Seg Status Se Upgrade Error - Se
Upgrade []stringFaileds - Se
Upgrade []stringIn Progresses - Se
Upgrade []stringNot Starteds - Se
Upgrade []stringSkip Suspendeds - Se
Upgrade []stringSuspendeds - Se
With []stringNo Vs - Se
With []stringVs Not Scaledouts - Se
With []stringVs Scaledouts - Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Thread string
- Traffic
Status string - Vs
Errors []UpgradestatusinfoHistory Seg Status Vs Error - Vs
Migrate []stringIn Progress Reves - Vs
Scalein []stringIn Progress Reves - Vs
Scaleout []stringIn Progress Reves - Worker string
- controller
Version String - disrupted
Vs List<String>Reves - duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time String - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ha
Mode String - in
Progress String - notes List<String>
- num
Se String - num
Se StringWith No Vs - num
Se StringWith Vs Not Scaledout - num
Se StringWith Vs Scaledout - num
Vs String - num
Vs StringDisrupted - progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- request
Time String - se
Already List<String>Upgraded At Starts - se
Disconnected List<String>At Starts - se
Group StringName - se
Group StringUuid - se
Ip List<String>Missing At Starts - se
Poweredoff List<String>At Starts - se
Reboot StringIn Progress Ref - se
Upgrade List<String>Completeds - se
Upgrade List<UpgradestatusinfoErrors History Seg Status Se Upgrade Error> - se
Upgrade List<String>Faileds - se
Upgrade List<String>In Progresses - se
Upgrade List<String>Not Starteds - se
Upgrade List<String>Skip Suspendeds - se
Upgrade List<String>Suspendeds - se
With List<String>No Vs - se
With List<String>Vs Not Scaledouts - se
With List<String>Vs Scaledouts - start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- thread String
- traffic
Status String - vs
Errors List<UpgradestatusinfoHistory Seg Status Vs Error> - vs
Migrate List<String>In Progress Reves - vs
Scalein List<String>In Progress Reves - vs
Scaleout List<String>In Progress Reves - worker String
- controller
Version string - disrupted
Vs string[]Reves - duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ha
Mode string - in
Progress string - notes string[]
- num
Se string - num
Se stringWith No Vs - num
Se stringWith Vs Not Scaledout - num
Se stringWith Vs Scaledout - num
Vs string - num
Vs stringDisrupted - progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reasons string[]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- request
Time string - se
Already string[]Upgraded At Starts - se
Disconnected string[]At Starts - se
Group stringName - se
Group stringUuid - se
Ip string[]Missing At Starts - se
Poweredoff string[]At Starts - se
Reboot stringIn Progress Ref - se
Upgrade string[]Completeds - se
Upgrade UpgradestatusinfoErrors History Seg Status Se Upgrade Error[] - se
Upgrade string[]Faileds - se
Upgrade string[]In Progresses - se
Upgrade string[]Not Starteds - se
Upgrade string[]Skip Suspendeds - se
Upgrade string[]Suspendeds - se
With string[]No Vs - se
With string[]Vs Not Scaledouts - se
With string[]Vs Scaledouts - start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- thread string
- traffic
Status string - vs
Errors UpgradestatusinfoHistory Seg Status Vs Error[] - vs
Migrate string[]In Progress Reves - vs
Scalein string[]In Progress Reves - vs
Scaleout string[]In Progress Reves - worker string
- controller_
version str - disrupted_
vs_ Sequence[str]reves - duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue_
time str - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ha_
mode str - in_
progress str - notes Sequence[str]
- num_
se str - num_
se_ strwith_ no_ vs - num_
se_ strwith_ vs_ not_ scaledout - num_
se_ strwith_ vs_ scaledout - num_
vs str - num_
vs_ strdisrupted - progress str
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reasons Sequence[str]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- request_
time str - se_
already_ Sequence[str]upgraded_ at_ starts - se_
disconnected_ Sequence[str]at_ starts - se_
group_ strname - se_
group_ struuid - se_
ip_ Sequence[str]missing_ at_ starts - se_
poweredoff_ Sequence[str]at_ starts - se_
reboot_ strin_ progress_ ref - se_
upgrade_ Sequence[str]completeds - se_
upgrade_ Sequence[Upgradestatusinfoerrors History Seg Status Se Upgrade Error] - se_
upgrade_ Sequence[str]faileds - se_
upgrade_ Sequence[str]in_ progresses - se_
upgrade_ Sequence[str]not_ starteds - se_
upgrade_ Sequence[str]skip_ suspendeds - se_
upgrade_ Sequence[str]suspendeds - se_
with_ Sequence[str]no_ vs - se_
with_ Sequence[str]vs_ not_ scaledouts - se_
with_ Sequence[str]vs_ scaledouts - start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state str
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- thread str
- traffic_
status str - vs_
errors Sequence[UpgradestatusinfoHistory Seg Status Vs Error] - vs_
migrate_ Sequence[str]in_ progress_ reves - vs_
scalein_ Sequence[str]in_ progress_ reves - vs_
scaleout_ Sequence[str]in_ progress_ reves - worker str
- controller
Version String - disrupted
Vs List<String>Reves - duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time String - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ha
Mode String - in
Progress String - notes List<String>
- num
Se String - num
Se StringWith No Vs - num
Se StringWith Vs Not Scaledout - num
Se StringWith Vs Scaledout - num
Vs String - num
Vs StringDisrupted - progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- request
Time String - se
Already List<String>Upgraded At Starts - se
Disconnected List<String>At Starts - se
Group StringName - se
Group StringUuid - se
Ip List<String>Missing At Starts - se
Poweredoff List<String>At Starts - se
Reboot StringIn Progress Ref - se
Upgrade List<String>Completeds - se
Upgrade List<Property Map>Errors - se
Upgrade List<String>Faileds - se
Upgrade List<String>In Progresses - se
Upgrade List<String>Not Starteds - se
Upgrade List<String>Skip Suspendeds - se
Upgrade List<String>Suspendeds - se
With List<String>No Vs - se
With List<String>Vs Not Scaledouts - se
With List<String>Vs Scaledouts - start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- thread String
- traffic
Status String - vs
Errors List<Property Map> - vs
Migrate List<String>In Progress Reves - vs
Scalein List<String>In Progress Reves - vs
Scaleout List<String>In Progress Reves - worker String
UpgradestatusinfoHistorySegStatusSeUpgradeError, UpgradestatusinfoHistorySegStatusSeUpgradeErrorArgs
- From
Se stringRef - Num
Se string - Num
Se stringGroup - Num
Vs string - Reasons List<string>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Sub
Tasks List<string> - Task string
- To
Se stringRef - Traffic
Status string - Vs
Ref string
- From
Se stringRef - Num
Se string - Num
Se stringGroup - Num
Vs string - Reasons []string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Sub
Tasks []string - Task string
- To
Se stringRef - Traffic
Status string - Vs
Ref string
- from
Se StringRef - num
Se String - num
Se StringGroup - num
Vs String - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - sub
Tasks List<String> - task String
- to
Se StringRef - traffic
Status String - vs
Ref String
- from
Se stringRef - num
Se string - num
Se stringGroup - num
Vs string - reasons string[]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group stringHa Mode - se
Group stringRef - se
Ref string - sub
Tasks string[] - task string
- to
Se stringRef - traffic
Status string - vs
Ref string
- from_
se_ strref - num_
se str - num_
se_ strgroup - num_
vs str - reasons Sequence[str]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
group_ strha_ mode - se_
group_ strref - se_
ref str - sub_
tasks Sequence[str] - task str
- to_
se_ strref - traffic_
status str - vs_
ref str
- from
Se StringRef - num
Se String - num
Se StringGroup - num
Vs String - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - sub
Tasks List<String> - task String
- to
Se StringRef - traffic
Status String - vs
Ref String
UpgradestatusinfoHistorySegStatusVsError, UpgradestatusinfoHistorySegStatusVsErrorArgs
- Event
Timestamps List<UpgradestatusinfoHistory Seg Status Vs Error Event Timestamp> - Reasons List<string>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Traffic
Status string - Vip
Id string - Vs
Ref string
- Event
Timestamps []UpgradestatusinfoHistory Seg Status Vs Error Event Timestamp - Reasons []string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Traffic
Status string - Vip
Id string - Vs
Ref string
- event
Timestamps List<UpgradestatusinfoHistory Seg Status Vs Error Event Timestamp> - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- traffic
Status String - vip
Id String - vs
Ref String
- event
Timestamps UpgradestatusinfoHistory Seg Status Vs Error Event Timestamp[] - reasons string[]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group stringHa Mode - se
Group stringRef - se
Ref string - tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- traffic
Status string - vip
Id string - vs
Ref string
- event_
timestamps Sequence[UpgradestatusinfoHistory Seg Status Vs Error Event Timestamp] - reasons Sequence[str]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
group_ strha_ mode - se_
group_ strref - se_
ref str - tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- traffic_
status str - vip_
id str - vs_
ref str
- event
Timestamps List<Property Map> - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- traffic
Status String - vip
Id String - vs
Ref String
UpgradestatusinfoHistorySegStatusVsErrorEventTimestamp, UpgradestatusinfoHistorySegStatusVsErrorEventTimestampArgs
UpgradestatusinfoHistoryState, UpgradestatusinfoHistoryStateArgs
- Last
Changed List<UpgradestatusinfoTimes History State Last Changed Time> - Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Rebooted string
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Last
Changed []UpgradestatusinfoTimes History State Last Changed Time - Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Rebooted string
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed List<UpgradestatusinfoTimes History State Last Changed Time> - reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted String
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed UpgradestatusinfoTimes History State Last Changed Time[] - reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted string
- state string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last_
changed_ Sequence[Upgradestatusinfotimes History State Last Changed Time] - reason str
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted str
- state str
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed List<Property Map>Times - reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted String
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoHistoryStateLastChangedTime, UpgradestatusinfoHistoryStateLastChangedTimeArgs
UpgradestatusinfoHistoryUpgradeEvent, UpgradestatusinfoHistoryUpgradeEventArgs
UpgradestatusinfoHistoryUpgradeEventNodesEvent, UpgradestatusinfoHistoryUpgradeEventNodesEventArgs
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
List<Upgradestatusinfo
History Upgrade Event Nodes Event Ip> - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks List<string>
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
[]Upgradestatusinfo
History Upgrade Event Nodes Event Ip - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks []string
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
List<Upgradestatusinfo
History Upgrade Event Nodes Event Ip> - message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Upgradestatusinfo
History Upgrade Event Nodes Event Ip[] - message string
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status string
- sub
Tasks string[]
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Sequence[Upgradestatusinfo
History Upgrade Event Nodes Event Ip] - message str
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status str
- sub_
tasks Sequence[str]
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips List<Property Map>
- message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
UpgradestatusinfoHistoryUpgradeEventNodesEventIp, UpgradestatusinfoHistoryUpgradeEventNodesEventIpArgs
UpgradestatusinfoHistoryUpgradeEventSubEvent, UpgradestatusinfoHistoryUpgradeEventSubEventArgs
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
List<Upgradestatusinfo
History Upgrade Event Sub Event Ip> - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks List<string>
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
[]Upgradestatusinfo
History Upgrade Event Sub Event Ip - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks []string
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
List<Upgradestatusinfo
History Upgrade Event Sub Event Ip> - message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Upgradestatusinfo
History Upgrade Event Sub Event Ip[] - message string
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status string
- sub
Tasks string[]
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Sequence[Upgradestatusinfo
History Upgrade Event Sub Event Ip] - message str
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status str
- sub_
tasks Sequence[str]
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips List<Property Map>
- message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
UpgradestatusinfoHistoryUpgradeEventSubEventIp, UpgradestatusinfoHistoryUpgradeEventSubEventIpArgs
UpgradestatusinfoParam, UpgradestatusinfoParamArgs
- Controllers
List<Upgradestatusinfo
Param Controller> - Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Ref string - Se
Group List<UpgradestatusinfoOptions Param Se Group Option> - Se
Group List<UpgradestatusinfoResume Options Param Se Group Resume Option> - Service
Engines List<UpgradestatusinfoParam Service Engine>
- Controllers
[]Upgradestatusinfo
Param Controller - Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Ref string - Se
Group []UpgradestatusinfoOptions Param Se Group Option - Se
Group []UpgradestatusinfoResume Options Param Se Group Resume Option - Service
Engines []UpgradestatusinfoParam Service Engine
- controllers
List<Upgradestatusinfo
Param Controller> - image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Ref String - se
Group List<UpgradestatusinfoOptions Param Se Group Option> - se
Group List<UpgradestatusinfoResume Options Param Se Group Resume Option> - service
Engines List<UpgradestatusinfoParam Service Engine>
- controllers
Upgradestatusinfo
Param Controller[] - image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Ref string - se
Group UpgradestatusinfoOptions Param Se Group Option[] - se
Group UpgradestatusinfoResume Options Param Se Group Resume Option[] - service
Engines UpgradestatusinfoParam Service Engine[]
- controllers
Sequence[Upgradestatusinfo
Param Controller] - image_
ref str - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
ref str - se_
group_ Sequence[Upgradestatusinfooptions Param Se Group Option] - se_
group_ Sequence[Upgradestatusinforesume_ options Param Se Group Resume Option] - service_
engines Sequence[UpgradestatusinfoParam Service Engine]
- controllers List<Property Map>
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Ref String - se
Group List<Property Map>Options - se
Group List<Property Map>Resume Options - service
Engines List<Property Map>
UpgradestatusinfoParamController, UpgradestatusinfoParamControllerArgs
- Task
Base stringTimeout
- Task
Base stringTimeout
- task
Base StringTimeout
- task
Base stringTimeout
- task
Base StringTimeout
UpgradestatusinfoParamSeGroupOption, UpgradestatusinfoParamSeGroupOptionArgs
- Action
On stringError - Disruptive string
- Action
On stringError - Disruptive string
- action
On StringError - disruptive String
- action
On stringError - disruptive string
- action_
on_ strerror - disruptive str
- action
On StringError - disruptive String
UpgradestatusinfoParamSeGroupResumeOption, UpgradestatusinfoParamSeGroupResumeOptionArgs
- Action
On stringError - Disruptive string
- Skip
Suspended string
- Action
On stringError - Disruptive string
- Skip
Suspended string
- action
On StringError - disruptive String
- skip
Suspended String
- action
On stringError - disruptive string
- skip
Suspended string
- action_
on_ strerror - disruptive str
- skip_
suspended str
- action
On StringError - disruptive String
- skip
Suspended String
UpgradestatusinfoParamServiceEngine, UpgradestatusinfoParamServiceEngineArgs
- Concurrent
Segroup stringUpgrades - Image
Data stringTransfer Size - Large
Se stringConnect Timeout - Se
Connect stringTimeout - Simultaneous
Image stringDownloads - Task
Base stringTimeout
- Concurrent
Segroup stringUpgrades - Image
Data stringTransfer Size - Large
Se stringConnect Timeout - Se
Connect stringTimeout - Simultaneous
Image stringDownloads - Task
Base stringTimeout
- concurrent
Segroup StringUpgrades - image
Data StringTransfer Size - large
Se StringConnect Timeout - se
Connect StringTimeout - simultaneous
Image StringDownloads - task
Base StringTimeout
- concurrent
Segroup stringUpgrades - image
Data stringTransfer Size - large
Se stringConnect Timeout - se
Connect stringTimeout - simultaneous
Image stringDownloads - task
Base stringTimeout
- concurrent
Segroup StringUpgrades - image
Data StringTransfer Size - large
Se StringConnect Timeout - se
Connect StringTimeout - simultaneous
Image StringDownloads - task
Base StringTimeout
UpgradestatusinfoPatchList, UpgradestatusinfoPatchListArgs
- Patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strpath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strref - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
version str - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoPreviousPatchList, UpgradestatusinfoPreviousPatchListArgs
- Patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version string - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strpath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strref - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
version str - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringPath - Image path of current patch image. Field introduced in 18.2.10, 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Version String - Current patch version applied to this node. Example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoSeUpgradeEvent, UpgradestatusinfoSeUpgradeEventArgs
- From
Se stringRef - Num
Se string - Num
Se stringGroup - Num
Vs string - Reasons List<string>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Sub
Tasks List<string> - Task string
- To
Se stringRef - Traffic
Status string - Vs
Ref string
- From
Se stringRef - Num
Se string - Num
Se stringGroup - Num
Vs string - Reasons []string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Sub
Tasks []string - Task string
- To
Se stringRef - Traffic
Status string - Vs
Ref string
- from
Se StringRef - num
Se String - num
Se StringGroup - num
Vs String - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - sub
Tasks List<String> - task String
- to
Se StringRef - traffic
Status String - vs
Ref String
- from
Se stringRef - num
Se string - num
Se stringGroup - num
Vs string - reasons string[]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group stringHa Mode - se
Group stringRef - se
Ref string - sub
Tasks string[] - task string
- to
Se stringRef - traffic
Status string - vs
Ref string
- from_
se_ strref - num_
se str - num_
se_ strgroup - num_
vs str - reasons Sequence[str]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
group_ strha_ mode - se_
group_ strref - se_
ref str - sub_
tasks Sequence[str] - task str
- to_
se_ strref - traffic_
status str - vs_
ref str
- from
Se StringRef - num
Se String - num
Se StringGroup - num
Vs String - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - sub
Tasks List<String> - task String
- to
Se StringRef - traffic
Status String - vs
Ref String
UpgradestatusinfoSegParam, UpgradestatusinfoSegParamArgs
- Controllers
List<Upgradestatusinfo
Seg Param Controller> - Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Ref string - Se
Group List<UpgradestatusinfoOptions Seg Param Se Group Option> - Se
Group List<UpgradestatusinfoResume Options Seg Param Se Group Resume Option> - Service
Engines List<UpgradestatusinfoSeg Param Service Engine>
- Controllers
[]Upgradestatusinfo
Seg Param Controller - Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Ref string - Se
Group []UpgradestatusinfoOptions Seg Param Se Group Option - Se
Group []UpgradestatusinfoResume Options Seg Param Se Group Resume Option - Service
Engines []UpgradestatusinfoSeg Param Service Engine
- controllers
List<Upgradestatusinfo
Seg Param Controller> - image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Ref String - se
Group List<UpgradestatusinfoOptions Seg Param Se Group Option> - se
Group List<UpgradestatusinfoResume Options Seg Param Se Group Resume Option> - service
Engines List<UpgradestatusinfoSeg Param Service Engine>
- controllers
Upgradestatusinfo
Seg Param Controller[] - image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Ref string - se
Group UpgradestatusinfoOptions Seg Param Se Group Option[] - se
Group UpgradestatusinfoResume Options Seg Param Se Group Resume Option[] - service
Engines UpgradestatusinfoSeg Param Service Engine[]
- controllers
Sequence[Upgradestatusinfo
Seg Param Controller] - image_
ref str - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
ref str - se_
group_ Sequence[Upgradestatusinfooptions Seg Param Se Group Option] - se_
group_ Sequence[Upgradestatusinforesume_ options Seg Param Se Group Resume Option] - service_
engines Sequence[UpgradestatusinfoSeg Param Service Engine]
- controllers List<Property Map>
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Ref String - se
Group List<Property Map>Options - se
Group List<Property Map>Resume Options - service
Engines List<Property Map>
UpgradestatusinfoSegParamController, UpgradestatusinfoSegParamControllerArgs
- Task
Base stringTimeout
- Task
Base stringTimeout
- task
Base StringTimeout
- task
Base stringTimeout
- task
Base StringTimeout
UpgradestatusinfoSegParamSeGroupOption, UpgradestatusinfoSegParamSeGroupOptionArgs
- Action
On stringError - Disruptive string
- Action
On stringError - Disruptive string
- action
On StringError - disruptive String
- action
On stringError - disruptive string
- action_
on_ strerror - disruptive str
- action
On StringError - disruptive String
UpgradestatusinfoSegParamSeGroupResumeOption, UpgradestatusinfoSegParamSeGroupResumeOptionArgs
- Action
On stringError - Disruptive string
- Skip
Suspended string
- Action
On stringError - Disruptive string
- Skip
Suspended string
- action
On StringError - disruptive String
- skip
Suspended String
- action
On stringError - disruptive string
- skip
Suspended string
- action_
on_ strerror - disruptive str
- skip_
suspended str
- action
On StringError - disruptive String
- skip
Suspended String
UpgradestatusinfoSegParamServiceEngine, UpgradestatusinfoSegParamServiceEngineArgs
- Concurrent
Segroup stringUpgrades - Image
Data stringTransfer Size - Large
Se stringConnect Timeout - Se
Connect stringTimeout - Simultaneous
Image stringDownloads - Task
Base stringTimeout
- Concurrent
Segroup stringUpgrades - Image
Data stringTransfer Size - Large
Se stringConnect Timeout - Se
Connect stringTimeout - Simultaneous
Image stringDownloads - Task
Base stringTimeout
- concurrent
Segroup StringUpgrades - image
Data StringTransfer Size - large
Se StringConnect Timeout - se
Connect StringTimeout - simultaneous
Image StringDownloads - task
Base StringTimeout
- concurrent
Segroup stringUpgrades - image
Data stringTransfer Size - large
Se stringConnect Timeout - se
Connect stringTimeout - simultaneous
Image stringDownloads - task
Base stringTimeout
- concurrent
Segroup StringUpgrades - image
Data StringTransfer Size - large
Se StringConnect Timeout - se
Connect StringTimeout - simultaneous
Image StringDownloads - task
Base StringTimeout
UpgradestatusinfoSegStatus, UpgradestatusinfoSegStatusArgs
- Controller
Version string - Disrupted
Vs List<string>Reves - Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ha
Mode string - In
Progress string - Notes List<string>
- Num
Se string - Num
Se stringWith No Vs - Num
Se stringWith Vs Not Scaledout - Num
Se stringWith Vs Scaledout - Num
Vs string - Num
Vs stringDisrupted - Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Reasons List<string>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Request
Time string - Se
Already List<string>Upgraded At Starts - Se
Disconnected List<string>At Starts - Se
Group stringName - Se
Group stringUuid - Se
Ip List<string>Missing At Starts - Se
Poweredoff List<string>At Starts - Se
Reboot stringIn Progress Ref - Se
Upgrade List<string>Completeds - Se
Upgrade List<UpgradestatusinfoErrors Seg Status Se Upgrade Error> - Se
Upgrade List<string>Faileds - Se
Upgrade List<string>In Progresses - Se
Upgrade List<string>Not Starteds - Se
Upgrade List<string>Skip Suspendeds - Se
Upgrade List<string>Suspendeds - Se
With List<string>No Vs - Se
With List<string>Vs Not Scaledouts - Se
With List<string>Vs Scaledouts - Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Thread string
- Traffic
Status string - Vs
Errors List<UpgradestatusinfoSeg Status Vs Error> - Vs
Migrate List<string>In Progress Reves - Vs
Scalein List<string>In Progress Reves - Vs
Scaleout List<string>In Progress Reves - Worker string
- Controller
Version string - Disrupted
Vs []stringReves - Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ha
Mode string - In
Progress string - Notes []string
- Num
Se string - Num
Se stringWith No Vs - Num
Se stringWith Vs Not Scaledout - Num
Se stringWith Vs Scaledout - Num
Vs string - Num
Vs stringDisrupted - Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Reasons []string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Request
Time string - Se
Already []stringUpgraded At Starts - Se
Disconnected []stringAt Starts - Se
Group stringName - Se
Group stringUuid - Se
Ip []stringMissing At Starts - Se
Poweredoff []stringAt Starts - Se
Reboot stringIn Progress Ref - Se
Upgrade []stringCompleteds - Se
Upgrade []UpgradestatusinfoErrors Seg Status Se Upgrade Error - Se
Upgrade []stringFaileds - Se
Upgrade []stringIn Progresses - Se
Upgrade []stringNot Starteds - Se
Upgrade []stringSkip Suspendeds - Se
Upgrade []stringSuspendeds - Se
With []stringNo Vs - Se
With []stringVs Not Scaledouts - Se
With []stringVs Scaledouts - Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Thread string
- Traffic
Status string - Vs
Errors []UpgradestatusinfoSeg Status Vs Error - Vs
Migrate []stringIn Progress Reves - Vs
Scalein []stringIn Progress Reves - Vs
Scaleout []stringIn Progress Reves - Worker string
- controller
Version String - disrupted
Vs List<String>Reves - duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time String - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ha
Mode String - in
Progress String - notes List<String>
- num
Se String - num
Se StringWith No Vs - num
Se StringWith Vs Not Scaledout - num
Se StringWith Vs Scaledout - num
Vs String - num
Vs StringDisrupted - progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- request
Time String - se
Already List<String>Upgraded At Starts - se
Disconnected List<String>At Starts - se
Group StringName - se
Group StringUuid - se
Ip List<String>Missing At Starts - se
Poweredoff List<String>At Starts - se
Reboot StringIn Progress Ref - se
Upgrade List<String>Completeds - se
Upgrade List<UpgradestatusinfoErrors Seg Status Se Upgrade Error> - se
Upgrade List<String>Faileds - se
Upgrade List<String>In Progresses - se
Upgrade List<String>Not Starteds - se
Upgrade List<String>Skip Suspendeds - se
Upgrade List<String>Suspendeds - se
With List<String>No Vs - se
With List<String>Vs Not Scaledouts - se
With List<String>Vs Scaledouts - start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- thread String
- traffic
Status String - vs
Errors List<UpgradestatusinfoSeg Status Vs Error> - vs
Migrate List<String>In Progress Reves - vs
Scalein List<String>In Progress Reves - vs
Scaleout List<String>In Progress Reves - worker String
- controller
Version string - disrupted
Vs string[]Reves - duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time string - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ha
Mode string - in
Progress string - notes string[]
- num
Se string - num
Se stringWith No Vs - num
Se stringWith Vs Not Scaledout - num
Se stringWith Vs Scaledout - num
Vs string - num
Vs stringDisrupted - progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reasons string[]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- request
Time string - se
Already string[]Upgraded At Starts - se
Disconnected string[]At Starts - se
Group stringName - se
Group stringUuid - se
Ip string[]Missing At Starts - se
Poweredoff string[]At Starts - se
Reboot stringIn Progress Ref - se
Upgrade string[]Completeds - se
Upgrade UpgradestatusinfoErrors Seg Status Se Upgrade Error[] - se
Upgrade string[]Faileds - se
Upgrade string[]In Progresses - se
Upgrade string[]Not Starteds - se
Upgrade string[]Skip Suspendeds - se
Upgrade string[]Suspendeds - se
With string[]No Vs - se
With string[]Vs Not Scaledouts - se
With string[]Vs Scaledouts - start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- thread string
- traffic
Status string - vs
Errors UpgradestatusinfoSeg Status Vs Error[] - vs
Migrate string[]In Progress Reves - vs
Scalein string[]In Progress Reves - vs
Scaleout string[]In Progress Reves - worker string
- controller_
version str - disrupted_
vs_ Sequence[str]reves - duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue_
time str - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ha_
mode str - in_
progress str - notes Sequence[str]
- num_
se str - num_
se_ strwith_ no_ vs - num_
se_ strwith_ vs_ not_ scaledout - num_
se_ strwith_ vs_ scaledout - num_
vs str - num_
vs_ strdisrupted - progress str
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reasons Sequence[str]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- request_
time str - se_
already_ Sequence[str]upgraded_ at_ starts - se_
disconnected_ Sequence[str]at_ starts - se_
group_ strname - se_
group_ struuid - se_
ip_ Sequence[str]missing_ at_ starts - se_
poweredoff_ Sequence[str]at_ starts - se_
reboot_ strin_ progress_ ref - se_
upgrade_ Sequence[str]completeds - se_
upgrade_ Sequence[Upgradestatusinfoerrors Seg Status Se Upgrade Error] - se_
upgrade_ Sequence[str]faileds - se_
upgrade_ Sequence[str]in_ progresses - se_
upgrade_ Sequence[str]not_ starteds - se_
upgrade_ Sequence[str]skip_ suspendeds - se_
upgrade_ Sequence[str]suspendeds - se_
with_ Sequence[str]no_ vs - se_
with_ Sequence[str]vs_ not_ scaledouts - se_
with_ Sequence[str]vs_ scaledouts - start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state str
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- thread str
- traffic_
status str - vs_
errors Sequence[UpgradestatusinfoSeg Status Vs Error] - vs_
migrate_ Sequence[str]in_ progress_ reves - vs_
scalein_ Sequence[str]in_ progress_ reves - vs_
scaleout_ Sequence[str]in_ progress_ reves - worker str
- controller
Version String - disrupted
Vs List<String>Reves - duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enqueue
Time String - Enqueue time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ha
Mode String - in
Progress String - notes List<String>
- num
Se String - num
Se StringWith No Vs - num
Se StringWith Vs Not Scaledout - num
Se StringWith Vs Scaledout - num
Vs String - num
Vs StringDisrupted - progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- request
Time String - se
Already List<String>Upgraded At Starts - se
Disconnected List<String>At Starts - se
Group StringName - se
Group StringUuid - se
Ip List<String>Missing At Starts - se
Poweredoff List<String>At Starts - se
Reboot StringIn Progress Ref - se
Upgrade List<String>Completeds - se
Upgrade List<Property Map>Errors - se
Upgrade List<String>Faileds - se
Upgrade List<String>In Progresses - se
Upgrade List<String>Not Starteds - se
Upgrade List<String>Skip Suspendeds - se
Upgrade List<String>Suspendeds - se
With List<String>No Vs - se
With List<String>Vs Not Scaledouts - se
With List<String>Vs Scaledouts - start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- thread String
- traffic
Status String - vs
Errors List<Property Map> - vs
Migrate List<String>In Progress Reves - vs
Scalein List<String>In Progress Reves - vs
Scaleout List<String>In Progress Reves - worker String
UpgradestatusinfoSegStatusSeUpgradeError, UpgradestatusinfoSegStatusSeUpgradeErrorArgs
- From
Se stringRef - Num
Se string - Num
Se stringGroup - Num
Vs string - Reasons List<string>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Sub
Tasks List<string> - Task string
- To
Se stringRef - Traffic
Status string - Vs
Ref string
- From
Se stringRef - Num
Se string - Num
Se stringGroup - Num
Vs string - Reasons []string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Sub
Tasks []string - Task string
- To
Se stringRef - Traffic
Status string - Vs
Ref string
- from
Se StringRef - num
Se String - num
Se StringGroup - num
Vs String - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - sub
Tasks List<String> - task String
- to
Se StringRef - traffic
Status String - vs
Ref String
- from
Se stringRef - num
Se string - num
Se stringGroup - num
Vs string - reasons string[]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group stringHa Mode - se
Group stringRef - se
Ref string - sub
Tasks string[] - task string
- to
Se stringRef - traffic
Status string - vs
Ref string
- from_
se_ strref - num_
se str - num_
se_ strgroup - num_
vs str - reasons Sequence[str]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
group_ strha_ mode - se_
group_ strref - se_
ref str - sub_
tasks Sequence[str] - task str
- to_
se_ strref - traffic_
status str - vs_
ref str
- from
Se StringRef - num
Se String - num
Se StringGroup - num
Vs String - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - sub
Tasks List<String> - task String
- to
Se StringRef - traffic
Status String - vs
Ref String
UpgradestatusinfoSegStatusVsError, UpgradestatusinfoSegStatusVsErrorArgs
- Event
Timestamps List<UpgradestatusinfoSeg Status Vs Error Event Timestamp> - Reasons List<string>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Traffic
Status string - Vip
Id string - Vs
Ref string
- Event
Timestamps []UpgradestatusinfoSeg Status Vs Error Event Timestamp - Reasons []string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Se
Group stringHa Mode - Se
Group stringRef - Se
Ref string - Tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Traffic
Status string - Vip
Id string - Vs
Ref string
- event
Timestamps List<UpgradestatusinfoSeg Status Vs Error Event Timestamp> - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- traffic
Status String - vip
Id String - vs
Ref String
- event
Timestamps UpgradestatusinfoSeg Status Vs Error Event Timestamp[] - reasons string[]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group stringHa Mode - se
Group stringRef - se
Ref string - tenant
Ref string - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- traffic
Status string - vip
Id string - vs
Ref string
- event_
timestamps Sequence[UpgradestatusinfoSeg Status Vs Error Event Timestamp] - reasons Sequence[str]
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se_
group_ strha_ mode - se_
group_ strref - se_
ref str - tenant_
ref str - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- traffic_
status str - vip_
id str - vs_
ref str
- event
Timestamps List<Property Map> - reasons List<String>
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- se
Group StringHa Mode - se
Group StringRef - se
Ref String - tenant
Ref String - Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- traffic
Status String - vip
Id String - vs
Ref String
UpgradestatusinfoSegStatusVsErrorEventTimestamp, UpgradestatusinfoSegStatusVsErrorEventTimestampArgs
UpgradestatusinfoState, UpgradestatusinfoStateArgs
- Last
Changed List<UpgradestatusinfoTimes State Last Changed Time> - Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Rebooted string
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Last
Changed []UpgradestatusinfoTimes State Last Changed Time - Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Rebooted string
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed List<UpgradestatusinfoTimes State Last Changed Time> - reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted String
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed UpgradestatusinfoTimes State Last Changed Time[] - reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted string
- state string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last_
changed_ Sequence[Upgradestatusinfotimes State Last Changed Time] - reason str
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted str
- state str
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed List<Property Map>Times - reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted String
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoStateLastChangedTime, UpgradestatusinfoStateLastChangedTimeArgs
UpgradestatusinfoUpgradeEvent, UpgradestatusinfoUpgradeEventArgs
UpgradestatusinfoUpgradeEventNodesEvent, UpgradestatusinfoUpgradeEventNodesEventArgs
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
List<Upgradestatusinfo
Upgrade Event Nodes Event Ip> - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks List<string>
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
[]Upgradestatusinfo
Upgrade Event Nodes Event Ip - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks []string
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
List<Upgradestatusinfo
Upgrade Event Nodes Event Ip> - message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Upgradestatusinfo
Upgrade Event Nodes Event Ip[] - message string
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status string
- sub
Tasks string[]
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Sequence[Upgradestatusinfo
Upgrade Event Nodes Event Ip] - message str
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status str
- sub_
tasks Sequence[str]
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips List<Property Map>
- message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
UpgradestatusinfoUpgradeEventNodesEventIp, UpgradestatusinfoUpgradeEventNodesEventIpArgs
UpgradestatusinfoUpgradeEventSubEvent, UpgradestatusinfoUpgradeEventSubEventArgs
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
List<Upgradestatusinfo
Upgrade Event Sub Event Ip> - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks List<string>
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Ips
[]Upgradestatusinfo
Upgrade Event Sub Event Ip - Message string
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Status string
- Sub
Tasks []string
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
List<Upgradestatusinfo
Upgrade Event Sub Event Ip> - message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Upgradestatusinfo
Upgrade Event Sub Event Ip[] - message string
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status string
- sub
Tasks string[]
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips
Sequence[Upgradestatusinfo
Upgrade Event Sub Event Ip] - message str
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status str
- sub_
tasks Sequence[str]
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- ips List<Property Map>
- message String
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- status String
- sub
Tasks List<String>
UpgradestatusinfoUpgradeEventSubEventIp, UpgradestatusinfoUpgradeEventSubEventIpArgs
UpgradestatusinfoUpgradeReadiness, UpgradestatusinfoUpgradeReadinessArgs
- Checks
List<Upgradestatusinfo
Upgrade Readiness Check> - Checks
Completed string - Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- States
List<Upgradestatusinfo
Upgrade Readiness State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Checks string - Upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Checks
[]Upgradestatusinfo
Upgrade Readiness Check - Checks
Completed string - Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- States
[]Upgradestatusinfo
Upgrade Readiness State - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Total
Checks string - Upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- checks
List<Upgradestatusinfo
Upgrade Readiness Check> - checks
Completed String - duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- states
List<Upgradestatusinfo
Upgrade Readiness State> - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Checks String - upgrade
Ops String - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- checks
Upgradestatusinfo
Upgrade Readiness Check[] - checks
Completed string - duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref string - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image stringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress string
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- states
Upgradestatusinfo
Upgrade Readiness State[] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Checks string - upgrade
Ops string - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- checks
Sequence[Upgradestatusinfo
Upgrade Readiness Check] - checks_
completed str - duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image_
ref str - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch_
image_ strref - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress str
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- states
Sequence[Upgradestatusinfo
Upgrade Readiness State] - Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total_
checks str - upgrade_
ops str - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- checks List<Property Map>
- checks
Completed String - duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Ref String - Image uuid for identifying the current base image. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- patch
Image StringRef - Image uuid for identifying the current patch.example base-image is 18.2.6 and a patch 6p1 is applied, then this field will indicate the 6p1 value. It is a reference to an object of type image. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- progress String
- Upgrade operations progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 18.2.8, 20.1.1. Unit is percent. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- states List<Property Map>
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- total
Checks String - upgrade
Ops String - Upgrade operations requested. Enum options - UPGRADE, PATCH, ROLLBACK, ROLLBACKPATCH, SEGROUP_RESUME, EVAL_UPGRADE, EVAL_PATCH, EVAL_ROLLBACK, EVAL_ROLLBACKPATCH, EVAL_SEGROUP_RESUME, EVAL_RESTORE, RESTORE, UPGRADE_DRYRUN. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoUpgradeReadinessCheck, UpgradestatusinfoUpgradeReadinessCheckArgs
- Check
Code string - Description string
- Details List<string>
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Error
Details List<string> - Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Check
Code string - Description string
- Details []string
- Duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Error
Details []string - Start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- check
Code String - description String
- details List<String>
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- error
Details List<String> - start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- check
Code string - description string
- details string[]
- duration string
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time string - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- error
Details string[] - start
Time string - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- check_
code str - description str
- details Sequence[str]
- duration str
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
time str - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- error_
details Sequence[str] - start_
time str - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state str
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- check
Code String - description String
- details List<String>
- duration String
- Duration of upgrade operation in seconds. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Time String - End time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- error
Details List<String> - start
Time String - Start time of upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoUpgradeReadinessState, UpgradestatusinfoUpgradeReadinessStateArgs
- Last
Changed List<UpgradestatusinfoTimes Upgrade Readiness State Last Changed Time> - Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Rebooted string
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Last
Changed []UpgradestatusinfoTimes Upgrade Readiness State Last Changed Time - Reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Rebooted string
- State string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed List<UpgradestatusinfoTimes Upgrade Readiness State Last Changed Time> - reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted String
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed UpgradestatusinfoTimes Upgrade Readiness State Last Changed Time[] - reason string
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted string
- state string
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last_
changed_ Sequence[Upgradestatusinfotimes Upgrade Readiness State Last Changed Time] - reason str
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted str
- state str
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- last
Changed List<Property Map>Times - reason String
- Descriptive reason for the upgrade state. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- rebooted String
- state String
- Current status of the upgrade operation. Field introduced in 18.2.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
UpgradestatusinfoUpgradeReadinessStateLastChangedTime, UpgradestatusinfoUpgradeReadinessStateLastChangedTimeArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.